* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  color: black;
}

header {
  display: flex;
  background: linear-gradient(90deg, #fff 20%, #df295e,#4054b2 120%);
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}
.logo img {
  height: 7rem;
  margin-left: 100px;
}

/* Hamburger menu styles */
.menu-icon {
  display: none;
  cursor: pointer;
  flex-direction: column;
}

/* Navigation */
nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
  margin-right: 250px;
}
nav ul li a {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s ease;
}
nav ul li a:hover {
  color: #4054b2;
}

.menu-icon {
  display: none;
  font-size: 24px;
  color: black;
}

@media (max-width: 1024px) {
  .logo img {
    margin-left: 10px;
    height: 5rem;
  }
  nav {
    display: none;
    position: relative;
    z-index: 9999;
  }
  .menu-icon {
    display: block;
    padding: 0 5px;
    margin-right: 20px;
  }
  nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 0px;
    align-items: center;
    justify-content: center;
    background-color: rgba(80, 80, 80, 0.85);
    width: 50%;
    border-radius: 15px;
  }
  nav ul {
    flex-direction: column;
    margin: 20px 0;
    text-align: center;
    line-height: 8px;
  }
  nav ul li a {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.3s ease;
  }
}

.about-hero {
  background: #f7fafd;
  padding: 120px 0 32px 0;
  text-align: center;
}
.about-hero-content h1 {
  font-size: 2.2rem;
  font-weight: 700;
  background: linear-gradient(135deg,#df295e 40%, #4054b2 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 18px;
}
.about-hero-content .para {
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  margin-bottom: 50px;
}
.about-hero-content p {
  color: #23395d;
  font-size: 1.14rem;
  margin-bottom: 15px;
}

.about-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 64px 6% 38px 6%;
}

.about-split-left {
  flex: 1.2;
  min-width: 300px;
  max-width: 510px;
  text-align: left;
}
.about-split-left h1 {
  font-size: 2rem;
  color: #4054b2;
  font-weight: 700;
  margin-bottom: 18px;
}
.about-split-left p {
  font-size: 1.14rem;
  margin-bottom: 14px;
  color: #23395d;
  line-height: 1.7;
}

.about-split-right {
  flex: 1;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  justify-content: center;
}
.about-images-grid img {
  width: 170px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 13px rgba(64,84,178,0.08);
}
.about-images-grid img:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 250px;
  height: 160px;
}
.about-images-grid img:nth-child(2) {
  grid-column: 2/3;
  grid-row: 1/2;
  width: 220px;
  height: 160px;
}
.about-images-grid img:nth-child(3) {
  grid-column: 1/3;
  grid-row: 2/3;
  width: 350px;
  height: 180px;
  margin-left: 0;
}

@media (max-width:900px) {
  .about-split { 
    align-items: center;
    justify-content: center;
    flex-direction: column; 
    gap: 32px; 
    padding: 44px 0 18px 5px;
  }
  .about-split-left, .about-split-right { max-width: 100%; width: 97%;}
  .about-images-grid img { width: 90%; height: 110px;}
  .about-images-grid img:nth-child(3) { width: 98%; margin-left: 0;}
}

