


    /* Animation styles */
    .why-choose-us {
        opacity: 1;
    }
    
    .feature-item {
        position: relative;
        overflow: hidden;
    }
    
    .feature-item.animated {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }
    
    .feature-item:hover {
        transform: translateY(-5px) !important;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1) !important;
    }
    
    .feature-item:hover .feature-icon {
        transform: scale(1.1);
    }
    
    .feature-item:hover .feature-icon i {
        transform: scale(1.1);
    }
    
    .feature-item:hover .hover-effect {
        opacity: 1;
    }
    
    .image-container {
        transform: translateX(0);
        opacity: 1;
        transition: all 0.6s ease 0.6s;
    }
    
    .image-container:hover img {
        transform: scale(1.05);
    }
    
    .image-container:hover .image-overlay {
        background: rgba(25, 119, 204, 0.1);
    }
    
    /* Responsive styles */
    @media (max-width: 992px) {
        .why-choose-us {
            padding: 60px 0;
        }
        
        h2 {
            font-size: 2.2rem !important;
        }
    }
    
    @media (max-width: 768px) {
        .why-choose-us {
            padding: 50px 0;
        }
        
        h2 {
            font-size: 2rem !important;
        }
        
        .feature-icon {
            width: 50px !important;
            height: 50px !important;
        }
        
        .feature-icon i {
            font-size: 1.3rem !important;
        }
    }
    
    @media (max-width: 576px) {
        .why-choose-us {
            padding: 40px 0;
        }
        
        h2 {
            font-size: 1.8rem !important;
        }
        
        p {
            font-size: 1rem !important;
        }
        
        .feature-card {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }




    /* Department card animations */
    .single_department_card {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.5s ease;
        position: relative;
        overflow: hidden;
    }
    
    .single_department_card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
    
    .single_department_card:hover .department_icon {
        transform: scale(1.1) translateY(-10px);
    }
    
    .single_department_card:hover .hover_content {
        opacity: 1;
    }
    
    /* Staggered animation on scroll */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .col-lg-3 {
            flex: 0 0 50%;
            max-width: 50%;
        }
    }
    
    @media (max-width: 768px) {
        .our_department {
            padding: 60px 0;
        }
        
        h2 {
            font-size: 2rem !important;
        }
        
        .department_icon {
            width: 70px !important;
            height: 70px !important;
        }
        
        .department_icon i {
            font-size: 1.8rem !important;
        }
        
        .col-lg-3, .col-md-6 {
            flex: 0 0 100%;
            max-width: 100%;
        }
    }
    
    @media (max-width: 576px) {
        .our_department {
            padding: 40px 0;
        }
        
        h2 {
            font-size: 1.8rem !important;
        }
        
        .lead {
            font-size: 1rem !important;
        }
        
        .single_department_card {
            padding: 20px 15px !important;
        }
    }



    /* Team member animations */
    .single_team_member {
        transform: translateY(30px);
        opacity: 0;
        transition: all 0.5s ease;
    }
    
    .single_team_member:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
    }
    
    .single_team_member:hover .team_thumb img {
        transform: scale(1.1);
    }
    
    .single_team_member:hover .team_hover {
        opacity: 1;
    }
    
    /* Staggered animation on scroll */
    @keyframes fadeInUp {
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
        .team_part {
            padding: 20px 0;
        }
        
        h2 {
            font-size: 2rem !important;
        }
        
        .team_thumb {
            height: 220px !important;
        }
    }
    
    @media (max-width: 576px) {
        .team_part {
            padding: 40px 0;
        }
        
        h2 {
            font-size: 1.8rem !important;
        }
        
        .team_thumb {
            height: 200px !important;
        }
    }
    
    
    
    
  






    .testimonials-section {
        padding: 100px 20px;
        max-width: 1300px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    /* Gradient background glow */
    .testimonials-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at center, rgba(52, 152, 219, 0.2), transparent 70%);
        animation: bgMove 15s linear infinite;
        z-index: 0;
    }

    @keyframes bgMove {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }

    .section-title {
        font-size: 3rem;
        color: #1a1a1a;
        margin-bottom: 20px;
        font-weight: 800;
        position: relative;
        z-index: 1;
    }

    .section-title::after {
        content: '';
        position: absolute;
        bottom: -12px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: linear-gradient(90deg, #3498db, #2ecc71);
        border-radius: 3px;
        animation: gradientMove 3s ease-in-out infinite;
    }

    @keyframes gradientMove {
        0%, 100% { background-position: 0%; }
        50% { background-position: 100%; }
    }

    .section-subtitle {
        font-size: 1.3rem;
        color: #555;
        max-width: 700px;
        margin: 0 auto 60px;
        z-index: 1;
        position: relative;
    }

    .testimonial-container {
        position: relative;
        overflow: hidden;
        border-radius: 20px;
        padding: 50px;
        background: rgba(255, 255, 255, 0.9);
        backdrop-filter: blur(12px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        z-index: 1;
    }

    .testimonial-carousel {
        display: flex;
        transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
    }

    .testimonial {
        min-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        transform: translateY(40px) scale(0.95);
        animation: fadeSlideIn 1s forwards;
    }

    @keyframes fadeSlideIn {
        to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .testimonial-avatar {
        width: 110px;
        height: 110px;
        border-radius: 50%;
        object-fit: cover;
        border: 5px solid transparent;
        background: linear-gradient(white, white) padding-box,
                    linear-gradient(45deg, #3498db, #2ecc71) border-box;
        margin-bottom: 20px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
        transition: transform 0.4s ease;
    }

    .testimonial-avatar:hover {
        transform: scale(1.05) rotate(2deg);
    }

    .testimonial-rating {
        margin-bottom: 15px;
        color: #f1c40f;
        font-size: 1.6rem;
        animation: starsPop 1.2s ease-in-out forwards;
    }

    @keyframes starsPop {
        0% { transform: scale(0); opacity: 0; }
        50% { transform: scale(1.3); opacity: 1; }
        100% { transform: scale(1); }
    }

    .testimonial-text {
        font-size: 1.15rem;
        line-height: 1.8;
        color: #444;
        margin-bottom: 25px;
        font-style: italic;
        position: relative;
        padding: 0 25px;
    }

    .testimonial-author {
        font-weight: 700;
        color: #1a1a1a;
        font-size: 1.25rem;
        letter-spacing: 0.5px;
    }

    .testimonial-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(135deg, #3498db, #2ecc71);
        border: none;
        width: 55px;
        height: 55px;
        border-radius: 50%;
        font-size: 1.2rem;
        color: white;
        cursor: pointer;
        box-shadow: 0 5px 20px rgba(0,0,0,0.15);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        z-index: 10;
    }

    .testimonial-nav:hover {
        transform: translateY(-50%) scale(1.1);
        box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    }

    .testimonial-prev { left: 20px; }
    .testimonial-next { right: 20px; }

    .testimonial-controls {
        display: flex;
        justify-content: center;
        margin-top: 40px;
        gap: 15px;
    }

    .testimonial-dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: #ccc;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .testimonial-dot.active {
        background: linear-gradient(135deg, #3498db, #2ecc71);
        transform: scale(1.3);
        box-shadow: 0 0 10px rgba(52,152,219,0.5);
    }

    @media (max-width: 768px) {
        .section-title { font-size: 2.2rem; }
        .testimonial-container { padding: 30px 20px; }
        .testimonial-nav { width: 45px; height: 45px; font-size: 1rem; }
    }













    /* Base reset for footer area only */
    .footer-premium * {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
    }

    .footer-premium {
        background: linear-gradient(135deg, #0a1e32, #071827);
        color: #fff;
        padding: 100px 20px 40px;
        position: relative;
        overflow: hidden;
        font-family: 'Poppins', sans-serif;
        border-top: 1px solid rgba(78, 205, 196, 0.2);
    }

    /* Animated gradient background */
    .footer-premium::before {
        content: '';
        position: absolute;
        inset: 0;
        background: 
            radial-gradient(circle at 20% 30%, rgba(78, 205, 196, 0.08) 0%, transparent 30%),
            radial-gradient(circle at 80% 70%, rgba(78, 205, 196, 0.05) 0%, transparent 30%);
        animation: bgMove 15s linear infinite;
        z-index: 0;
    }

    @keyframes bgMove {
        0% { background-position: 0% 0%; }
        50% { background-position: 100% 100%; }
        100% { background-position: 0% 0%; }
    }

    /* Floating elements for background depth */
    .footer-premium::after {
        content: '';
        position: absolute;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(78, 205, 196, 0.08), transparent 70%);
        border-radius: 50%;
        bottom: -200px;
        right: -200px;
        animation: floatCircle 12s ease-in-out infinite alternate;
        z-index: 0;
    }

    @keyframes floatCircle {
        0% { transform: translateY(0) translateX(0); }
        50% { transform: translateY(-40px) translateX(-40px); }
        100% { transform: translateY(0) translateX(0); }
    }

    .footer-premium-container {
        max-width: 1300px;
        margin: 0 auto;
        position: relative;
        z-index: 1;
    }

    /* Footer columns animation */
    .footer-premium-column {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s forwards;
    }

    .footer-premium-column:nth-child(1) { animation-delay: 0.2s; }
    .footer-premium-column:nth-child(2) { animation-delay: 0.4s; }
    .footer-premium-column:nth-child(3) { animation-delay: 0.6s; }

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

    /* Footer titles with underline glow */
    .footer-premium-title {
        font-size: 1.4rem;
        margin-bottom: 30px;
        position: relative;
        padding-bottom: 15px;
        color: #4ecdc4;
        font-weight: 600;
        letter-spacing: 0.5px;
    }

    .footer-premium-title::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: linear-gradient(90deg, #4ecdc4, transparent);
        border-radius: 3px;
        box-shadow: 0 0 15px rgba(78, 205, 196, 0.5);
    }

    /* Social icons with hover glow */
    .social-link-premium {
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #b8c5d6;
        font-size: 1.1rem;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255,255,255,0.05);
    }

    .social-link-premium:hover {
        background: linear-gradient(135deg, #4ecdc4, #3aa8a0);
        color: #fff;
        box-shadow: 0 5px 20px rgba(78, 205, 196, 0.4);
        transform: translateY(-3px) scale(1.1);
        border-color: rgba(78, 205, 196, 0.3);
    }

    /* Quick links hover animation */
    .footer-premium-links a {
        position: relative;
        color: #b8c5d6;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        padding: 8px 0;
        font-size: 0.95rem;
    }

    .footer-premium-links a::before {
        content: '→';
        position: absolute;
        left: -20px;
        opacity: 0;
        color: #4ecdc4;
        transition: all 0.3s ease;
    }

    .footer-premium-links a:hover {
        color: #4ecdc4;
        padding-left: 20px;
    }

    .footer-premium-links a:hover::before {
        opacity: 1;
        left: 0;
    }

    /* Contact items styling */
    .contact-item-premium {
        display: flex;
        align-items: flex-start;
        margin-bottom: 25px;
        position: relative;
        z-index: 1;
    }

    .contact-icon-premium {
        background: linear-gradient(135deg, rgba(78, 205, 196, 0.15), rgba(78, 205, 196, 0.05));
        color: #4ecdc4;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        backdrop-filter: blur(5px);
        border: 1px solid rgba(78, 205, 196, 0.1);
        box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .contact-text-premium {
        color: #b8c5d6;
        font-size: 0.95rem;
    }

    .contact-text-premium h4 {
        color: #fff;
        margin-bottom: 5px;
        font-size: 1.05rem;
        font-weight: 500;
    }

    /* Footer bottom animation */
    .footer-premium-bottom {
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 30px;
        margin-top: 60px;
        text-align: center;
        color: #b8c5d6;
        font-size: 0.9rem;
        animation: fadeIn 1s forwards;
        animation-delay: 1.2s;
        opacity: 0;
        position: relative;
    }

    .footer-premium-bottom::before {
        content: '';
        position: absolute;
        top: -1px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 2px;
        background: linear-gradient(90deg, transparent, #4ecdc4, transparent);
    }

    @keyframes fadeIn {
        to { opacity: 1; }
    }

    .footer-premium-links-inline a {
        color: #b8c5d6;
        margin: 0 12px;
        transition: color 0.3s ease;
        font-size: 0.9rem;
        position: relative;
        text-decoration: none;
    }

    .footer-premium-links-inline a::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 1px;
        background: #4ecdc4;
        transition: width 0.3s ease;
    }

    .footer-premium-links-inline a:hover {
        color: #4ecdc4;
    }

    .footer-premium-links-inline a:hover::after {
        width: 100%;
    }

    /* Map styling */
    .footer-premium-map {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        height: 220px;
        border: 1px solid rgba(255,255,255,0.1);
        position: relative;
        transition: transform 0.5s ease;
    }

    .footer-premium-map:hover {
        transform: translateY(-5px);
    }

    .footer-premium-map iframe {
        width: 100%;
        height: 100%;
        border: none;
        filter: grayscale(30%) contrast(110%) brightness(0.9);
        transition: filter 0.5s ease;
    }

    .footer-premium-map:hover iframe {
        filter: grayscale(0%) contrast(100%) brightness(1);
    }

    /* Responsive adjustments */
    @media (max-width: 992px) {
        .footer-premium-content {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .footer-premium-content {
            grid-template-columns: 1fr;
        }
        
        .footer-premium {
            padding: 70px 20px 30px;
        }
    }

