:root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --success-color: #27ae60;
            --warning-color: #f39c12;
            --light-bg: #f8f9fa;
            --dark-bg: #2c3e50;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .nav-bar {
    background: var(--bs-white);
    transition: 1s;
}

.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 15px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color:#3c76cd;
}

@media (max-width: 991px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 20px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        border: 1px solid #e84029;
        color: #e84029;
    }
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #e84029;
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 20px;
        background: var(--bs-light);
        transition: .5s;
        opacity: 1;
    }
}

.btn.btn-light {
    color:#006d3e;
    border: none;
}
.text-secondary {
    color: #0be1ff !important
}
a{
    text-decoration: none;
}

/* banner start */
/* Banner Carousel Styles */
.carousel {
  height: 90vh;     /* Adjusted height */
  min-height: 400px; /* Optional: also reduce min-height */
  position: relative;
  overflow: hidden;
}

.carousel-inner,
.carousel-item {
  height: 100%;
}

.slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  /* Removed transform and transition to disable zoom animation */
}

.slide-bg-1 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/banner-img/banner\ 3.jpg");
  background-size: cover;
  background-position: center top 25%; /* shift image down slightly */
}

.slide-bg-2 {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("img/banner-img/banner\ 4.jpg");
  background-size: cover;
  background-position: center top 25%; /* shift image down slightly */
}

.carousel-content {
  position: absolute;
  left: 10%;
  max-width: 50%;
  z-index: 10;
  padding-top: 130px;
  color: #fff;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.carousel-item.active .carousel-content {
  opacity: 1;
  transform: translateY(0);
}

.carousel-title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.carousel-item.active .carousel-title {
  opacity: 1;
  transform: translateY(0);
}

.carousel-text {
  font-size: 1.5rem;
  margin-bottom: 25px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.carousel-item.active .carousel-text {
  opacity: 1;
  transform: translateY(0);
}

.btn-orange {
  background-color: #fd7e14;
  border-color: #fd7e14;
  font-size: 1.2rem;
  padding: 10px 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s, background-color 0.3s;
}

.carousel-item.active .btn-orange {
  opacity: 1;
  transform: translateY(0);
}

.btn-orange:hover {
  background-color: #e67300;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.carousel-indicators {
  bottom: 30px;
}


.carousel-indicators [data-bs-target] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  margin-right: 8px;
  margin-left: 8px;
  position: relative;
}

.carousel-indicators .active {
  background-color: white;
  transform: scale(1.2);
}

.carousel-indicators .active:after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 1;
  }

  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.carousel-control-prev,
.carousel-control-next {
  width: auto;
  opacity: 0.7;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  background-color: rgba(0, 0, 0, 0.6);
  transform: scale(1.1);
  opacity: 1;
}

.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background-color: rgba(255, 255, 255, 0.3);
  width: 100%;
  z-index: 10;
}

.progress-bar {
  height: 100%;
  width: 0;
  background-color: #fd7e14;
  transition: width 0.1s linear;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel {
    height: 70vh;
    min-height: 400px;
  }

  .carousel-content {
    left: 5%;
    max-width: 90%;
    padding-top: 150px;
  }

  .carousel-title {
    font-size: 2.5rem;
  }

  .carousel-text {
    font-size: 1.2rem;
  }

  .btn-orange {
    font-size: 1rem;
    padding: 8px 20px;
  }
}

