*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #f9f9f9;
    position: relative;
    overflow-x: hidden;
    transition: all 0.3s ease;
}

body.menu-open {
    overflow: hidden;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(16, 21, 44, 0.37);
    transition: all 0.3s ease;
    padding: 15px 30px;
    z-index: 9999;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(7, 7, 24, 0.466);
    padding: 6px 40px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.295);
    transform: translateY(-2px);
}

.logo-container {
    display: flex;
    align-items: center;
    margin-left: 20px;
    z-index: 10;
}

.logo-container img {
    height: 50px;
    width: 50px;
    background: #4285f4;
    border-radius: 8px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: white;
    margin-left: 10px;
}

.logo-text .title {
    font-size: 20px;
    font-weight: bold;
}
/*
.menu-toggle {
    display: flex;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    position: relative;
}*/

.navbar-links2 {
    display: flex;
    gap: 40px;
    padding: 20px 50px;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 18px;
}

.navbar-links2 a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    position: relative;
    padding: 5px 0;
}

.navbar-links2 a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: white;
    transition: width 0.3s ease;
}

.navbar-links2 a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-right: 20px;
}

.social-icons a {
    color: white;
    font-size: 18px;
    background-color: rgba(34, 34, 34, 0.24);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, transform 0.3s;
}

.social-icons a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.hero-container {
    position: relative;
    height: 100vh;
    width: 100%;
}

.carousel-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(1.1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(25, 30, 54, 0.6) 0%, 
        rgba(57, 102, 173, 0.4) 50%, 
        rgba(17, 76, 204, 0.6) 100%
    );
    z-index: 1;
}

.content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 80px;
    z-index: 10;
    color: white;
}

.main-heading {
    font-size: 8rem;
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: 30px;
    font-family: 'Jost', sans-serif;
    margin-bottom: 40px;
    text-shadow: 3px 3px 12px rgba(0,0,0,0.8);
    transition: all 0.6s ease;
}

.subheading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 9px;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 30px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
    transition: all 0.6s ease;
}

.descriptionhead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    font-family: 'Barlow', sans-serif;
    margin-bottom: 40px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    transition: all 0.6s ease;
}

.register-button {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285f4, #2563eb);
    border: none;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(66, 133, 244, 0.3);
    text-shadow: none;
}

.register-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(66, 133, 244, 0.4);
}

.arrow-icon {
    font-size: 1.2rem;
    transform: rotate(-45deg);
    margin-top: 5px;
}

.pagination-dots {
    display: flex;
    gap: 12px;
    z-index: 15;
    position: absolute;
    bottom: 60px;
    right: 60px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
}

.dot.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulsee 2s infinite;
}

