        :root {
            --primary: #3498db;
            --secondary: #2c3e50;
            --accent: #e74c3c;
            --light: #ecf0f1;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
        }
        
        .gradient-bg-about {
            background: linear-gradient(135deg, #2c3e50, #e74c3c);
        }

/* Navbar brand container */
.navbar-brand {
  padding: 0;
  margin: 0;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Logo image */
#nav-logo {
  height: 8vh;          
  max-height: 60px;     
  width: auto;          
  object-fit: contain;  
  object-position: center;
  display: block;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  #nav-logo {
    height: 6vh;
    max-height: 45px;
  }
}

@media (max-width: 480px) {
  #nav-logo {
    height: 5vh;
    max-height: 35px;
  }
}

        
        
       
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 30px;
        }
        
        .btn-primary:hover {
            background-color: #2980b9;
            border-color: #2980b9;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 40px;
            font-weight: 700;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
        }
        
        .card {
            height: 75vh;
            border: none;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            margin-bottom: 20px;
        }
        
        .card:hover {
            transform: translateY(-5px);
        }
        
        .team-img {
            border-radius: 10px;
            margin-bottom: 15px;
        }
        
        footer {
            background: var(--secondary);
            color: white;
            padding: 60px 0 30px;
        }
        
        .social-icons a {
            color: white;
            font-size: 24px;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .social-icons a:hover {
            color: var(--primary);
        }
        
        /* Floating action buttons */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .floating-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .floating-btn::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            top: 0;
            left: 0;
            transform: translateY(100%);
            transition: transform 0.3s ease;
            border-radius: 50%;
        }
        
        .floating-btn:hover::after {
            transform: translateY(0);
        }
        
        .floating-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 20px rgba(0, 0, 0, 0.4);
        }
        
        .call-btn {
            background-color: var(--accent);
        }
        
        .whatsapp-btn {
            background-color: #25D366;
        }
        
        .btn-text {
            position: absolute;
            right: 70px;
            background: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 14px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 0.3s ease;
            pointer-events: none;
            white-space: nowrap;
        }
        
        .floating-btn:hover .btn-text {
            opacity: 1;
            right: 75px;
        }
        
        /* For mobile devices */
        @media (max-width: 768px) {
            .floating-buttons {
                bottom: 20px;
                right: 20px;
            }
            .card{
                max-height: 60vh;
                margin-top: 3rem;
            }
            .floating-btn {
                width: 55px;
                height: 55px;
                font-size: 22px;
            }
            
            .btn-text {
                font-size: 12px;
                padding: 6px 12px;
            }
            
            .floating-btn:hover .btn-text {
                right: 65px;
            }
        }
        
        @media (max-width:576px) {
            .card{
                min-height: 70vh;
                margin-top: 2rem;
            }
        }


        /* Pulse animation */
        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.7);
            }
            70% {
                box-shadow: 0 0 0 12px rgba(231, 76, 60, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0);
            }
        }
        
        .call-btn {
            animation: pulse 2s infinite;
        }


/* Hero Section */
/* #about-hero{
    margin-top: 10%;
} */

#hero-img{
    width: 40vw;
    height: 70vh;
    border: 2px solid #2c3e50;
    border-top: none;
    border-radius: 5%;
    background-image: url(/images/about-hero-img.jpg);
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width:768px) {
    #hero-img{
        width: 90vw;
        height: 50vh;
        display: block;
        margin: auto;
    }
}

@media (max-width: 836px) {
    #hero-img{
        min-width: 90vw;
    }
}