@media (max-width: 576px) {
  .carousel-title {
    font-size: 2rem;
  }

  .carousel-text {
    font-size: 1rem;
  }

  .carousel-content {
    padding-top: 120px;
  }
}
/* banner end */

        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 4px solid var(--secondary-color);
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 2rem;
        }

        /* .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary-color);
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--secondary-color);
            margin: 15px auto;
            border-radius: 2px;
        } */

        .step-container {
            background: var(--light-bg);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            position: relative;
            overflow: hidden;
        }

        .step-number {
            position: absolute;
            top: -20px;
            right: 20px;
            background: var(--secondary-color);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
        }

        /* .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        } */

        /* .benefit-item {
            text-align: center;
            padding: 2rem 1.5rem;
            background: white;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border-top: 4px solid var(--success-color);
        }

        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
        } */

        /* .benefit-icon {
            font-size: 3rem;
            color: var(--success-color);
            margin-bottom: 1rem;
        } */

        .target-audience {
            background: linear-gradient(135deg, var(--success-color) 0%, #229954 100%);
            color: white;
            padding: 80px 0;
        }

        .audience-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 2rem;
            margin-bottom: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            background: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .cta-section {
            background: var(--primary-color);
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .footer {
            background: #1a252f;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }

        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            opacity: 0.1;
        }

        .shape1 {
            top: 20%;
            left: 10%;
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
        }

        .shape2 {
            top: 60%;
            right: 15%;
            width: 60px;
            height: 60px;
            background: white;
            transform: rotate(45deg);
            animation: float 8s ease-in-out infinite reverse;
        }

        @keyframes float {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
        }

        .navbar {
            transition: all 0.3s ease;
            padding: 1rem 0;
        }

        /* .navbar.scrolled {
            background: rgba(44, 62, 80, 0.95) !important;
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        } */

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }

            .hero-subtitle {
                font-size: 1.1rem;
            }

            /* .section-title {
                font-size: 2rem;
            }
        } */

        .pulse-animation {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }
    }
        /* career start */
         .career {
            max-width: 100%;
            margin: 50px auto;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 20px rgba(0,0,0,0.1);
            background-color: #fff;
        }
        
        #career-title {
            color: #2c3e50;
            margin-bottom: 30px;
            text-align: center;
        }
        
        .career-btn {
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);            border: none;
            padding: 10px 20px;
            width: 100%;
        }
        
        .career-btn:hover {
            background-color:white;
        }
        /* career end */
        
        /* footer start */
.content {
            flex: 1;
            padding: 50px 0;
            background: #f8f9fa;
        }
        
        #footer {
            background: #02245b;
            color:#90a5a6;
            padding: 40px 0 20px;
            margin-top: auto;
        }
        
        .footer-section h7 {
            color:#f8f9fa;
            margin-bottom: 20px;
            font-weight: 500;
        }
        
        /* .footer-address {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            padding: 20px;
            height: 100%;
            transition: transform 0.3s ease;
        } */
        
        /* .footer-address:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
        } */
        
        .footer-address i {
            color:#e84029;
            margin-right: 10px;
            width: 20px;
        }
        
        .footer-address p {
            margin-bottom: 8px;
            line-height: 1.6;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 8px;
        }
        
        
        .footer-links a {
            color: #b8c5d6;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: #ffd700;
        }
        
        .footer-social-icons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            
        }
        /* .btn{
          color: red;
        } */
        .btn:hover{
          color: white;
        } 
        
        .social-link {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.1);
            color: white;
            border-radius: 50%;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .social-link:hover {
            background: #ffd700;
            color: #1e3c72;
            transform: translateY(-2px);
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 30px;
            padding-top: 20px;
            text-align: center;
            color: #b8c5d6;
        }
/* footer end */
.page-header {
    background: url(img/sample-image/career.jpeg) center center no-repeat;
    background-size:cover;
    padding-bottom: 10px;
    
}
/* .contact-info i {
  color:#23ab70;
} */
 /* strip banner start */
 .parallax-banner {
      background-image:url(img/banner/strip\ banner\ 2.jpeg);
      min-height: 300px;
      background-attachment: fixed;
      background-position: center;
      background-repeat: no-repeat;
      background-size: cover;
      display: flex;
      align-items: center;
      color: white;
      position: relative;
    }

    .parallax-banner::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);
    }

    .parallax-content {
      position: relative;
      z-index: 1;
      width: 100%;
    }

    .parallax-content h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .parallax-content p {
      font-size: 1.2rem;
    }

    .btn-custom {
      background-color: #fff;
      color: #e84029;
      border: none;
      padding: 10px 20px;
      font-weight: 600;
      transition: 0.3s;
    }

    .btn-custom:hover {
      background-color: #e84029;
      color: #fff;
    }
