        /* Insert the full style code from previous response here */
     :root {
    --primary: #2E7D32; /* Forest Green */
    --primary-light: #4CAF50; /* Leaf Green */
    --secondary: #81C784; /* Soft Mint */
    --accent: #1B5E20; /* Deep Green */
    --light: #F1F8E9; /* Light Mint */
    --dark: #1A1A1A; /* Charcoal */
    --text: #2D2D2D; 
    --text-light: #666666;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 
              0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 
                 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}    
    body {
        font-family: 'Poppins', sans-serif;
        color: var(--text);
        overflow-x: hidden;
        background-color: var(--light);
        line-height: 1.6;
        scroll-behavior: smooth;
    }
    
  /* -------------------------------
   Default Headings (Centered)
--------------------------------*/
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  color: var(--dark);
  text-align: center; /* Default center for all headings */
  margin-bottom: 1rem;
}

/* Headings inside dark sections */
.hero h1, .hero h2, .hero h3,
.features h1, .features h2, .features h3 {
  color: #ffffff;
}

/* Footer headings (restore left align + white color) */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
  text-align: left;
  color: #ffffff;
}

/* Section titles (main + subheading) */
.section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
}

.section-title p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1.1rem;
  text-align: center;
}

/* -------------------------------
   Contact Section Headings Left-Aligned
--------------------------------*/
.contact-info h3, /* use correct heading level */
.contact-info h4,
.contact-info h5 {
  text-align: left;
  color: var(--dark); /* Adjust color if needed */
  margin-bottom: 0.5rem;
}