/* Why Choose Us Section */        
        .about-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .feature-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            height: 100%;
            border-left: 4px solid var(--primary);
        }
        
        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
        }
        
        .feature-icon {
            font-size: 2.5rem;
            margin-bottom: 20px;
            /* display: inline-block; */
            /* background: linear-gradient(135deg, var(--primary), var(--secondary)); */
            /* -webkit-background-clip: text;
            -webkit-text-fill-color: transparent; */
        }
        
        .feature-title {
            font-weight: 600;
            margin-bottom: 15px;
            color: var(--secondary);
            font-size: 1.25rem;
        }
        
        .feature-description {
            color: #666;
            line-height: 1.6;
        }
        
        .stats-container {
            background: rgba(52, 152, 219, 0.5);
            border-radius: 12px;
            padding: 40px;
            color: #2c3e50;
            margin-top: 60px;
            box-shadow: 0 10px 30px rgba(52, 152, 219, 0.3);
        }
        
        .stat-item {
            text-align: center;
            border-right: 5px solid #2980b9;
        }
        .stat-item:last-child{
            border-right: none;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
        }
        
        .cta-button {
            background: var(--accent);
            color: white;
            padding: 14px 35px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin-top: 30px;
            transition: all 0.3s;
            border: 2px solid var(--accent);
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
        }
        
        .cta-button:hover {
            background: transparent;
            color: var(--accent);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 76, 60, 0.4);
        }
        
        @media (max-width: 768px) {
            .feature-box {
                margin-bottom: 20px;
            }
            
            .stat-item {
                margin-bottom: 30px;
            }
            .stat-number{
                font-size: 1.5rem;
                font-weight: 500;
            }
        }

@media (max-width: 576px) {
    /* Container spacing */
    .stats-container {
        padding: 10px 0;
        background:  rgba(52, 152, 219, 0.5);
    }

    /* Each stat item */
    .stat-item {
        text-align: center;
        padding: 15px 5px;
        margin: auto;
    }

    /* Big number style */
    .stat-number {
        font-size: 1.25rem;   
        font-weight: 700;
        color: #2c3e50;
        margin-bottom: 6px;
    }

    /* Label under number */
    .stat-label {
        font-size: 0.9rem;
        color: #555;
        font-weight: 500;
    }
}




        /* Review Section     */
        .reviews-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            position: relative;
            overflow: hidden;
        }
        
        .section-title {
            position: relative;
            margin-bottom: 50px;
            font-weight: 700;
            text-align: center;
            color: var(--secondary);
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: var(--primary);
            margin: 15px auto;
            border-radius: 2px;
        }
        
        .reviews-container {
            position: relative;
            height: 400px;
            overflow: hidden;
            margin: 0 auto;
            max-width: 1200px;
        }
        
        .reviews-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            transition: transform 0.8s ease;
        }
        
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            width: 350px;
            margin: 0 20px;
            flex-shrink: 0;
            position: relative;
            transition: all 0.3s ease;
            border-top: 4px solid var(--primary);
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
        }
        
        .quote-icon {
            position: absolute;
            top: 20px;
            right: 20px;
            font-size: 2rem;
            color: rgba(52, 152, 219, 0.1);
        }
        
        .review-text {
            color: #555;
            line-height: 1.6;
            margin-bottom: 20px;
            font-style: italic;
        }
        
        .reviewer {
            display: flex;
            align-items: center;
        }
        
        .reviewer-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 600;
            margin-right: 15px;
        }
        
        .reviewer-info {
            flex: 1;
        }
        
        .reviewer-name {
            font-weight: 600;
            color: var(--secondary);
            margin-bottom: 3px;
        }
        
        .reviewer-location {
            color: #777;
            font-size: 0.9rem;
        }
        
        .rating {
            color: #FFD700;
            margin-top: 5px;
        }
        
        .navigation-dots {
            display: flex;
            justify-content: center;
            margin-top: 0px;
        }
        
        .dot {
            width: 12px;
            height: 12px;
            background: #ccc;
            border-radius: 50%;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .dot.active {
            background: var(--primary);
            transform: scale(1.2);
        }
        
        .controls {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }
        
        .control-btn {
            background: var(--primary);
            color: white;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 10px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .control-btn:hover {
            background: var(--secondary);
            transform: scale(1.1);
        }

         @media (max-width: 836px) {
        .card{
            height: 53vh;
        }
    }
        
        @media (max-width: 768px) {
            .review-card {
                width: 300px;
            }
            
            .reviews-container {
                height: 450px;
            }
            .card{
                height: 60vh;
            }
        }
   
   




        
















       