/* strip banner end */
/* conact start */
/* .contact-info {
            margin-bottom: 50px;
        } */

        .contact-info h2 {
            font-weight: bold;
        }

        .contact-info p {
            margin: 0;
            padding: 5px 0;
        }

        .contact-form {
            padding: 20px;
            background-color: #ffffff;
            border-radius: 5px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        }

        .submit-btn {
            background-color: #a50027;
            color: #ffffff;
        }
/* conact end */

/* about start */
.about-us-hero-section {
            /* background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); */
            color: black;
            padding: 50px 0;
        }
        
        .about-us-image {
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease;
        }
        
        .about-us-image:hover {
            transform: translateY(-5px);
        }
        
        .about-us-section-title {
            color: #333;
            /* font-weight: 700; */
            margin-bottom: 30px;
            position: relative;
        }
        
        .about-us-section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 50px;
            /* height: 3px; */
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }
        
        .about-us-feature-card {
            background: #fff;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            margin-bottom: 30px;
            border: none;
        }
        
        .about-us-feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }
        
        .about-us-feature-icon {
            width: 80px;
            height: 80px;
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);            
border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
            color: white;
        }
        
        .about-us-mission-vision-section {
            background: #f8f9fa;
            padding: 80px 0;
        }
        
        .about-us-mission-card, .about-us-vision-card {
            background: white;
            border-radius: 15px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .about-us-mission-card:hover, .about-us-vision-card:hover {
            transform: translateY(-5px);
        }
        
        .about-us-mission-icon, .about-us-vision-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 20px;
        }
        
        .about-us-mission-icon {
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);        }
        
        .about-us-vision-icon {
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);        }
        
        .about-us-stats-section {
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);            color: white;
            padding: 60px 0;
        }
        
        .about-us-stat-item {
            text-align: center;
            margin-bottom: 30px;
        }
        
        .about-us-stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .about-us-stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .about-us-btn-custom {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            padding: 12px 30px;
            border-radius: 25px;
            color: white;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .about-us-btn-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
            color: white;
        }
        
        .about-us-brochure-banner {
           background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);            
           color: white;
            padding: 60px 0;
            margin-top: 0;
        }
        
        .about-us-brochure-content h3 {
            font-weight: 700;
            font-size: 2rem;
        }
        
        .about-us-brochure-content p {
            font-size: 1.1rem;
            opacity: 0.9;
        }
        
        .about-us-brochure-btn {
            background: white;
            color: #667eea;
            border: none;
            padding: 15px 35px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-us-brochure-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            color: #667eea;
        }
/* about end */

/* milestone start */
  .timeline-container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .timeline-line {
            position: absolute;
            left: 50%;
            top: 0;
            bottom: 0;
            width: 4px;
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);    
transform: translateX(-50%);
            z-index: 1;
        }

        .milestone {
            position: relative;
            margin: 30px 0;
            z-index: 2;
        }

        .milestone-content {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            transition: all 0.3s ease;
        }

        .milestone-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
        }

        .milestone-left .milestone-content {
            margin-left: 0;
            margin-right: 60px;
        }

        .milestone-right .milestone-content {
            margin-left: 60px;
            margin-right: 0;
        }

        .milestone-year {
            font-size: 2rem;
            font-weight: bold;
            color:linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);
            
            margin-bottom: 10px;
        }

        .milestone-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin-bottom: 10px;
        }

        .milestone-description {
            color: #666;
            line-height: 1.6;
        }

        .milestone-dot {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 20px;
            height: 20px;
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);                
border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 0 20px rgba(79, 172, 254, 0.5);
            z-index: 3;
        }

        .milestone-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            z-index: 2;
        }

        .milestone-left .milestone-arrow {
            right: 40px;
            border-left: 15px solid rgba(255, 255, 255, 0.95);
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }

        .milestone-right .milestone-arrow {
            left: 40px;
            border-right: 15px solid rgba(255, 255, 255, 0.95);
            border-top: 15px solid transparent;
            border-bottom: 15px solid transparent;
        }

        @media (max-width: 768px) {
            .timeline-line {
                left: 30px;
            }

            .milestone-left .milestone-content,
            .milestone-right .milestone-content {
                margin-left: 70px;
                margin-right: 20px;
            }

            .milestone-dot {
                left: 30px;
            }

            .milestone-arrow {
                display: none;
            }
        }

        .main-title {
            text-align: center;
            color: #333;
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 30px;
        }

        .subtitle {
            text-align: center;
            color: #666;
            font-size: 1.1rem;
            margin-bottom: 40px;
        }

