@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: #fff;
  color: #333;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000130;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 1000;
}

.logo h2 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffae00;
}

nav ul li a {
  text-decoration: none;
  color: #fff;
  position: relative;
  display: inline-block;
  padding: 5px 0;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #ffae00;
}

nav ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: #ffae00;
  transition: width 0.3s ease;
}

nav ul li a:hover::after {
  width: 100%;
}

nav ul li a:hover::after {
  width: 100%;
}

.logo {
  color: #fff;
}

nav ul {
  display: flex;
  gap: 30px;
  align-items: center;
}

nav ul li {
  list-style-type: none;
}

.menu-icon {
  display: none;
}

.menu-icon i {
  color: #fff;
  font-size: 30px;
}

nav ul li a.active {
  color: #ffae00;
}

nav ul li a.active::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 90%;
  height: 2px;
  background-color: #ffae00;
}

@media (max-width:800px) {
  nav {
    justify-content: space-between;
  }

  nav ul {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    text-align: center;
    background: #1a202c;
    gap: 0;
    overflow: hidden;
    font-size: 1.5rem;
    font-weight: bold;
  }

  nav ul li {
    padding: 20px;
    padding-top: 0;
  }

  .menu-icon {
    display: block;
  }

  #menuList {
    transition: all 0.5s;
  }
}

/* Hero Message */
.msg {
  text-align: center;
  color: white;
  margin-top: 200px;
  padding: 0 20px;
  justify-content: center;
  position: relative;
}

.msg h1 {
  font-size: 60px;
  font-weight: 600;
  font-weight: bold;
  --to: left;
  background-image: linear-gradient(to var(--to), #89a5df, #e46e7f, #e8e191);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.msg p {
  font-size: 1.2rem;
}

/* hcontact */
.hcontact {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.hcontact a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}

.hcontact a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}