.vision-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 68px 5% 36px 5%;
  background: #f7fafd;
}
.vision-img-area {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
}
.vision-img-area img {
  width: 400px;
  max-width: 98%;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(110,110,178,0.11);
  object-fit: cover;
  background: #fff;
}
.vision-content-area {
  flex: 1.1;
  min-width: 350px;
  padding-left: 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.vision-content-area h2 {
  background: linear-gradient(135deg,#df295e 20%, #4054b2 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.1rem;
  font-weight: 700;
  margin-bottom: 17px;
}
.vision-content-area p {
  color: #23395d;
  font-size: 1.14rem;
  line-height: 1.7;
  margin-bottom: 7px;
}
@media (max-width:900px){
  .vision-split { 
    flex-direction: column; 
    gap: 32px; 
    padding: 38px 0 17px 0;
  }
  .vision-img-area {
    order: 2;
    min-width: 100%; 
    width: 100%; 
    justify-content: center; 
    padding-left: 0;
  }
  .vision-content-area {
    order: 1;
    min-width: 100%; 
    width: 100%; 
    text-align: center; 
    padding-left: 0;
  }
  .vision-img-area img { 
    width: 96%; 
  }
}

.different-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  padding: 68px 5% 36px 5%;
  background: #f7fafd;
}
.different-img-area {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: flex-end;
}
.different-img-area img {
  width: 350px;
  max-width: 98%;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(110,110,178,0.12);
  object-fit: cover;
  background: #f7fafd;
}

.different-content-area {
  flex: 1.1;
  min-width: 345px;
  padding-left: 14px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.different-content-area h2 {
  color: #df295e;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.different-content-area ul {
  padding: 0 0 0 20px;
  margin: 0;
  color: #4054b2;
  font-size: 1.09rem;
  line-height: 1.9;
  font-weight: 600;
}
.different-content-area li {
  margin-bottom: 7px;
  font-size: 1.02rem;
  position: relative;
}
@media (max-width:900px){
  .different-split { flex-direction: column; gap: 32px; padding: 38px 0 17px 0;}
  .different-img-area { order: 2; min-width: 100%; width: 100%; justify-content: center; padding-left: 0;}
  .different-content-area { order: 1; min-width: 100%; width: 100%; justify-content: center; padding-left: 0;}
  .different-img-area img { width: 92%; }
}

.contact-section {
  background: #f7fafd;
  padding: 50px 0;
  font-size: 1.09rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-left: 100px;
}
.contact-logo {
  height: 80px;
  margin-bottom: 15px;
}
.contact-details {
  color: #4054b2;
  line-height: 1.6;
}
.contact-details a { 
  color: #4054b2; 
  text-decoration: none; 
}

.contact-middle {
  text-align: center;
}
.contact-middle h3 {
  color: #df295e;
  font-size: 1.09rem;
  margin-bottom: 15px;
  margin-top: -90px;
}
.contact-middle ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.contact-middle li {
  margin-bottom: 10px;
}
.contact-middle a {
  color: #4054b2;
  text-decoration: none;
  font-weight: 600;
}
.contact-middle a:hover { text-decoration: underline; }

.contact-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  margin-top: 20px;
}
.contact-right .certified-logo {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.contact-right .certified-logo img {
  width: 80px;
  height: auto;
  border-radius: 8px;
}

.contact-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
}
.contact-social a img {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.contact-social a:hover img {
  transform: scale(1.2);
}

.whatsapp { filter: invert(27%) sepia(82%) saturate(1358%) hue-rotate(108deg) brightness(90%) contrast(90%);}
/* .facebook { filter: invert(34%) sepia(92%) saturate(2257%) hue-rotate(203deg) brightness(96%) contrast(101%); } */
.linkedin { filter: invert(38%) sepia(95%) saturate(2783%) hue-rotate(185deg) brightness(91%) contrast(104%); }
.instagram { filter: invert(27%) sepia(86%) saturate(3209%) hue-rotate(308deg) brightness(96%) contrast(101%); }
.youtube { filter: invert(22%) sepia(100%) saturate(3720%) hue-rotate(354deg) brightness(92%) contrast(110%); }

@media (max-width:1024px){
  .contact-details {
    text-align: center;
    padding: 0 5px;
  }
  .contact-grid { 
    grid-template-columns: 1fr;
    text-align: center;
    flex-direction: column; 
    align-items: center;
    justify-content: center;
    gap: 28px; 
  }
  .contact-grid img { 
    display: flex;
    margin: 0;
    max-width: 180px;
    height: auto;
  }
  .contact-left {
    align-items: center;
    justify-content: center;
    margin-left: -25px;
    text-align: center;
  }
  .contact-right {
    display: flex;
    flex-direction: column; 
    align-items: center; 
    text-align: center; 
  }
  .contact-middle {
    margin-top: 90px;
  }
  .contact-social {
    justify-content: center;
  }
  .whatsapp-btn img {
    height: 20px;
  }
}

footer {
  background-color: #222a54;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: white;
}
html, body {
  overflow-x: hidden;
  width: 100%;
}
* {
  max-width: 100%;
}