/* Example specific IDs (optional) */
#phone-heading,
#office-heading,
#email-heading,
#tc-heading {
  text-align: left;
  color: var(--dark);
}



    
    /* Navigation */
    .navbar {
        background-color: rgba(255, 255, 255, 0.95);
        box-shadow: var(--shadow);
        padding: 1.2rem 0;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
    }
    
    .navbar.scrolled {
        padding: 0.8rem 0;
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-brand {
        font-weight: 700;
        font-size: 1.8rem;
        color: var(--primary) !important;
        display: flex;
        align-items: center;
    }
    
    .navbar-brand img {
        height: 40px;
        margin-right: 10px;
    }
    
    .nav-link {
        color: var(--dark) !important;
        font-weight: 500;
        margin: 0 0.5rem;
        position: relative;
        padding: 0.5rem 1rem !important;
        transition: all 0.3s ease;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 3px;
        background: var(--primary);
        bottom: 0;
        left: 0;
        transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        border-radius: 3px;
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .nav-link:hover {
        color: var(--primary) !important;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        min-height: 800px;
        background: linear-gradient(135deg, rgba(11, 42, 8, 0.25), rgba(26, 64, 13, 0.8)), 
                    url('image/WhatsApp\ Image\ 2025-09-06\ at\ 12.42.50\ PM.jpeg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        color: white;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    
    .hero::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100px;
        background: linear-gradient(to top, var(--light), transparent);
        z-index: 1;
    }
    
    .hero-content {
        position: relative;
        z-index: 2;
        transform: translateY(20px);
        opacity: 0;
        animation: fadeInUp 1s ease forwards 0.3s;
    }
    
    .hero h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2.5rem;
        opacity: 0.9;
    }
    
    .btn-primary {
        background-color: white;
        border-color: white;
        color: var(--primary);
        padding: 0.8rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        transform: translateY(0);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn-primary:hover {
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    }
    
    .btn-primary:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }
    
    .btn-outline-primary {
        border-color: white;
        color: white;
        padding: 0.8rem 2rem;
        font-weight: 600;
        border-radius: 50px;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }
    
    .btn-outline-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: white;
        z-index: -1;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .btn-outline-primary:hover {
        color: var(--primary);
    }
    
    .btn-outline-primary:hover::before {
        transform: scaleX(1);
        transform-origin: left;
    }
    
/* Services Section */
.services {
  padding: 60px 0;
  background: #fff;
}

/* Services Section */
.services {
  padding: 60px 0;
  background: var(--light);
}

/* Service Card */
.service-card {
  border: none;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Image */
.service-image img {
  width: 100%;
  height: 200px;       /* uniform image height */
  object-fit: cover;   /* crop nicely */
  display: block;
}

/* Card Body */
.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.card-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

/* Gradient Button */
.service-link {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  border-radius: 25px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  color: #fff;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease, transform 0.2s ease;
}

.service-link:hover {
  background: linear-gradient(90deg, var(--secondary), var(--primary));
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}


    /* About Section */
    .about-section {
        padding: 6rem 0;
        background-color: var(--light);
        position: relative;
        overflow: hidden;
    }
    
    .about-section::before {
        content: '';
        position: absolute;
        top: -50px;
        right: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(139, 69, 19, 0.1), transparent 70%);
        z-index: 0;
    }
    
    .about-section::after {
        content: '';
        position: absolute;
        bottom: -50px;
        left: -50px;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(205, 133, 63, 0.1), transparent 70%);
        z-index: 0;
    }
    
    .about-content {
        position: relative;
        z-index: 1;
    }
    
    .about-img {
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform: perspective(1000px) rotateY(0deg);
    }
    
    .about-img:hover {
        transform: perspective(1000px) rotateY(10deg);
    }
    
    .about-text h2 {
        color: var(--dark);
        margin-bottom: 1.5rem;
        position: relative;
        display: inline-block;
    }
    
    .about-text h2::after {
        content: '';
        position: absolute;
        bottom: -10px;
        left: 0;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }
    
    .about-text p {
        margin-bottom: 1.5rem;
        color: var(--text);
    }
    
    .feature-list {
        list-style: none;
        padding-left: 0;
    }
    
    .feature-list li {
        margin-bottom: 1rem;
        position: relative;
        padding-left: 2rem;
    }
    
    .feature-list li::before {
        content: '\f00c';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        position: absolute;
        left: 0;
        top: 0;
        color: var(--secondary);
    }
    
    /* Features Section */
    .features {
        padding: 6rem 0;
        background: linear-gradient(135deg, var(--dark), #1a2a2a);
        color: white;
        position: relative;
        overflow: hidden;
    }
    
    .features::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
    }
    
    .features .section-title h2 {
        color: white;
    }
    
    .features .section-title p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .features .section-title h2::after {
        background: var(--accent);
    }
    
    .feature-box {
        text-align: center;
        padding: 2.5rem 2rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        margin-bottom: 2rem;
        height: 100%;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transform: translateY(0);
    }
    
    .feature-box:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        border-color: rgba(255, 255, 255, 0.2);
    }
    
    .feature-box i {
        font-size: 2.5rem;
        color: white;
        margin-bottom: 1.5rem;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    
    .feature-box h4 {
        font-weight: 600;
        margin-bottom: 1rem;
        color: white;
    }
    
    .feature-box p {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 0;
    }
    
    /* Pricing Section */
    .pricing {
        padding: 6rem 0;
        background-color: white;
        position: relative;
    }
    
    .pricing::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 150px;
        background: linear-gradient(to top, var(--light), transparent);
        z-index: 0;
    }
    
    .pricing-content {
        position: relative;
        z-index: 1;
    }
    
    .pricing-card {
        border: none;
        border-radius: 12px;
        box-shadow: var(--shadow-lg);
        padding: 3rem;
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        margin-bottom: 2rem;
        background: white;
        position: relative;
        overflow: hidden;
        transform: translateY(0);
    }
    
    .pricing-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 5px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .pricing-card h3 {
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: var(--dark);
    }
    
    .pricing-card .price {
        font-size: 3rem;
        font-weight: 700;
        margin: 1.5rem 0;
        color: var(--primary);
        position: relative;
        display: inline-block;
    }
    
    .pricing-card .price span {
        font-size: 1rem;
        color: var(--text-light);
        font-weight: 400;
    }
    
    .pricing-card p {
        margin-bottom: 1.5rem;
        color: var(--text);
    }
    
    .pricing-card .highlight-text {
        font-weight: 600;
        color: var(--primary);
        margin: 1.5rem 0;
        font-style: italic;
    }
    
    /* Contact Section */
    .contact-section {
        padding: 6rem 0;
        background-color: var(--light);
        position: relative;
    }
    
    .contact-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: 200px;
        background: radial-gradient(circle, rgba(139, 69, 19, 0.1), transparent 70%);
        z-index: 0;
    }
    
    .contact-content {
        position: relative;
        z-index: 1;
    }
    
    .contact-info {
        background-color: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
        height: 100%;
        transition: all 0.4s ease;
    }
    
    .contact-info:hover {
        box-shadow: var(--shadow-lg);
    }
    
    .contact-info h3 {
        color: var(--dark);
        margin-bottom: 1.5rem;
        position: relative;
        padding-bottom: 1rem;
    }
    
    .contact-info h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 60px;
        height: 3px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
        border-radius: 2px;
    }
    
    .contact-item {
        display: flex;
        margin-bottom: 1.5rem;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 1.5rem;
        flex-shrink: 0;
        font-size: 1.2rem;
        transition: all 0.3s ease;
    }
    
    .contact-item:hover .contact-icon {
        transform: rotate(15deg);
    }
    
    .contact-text h5 {
        margin-bottom: 0.5rem;
        color: var(--dark);
        font-weight: 600;
    }
    
    .contact-text a {
        color: var(--text);
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .contact-text a:hover {
        color: var(--primary);
    }
    
    .contact-form {
        background-color: white;
        padding: 2.5rem;
        border-radius: 12px;
        box-shadow: var(--shadow);
        transition: all 0.4s ease;
    }
    
    .contact-form:hover {
        box-shadow: var(--shadow-lg);
    }
    
    .form-control {
        padding: 1rem;
        border-radius: 8px;
        margin-bottom: 1.5rem;
        border: 1px solid #e2e8f0;
        transition: all 0.3s ease;
    }
    
    .form-control:focus {
        box-shadow: none;
        border-color: var(--primary);
    }
    
    textarea.form-control {
        min-height: 150px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 1rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        color: white;
        border: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .submit-btn::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, var(--primary-light), var(--primary));
        z-index: -1;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 20px rgba(139, 69, 19, 0.2);
    }
    
    .submit-btn:hover::after {
        opacity: 1;
    }
    
    /* Map */
    .map-container {
        border-radius: 12px;
        overflow: hidden;
        box-shadow: var(--shadow-lg);
        margin-top: 3rem;
        transition: all 0.4s ease;
    }
    
    .map-container:hover {
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    }
    
    .map-container iframe {
        width: 100%;
        height: 400px;
        border: none;
    }
    
    /* Footer */
    footer {
        background-color: var(--dark);
        color: white;
        padding: 5rem 0 2rem;
        position: relative;
    }
    
    footer::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, var(--primary), var(--secondary));
    }
    
    .footer-logo {
        font-weight: 700;
        font-size: 2rem;
        color: white;
        margin-bottom: 1.5rem;
        display: inline-block;
    }
    
    .footer-about p {
        opacity: 0.7;
        margin-bottom: 1.5rem;
    }
    
    .footer-links h4 {
        color: white;
        margin-bottom: 1.5rem;
        font-size: 1.25rem;
        font-weight: 600;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .footer-links h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--accent);
    }
    
    .footer-links ul {
        list-style: none;
        padding-left: 0;
    }
    
    .footer-links li {
        margin-bottom: 0.8rem;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: all 0.3s ease;
        display: inline-block;
    }
    
    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .social-icons {
        display: flex;
        gap: 0.8rem;
        margin-top: 1.5rem;
    }
    
    .social-icons a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background-color: rgba(255, 255, 255, 0.1);
        color: white;
        border-radius: 50%;
        transition: all 0.3s ease;
    }
    
    .social-icons a:hover {
        background: linear-gradient(135deg, var(--primary), var(--secondary));
        transform: translateY(-3px);
    }
    
    .copyright {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 2rem;
        margin-top: 3rem;
        text-align: center;
        opacity: 0.7;
        font-size: 0.9rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        position: fixed;
        width: 60px;
        height: 60px;
        bottom: 30px;
        right: 30px;
        background-color: #25d366;
        color: #FFF;
        border-radius: 50px;
        text-align: center;
        font-size: 30px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .whatsapp-float:hover {
        color: #FFF;
        background-color: #128C7E;
        transform: scale(1.1) rotate(10deg);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }
    
    /* Back to Top Button */
    .back-to-top {
        position: fixed;
        bottom: 100px;
        right: 30px;
        width: 50px;
        height: 50px;
        background: linear-gradient(135deg, var(--primary), var(--primary-light));
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .back-to-top.active {
        opacity: 1;
        visibility: visible;
    }
    
    .back-to-top:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes float {
        0% {
            transform: translateY(0px);
        }
        50% {
            transform: translateY(-15px);
        }
        100% {
            transform: translateY(0px);
        }
    }
    
    /* Animate on scroll */
    .animate {
        opacity: 0;
        transform: translateY(30px);
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .animate.animated {
        opacity: 1;
        transform: translateY(0);
    }
    
    .delay-1 {
        transition-delay: 0.1s;
    }
    
    .delay-2 {
        transition-delay: 0.2s;
    }
    
    .delay-3 {
        transition-delay: 0.3s;
    }
    
    .delay-4 {
        transition-delay: 0.4s;
    }
    
    /* Responsive */
    @media (max-width: 1199.98px) {
        .hero h1 {
            font-size: 3rem;
        }
    }
    
    @media (max-width: 991.98px) {
        .hero {
            min-height: 700px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
        }
        
        .about-img {
            margin-bottom: 3rem;
        }
    }
    
    @media (max-width: 767.98px) {
        .hero {
            height: auto;
            min-height: auto;
            padding: 8rem 0;
        }
        
        .hero h1 {
            font-size: 2.2rem;
        }
        
        .hero p {
            font-size: 1.1rem;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .pricing-card {
            padding: 2rem;
        }
    }
    
    @media (max-width: 575.98px) {
        .navbar-brand {
            font-size: 1.5rem;
        }
        
        .hero h1 {
            font-size: 2rem;
        }
        
        .btn-primary,
        .btn-outline-primary {
            padding: 0.7rem 1.5rem;
            font-size: 0.9rem;
        }
        
        .contact-info,
        .contact-form {
            padding: 1.5rem;
        }
        
        .whatsapp-float {
            width: 50px;
            height: 50px;
            font-size: 24px;
            bottom: 20px;
            right: 20px;
        }
        
        .back-to-top {
            width: 40px;
            height: 40px;
            font-size: 1rem;
            bottom: 80px;
            right: 20px;
        }
    }
    .services .row {
  row-gap: 1rem; /* default for mobile */
}

@media (min-width: 768px) {
  .services .row {
    row-gap: 1.5rem; /* tablets */
  }
}

@media (min-width: 1200px) {
  .services .row {
    row-gap: 3rem; /* desktops */
  }
}
/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background-color: #f9f9f9; /* Light background matching your theme */
}

.testimonials .section-title h2 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.testimonials .section-title p {
  color: var(--dark);
  font-size: 1rem;
  margin-bottom: 3rem;
  text-align: center;
}

/* Row setup */
.testimonial-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

/* Testimonial Card */
.testimonial-card {
  background-color: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
  max-width: 350px;
  cursor: pointer;
}

/* Hover effect */
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
  border: 2px solid var(--primary);
}

/* Click / Active effect */
.testimonial-card:active {
  transform: translateY(2px) scale(0.98);
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* Client Photo */
.client-photo {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.client-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text inside cards */
.testimonial-card p {
  font-style: italic;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.testimonial-card h4 {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.testimonial-card span {
  color: var(--secondary);
  font-size: 0.9rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .testimonial-card {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    max-width: 100%;
  }
}
/* Bigger Logo in Navbar */
.navbar-logo {
  height: 80px;   /* Try 70px–90px depending on what looks good */
  width: auto;
}

/* Adjust navbar so bigger logo fits nicely */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