/* Container Section */
.container {
  max-width: 80%;
  margin: 10px auto;
  padding: 20px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

header {
  width: min(1200px, 90vw);
  margin: auto;
  height: 70px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

main {
  background-color: #040018;
  min-height: auto;
  margin-top: 70px;
}

main .banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.banner button {
  all: unset;
  border: 1px solid #afaeae55;
  padding: 10px 20px;
  border-radius: 20px;
  background-image: linear-gradient(to bottom, #eee1, transparent, #eee1);
  cursor: pointer;
  transition: 0.5s;
  animation: fadeInDown 2s ease-in-out;
  background-color: #c691e6;
  box-shadow: 0 0 40px #c691e6;
  margin-top: 5px;
}


.banner {
  position: relative;
}

.banner #dotsCanvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

ul li a {
  text-decoration: none;
  cursor: pointer;
  color: #eee;
}

/* header end  */
.container {
  margin-top: 40px;
}

.container h1 {
  font-size: 2.5rem;
  margin-top: 20;
  margin-bottom: 20px;
}

.container h1 strong {
  color: #15084d;
}

.container p {
  font-size: 1rem;
  margin-bottom: 40px;
  color: #fff;
}

/* Services Section */
.services {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-category {
  background: #f3f4f6;
  padding: 20px;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-category h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.service-category ul {
  list-style: none;
  padding-left: 0;
}

.service-category ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

/* Cards Section */
.cardcont {
  max-width: 100%;
  margin: 60px auto;
  padding: 50px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-align: center;
  gap: 100px;
  justify-content: center;
  background: #e5ecfb;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  width: 450px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 2px solid;
}

.card:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  text-align: center;
  align-items: center;
  justify-content: center;
  display: flex;
}

.card h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 15px;
}

.highlight {
  font-size: 2rem;
  color: red;
  font-weight: bold;
}

.card h2 .title {
  font-size: 5rem;


}

.card .features-list {
  margin-bottom: 15px;
  padding-left: 20px;
}

.card .features-list li {
  margin-bottom: 6px;
  list-style: none;
}

.blue-icon {
  width: 40px;
  height: 40px;
  fill: #3b82f6;
  transition: transform 0.3s ease, fill 0.3s ease;

}

.blue-icon path {
  stroke: none;
  transition: fill 0.3s ease;
}

.red-icon-circle {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #e11d48;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.red-icon-arrow {
  stroke: #e11d48;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Buttons */
.btn-learn-more {
  padding: 10px 16px;
  border: none;
  border-radius: 9999px;
  font-size: 0.9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-items: center;
  transition: transform 0.3s ease, background 0.3s;
}

.btn-learn-more:hover {
  transform: translateX(5px);
}

.btn-blue {
  background-color: #2563eb;
  color: white;
}

.btn-blue:hover {
  background-color: #1d4ed8;
}

.btn-red {
  background-color: #dc2626;
  color: white;
}

.btn-red:hover {
  background-color: #b91c1c;
}

/* engage */
.results-section {
  text-align: center;
  padding: 60px 20px;
  background: #e5ecfb;
}

.heading {
  font-size: 2rem;
  color: #000;
  margin-bottom: 40px;
}

.highlight1 {
  font-weight: bold;
  color: #000130;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.result-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  transition: transform 0.3s ease;
  background-color: #000257;
  color: #fff;
}

.result-box:hover {
  transform: translateY(-5px);
}

.result-box .icon {
  font-size: 30px;
  color: red;
  margin-bottom: 10px;
}

.result-box h3 {
  font-size: 2rem;
  margin: 0;
  font-weight: 800;
}

.result-box p {
  font-size: 15px;
  color: #fff;
  margin: 10px 0 20px;
}

.result-box .source {
  font-style: italic;
  color: red;
  font-size: 14px;
  display: block;
}

.btn-wrapper {
  text-align: center;
}

.results-btn {
  background: white;
  color: #003147;
  font-size: 16px;
  padding: 12px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
}

.results-btn:hover {
  background: #f3f3f3;
}

.results-btn i {
  margin-left: 8px;
}


/* Hero Image Section */
.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1100px;
  margin: 80px auto;
  padding: 20px;
  align-items: center;
}

.lsection,
.rsection {
  flex: 1;
  min-width: 300px;
}

.image-circle {
  border-radius: 50%;
  overflow: hidden;
  max-width: 350px;
  margin: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.image-circle:hover {
  transform: scale(1.05);
}

.oimg {
  width: 100%;
  height: auto;
  display: block;
}

.rsection h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #fff;
}

.rsection p {
  color: #fff;
  margin-bottom: 20px;
}

.rsection ul {
  list-style: none;
  padding-left: 0;
}

.rsection ul li {
  margin-bottom: 10px;
  color: #fff;
}

/* Responsive */
@media screen and (max-width: 800px) {
  .msg h1 {
    font-size: 3rem;
    
  }

  .container h1 {
    font-size: 1.5rem;
  }

  .cardcont {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .head {
    flex-direction: column;
    align-items: flex-start;
  }

  .hul {
    flex-direction: column;
    gap: 10px;
    /* margin-top: 10px; */
  }

  .card,
  .service-category {
    width: 90%;
  }
}


/* contact section starts */
.contact {
  background: #e5ecfb;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  padding-top: 1rem;
}

.contact .container {
  max-width: 1200px;
  width: 100%;
  background: #fff;
  border-radius: 1.5rem;

  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}

.contact h2 {
  font-size: 50px;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

span .conh2 {
  color: #2506ad;
}

.contact .container .content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 2.5rem 2rem; */
  padding: 1rem 1.5rem;
}

.contact .content .image-box {
  max-width: 60%;
  margin-left: 4rem;
}

.contact .content .image-box img {
  width: 100%;
  height: 40rem;
  position: relative;
}

.contact .content form {
  width: 45%;
  margin-right: 3.5rem;
}

form .form-group {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-group .field {
  height: 50px;
  display: flex;
  position: relative;
  margin: 1rem;
  width: 100%;
}

form i {
  position: absolute;
  top: 50%;
  left: 18px;
  color: rgb(51, 51, 51);
  font-size: 17px;
  pointer-events: none;
  transform: translateY(-50%);
}

form .field input,
form .message textarea {
  width: 100%;
  height: 100%;
  outline: none;
  padding: 0 16px 0 48px;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  border-radius: 5px;
  border: 1px solid rgb(51, 51, 51);
  background: #e5ecfb;
}

.field input::placeholder,
.message textarea::placeholder {
  color: rgb(51, 51, 51);
}

.field input:focus,
.message textarea:focus {
  padding-left: 47px;
  border: 2px solid rgb(115, 3, 167);
}

.field input:focus~i,
.message textarea:focus~i {
  color: rgb(115, 3, 167);
}

form .message {
  position: relative;
  margin: 1rem;
  width: 100%;
}

form .message i {
  top: 25px;
  font-size: 20px;
  left: 15px;
}

form .message textarea {
  min-height: 130px;
  max-height: 230px;
  max-width: 100%;
  min-width: 100%;
  padding: 12px 20px 0 48px;
}

form .message textarea::-webkit-scrollbar {
  width: 0px;
}

form .button-area {
  display: flex;
  float: right;
  flex-direction: row-reverse;
}

.button-area button {
  color: #fff;
  border: none;
  outline: none;
  font-size: 1.8rem;
  cursor: pointer;
  border-radius: 5px;
  padding: 13px 25px;
  background: #2506ad;
  box-shadow: 0px 5px 10px rgba(48, 68, 247, 0.6);
  transition: 0.3s ease;
  font-family: "Nunito", sans-serif;
}

.button-area button:hover {
  background: #421cecf5;
}

.button-area span {
  font-size: 17px;
  padding: 1rem;
  display: none;
}

.button-area button i {
  position: relative;
  top: 6px;
  left: 2px;
  font-size: 1.5rem;
  transition: 0.3s;
  color: #fff;
}

.button-area button:hover i {
  left: 8px;
}

/* contact section media queries starts */
@media (max-width: 900px) {
  .contact {
    min-height: 70vh;
  }

  .contact .container {
    margin: 3rem 0 2rem 0;
  }

  .contact .container .content {
    padding: 18px 12px;
  }

  .contact .content .image-box {
    display: none;
  }

  .contact .content form {
    width: 100%;
    margin-right: 2rem;
  }
}

/* footer section starts */
.footer {
  min-height: auto;
  padding-top: 0;
  background: rgb(0, 1, 48);
}

.footer .box-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.footer .box-container .box {
  flex: 1 1 25rem;
  margin: 2.5rem;
}

.footer .box-container .box h3 {
  font-size: 1.5rem;
  color: #fff;
  padding-bottom: 0.5rem;
  font-weight: normal;
}

.footer .box-container .box p {
  font-size: 1rem;
  color: #ccc;
  padding: 0.7rem 0;
  text-transform: none;
}

.footer .box-container .box p i {
  padding-right: 1rem;
  color: #ffae00;
}

.footer .box-container .box a {
  font-size: 1rem;
  color: rgb(238, 238, 238);
  padding: 0.3rem 0;
  display: block;
}

.footer .box-container .box a:hover {
  color: #ffae00;
}

.footer .box-container .box .share {
  display: flex;
  flex-wrap: wrap;
  padding: 1rem 0;
}

.footer .box-container .box .share a {
  height: 4rem;
  width: 4rem;
  padding: 1rem;
  text-align: center;
  border-radius: 5rem;
  font-size: 1.7rem;
  margin-right: 1rem;
  transition: 0.2s;
  background: rgb(230, 230, 230);
  color: #02094b;
  border: none;
}

.footer .box-container .box .share a:hover {
  background: transparent;
  transform: scale(0.98);
  border: 0.1rem solid rgb(180, 178, 178);
  color: #ffae00;
}

.footer .credit {
  padding: 1rem 0;
  text-align: center;
  font-size: 1rem;
  /* font-family: "Nunito", sans-serif; */

  color: #fff;
  border-top: 0.1rem solid #fff3;
}

.footer .credit a {
  color: #ffae00;
}

.footer .fa {
  color: #e90606;
  margin: 0 0.3rem;
  font-size: 1.5rem;
  animation: pound 0.35s infinite alternate;
}

@-webkit-keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@keyframes pound {
  to {
    transform: scale(1.1);
  }
}

@media (max-width: 450px) {
  .footer .box-container .box {
    margin: 1.5rem;
  }

  .footer .box-container .box p {
    padding: 0.7rem;
  }

  .footer .box-container .box .share a {
    padding: 1.2rem;
  }
}


/* common media queries starts*/
@media (max-width: 450px) {
  html {
    font-size: 55%;
  }

  body {
    padding-right: 0;
  }

  section {
    padding: 2rem;
  }
}