@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');



:root {
  --background-color: #ffffff;
  --default-color: #000000;
  --heading-color: #2d465e;
  --accent-color: #0092d8;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors  */
:root {
  --nav-color: #212529;
  --nav-hover-color: #0092d8;
  --nav-mobile-background-color: #ffffff;

}

body {
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  max-width: 1900px;
  margin: 0 auto;

  overflow-x: hidden !important;
  background-color: white;
}

/* header */
.header {
  --background-color: rgba(255, 255, 255, 0);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 10px 0px;
  transition: all 0.5s;
  z-index: 997;

}


.header .header-container {
  background: var(--surface-color);
  border-radius: 45px;
  padding: 0px 55px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-decoration: none;

}

.scrolled .header .header-container {
  background: color-mix(in srgb, var(--surface-color), transparent 5%);

}

.header .logo {
  line-height: 1;
  padding-left: 5px;
  margin: -17px;
}

.header .logo img {
  max-height: 140px;
  margin-right: 8px;

}

.navmenu a {
  text-decoration: none;
  background-color: #ffffff;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {

  text-decoration: none;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.navmenu .dropdown ul {
  background-color: white;
  padding: 0;

  margin: 0;
  list-style: none;
}

/* Optional: Style the dropdown items */
.navmenu .dropdown ul li a {
  color: black;
  padding: 16px 15px;
  text-decoration: none;
  display: block;
}

.navmenu .dropdown ul li {
  color: black;
  margin-top: -9px;
  text-decoration: none;
  display: block;
}

/* Optional: Add hover effect */
.navmenu .dropdown ul li a:hover {
  background-color: var(--accent-color);
}


@media (max-width: 1200px) {
  .header {
    padding-top: 10px;
  }

  .header .header-container {
    margin-left: 10px;
    margin-right: 10px;
    padding: 10px 5px 10px 15px;
  }

  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 10px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: 100%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    right: 100%;
    visibility: visible;
    width: 115%;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {

  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;

  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}


@media (max-width: 600px) {

  .header .header-container {
    padding: 10px 15px;
    /* Adjust padding */
  }

  .header .logo img {
    max-height: 70px;
    /* Further reduce logo size */
  }

  .navmenu a {
    padding: 10px 5px;
    /* More compact navigation items */
  }

  .header .btn-getstarted {
    font-size: 0.7rem;
    /* Smaller button text for mobile */
  }
}


/* hero  */
.about-heading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}


/* Mobile View */
@media (max-width: 768px) {
  .about-heading {
    font-size: 2rem;
    /* Reduce size for better fit */
    width: 90%;
    /* Make sure it doesn’t overflow */
    text-align: center;
    padding-top: 50px;
  }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
  .about-heading {
    font-size: 1.8rem;
    /* Further reduce size for small screens */
    width: 95%;
  }
}


/* about us short */
.about .about-meta {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 5rem;
  display: inline-block;
  font-family: "Manrope", serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

.about .about-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.about .about-description {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.about .feature-list-wrapper {
  margin-bottom: 2rem;
}

.about .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.about .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.about .feature-list li i {
  color: var(--accent-color);
  font-size: 1.25rem;
}

.about .profile .profile-image {
  width: 0px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.about .profile .profile-name {
  font-size: 1.125rem;
  margin: 0;
}

.about .profile .profile-position {
  color: var(--accent-color);
  margin: 0;
  font-size: 0.875rem;
}


.about .image-wrapper {
  position: relative;
}



.about .image-wrapper .small-image {
  position: absolute;
  top: 20%;
  left: -10%;
  width: 45%;
  border: 8px solid var(--surface-color);
}

.about .image-wrapper .experience-badge {
  position: absolute;
  bottom: 5%;
  right: 5%;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 1.5rem;
  border-radius: 0.5rem;
  text-align: center;
  min-width: 200px;
  animation: experience-float 3s ease-in-out infinite;
}

.about .image-wrapper .experience-badge h3 {
  color: var(--contrast-color);
  font-size: 2.5rem;
  margin: 0;
  line-height: 0.5;
}

.about .image-wrapper .experience-badge h3 span {
  font-size: 1rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.about .image-wrapper .experience-badge p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;

  }

  /* about us short */
  .about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    margin-top: 5rem;
    display: inline-block;
    font-family: "Manrope", serif;
    font-optical-sizing: auto;
    font-weight: 600;
    margin-left: -20px;
    font-style: normal;
  }

  .about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    margin-left: -20px;
    font-weight: 700;
  }

  .about .about-description {
    margin-bottom: 1rem;
    margin-left: -20px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
  }

  .about .feature-list-wrapper {
    margin-bottom: 2rem;  
      margin-left: -20px;
  }

  .about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .about .feature-list li {
    display: flex;
    align-items: center;
    margin-left: -20px;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
  }

  .about .feature-list li i {
    color: var(--accent-color);
    font-size: 1.25rem;
  }

  .about .profile .profile-image {
    width: 0px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }

  .about .profile .profile-name {
    font-size: 1.125rem;
    margin: 0;
  }

  .about .profile .profile-position {
    color: var(--accent-color);
    margin: 0;
    font-size: 0.875rem;
  }


}

@media (max-width: 992px) {
  .about .image-wrapper .images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .about .image-wrapper .main-image {
    margin-left: -20px;
  }
}



@media (max-width: 992px) {
  .about .image-wrapper .small-image {
    position: static;
    width: 100%;
    margin: 0 auto;
    border: 0;
    margin-left: -20px;
  }
}



@media (max-width: 992px) {
  .about .image-wrapper .experience-badge {
    position: static;
    width: fit-content;
    margin: 0 auto;
    margin-left: -4px;
  }
}




/* stats */

.stats-section {
  background: linear-gradient(90deg, rgb(49, 49, 187) 0%, var(--accent-color) 100%);
  color: white;
  padding: 60px 0;
  margin-top: 100px;
}

.stats {
  font-size: 2rem;
}

/* team and leadership */
.card {
  border: none;
  border-radius: 10px;
  /* Optional: for rounded corners */
}

.card-img-top {
  border-radius: 10px 10px 0 0;
  /* Optional: for rounded top corners */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-img-top:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}


/* client */
/* 
.testimonial-section {  
    padding: 60px 0;  
    text-align: center;   
    background-image: url(pics/w13.jpg);  
    background-size: cover;  
    background-position: center center;  
    background-repeat: no-repeat;   
    max-width: 100%;  
    height: 500px;  
    display: flex;       
    flex-direction: column;
    align-items: center; 
    padding-top: 200px;
    margin-bottom: 200px;
} 
.testimonial-section h1 {
    color: #fff ;
} 


.testimonial-card {  
    background: rgb(255, 255, 255);  
    border-radius: 10px;  
    padding: 20px;  
    margin: 15px;  
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);  
    backdrop-filter: blur(10px);  
    width: 400px;
    height: 180px; 
      
}  
.client-photo {  
    border-radius: 50%;  
    width: 80px;  
    height: 80px;  
    object-fit: cover;  
}  


 */






/* Default Image Styling */
.imageee {
  display: block;  /* Ensures it behaves properly */
  max-width: 100%; /* Makes it responsive */
  width: 100%; /* Ensures it scales properly */
  height: auto; /* Keeps aspect ratio */
  margin: 0 auto; /* Centers the image */
}

/* Large Screens (Desktop View) */
@media (min-width: 1200px) {
  .imageee {
    max-width: 1500px; /* Restricts max width on large screens */
  }
}

/* Medium Screens (Tablets & Small Laptops) */
@media (max-width: 1024px) {
  .imageee {
    max-width: 90%; /* Slightly smaller to fit container */
  }
}

/* Small Screens (Mobile View) */
@media (max-width: 768px) {
  .imageee {
    max-width: 100%; /* Uses full width */
    padding: 0 5%; /* Adds some space around */
  }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
  .imageee {
    max-width: 10%; /* Slightly reduced to avoid edge cutoff */
  }
}


