        :root {
            --primary: #4a6fa5;
            --secondary: #ff9e1b;
            --light: #f8f9fa;
            --dark: #343a40;
            --success: #28a745;
        }
        
        body {
            font-family: 'Nunito', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        }
        
        .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            color: var(--primary);
            font-size: 1.8rem;
        }
        
        .nav-link {
            font-weight: 600;
            color: var(--dark);
            margin: 0 10px;
        }
        
        .nav-link:hover {
            color: var(--primary);
        }
        
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-primary:hover {
            background-color: #3a5a84;
            border-color: #3a5a84;
        }
        
        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: white;
            padding: 10px 25px;
            font-weight: 600;
        }
        
        .btn-secondary:hover {
            background-color: #e08c0a;
            border-color: #e08c0a;
            color: white;
        }
        
        .hero-slider {
            position: relative;
            height: 600px;
            overflow: hidden;
        }
        
        .hero-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
        }
        
        .hero-slide.active {
            opacity: 1;
        }
        
        .hero-content {
            background: rgba(0, 0, 0, 0.6);
            color: white;
            padding: 30px;
            border-radius: 10px;
            max-width: 600px;
        }
        .mission-item {
            text-align: center;
            padding: 30px 20px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            height: 100%;
        }
        
        .mission-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
        }
        
        .mission-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .why-choose-item {
            padding: 25px;
            border-radius: 10px;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .why-choose-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            background: var(--primary);
            color: white;
        }
        
        .why-choose-item:hover h4,
        .why-choose-item:hover .choose-icon {
            color: white;
        }
        
        .choose-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin: 20px;
            text-align: center;
        }
        
        .testimonial-img {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0 auto 20px;
            border: 4px solid var(--primary);
        }
        
        .testimonial-slider .carousel-control-prev,
        .testimonial-slider .carousel-control-next {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            opacity: 1;
        }
        
        .testimonial-slider .carousel-control-prev {
            left: -8px;
        }
        
        .testimonial-slider .carousel-control-next {
            right: -8px;
        }
        
        footer {
            background-color: var(--dark);
            color: white;
            padding: 60px 0 30px;
        }
        
        .footer-links h5 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-links h5:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--secondary);
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background: rgba(255,255,255,0.1);
            text-align: center;
            line-height: 40px;
            border-radius: 50%;
            color: white;
            margin-right: 10px;
            transition: all 0.3s;
        }
        
        .social-icons a:hover {
            background: var(--secondary);
            transform: translateY(-5px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            margin-top: 30px;
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .animate {
            animation: fadeIn 1s ease forwards;
        }
        .services-container {
            max-width: 1200px;
            margin: 40px auto;
            padding: 20px;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            padding-bottom: 15px;
            text-align: center;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
        
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background-color: var(--secondary);
            border-radius: 2px;
        }
        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }
        
        .service-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }
        
        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        
        .service-card:hover .service-image img {
            transform: scale(1.05);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-title {
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 15px;
            font-size: 1.4rem;
            position: relative;
            padding-left: 20px;
        }
        
        .service-title:before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 10px;
            height: 10px;
            background: var(--secondary);
            border-radius: 50%;
        }
        
        .service-description {
            color: #666;
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .service-pointer {
            display: inline-block;
            padding: 8px 20px;
            background: var(--primary);
            color: white;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: 600;
            transition: all 0.3s ease;
            text-decoration: none;
            align-self: flex-start;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .service-pointer:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 0;
            background: var(--secondary);
            border-radius: 30px;
            transition: all 0.3s ease;
            z-index: -1;
        }
        
        .service-pointer:hover {
            color: white;
        }
        
        .service-pointer:hover:after {
            height: 100%;
        }
        
        .curve-shape {
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 20px;
            background: white;
            border-radius: 50% 50% 0 0 / 100% 100% 0 0;
        }
        
        .service-card:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary), var(--secondary));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }
        
        .service-card:hover:before {
            transform: scaleX(1);
        }
        
        .floating-icons {
            position: absolute;
            top: 15px;
            right: 15px;
            display: flex;
            gap: 10px;
        }
        
        .floating-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 1.2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover .floating-icon {
            transform: translateY(-5px);
            background: var(--primary);
            color: white;
        }
        
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
            }
        }
    
          
        .testimonial-section {
            max-width:100%;
            margin: 0 auto;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
            padding-bottom: 25px;
            padding-top: 25px;
        }
        
        .testimonial-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('https://images.unsplash.com/photo-1577896851231-70ef18881754?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80');
            background-size: cover;
            background-position: center;
            opacity: 0.15;
            z-index: -1;
        }
        
        .overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(74, 111, 165, 0.9) 0%, rgba(255, 158, 27, 0.8) 100%);
            z-index: -1;
        }
        
        
        
        .section-title h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .section-title p {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        .testimonial-slider {
            position: relative;
            max-width: 1000px;
            margin: 0 auto;
            overflow: hidden;
        }
        
        .testimonial-track {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }
        
        .testimonial-slide {
            min-width: 100%;
            box-sizing: border-box;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            height: 100%;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 5rem;
            color: rgba(74, 111, 165, 0.1);
            z-index: 0;
        }
        
        .testimonial-content {
            position: relative;
            z-index: 1;
        }
        
        .testimonial-text {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #444;
            margin-bottom: 25px;
            font-style: italic;
            position: relative;
            padding-left: 30px;
        }
        
        .testimonial-text:before {
            content: """;
            position: absolute;
            left: 0;
            top: -15px;
            font-size: 4rem;
            color: #4a6fa5;
            font-family: 'Playfair Display', serif;
            opacity: 0.3;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            border: 4px solid #4a6fa5;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .author-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-details h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 600;
            color: #4a6fa5;
            margin-bottom: 5px;
        }
        
        .author-details p {
            color: #ff9e1b;
            font-weight: 500;
            margin: 0;
        }
        
        .rating {
            margin-top: 5px;
            color: #ffc107;
        }
        
        .slider-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 40px;
        }
        
        .slider-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            margin: 0 8px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .slider-dot.active {
            background: white;
            transform: scale(1.3);
        }
        
        .slider-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            color: white;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            margin: 0 15px;
        }
        
        .slider-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }
        
        .decoration {
            position: absolute;
            z-index: -1;
        }
        
        .decoration-1 {
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            border: 10px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .decoration-2 {
            bottom: -40px;
            right: -40px;
            width: 180px;
            height: 180px;
            border: 15px solid rgba(255, 255, 255, 0.1);
            border-radius: 50%;
        }
        
        .decoration-3 {
            top: 50%;
            left: -70px;
            transform: translateY(-50%);
            width: 120px;
            height: 120px;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            transform: rotate(45deg);
        }
        
        @media (max-width: 768px) {
            .testimonial-card {
                padding: 20px;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
            
            .testimonial-text {
                padding-left: 20px;
                font-size: 1rem;
            }
            
            .testimonial-text:before {
                font-size: 3rem;
                top: -10px;
            }
            
            .quote-icon {
                font-size: 4rem;
            }
            
            .author-img {
                width: 60px;
                height: 60px;
            }
            
            .decoration {
                display: none;
            }
            
            .slider-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
                    .flx{
flex-direction: column;        }
        }
        .flx{
display: flex;
padding: 55px;
justify-content: center;
gap: 30px;
        }
        .box{
background: var(--secondary);
color: white;
padding: 10px   20px;
font-weight: 500;
font-size: 20px;
        }
        .ot-card{
display: flex;
flex-direction: column;
align-items: flex-start;
padding: 15px;
box-shadow: 18px 7px 10px rgba(0, 0, 0, 0.1);
        }
           .ot-card ul {
            list-style-type: none;
            padding: 0;
        }

        .ot-card li {
            margin-bottom: 15px;
            padding-left: 25px;
            position: relative;
        }

        .ot-card li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary);
        }

        .icon-container {
            text-align: center;
            margin: 20px 0;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .importance-section {
            background: white;
            padding: 40px;
            border-radius: 12px;
            margin-bottom: 40px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        .importance-section h2 {
            text-align: center;
            color: var(--primary);
            margin-bottom: 30px;
            font-size: 2rem;
        }

        .importance-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 30px;
        }

        .importance-text {
            flex: 1;
            min-width: 300px;
        }

        .importance-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .importance-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
           

  .fix-icon {
    display: inline-block;
    position: fixed;
    bottom: 90px;
    left: 10px;
    z-index: 999999;
    }
    
    #fix-icon {
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-name: example;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
    }
    
    @-webkit-keyframes mover {
    0% {
      transform: translateY(0);
    }
    
    100% {
      transform: translateY(-20px);
    }
    }
    
    .fix-icon-item img {
    width: 55px !important;
    height: 55px !important;
    background:
    #3D5300;
    border-radius: 50%;
    text-align: center;
    cursor: pointer;
    padding: 10px;
    }
    
    .fix-icon-whataap {
    display: inline-block;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 999999;
    transition: all0.5s ease-in-out;
    width: 55px !important;
    height: 55px !important;
    }
    
    .fix-icon-whataap-item img {
    border-radius: 50%;
    box-shadow: 1px 1px 4px rgba(60, 60, 60, .4);
    transition: box-shadow .2s;
    cursor: pointer;
    overflow: hidden;
    width: 55px !important;
    height: 55px !important;
    background:
      #25d366 !important;
    }
    .img-fluid{
        border-radius: 10px;
      
}
.ab{
    position: relative;
    top: 15px;
    right: 165px;
   font-size: 10px;  width: 50%;
}
#sp{
   font-size: 10px;
   position: relative;
    top: 15px;
    right: 175px;
}
@media (max-width: 768px) {
    #sp{
      font-size: 7px;
    }
    .ab{
    position: relative;
    top: 15px;
    right: 160px;
   font-size: 8px;  width: 50%;
}
}