/* milestone end */
/* running message start  */
.marquee-container {
      width: 100%;
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);      color:#ffffff; /* Text color */
      padding: 10px 0;
      overflow: hidden;
      position: relative;
      white-space: nowrap;
    }

    .marquee-text {
      display: inline-block;
      animation: scroll-left 30s linear infinite;
      font-weight: bold;
      font-size: 1.2rem;
      padding-left: 100%;
    }

    @keyframes scroll-left {
      0% {
        transform: translateX(0%);
      }
      100% {
        transform: translateX(-100%);
      }
    }
/* running message end */

/* service view page start */
.accordion-container {
            display: flex;
            min-height: 600px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            overflow: hidden;
        }
        
        .accordion-sidebar {
            width: 280px;
            background: #f8f9fa;
            border-right: 1px solid #dee2e6;
            flex-shrink: 0;
        }
        
        .accordion-nav {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .accordion-nav-item {
            border-bottom: 1px solid #dee2e6;
        }
        
        .accordion-nav-item:last-child {
            border-bottom: none;
        }
        
        .accordion-nav-link {
            display: block;
            padding: 15px 20px;
            text-decoration: none;
            color: #495057;
            font-weight: 500;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }
        
        .accordion-nav-link:hover {
            background-color: #e9ecef;
            color: #495057;
        }
        
        .accordion-nav-link.active {
            background-color: #007bff;
            color: white;
            position: relative;
        }
        
        .accordion-nav-link.active::after {
            content: '';
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 0;
            height: 0;
            border-left: 8px solid #007bff;
            border-top: 8px solid transparent;
            border-bottom: 8px solid transparent;
        }
        
        .accordion-content {
            flex: 1;
            padding: 30px;
            overflow-y: auto;
        }
        
        .content-section {
            display: none;
        }
        
        .content-section.active {
            display: block;
        }
        
        .content-section h3 {
            color: #343a40;
            margin-bottom: 20px;
            font-weight: 600;
            border-bottom: 2px solid #007bff;
            padding-bottom: 10px;
        }
        
        .content-section p {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
            text-align: justify;
        }
        
        .content-section ul {
            color: #6c757d;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .content-section li {
            margin-bottom: 8px;
        }
        
        .highlight-box {
            background: #f8f9fa;
            border: 1px solid #dee2e6;
            border-radius: 5px;
            padding: 20px;
            margin: 20px 0;
        }
        
        .highlight-box h5 {
            color: #495057;
            margin-bottom: 10px;
            font-weight: 600;
        }
        
        .process-step {
            background: #e7f3ff;
            border-left: 4px solid #007bff;
            padding: 15px;
            margin: 15px 0;
            border-radius: 0 5px 5px 0;
        }
        
        .process-step h6 {
            color: #0056b3;
            margin-bottom: 5px;
            font-weight: 600;
        }
        
        @media (max-width: 768px) {
            .accordion-container {
                flex-direction: column;
            }
            
            .accordion-sidebar {
                width: 100%;
                order: 1;
            }
            
            .accordion-content {
                order: 2;
                padding: 20px;
            }
            
            .accordion-nav {
                display: flex;
                overflow-x: auto;
                white-space: nowrap;
            }
            
            .accordion-nav-item {
                flex-shrink: 0;
                border-bottom: none;
                border-right: 1px solid #dee2e6;
            }
            
            .accordion-nav-item:last-child {
                border-right: none;
            }
            
            .accordion-nav-link {
                padding: 10px 15px;
                white-space: nowrap;
            }
        }
/* service view page end */
/* box festure start  */
.box-design {
            background: white;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 3px solid;
            height: 100%;
            margin-bottom: 20px;
        }

        .box-design:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
        }

        .box-design.green {
            border-color: #22c55e;
        }

        .box-design.blue {
            border-color: #3b82f6;
        }

        .box-design.orange {
            border-color: #f59e0b;
        }

        .box-design.red {
            border-color: #ef4444;
        }

        .box-design.purple {
            border-color: #8b5cf6;
        }

        .box-design.cyan {
            border-color: #06b6d4;
        }

        .icon-circle {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            color: white;
            font-size: 24px;
        }

        .green .icon-circle {
            background-color: #22c55e;
        }

        .blue .icon-circle {
            background-color: #3b82f6;
        }

        .orange .icon-circle {
            background-color: #f59e0b;
        }

        .red .icon-circle {
            background-color: #ef4444;
        }

        .purple .icon-circle {
            background-color: #8b5cf6;
        }

        .cyan .icon-circle {
            background-color: #06b6d4;
        }

        .box-heading {
            font-size: 16px;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
            line-height: 1.4;
        }

        @media (max-width: 768px) {
            .box-heading {
                font-size: 14px;
            }
            
            .box-design {
                padding: 25px 15px;
            }
            
            .icon-circle {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }
        }
        .box-mod{
            padding: 40px 0;
        }