@keyframes pulse {
  0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 1;
  }
  100% {
      transform: translate(-50%, -50%) scale(1.5);
      opacity: 0;
  }
}
.carousel-nav {
    position: absolute;
    bottom: 60px;
    left: 60px;
    display: flex;
    gap: 15px;
    align-items: center;
    z-index: 15;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

/* Text animation classes */
.text-fade-out {
    opacity: 0;
    transform: translateY(20px);
}

.text-fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1400px) {
    .content-overlay {
        padding: 0 60px;
    }
    
    .main-heading {
        font-size: 6rem;
        letter-spacing: 20px;
    }
    
    .subheading {
        font-size: 3rem;
        letter-spacing: 6px;
    }
    
    .register-button {
        width: 120px;
        height: 120px;
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .content-overlay {
        padding: 0 40px;
        align-items: center;
        text-align: center;
    }
    
    .main-heading {
        font-size: 5rem;
        letter-spacing: 15px;
    }
    
    .subheading {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .descriptionhead {
        text-align: center;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    body {
        overflow: auto;
    }
    
    .hero-container {
        height: 100vh;
    }
    
    .content-overlay {
        padding: 0 30px;
        justify-content: center;
    }
    
    .main-heading {
        font-size: 3.5rem;
        letter-spacing: 8px;
        margin-bottom: 30px;
    }
    
    .subheading {
        font-size: 1.8rem;
        letter-spacing: 3px;
        margin-bottom: 30px;
    }
    
    .descriptionhead {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .register-button {
        width: 100px;
        height: 100px;
        font-size: 0.8rem;
    }
    
    .carousel-nav {
        bottom: 30px;
        left: 30px;
    }
    
    .nav-arrow {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .pagination-dots {
        bottom: 30px;
        right: 30px;
    }
}

@media (max-width: 480px) {
    .content-overlay {
        padding: 0 20px;
    }
    
    .main-heading {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }
    
    .subheading {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }
    
    .descriptionhead {
        font-size: 14px;
    }
    
    .register-button {
        width: 80px;
        height: 80px;
        font-size: 0.7rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.main-heading, .subheading, .descriptionhead, .register-button {
    animation: fadeInUp 0.8s ease forwards;
}

.subheading {
    animation-delay: 0.2s;
}

.descriptionhead {
    animation-delay: 0.4s;
}

.register-button {
    animation-delay: 0.6s;
}



        /* About Section */
        *.about {
          padding: 100px 4.8%;
          display: flex;
          justify-content: space-between;
          align-items: center;
          gap: 60px;
      }

      *.about-left {
          flex: 1;
      }

      .about-left h2 {
          font-size: 56px;
          color:#A2A5B5;
          margin-bottom: 20px;
          font-weight: 300;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      *.about-left h2 .highlight {
          color: #2565E1;
      }

      *.about-right {
          flex: 1;
      }

      .about-right p {
          color: #666;
          line-height: 1.8;
          margin-bottom: 20px;
          font-size: 20px;
      }

      /* Responsive */

      @media (max-width: 1440px) {
        *.about {
          padding: 100px 8%;
      }

      }
      @media (max-width: 1024px) {
         
          *.about {
              flex-direction: column;
              text-align: center;
          }
          
          *.about-left, .about-right {
              max-width: 100%;
          }
      }

      @media (max-width: 768px) {

        *.about {
            padding: 60px 5%;
        }

        
        .about-left h2 {
          font-size: 28px;
      }

             
      .about-left p {
        font-size: 12px;
    }
    }

    @media (max-width: 480px) {


        .about-left h2 {
            font-size: 28px;
        }
    }


/* New carasol */

/* carasol */

*.carasol {
  display: flex;
  position: relative;
  align-items: flex-end;
  flex-direction: column;
  background-color: #e8eaf0;
  padding: 64px;
  
}

.slider {
  max-width: 100%;
  position: relative;
  top: -120px;
  right: 50px;
  
}

.values-1 {
  max-width: 100%;
}
.slider-title {
  font-size: 3rem;
  color:#6c6e77;
  margin-bottom: 20px;
  font-weight: 500;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.company-para {
  font-size: 1.2rem;
  color:#5e5f64;
  margin-bottom: 24px;
  margin-top: 32px;
  font-weight: 400;
  font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.imgwrapper {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}

.slideimage {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

*.splide {
  width: 80%;
  max-width: 800px;
  position: relative;
  /* height: 350px; */
}

.splide__slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

*.custom-placement-wrapper {
  position: relative;
  margin-top: 50px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 2px solid rgba(37, 100, 225, 0.4);
  height: 44px;
  
}
*.custom-arrows {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  gap: 10px;
  color: #212121;
}

.custom-arrows button {
  border: none;
  padding: 8px;
  cursor: pointer;
  background-color: transparent;
  width: 44px;
  height: 44px;
  color: #212121;
}

*.custom-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.custom-pagination button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
  padding: 12px;
  border-bottom: 2px solid #2564e100;
}

*.custom-pagination button.active {
  /* color: #2565E1; */
  font-weight: bold;
  border-bottom: 2px solid #2565E1;
}
*.company-para{max-width: 500px;}
*.values-1{
    margin-top: 32px;
}
*.slider-title{
    margin-bottom: 16px;
}

/* laptop View */
@media (max-width: 1440px){
  
  .slider {
    max-width: 48%;
    position: relative;
    top: -120px;
    right: 10px;
    
  }
  
}

/* Tablet View */
@media (max-width: 768px) {
  .slider {
    max-width: 90%;
  }

  *.slider-title {
    font-size: 1.3em;
  }

  *.company-para {
    font-size: 0.95em;
  }
}

/* Mobile View */
@media (max-width: 480px) {

  .carasol {
    display: flex;
    background-color: #e8eaf0;
    padding: 24px; 
  }
  .slider {
    max-width: 100%;
    align-items: center;
    margin-top: 64px;
  }

  *.slider-title {
    font-size: 1.1em;
  }

  *.company-para {
    font-size: 0.9em;
  }

  *.custom-placement-wrapper {
    flex-direction: column;
    margin-bottom: 24px;
    border-bottom: #007bff;

  }
  .custom-pagination {
    align-items: center;
    display: flex;
    justify-content: center;
    gap: 1px;
    position: absolute;
    top: 20%;
    left: 0;
    transform: translateY(-50%);
  }

  .custom-pagination button {
    background: none;
    border: none;
    font-size: 11px;
    cursor: pointer;
    color: #999;
    padding: 4px;
    border-bottom: 2px solid #2564e100;
  }
  
  *.custom-pagination button.active {
    /* color: #2565E1; */
    font-weight: bold;
    border-bottom: 8px solid #2565E1;
  }

  .custom-arrows {
    margin-top: 32px;
  }
}


h1:hover, p:hover {
  color: #4093ff;
}


*.company-para{max-width: 500px;}

*.values-1{
    margin-top: 32px;
}

*.slider-title{
  margin-bottom: 16px;
}

/* New carasol end */




*.intro {
  position: relative;
  width: 100%;
  height: 65vh; /* Full screen height */
  display: block;
  background: url("../image/image/newintroimg.png");
  display: flex;
  padding: 100px;
  background-size: cover;
  background-position: center;
  flex-direction: column;
}

*.heading1{
  font-size: 58px;
  font-family: calibri;
  font-weight: 400;
  text-align: left;
  font-variant: normal;
  width: 75%;
  margin-bottom: 24px;
  justify-content: space-between;
  color: rgb(255, 255, 255);
 
}
*.left-phara1{
  width: 70%;
  font-family: calibri;
  font-size: 20px;
  margin-top: 34px;
  color: rgb(214, 214, 211); 
  
}

@media (max-width: 1440px) {
  *.intro {
    position: relative;
    width: 100%;
    height: 70vh; /* Full screen height */
    display: block;
    background: url("../image/image/newintroimg.png");
    display: flex;
    padding: 100px;
    background-size: cover;
    background-position: center;
    flex-direction: column;
  }

  .heading1 h4 {
    font-size: 42px;
  }

  *.left-phara1 {
    width: 60%;
    font-family: calibri;
    font-size: 18px;
    margin-bottom: 24px;
    color: rgb(214, 214, 211); 
  }
}

@media (max-width: 992px) {
  *.intro {
    padding: 0 30px;
  }

  .heading1 h4 {
    font-size: 24px;
  }

  *.left-phara1 {
    font-size: 13px;

  }
}

@media (max-width: 576px) {
  *.intro {
    padding: 0 20px;
  }

  .heading1 h4 {
    font-size: 20px;
    margin-top: 32px;
  }

  *.left-phara1 {
    font-size: 12px;
    width: 90%;
    font-family: calibri;
    
    margin-top: 8px;
    color: rgb(214, 214, 211); 
    
  }

  *.intro {
    position: relative;
    width: 100%;
    height: 36vh; /* Full screen height */
    display: block;
    background: url("../image/image/newintroimg.png");
    display: flex;
    padding: 100px;
    background-size: cover;
    background-position: center;
    flex-direction: column;
  }
  
}

@media (max-width: 1440px){
  .heading2 h4 {
    font-size: 42px;
  }
  .left-phara2 p {
    font-size: 18px;
  }

}
*.heading2{
  font-size: 58px;
  font-family: calibri;
  font-weight: 400;
  text-align: left;
  font-variant: normal;
  width: 55%;
  margin-top: 84px;
  margin-left: 100px;
  margin-bottom: 32px;
  justify-content: space-between;
  color: #0F257A;
  
}
*.left-phara2{
  width: 60%;
  font-family: calibri;
  font-size: 22px;
  margin-left: 100px;
  margin-bottom: 32px;
  color:#7a7e8f;
}

/* member cards */ 

.divsection {
  display: flex;
  justify-content: center;
  gap: 24px;
  overflow-x: auto;
  padding: 10px;
}

.card {
  width: 300px;
  flex-shrink: 0;
  border-radius: 15px;
  overflow: hidden;
  background: #e9ebee;
  text-align: center;
  box-shadow: 0 6px 10px rgba(63, 63, 63, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 20px rgba(63, 63, 63, 0.3);
}

.card-image {
  position: relative;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.card:hover .card-image img {
  filter: grayscale(0%);
}

.card-content {
  padding: 20px;
  align-items: center;
  justify-content: center;
}

.name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 5px;
  color: #333;
}

.position {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.description1 {
  color: #A2A5B5;
  font-size: 15px;
  margin-bottom: 32px;
  padding: 10px;
  line-height: 1.4;
}

.social-iconscard {
  display: flex;
  gap: 8px;
  font-size: 16px;
  color: #333;
  justify-content: center;
  align-items: center;
}

.social-iconscard i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.social-iconscard i:hover {
  background: #007bff;
  transform: translateY(-2px);
}

.social-iconscard i img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease;
}

/* For local PNG images, we'll use opacity and background color change instead of filter */
.social-iconscard i:hover img {
  opacity: 0.9;
}

/* Alternative approach - if you want to use different colored versions */
.social-iconscard i.twitter:hover {
  background: #1DA1F2;
}

.social-iconscard i.facebook:hover {
  background: #4267B2;
}

.social-iconscard i.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-iconscard i.linkedin:hover {
  background: #0e76a8;
}

/* If you have white versions of icons, you can switch them on hover */
.social-iconscard i.twitter:hover img[src*="twitter"] {
  height: 8px;
  /* You would need white version: src="image/image/twitter-white.png" */
}

/* Horizontal scroll styling */
.divsection::-webkit-scrollbar {
  height: 8px;
}

.divsection::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.divsection::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

.divsection::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Small Screens - Mobiles */
@media (max-width: 576px) {
  body {
      padding: 20px 0px;
      overflow-x: hidden;
  }

  .divsection {
      justify-content: flex-start;
      gap: 16px;
      padding: 10px 15px;
      overflow-x: auto;
      overflow-y: hidden;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: thin;
  }

  .card {
      width: 250px;
      min-width: 250px;
      flex-shrink: 0;
  }

  .name {
      font-size: 18px;
  }

  .position {
      font-size: 14px;
  }

  .description1 {
      font-size: 14px;
      margin-bottom: 20px;
      padding: 8px;
  }

  .social-iconscard i {
      width: 35px;
      height: 35px;
  }

  .social-iconscard i img {
      width: 18px;
      height: 18px;
  }
}

/* Medium screens - Tablets */
@media (min-width: 577px) and (max-width: 992px) {
  .divsection {
      justify-content: flex-start;
      gap: 20px;
      overflow-x: auto;
      flex-wrap: nowrap;
  }

  .card {
      width: 280px;
      min-width: 280px;
      flex-shrink: 0;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .divsection {
      justify-content: center;
      flex-wrap: wrap;
      overflow-x: visible;
  }
}

/*end member section*/



/* phara section */

*.testomial-container { 
  display: flex; 
  width: 100%; 
  height: 60vh; 
  margin-bottom: 200px;
  margin-top: 100px;
} 

@media (max-width: 1440px) {
  *.testomial-container {
    display: flex; 
    width: 100%; 
    height: 60vh; 
    margin-bottom: 200px;
  }

  .para-section h4 {
    font-size: 1.8rem;
  }

  .para-sectionparagraph p {
    font-size: 1rem;
  }

  .review p {
    font-size: 0.95rem;
  }
}


.content {
  text-align: left;
  
}

.pagination {
  display: flex;
  gap: 15px;
  font-size: 14px;
  color: #e4e5ec;
  margin-bottom: 10px;
}



*.para-section { 
  font-size: 42px;
  color:#0F257A;
  font-family: calibri;
  font-weight: 400;
  text-align: left;
  width: 45%;
  margin-top: 84px;
  margin-left: 100px;
  margin-bottom: 32px;
  
   } 

*.para-sectionparagraph {
  font-size: 18px;
  font-family: calibri;
  font-weight: 500;
  text-align: left;
  margin-top: 32px;
  margin-left: 0px;
  margin-bottom: 32px;
  

}

*.image { 
  position: relative; 
  padding: 64px; 
  flex: 1; 
} 


*.image-01 {
  max-width: 620px; 
  position: absolute;
  width: 100%; 
  height: auto; 
  top: 55%; 
  left: 50%; 
  transform: translate(-50%, -50%);
} 

*.review {
  max-width: 450px; 
  font-size: 22px;
  color:#4058B0;
  font-family: calibri;
  background: white; 
  padding: 32px; 
  border-radius: 32px; 
  position:absolute; 
  top: 60%; 
  left: -40%; 
  transform: translateX(50%) 
}

@media (max-width: 1440px) {

  *.review {
    max-width: 350px; 
    font-size: 18px;
    color:#4058B0;
    font-family: calibri;
    background: white; 
    padding: 24px; 
    border-radius: 30px; 
    position:absolute; 
    top: 95%; 
    left: -50%; 
    transform: translateX(50%) 
  }

  *.image { 
    position: relative; 
    padding: 32px; 
    flex: 1; 
  } 

  .image-01{
      max-width: 380px; 
      position: absolute;
      width: 100%; 
      height: auto; 
      top: 90%; 
      left: 50%; 
      transform: translate(-50%, -50%);
    } 
  
}


/* Container */
*.container {
  padding: 50px 25px;
  background:  url("../image/image/services-bg.png");}

/* Heading */

*.description {
  color: #868686;
  font-size: 16px;
  margin-top: 16px;
  width: 65%;
}



/* Service card section */ 

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 30px auto;
}

/* Service Card 
*.service-card {
  background-color: #1e293b;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  
}*/

/* Service Card */
*.service-card {
  background-color: #1e293b;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  transform: translateY(0);
  border: 1px solid transparent;
  opacity: 0;
  animation: fadeInUp 0.6s ease-out forwards;
}


/* Staggered animation delay for cards */
*.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }
.service-card:nth-child(8) { animation-delay: 0.8s; }

/* Hover effect - scale up and glow */
*.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 20px rgba(39, 110, 241, 0.2);
  border-color: rgba(39, 110, 241, 0.3);
}
*.container {
  padding: 50px 25px;
  margin: 0 auto;
}
/* Service card background animation */
*.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(39, 110, 241, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

*.service-card:hover::before {
  opacity: 1;
}


/* Heading */
*.service-headline {
  margin-left: 50px;
  margin-bottom: 40px;
}

.headline {
  color: #ffffff;
  font-size: 36px;
  text-align: left;
  width: 100%;
  max-width: 600px;
  margin-bottom: 20px;
}
/* Services Grid */
*.description {
  color: #a5a5a5;
  font-size: 18px;
  width: 100%;
  max-width: 800px;
  font-family: 'Barlow', sans-serif;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 30px auto;
  perspective: 1000px;
}




/* Card entrance animation */
@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}






*.service-number {
  background-color: white;
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #276EF1;
  font-weight: bold;
  font-size: 16px;
  transition: all 0.3s ease-out;
  position: relative;
  z-index: 1;
}

*.service-card:hover .service-number {
  transform: scale(1.2);
  background-color: #276EF1;
  color: white;
}

*.icon {
  margin-top: 24px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-card:hover .icon {
  transform: translateY(-5px) scale(1.1);
}

.icon img {
  width: 40px;
  height: 40px;
}

        /* Ripple Effect */
        .ripple {
          animation: rippleEffect 2s ease-out infinite;
      }

      .ripple::before {
          content: '';
          position: absolute;
          top: 50%;
          left: 50%;
          width: 100%;
          height: 100%;
          background: rgba(255, 255, 255, 0.3);
          border-radius: 50%;
          transform: translate(-50%, -50%) scale(0);
          animation: rippleWave 2s ease-out infinite;
      }

      @keyframes rippleWave {
          0% {
              transform: translate(-50%, -50%) scale(0);
              opacity: 1;
          }
          100% {
              transform: translate(-50%, -50%) scale(2);
              opacity: 0;
          }
      }
      
.service-card h3 {
  font-size: 18px;
  margin: 16px 0;
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.service-card p {
  font-size: 14px;
  color: #bbb;
  position: relative;
  z-index: 1;
}

/* Demo controls */
.demo-controls {
  text-align: center;
  padding: 20px;
  background: #1e293b;
  border-radius: 10px;
  margin: 0 auto 30px;
  max-width: 500px;
}

button {
  background: #276EF1;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 0px;
  cursor: pointer;
  margin: 0 10px;
  font-size: 16px;
  transition: all 0.3s ease;
}

button:hover {
  background: #1c5cd4;
  transform: translateY(-2px);
}

.reset-animation {
  animation: none !important;
  opacity: 1 !important;
  transform: none !important;
}

/* Light bulb icon */
.bulb-icon {
  background-color: #1e34f7;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bulb-icon::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 26px;
  background-color: #1e34f7;
  border-radius: 8px 8px 4px 4px;
}

.bulb-icon::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 4px;
  background-color: #e6c700;
  bottom: 8px;
  border-radius: 2px;
}

*.service-number {
  background-color: white;
  color: rgb(209, 209, 209);
  font-weight: bold;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: #276EF1;
  font-weight: bold;
  font-size: 16px;
}

*.icon {
  font-size: 32px;
  color: #276EF1;
  margin-top: 24px;
  
}

.service-card h3 {
  font-size: 18px;
  margin: 16px 0;
  color: #ffffff;
}

.service-card p {
  font-size: 14px;
  color: #bbb;
}
*.service-headline{
  margin-left: 100px;
}
.headline {
  color: #ffffff;
  font-family: calibri;
  font-size: 42px;
  text-align: left;
  width: 45%;
}

*.heading {
  font-size: 26px;
  font-weight: lighter;
  font-family: calibri;
  color: #0F257A;
  padding-top: 32px;
  padding-left: 100px;

}

*.address{
  font-size: 18px;
  font-weight: lighter;
  font-family: calibri;
  color: #474747;
  padding-top: 32px;
  padding-left: 0px;

  
}
*.address-section{
  display: flex;
}


        /* Location content */
        *.location-content {
          display: grid;
          grid-template-columns: 1fr 1.5fr;
          gap: 1rem;
          align-items: center;
          padding: 6rem 5rem;
      }

      /* Info card */
      *.info-card {
          background: #ffffff;
          border-radius: 16px;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.03);
          padding: 2.5rem;
          transform: translateY(0);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
      }

      *.info-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 0 1px 5px rgba(0, 0, 0, 0.05);
      }

      *.card-headline {
          font-size: 1.5rem;
          font-weight: 600;
          margin-bottom: 2rem;
          color: #0f172a;
          position: relative;
          padding-bottom: 1rem;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      *.card-headline::after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          width: 50px;
          height: 3px;
          background: linear-gradient(90deg, #356cc4, #2023dd);
          border-radius: 3px;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      /* Info items */
      *.info-items {
          display: grid;
          gap: 1.5rem;
      }

      *.info-item {
          display: flex;
          align-items: flex-start;
      }

      *.info-icon2 {
          background: rgba(59, 130, 246, 0.1);
          width: 40px;
          height: 40px;
          border-radius: 10px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 1rem;
          color: #3b82f6;
          flex-shrink: 0;
      }

      *.info-content h3 {
          font-size: 1.1rem;
          font-weight: 600;
          margin-bottom: 0.25rem;
          color: #0f172a;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      *.info-content p {
          color: #64748b;
          font-size: 0.95rem;
          line-height: 1.5;
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      /* CTA button */
      *.cta-container {
          margin-top: 2rem;
      }

      *.cta-btn {
          display: inline-flex;
          align-items: center;
          background: linear-gradient(90deg, #356cc4, #2023dd);
          color: white;
          padding: 0.80rem 3rem;
          border-radius: 32px;
          font-size: 1rem;
          font-weight: 600;
          text-decoration: none;
          transition: all 0.3s ease;
          box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
          font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
      }

      *.cta-btn:hover {
          transform: translateY(-2px);
          box-shadow: 0 6px 16px rgba(59, 130, 246, 0.4);
      }

      .cta-btn svg {
          margin-left: 0.5rem;
      }

      /* Social media */
      *.social-links {
          display: flex;
          gap: 0.75rem;
          margin-top: 2rem;
      }

      *.social-link {
          width: 36px;
          height: 36px;
          border-radius: 30px;
          background-color: #f1f5f9;
          display: flex;
          align-items: center;
          justify-content: center;
          color: #64748b;
          transition: all 0.3s ease;
      }

      *.social-link:hover {
          background-color: #3b82f6;
          color: white;
          transform: translateY(-3px);
      }

      /* Map container */
      *.map-container {
          position: relative;
          height: 500px;
          border-radius: 16px;
          overflow: hidden;
          box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.05);
      }

      .map-container iframe {
          width: 100%;
          height: 100%;
          border: none;
      }

      /* Floating info card */
      *.floating-card {
          position: absolute;
          bottom: 20px;
          left: 20px;
          background: rgba(255, 255, 255, 0.95);
          backdrop-filter: blur(10px);
          padding: 1.25rem;
          border-radius: 12px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
          width: calc(100% - 40px);
          max-width: 320px;
      }

      .floating-card h3 {
          font-size: 1.125rem;
          font-weight: 600;
          margin-bottom: 0.5rem;
          color: #0f172a;
      }

      .floating-card p {
          font-size: 0.875rem;
          color: #64748b;
          margin-bottom: 0.75rem;
      }

      *.directions-link {
          display: inline-flex;
          align-items: center;
          color: #3b82f6;
          font-size: 0.875rem;
          font-weight: 500;
          text-decoration: none;
      }

      .directions-link svg {
          width: 16px;
          height: 16px;
          margin-left: 0.25rem;
      }

      /* Media queries */
      @media (max-width: 992px) {
          *.location-content {
              grid-template-columns: 1fr;
          }

          *.map-container {
              height: 400px;
              order: -1;
              margin-bottom: 2rem;
          }

          .section-title {
              font-size: 2rem;
          }
      }

      @media (max-width: 576px) {
          .location-section {
              padding: 4rem 1rem;
          }

          *.info-card {
              padding: 1.5rem;
          }

          *.map-container {
              height: 300px;
          }

          *.floating-card {
              bottom: 10px;
              left: 10px;
              width: calc(100% - 20px);
              padding: 1rem;
          }

          .section-title {
              font-size: 1.75rem;
          }
      }


/*
.slider {
  max-width: 55%;
  position: relative;
  top: -120px;
  
}*/


.imgwrapper {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
}
.slideimage {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}

.custom-arrows button {
  border: none;
  padding: 10px;
  cursor: pointer;
  background-color: transparent;
  width: 44px;
  height: 44px;
  color: #212121;
}

.custom-pagination button {
  background: none;
  border: none;
  font-size: 16px;
  cursor: pointer;
  color: #999;
  padding: 12px;
  border-bottom: 2px solid #2564e100;
}
*.custom-pagination button.active {
  /* color: #2565E1; */
  font-weight: bold;
  border-bottom: 2px solid #2565E1;
}


h1, p {
  cursor: none;
}

.cursor {
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #170252;
  border-radius: 50%;
  pointer-events: none;
  transition: all 0.2s ease-out;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.cursor-hover {
  width: 35px;
  height: 35px;
  background-color: #4093ff; /* Color on hover */
}

h1:hover, p:hover {
  color: #4093ff;
}


*.intro2 {
  position: relative;
  width: 100%;
  display: block;
  background: url("../image/image/newintroimg.png");
  display: flex;
  padding: 50px;
  background-size: cover;
  background-position: center;
  flex-direction: column;
}



*.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 30px;
}

*.footer-col h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
  color: #ffffff;
}

*.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: #fff;
}

*.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

*.footer-logo img {
  height: 50px;
  margin-right: 15px;
}

*.footer-logo-text .title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

*.footer-desc {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
  font-size: 14px;
}

*.footer-social h4 {
  margin-bottom: 15px;
  color: #dbdee0;
}

*.social-icons {
  display: flex;
  gap: 8px;
  
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.social-icons img {
  width: 20px;
  height: 20px;
}

*.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
}

*.contact-icon {
  margin-right: 15px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
}

*.contact-icon img {
  width: 20px;
  height: 20px;
}

*.contact-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-size: 14px;
}

*.footer-links ul {
  list-style: none;
  padding: 0;
}

*.footer-links li {
  margin-bottom: 12px;
}

*.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
  display: flex;
  align-items: center;
}

*.footer-links a:hover {
  color: #fff;
  padding-left: 5px;
}

*.footer-links a::before {
  content: '→';
  margin-right: 8px;
  transition: all 0.3s ease;
}

*.footer-links a:hover::before {
  margin-right: 12px;
}

*.newsletter-form {
  display: flex;
  margin-top: 15px;
}

*.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 4px 0 0 4px;
  font-size: 14px;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.newsletter-form input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter-form button {
  padding: 0 20px;
  background: #314faf;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background: #314faf;
}


*.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

*.copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 12px;
  transition: all 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #fff;
}

/* Responsive styles */
@media (max-width: 768px) {
  .footer {
    padding: 50px 0 20px;
  }
  
  *.footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  *.footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  *.footer-bottom-links {
    justify-content: center;
  }
}

*.footer-col .footer-contact h4 {
  margin-bottom: 15px;
  color: #dbdee0;
}

:root {
  --primary: #3a86ff;
  --secondary: #8338ec;
  --dark: #212121;
  --light: #f8f9fa;
  --gray: #6c757d;
  --footer-bg: #0f172a;
}





/* media query */


/* Smartphones (up to 576px) */
@media (max-width: 576px) {
  .hero-content {
    padding: 0 20px;
    text-align: center;
    transform: translateY(-30%);
  }

  .hero-content h2 {
    font-size: 32px;
  }

  .hero-content h4 {
    font-size: 18px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
  }

  .navbar-links {
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
    margin-left: 0;
  }

  .logo-container {
    flex-direction: column;
    align-items: flex-start;
  }

  *.social-icons {
    display: none;

  }
}


/* Tablets (between 577px and 768px) */
/* Show hamburger toggle on mobile */
/* Default hamburger menu hidden */


/* Mobile styles */
@media (max-width: 768px) {
  /* Show hamburger toggle */
  .menu-toggle {
    display: block;
  }

  .logo-text {
    display: none;
  }

  /* Navbar layout stack */
  .navbar {
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .logo-container {
    display: flex;
    align-items: center;
  }

  .navbar-links {
    display: none; /* Keep hidden by default */
    width: 100%; /* Make it full width */
    left: 0; /* Position from the left edge */
    top: 80px; /* Adjust if needed */
    right: 0; /* Remove right for full width */
    background-color: rgba(0, 0, 0, 0.9);
    padding: 20px;
  
}

  *.navbar-links a {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .navbar-links.active {
    display: flex;
  }

  .allcon {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-top: 10px;
    justify-content: center;
    width: 100%;
  }
}



/* Small desktops and laptops (between 769px and 1024px) */
@media (max-width: 1024px) {
  .navbar-links {
    gap: 20px;
    flex-direction: column;
    background: black;
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    text-align: center;
  }

  .hero-content {
    padding: 0 80px;
  }

  .hero-content h2 {
    font-size: 48px;
  }

  .hero-content h4 {
    font-size: 24px;
  }
}

@media (max-width: 600px) {
  .hero-content h4 {
    font-size: 1.2rem;
  }

  .hero-content h2 {
    font-size: 1.8rem;
  }

  .hero-buttons a {
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 30px;
  }
}

/* Tablet view (601px to 1024px) */
@media (min-width: 601px) and (max-width: 1024px) {
  .hero-content h4 {
    font-size: 1.4rem;
  }

  .hero-content h2 {
    font-size: 2.2rem;
  }

  .hero-buttons a {
    padding: 11px 22px;
    font-size: 1.1rem;
    border-radius: 30px;
  }
}

/* Desktop view (1025px and above) */
@media (min-width: 1025px) {
  .hero-content h4 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 2.5rem;
  }

  .hero-buttons a {
    padding: 14px 64px;
    font-size: 1.2rem;
    border-radius: 30;
  }
}


@media (max-width: 1024px) {
  .seo-section {
    gap: 30px;
    padding: 50px 30px;
   
  }

  .left-content h1 {
    font-size: 2rem;
  }

  .left-content h2 {
    font-size: 1.3rem;
  }

  .right-content p {
    font-size: 0.95rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .seo-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
  }

  .left-content,
  .right-content {
    width: 100%;
  }

  .left-content h1 {
    font-size: 1.8rem;
  }

  .left-content h2 {
    font-size: 1.2rem;
  }

  .right-content p {
    font-size: 0.95rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .left-content h1 {
    font-size: 1.6rem;
  }

  .left-content h2 {
    font-size: 1rem;
  }

  .right-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .content-wrapper {
      flex-direction: column;
      text-align: center;
  }
  .image-container {
      padding-right: 0;
      margin-bottom: 15px;
  }
}

@media (max-width: 992px) {
  *.intro {
    padding: 0 30px;
  }

  .heading1 h4 {
    font-size: 24px;
  }


}

@media (max-width: 576px) {
  *.intro {
    padding: 0 20px;
  }

  .heading1 h4 {
    font-size: 20px;
  }


}


@media (max-width: 992px) {
  *.card {
    width: 45%;
  }
}

/* Small Screens - Mobiles */
@media (max-width: 576px) {

  *.card {
    width: 100%;
    max-width: 340px;
  }
}


@media (max-width: 1024px) {
  *.testomial-container {
    gap: 20px;
    padding: 50px 40px;
  }

  .para-section h4 {
    font-size: 1.8rem;
  }

  .para-sectionparagraph p {
    font-size: 1rem;
  }

  .review p {
    font-size: 0.95rem;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  *.testomial-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
  }

  *.para-section,
  .para-sectionparagraph,
  
  *.image {
    width: 100%;
   
  }

  .para-section h4 {
    font-size: 1.6rem;
  }

  .para-sectionparagraph p,
  .review p {
    font-size: 0.95rem;
  }
}

/* Mobile (≤480px) */
@media (max-width: 480px) {
  .para-section h4 {
    font-size: 1.2rem;
  }

  .para-sectionparagraph p,
  .review p {
    font-size: 0.9rem;
    line-height: 1.6;
   
  }

  *.testomial-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-right: 70px;
   
  }
}


@media (max-width: 1024px) {

  *.container {
    gap: 50px;
    padding: 50px 30px;
  }



  *.service-headline {
    padding: 50px 30px;
    text-align: center;
  }

  .service-headline .headline {
    font-size: 2rem;
  }

  *.service-headline .description {
    font-size: 1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 30px;
  }

  *.service-card {
    padding: 20px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.95rem;
  }
}

/* Mobile styles */
@media (max-width: 768px) {

  *.container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
    
  }

  *.service-headline {
    padding-top:170px;
    text-align: center;
    
  }

  .service-headline .headline {
    font-size: 1.8rem;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  *.service-headline .description {
    font-size: 0.95rem;
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 0 20px;
  }

  *.service-card {
    padding: 20px;
    text-align: center;
  }

  .service-card h3 {
    font-size: 1.1rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }
}

/* Extra small devices */
@media (max-width: 480px) {

  *.service-headline {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  *.service-headline .headline {
    font-size: 1.6rem;
  }

  *.service-headline .description {
    font-size: 0.9rem;
  }

  .service-card h3 {
    font-size: 1rem;
  }

  .service-card p {
    font-size: 0.85rem;
  }
}


@media (max-width: 1024px) {
  .heading2 h4 {
    font-size: 1.8rem;
  }

  .left-phara2 p {
    font-size: 1rem;
    padding: 0 30px;
  }
}

/* Tablets (≤768px) */
@media (max-width: 768px) {
  .heading2 h4 {
    font-size: 1.6rem;
    padding: 0 20px;
  }

  .left-phara2 p {
    font-size: 0.95rem;
    padding: 0 20px;
  }
}

/* Mobile Devices (≤480px) */
@media (max-width: 480px) {
  .heading2 h4 {
    font-size: 1.4rem;
  }

  .left-phara2 p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  *.address-section {
    gap: 30px;
    padding: 30px 40px;
  }

  *.heading {
    font-size: 1.6rem;
  }

  .contact-list li {
    font-size: 0.95rem;
  }
}

/* Tablets & Small Devices */
@media (max-width: 768px) {
  *.address-section {
    flex-direction: column;
    align-items: left;
    text-align: left;
    padding: 30px 20px;
  }

  *.heading {
    font-size: 1.4rem;
  }


  *.address {
    max-width: 90%;
  }

  .contact-list li {
    font-size: 0.95rem;
  }
}

/* Mobile Devices */
@media (max-width: 480px) {
  *.heading {
    font-size: 1.3rem;
  }

  .contact-list li {
    font-size: 0.9rem;
  }
}



/* Tablet View */
@media (max-width: 768px) {

  *.slider-title {
    font-size: 1.3em;
  }
}

/* Mobile View */
@media (max-width: 480px) {


}


h1:hover, p:hover {
  color: #4093ff;
}


/* Hamburger menu (hidden by default) */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */


/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: linear-gradient(to bottom, rgba(32, 40, 146, 0.795), rgba(34, 70, 148, 0.281), rgba(37, 99, 214, 0.103));
    position: absolute;
    top: 70px;
    right: 0;
    width: 100%;
    padding: 20px;
    text-align: right;
  }

  /*.nav-links.active {
    display: flex;
  }
*/
  .menu-toggle {
    display: block;
  }
}

/* Tablet & Medium Screens */
@media (max-width: 1024px) {
  
  *.image {
    gap: 20px;
    padding: 30px;
  }

  .image-01 {
    max-width: 250px;
  }

  .review p {
    font-size: 0.95rem;
  }
}

/* Small Devices (Tablets & Mobiles) */
@media (max-width: 768px) {
  *.image {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }

  .image-01 {
    max-width: 80%;
  }

  *.review {
    max-width: 100%;
  }

  .review p {
    font-size: 0.95rem;
    padding: 0 10px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .image-01 {
    max-width: 100%;
  }

  .review p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .map {
    padding: 40px 30px;
    text-align: center;
    
  }

  .map iframe {
    max-width: 100%;
    height: auto;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .map {
    padding: 30px 20px;
  }

  .map iframe {
    width: 100%;
    height: auto;
  }
}

/* Extra small devices */
@media (max-width: 480px) {
  .map {
    padding: 20px 10px;
  }

  .map iframe {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 1024px) {
  .footer {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-section {
    
    margin-bottom: 30px;
  }
}

@media (max-width: 480px) {
 
  .footer {
    padding: 30px;
  }

  .footer-section {
    margin-bottom: 25px;
  }

  .footer h3 {
    font-size: 1rem;
  }

  .footer li,
  .footer a,
  .company-description {
    font-size: 0.9rem;
  }
}


/* Adjustments for tablets (medium screens) */
@media (max-width: 992px) {
  *.location-content {
    flex-direction: column;
    padding: 1.5rem;
  }

  *.info-card {
    padding: 1.5rem;
  }
}

/* Adjustments for small screens (phones) */
@media (max-width: 576px) {
  *.location-content {
    padding: 1rem;
  }

  *.info-card {
    padding: 1rem;
  }

  *.info-item {
    flex-direction: column;
    align-items: flex-start;
  }

  *.info-icon2 {
    margin-bottom: 0.5rem;
  }

  *.cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  *.social-links {
    justify-content: flex-start;
    gap: 0.75rem;
  }
}



.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: white;
  margin: 3px 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 3px;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.mobile-social {
  display: none;
}

.hero-content {
  text-align: center;
  padding: 100px 20px;
  color: white;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.5s;
}

.hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease forwards 0.8s;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(30px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .navbar {
      padding: 15px 20px;
  }

  .logo-text {
      display: none;
  }

  .menu-toggle {
      display: flex;
  }

  .navbar-links2 {
      position: fixed;
      top: 0;
      right: -100%;
      width: 80%;
      max-width: 300px;
      height: 100vh;
      background: linear-gradient(
          135deg,
          rgba(32, 40, 146, 0.95) 0%,
          rgba(34, 70, 148, 0.9) 50%,
          rgba(37, 99, 214, 0.85) 100%
      );
      backdrop-filter: blur(20px);
      border-left: 1px solid rgba(255, 255, 255, 0.2);
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 40px;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 999;
  }

  .navbar-links2.active {
      right: 0;
  }

  .navbar-links2 a {
      font-size: 20px;
      font-weight: 400;
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: none;
      width: auto;
      text-align: center;
      transform: translateX(50px);
      opacity: 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      color: rgba(255, 255, 255, 0.9);
  }

  .navbar-links2.active a {
      transform: translateX(0);
      opacity: 1;
  }

  .navbar-links2.active a:nth-child(1) { transition-delay: 0.1s; }
  .navbar-links2.active a:nth-child(2) { transition-delay: 0.2s; }
  .navbar-links2.active a:nth-child(3) { transition-delay: 0.3s; }
  .navbar-links2.active a:nth-child(4) { transition-delay: 0.4s; }

  .navbar-links2 a:hover {
      background: transparent;
      transform: translateX(0);
      color: white;
      text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }

  *.social-icons {
      display: none;
  }

  .mobile-social {
      display: flex;
      gap: 20px;
      margin-top: 30px;
  }

  .mobile-social a {
      width: 50px;
      height: 50px;
      font-size: 20px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.3);
  }

  .hero-content h1 {
      font-size: 2rem;
  }

  .hero-content p {
      font-size: 1rem;
  }
}

/* Overlay for mobile menu */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 998;
}

*.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 480px) {
  .navbar-links2 {
      width: 90%;
  }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

