* {
  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: 100px 0 32px 0;
text-align: center;
}
.about-hero-content h1 {
font-size: 2.8rem;
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: 0px;
}
.about-split {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  padding: 64px 6% 38px 6%; /* changed from vw to % */
}
.about-split-left {
  flex: 1.2;
  min-width: 300px;
  max-width: 510px;
  text-align: left;
}
.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;
justify-content: center;
padding-top: 30px;
}
.about-images-grid img {
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 3px 13px rgba(64,84,178,0.05);
}
.about-images-grid img:nth-child(1) {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 300px;
  height: 230px;
}
@media (max-width: 1024px) {
  .about-hero{
    padding: 10px;
  }
  .about-split { 
    flex-direction: column; 
    gap: 32px; 
    padding: 44px 0 18px 0;
  }
  .about-split-left, .about-split-right { 
    max-width: 100%; 
    width: 97%;
  }
  .about-images-grid img { 
    width: 100%; /* replaced vw with % */
    height: 90px;
  }
  .about-images-grid img:nth-child(3){ 
    width: 100%;
  }
}
.img-grid {
background: #f7fafd;
display: flex;
justify-content: space-between;
gap: 30px;
padding: 20px 40px;
}
.img-card {
flex: 1;
border-radius: 10px;
overflow: hidden;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.img-card img {
width: 100%;
height: auto;
display: block;
}
@media (max-width: 768px) {
  .img-grid {
    display: grid;
  }
  .img-card {
      flex: 100%;
  }
}

.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;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}