/* box festure end */

/* client logo start */
 .client-section {
            background: white;
            padding: 60px 80px;
            border-radius: 20px;
        }

        .client-heading {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1f2937;
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .client-heading::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(45deg, #22c55e, #16a34a);
            border-radius: 2px;
        }

        .company-logos {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .company-logo {
            background: #f8f9fa;
            /* border: 2px solid #e5e7eb;
            border-radius: 15px; */
            padding: 25px;
            width: 150px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
            cursor: pointer;
            flex: 1;
            min-width: 120px;
        }

        .company-logo:hover {
            background: #f0fdf4;
            transform: translateY(-5px);
        }

        .company-logo img {
            max-width: 100px;
            max-height: 60px;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        .company-logo:hover img {
            transform: scale(1.1);
        }

        @media (max-width: 768px) {
            .client-section {
                padding: 60px 40px;
            }
            
            .client-heading {
                font-size: 2rem;
                margin-bottom: 30px;
            }
            
            .company-logos {
                gap: 30px;
            }
            
            .company-logo {
                width: 120px;
                height: 80px;
                padding: 20px;
                min-width: 100px;
            }
            
            .company-logo img {
                max-width: 60px;
                max-height: 40px;
            }
        }

        @media (max-width: 576px) {
            .client-section {
                padding: 40px 20px;
            }
            
            .company-logos {
                justify-content: center;
                gap: 20px;
            }
            
            .company-logo {
                width: 100px;
                height: 70px;
                padding: 15px;
            }
            
            .company-logo img {
                max-width: 50px;
                max-height: 35px;
            }
        }
/* client logo end */
/* service page start */
 .service-page {
            padding: 60px 0;
            background-color: #f8f9fa;
        }
        
        .service-card {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .service-card:hover .service-image {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 30px;
            display: flex;
            flex-direction: column;
            height: calc(100% - 200px);
        }
        
        .service-title {
            font-size: 24px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 15px;
        }
        
        .service-description {
            color: #7f8c8d;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 25px;
            flex-grow: 1;
        }
        
        .service-btn {
background-image: linear-gradient(to right top, #0d6efd, #065ad2, #0347a8, #023581, #02245b);            color: #fff;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            text-align: center;
            align-self: flex-start;
        }
        
        .service-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
            color: #fff;
        }
        
        .section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 2px;
        }
        
        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(102, 126, 234, 0.1), rgba(118, 75, 162, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .service-card:hover .image-overlay {
            opacity: 1;
        }
        
        .image-container {
            position: relative;
            overflow: hidden;
        }
/* service page end */
