@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #222;
  background: #fff;
}

.section-inner {
  max-width: 2500px;
  margin: 0 auto;
  width: 100%;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.75rem 1.5rem;
  padding: 0.75rem 1.5rem;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  position: fixed;
  top: 0.75rem;
  z-index: 100;
  width: calc(100% - 3.5rem);
}
.navbar .logo {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar .logo svg {
  flex-shrink: 0;
}
.navbar .logo img {
  height: 32px;
}
.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 0;
}
.navbar nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.3rem 1.2rem;
  white-space: nowrap;
  transition: color 0.2s;
}
.navbar nav ul li a:hover {
  color: #029BE4;
}

.tag {
  display: inline-block;
  background: #029BE4;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 999px;
  letter-spacing: 1px;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.hero {
  display: flex;
  justify-content: center;
  background: #fff;
  overflow: hidden;
}
.hero .section-inner {
  position: relative;
  width: 100%;
  max-width: 2500px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  align-items: center;
  gap: clamp(2rem, 4vw, 6rem);
}
.hero .hero-img {
  overflow: hidden;
  aspect-ratio: 5/5;
}
.hero .hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero .hero-text {
  position: relative;
  padding: 4rem 3rem 0 3rem;
  z-index: 2;
}
.hero .hero-text .hero-sub {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  color: #111;
  line-height: 1.05;
  letter-spacing: -1px;
  margin-bottom: 0.75rem;
}
.hero .hero-text .hero-next {
  font-size: clamp(0.85rem, 1.1vw, 1rem);
  font-weight: 900;
  color: #111;
  letter-spacing: 2px;
  line-height: 1.5;
  text-transform: uppercase;
}
.hero .hero-brand {
  position: relative;
  z-index: 3;
  font-size: clamp(7rem, 19.5vw, 18rem);
  font-weight: 900;
  color: #029BE4;
  letter-spacing: -6px;
  line-height: 0.85;
  white-space: nowrap;
  margin-left: -0.31rem;
}

.about {
  background: #fff;
  padding: 4rem 3rem;
}
.about .section-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.about .about-image {
  flex: 1;
}
.about .about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.about .about-text {
  flex: 1.2;
}
.about .about-text h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: #111;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -1px;
}
.about .about-text .about-lead {
  font-size: 1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.about .about-text p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.great-minds {
  background: #111;
  color: #fff;
  padding: 4rem 3rem;
}
.great-minds .section-inner {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.great-minds .gm-left {
  flex: 1.2;
}
.great-minds .gm-left h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}
.great-minds .gm-left .gm-lead {
  font-size: 1rem;
  font-weight: 700;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.great-minds .gm-left .gm-cards {
  display: flex;
  gap: 1rem;
}
.great-minds .gm-left .gm-card {
  flex: 1;
  background: #222;
  border-radius: 10px;
  padding: 1.25rem;
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  align-items: center;
}
.great-minds .gm-left .gm-card svg {
  flex-shrink: 0;
  height: 53px;
  width: 53px;
  stroke: #029BE4;
}
.great-minds .gm-left .gm-card p {
  font-size: 0.78rem;
  color: #aaa;
  line-height: 1.65;
  margin: 0;
}
.great-minds .gm-right {
  flex: 0.85;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.great-minds .gm-right img {
  flex: 1;
  width: 0;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}
.great-minds .gm-right .gm-img-1 {
  object-position: left center;
  aspect-ratio: 2/2;
}
.great-minds .gm-right .gm-img-2 {
  object-position: right center;
  margin-top: 2.5rem;
  height: calc(100% - 2.5rem);
}

.mission {
  padding: 4rem 3rem;
  background: #fff;
}
.mission .section-inner {
  display: flex;
  gap: 4rem;
  align-items: center;
}
.mission .mission-left {
  flex: 1.1;
}
.mission .mission-left .mission-big {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #111;
  line-height: 1.35;
  letter-spacing: -0.5px;
}
.mission .mission-right {
  flex: 1;
}
.mission .mission-right p {
  font-size: 0.82rem;
  color: #555;
  line-height: 1.75;
  margin-bottom: 1rem;
}
.mission .mission-right p:first-child {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
}

.strength {
  padding: 3rem 3rem 4rem;
  background: #fff;
}
.strength h2 {
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #111;
  letter-spacing: -1px;
  font-family: Georgia, "Times New Roman", serif;
}
.strength .strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 260px 260px 260px;
  gap: 1rem;
}
.strength .strength-card {
  padding: 1.75rem;
  border-radius: 20px;
  color: #fff;
  display: grid;
  align-content: center;
}
.strength .strength-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}
.strength .strength-card p {
  font-size: 0.78rem;
  line-height: 1.65;
  opacity: 0.92;
}
.strength .blue {
  background: #1a5fd4;
}
.strength .dark {
  background: #2e3d4f;
}
.strength .light-blue {
  background: #ddeaf8;
  border-radius: 20px;
}
.strength .light-blue h3 {
  color: #111;
  font-size: 1.15rem;
}
.strength .light-blue p {
  color: #333;
  opacity: 1;
}
.strength .gray {
  background: #3a4f5c;
}
.strength .gray h3 {
  color: #fff;
}
.strength .gray p {
  color: #ddd;
  opacity: 1;
}
.strength .bright-blue {
  background: #2979d8;
}
.strength .bright-blue h3 {
  color: #fff;
}
.strength .bright-blue p {
  color: #dde8ff;
  opacity: 1;
}
.strength .s-photo-1 {
  grid-column: 1;
  grid-row: 1/3;
}
.strength .s-blue-1 {
  grid-column: 2;
  grid-row: 1;
}
.strength .s-dark-1 {
  grid-column: 3;
  grid-row: 1;
}
.strength .s-light {
  grid-column: 2;
  grid-row: 2;
}
.strength .s-photo-2 {
  grid-column: 3;
  grid-row: 2/4;
}
.strength .s-blue-2 {
  grid-column: 1;
  grid-row: 3;
}
.strength .s-gray {
  grid-column: 2;
  grid-row: 3;
}
.strength .strength-img {
  border-radius: 20px;
  overflow: hidden;
}
.strength .strength-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services {
  background: #0d1b2e;
  color: #fff;
  padding: 4rem 3rem;
}
.services .services-inner {
  max-width: 2500px;
  margin: 0 auto;
}
.services .services-headline {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.25;
  margin-bottom: 2.5rem;
  letter-spacing: -0.5px;
}
.services .services-card {
  border-radius: 16px;
  overflow: hidden;
  background: #DCE7FF;
  border: 1px solid #DCE7FF;
  border-bottom: 0;
}
.services .service-row {
  margin-top: -1rem;
  background-color: #0E2C6B;
  border: 1px solid #fff;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  cursor: pointer;
  transition: background 0.2s;
}
.services .service-row:first-child {
  margin-top: 0;
  background-color: #DCE7FF;
}
.services .service-row:first-child .service-row-text h4 {
  color: #1E2227;
}
.services .service-row:first-child .service-toggle {
  color: #1a3a7a;
}
.services .service-row:first-child.open {
  background: #c8d8f5;
}
.services .service-row:first-child.open .service-toggle {
  color: #1a3a7a;
}
.services .service-row:first-child.open .service-row-text h4 {
  color: #111;
}
.services .service-row:last-child {
  border-radius: 17px;
}
.services .service-row.open {
  background: #dce8f7;
}
.services .service-row.open .service-toggle {
  transform: rotate(45deg);
  color: #1a3a7a;
}
.services .service-row.open .service-row-text h4 {
  color: #111;
}
.services .service-row.open .service-row-right img {
  opacity: 0;
  pointer-events: none;
  width: 0;
  margin: 0;
}
.services .service-row .service-row-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.services .service-row .service-row-text {
  padding: 1.5rem 2rem;
  flex: 1;
}
.services .service-row .service-row-text h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.5;
}
.services .service-row .service-row-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-right: 1.5rem;
}
.services .service-row .service-row-right img {
  width: 180px;
  height: 80px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 8px;
  margin: 0.75rem 0 2.75rem 0;
}
.services .service-row .service-toggle {
  font-size: 1.5rem;
  font-weight: 300;
  color: #5ba4f5;
  line-height: 1;
  transition: transform 0.3s;
  user-select: none;
  flex-shrink: 0;
}
.services .service-row .service-row-detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.services .service-row.open .service-row-detail {
  max-height: 400px;
}
.services .service-row .service-detail-content {
  display: flex;
  gap: 2rem;
  padding: 20px 2rem 1.75rem;
  border-top: 1px solid #c2d4ec;
}
.services .service-row .service-detail-content .service-detail-text {
  flex: 1;
}
.services .service-row .service-detail-content .service-detail-text p {
  font-size: 0.78rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 0.6rem;
}
.services .service-row .service-detail-content .service-detail-text strong {
  color: #111;
  font-size: 0.78rem;
}
.services .service-row .service-detail-content .service-detail-text ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.6rem;
}
.services .service-row .service-detail-content .service-detail-text ul li {
  font-size: 0.78rem;
  color: #333;
  padding: 0.15rem 0 0.15rem 1.2rem;
  position: relative;
}
.services .service-row .service-detail-content .service-detail-text ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1a3a7a;
}
.services .service-row .service-detail-content .service-detail-img {
  width: 38%;
  flex-shrink: 0;
}
.services .service-row .service-detail-content .service-detail-img img {
  width: 100%;
  max-height: 330px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.contact {
  background: #fff;
  overflow: hidden;
}
.contact .section-inner {
  display: flex;
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(22rem, 1fr) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(2rem, 4vw, 6rem);
}
.contact .contact-form-wrap {
  flex: 1;
  padding: 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.contact .contact-form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.contact .contact-form-wrap form input {
  padding: 0.85rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 0.85rem;
  background: #fff;
  outline: none;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  width: 100%;
}
.contact .contact-form-wrap form input:focus {
  border-color: #029BE4;
}
.contact .contact-form-wrap form .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a3a7a;
  color: #fff;
  padding: 0.9rem 1.25rem;
  border: none;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  width: 100%;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  transition: background 0.2s;
}
.contact .contact-form-wrap form .btn:hover {
  background: #122d60;
}
.contact .contact-form-wrap form .btn span {
  font-size: 1rem;
}
.contact .contact-form-wrap .contact-heading p {
  font-size: 1.72rem;
  font-weight: 800;
  color: #333;
  letter-spacing: 3px;
  margin-bottom: 0.1rem;
}
.contact .contact-form-wrap .contact-heading h2 {
  font-size: clamp(4rem, 17.5vw, 17.5rem);
  position: relative;
  z-index: 1;
  font-weight: 900;
  color: #d0d0d0;
  letter-spacing: -3px;
  line-height: 1;
  white-space: nowrap;
  margin-left: -0.05em;
}
.contact .contact-image {
  flex: 1;
}
.contact .contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  aspect-ratio: 2/2;
}

.footer {
  background: #f0f0f0;
  color: #333;
  padding: 2.5rem 3rem 1rem;
}
.footer .section-inner {
  display: flex;
  flex-direction: column;
}
.footer .footer-content {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.footer .footer-logo {
  flex: 1;
  min-width: 160px;
}
.footer .footer-logo .logo img {
  height: 28px;
  margin-bottom: 0.75rem;
}
.footer .footer-logo .footer-company {
  font-size: 0.72rem;
  font-weight: 700;
  color: #222;
  line-height: 1.6;
  letter-spacing: 0.3px;
  margin-bottom: 0.75rem;
}
.footer .footer-logo .footer-cin {
  display: inline-block;
  font-size: 0.68rem;
  color: #444;
  border: 1px solid #bbb;
  border-radius: 999px;
  padding: 0.25rem 0.85rem;
}
.footer .footer-address {
  flex: 1.2;
  min-width: 200px;
}
.footer .footer-address p {
  font-size: 0.78rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.footer .footer-contact {
  flex: 1.2;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer .footer-contact .footer-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #333;
  border: 1px solid #bbb;
  border-radius: 999px;
  padding: 0.35rem 1rem;
  width: fit-content;
}
.footer .footer-contact .footer-pill svg {
  flex-shrink: 0;
  color: #555;
}
.footer .footer-bottom {
  border-top: 1px solid #ddd;
  padding-top: 0.75rem;
  font-size: 0.72rem;
  color: #888;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #111;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1024px) {
  .hero .hero-brand {
    font-size: clamp(5rem, 14vw, 12rem);
  }
  .hero .hero-text {
    padding: 7rem 3rem 0 3rem;
  }
  .about, .great-minds, .mission {
    padding: 3rem 2rem;
    gap: 2.5rem;
  }
  .strength {
    padding: 3rem 2rem;
  }
  .strength .strength-grid {
    grid-template-rows: 220px 220px 220px;
  }
  .services {
    padding: 3rem 2rem;
  }
  .contact .contact-form-wrap {
    padding: 2.5rem 2rem;
  }
  .great-minds .gm-left .gm-cards {
    display: grid;
  }
}
@media (max-width: 768px) {
  .navbar {
    margin: 0.5rem;
    width: calc(100% - 1rem);
    padding: 0.75rem 1rem;
  }
  .navbar .nav-toggle {
    display: flex;
  }
  .navbar nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 0.5rem 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
  .navbar nav.open {
    display: block;
  }
  .navbar nav ul {
    flex-direction: column;
    gap: 0;
  }
  .navbar nav ul li a {
    display: block;
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .navbar nav ul li:last-child a {
    border-bottom: none;
  }
  .hero {
    height: auto;
  }
  .hero .section-inner {
    display: flex;
    flex-direction: column;
  }
  .hero .hero-img {
    position: relative;
    width: 100%;
    height: 55vw;
    min-height: 220px;
    display: none;
  }
  .hero .hero-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 6rem 0rem 0;
  }
  .hero .hero-text .hero-sub {
    font-size: clamp(2.2rem, 10vw, 3.5rem);
  }
  .hero .hero-text .hero-next {
    font-size: 0.8rem;
  }
  .hero .hero-brand {
    position: relative;
    bottom: auto;
    font-size: clamp(4.5rem, 18vw, 8rem);
    letter-spacing: -3px;
    padding: 0em;
    margin-top: auto;
    margin-left: 0;
  }
  .about {
    padding: 2.5rem 1.5rem;
  }
  .about .section-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .about .about-image {
    width: 100%;
    order: 2;
  }
  .about .about-text {
    order: 1;
  }
  .great-minds {
    padding: 2.5rem 1.5rem;
  }
  .great-minds .section-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .great-minds .gm-right {
    width: 100%;
    height: 240px;
  }
  .great-minds .gm-cards {
    flex-direction: column;
  }
  .mission {
    padding: 2.5rem 1.5rem;
  }
  .mission .section-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .strength {
    padding: 2.5rem 1.5rem;
  }
  .strength .strength-grid {
    grid-template-columns: auto;
    grid-template-rows: auto;
    gap: 1.75rem;
  }
  .strength .s-photo-1 {
    grid-column: auto;
    grid-row: auto;
  }
  .strength .s-blue-1 {
    grid-column: auto;
    grid-row: auto;
  }
  .strength .s-dark-1 {
    grid-column: auto;
    grid-row: auto;
  }
  .strength .s-light {
    grid-column: auto;
    grid-row: auto;
  }
  .strength .s-photo-2 {
    grid-column: auto;
    grid-row: auto;
  }
  .strength .s-blue-2 {
    grid-column: auto;
    grid-row: auto;
  }
  .strength .s-gray {
    grid-column: auto;
    grid-row: auto;
  }
  .services {
    padding: 2.5rem 1.5rem;
  }
  .services .services-headline {
    font-size: clamp(1.4rem, 5vw, 2rem);
  }
  .services .service-main {
    flex-direction: column;
  }
  .services .service-main .service-main-img {
    width: 100%;
    height: 200px;
  }
  .services .service-row-right img {
    width: 120px;
    height: 60px;
  }
  .services .service-detail-content {
    flex-direction: column;
  }
  .services .service-detail-content .service-detail-img {
    width: 100%;
  }
  .services .service-detail-content .service-detail-img img {
    height: 180px;
    display: none !important;
  }
  .contact .section-inner {
    flex-direction: column;
    min-height: auto;
  }
  .contact .contact-form-wrap {
    padding: 2.5rem 1.5rem;
  }
  .contact .contact-form-wrap .contact-heading h2 {
    font-size: clamp(3rem, 16vw, 5rem);
  }
  .contact .contact-image {
    height: 300px;
  }
  .contact .contact-image img {
    object-position: top center;
    aspect-ratio: 2/2;
  }
  .footer {
    padding: 2rem 1.5rem 1rem;
  }
  .footer .footer-content {
    gap: 1.5rem;
  }
}
@media (max-width: 480px) {
  .strength .strength-grid {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(7, 180px);
  }
  .strength .strength-grid .s-photo-1, .strength .strength-grid .s-blue-1, .strength .strength-grid .s-dark-1, .strength .strength-grid .s-light,
  .strength .strength-grid .s-photo-2, .strength .strength-grid .s-blue-2, .strength .strength-grid .s-gray {
    grid-column: 1;
    grid-row: auto;
  }
  .services .service-row-right img {
    display: none;
  }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    color: #fff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(1rem);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 9999;
    max-width: 320px;
}
.toast.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.toast.success { background-color: #1a7f4b; }
.toast.error   { background-color: #c0392b; }
