* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: #333;
    line-height: 1.6;
}

a{
    text-decoration: none !important;
}
/* TOP BAR CSS */
.top-bar {
    background: linear-gradient(90deg,
            rgba(56, 55, 55, 1) 0%,
            #4ca626 25%,
            rgba(56, 55, 55, 1) 100%);
    padding: 10px 0;
}

.top-bar-left,
.top-bar-center,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    line-height: 18px;
}

.contact-link:hover {
    text-decoration: none;
    color: #fff;
}

.partner-btn {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    padding: 4px 10px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.partner-btn:hover {
    background-color: #4ca626;
    border-color: #4ca626;
    color: #ffffff;
}

/* Hide top bar on screens smaller than 992px */
@media (max-width: 991px) {
    .top-bar {
        display: none;
    }
}


/* Header CSS */
.header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    max-width: 1200px;
    flex-wrap: nowrap;
    /* prevent wrapping */
}

.logo {
    height: 60px;
    max-width: 100%;
}

.call-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    color: #4ca626;
    text-decoration: none;
    border: 2px solid #4ca626;
    border-radius: 50px;
    transition: all 0.3s ease;
    white-space: nowrap;
    /* prevent text wrapping */
}

.call-btn i {
    font-size: 14px;
}

.call-btn:hover {
    background-color: #4ca626;
    color: #ffffff;
     transform: translateY(-2px);
}

/* Responsive tweaks */
@media (max-width: 991px) {
    .header {
        padding: 15px 0;
    }

    .logo {
        height: 50px;
    }

    .call-btn {
        padding: 8px 14px;
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .header .container {
        flex-wrap: nowrap;
        /* keep in row on mobile */
        justify-content: space-between;
    }

    .call-btn {
        font-size: 12px;
        padding: 6px 12px;
    }

    .logo {
        height: 45px;
    }
}


/* Landing Page */
/* Highlight text */
.highlight {
    color: #f4c430;
    font-weight: 700;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    background: linear-gradient(135deg,
            #1f1f1f 0%,
            #2f5f1f 35%,
            #4ca626 65%,
            #1f1f1f 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
    position: relative;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: 0;
}

/* Hero content sits above overlay */
.hero-content {
    position: relative;
    z-index: 1;
}

/* Headings */
.hero h1 {
    font-size: 46px;
    font-weight: 700;
    margin-bottom: 18px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 60px;
    opacity: 0.95;
}

/* Trust Cards */
.trust-card {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.18),
            rgba(255, 255, 255, 0.08));
    border-radius: 16px;
    padding: 25px 15px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    transition: all 0.35s ease;
    text-align: center;
}

.trust-card:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg,
            rgba(76, 166, 38, 0.35),
            rgba(255, 255, 255, 0.1));
}


.price {
    color: #ffd700;
    font-size: 20px;
    text-shadow:
        1px 1px 0 #000,
        -1px 1px 0 #000,
        1px -1px 0 #000,
        -1px -1px 0 #000;
    /* simple black outline */
}


/* Only text after <br> italic */
.after-br {
    font-style: italic;
    font-size: 16px;
    /* px */
    line-height: 24px;
    /* px */
    color: #ffffffcc;
    /* Slightly transparent white */
}


/* Card Icon */
.card-icon {
    font-size: 38px;
    margin-bottom: 14px;
}

/* Card Text */
.card-text {
    font-size: 14px;
    line-height: 20px;
}

/* Responsive Font Sizes */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 38px;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .card-icon {
        font-size: 34px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .trust-card {
        padding: 20px 12px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .card-icon {
        font-size: 28px;
    }
}



/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Heading dual color */
.highlight2 {
    color: #4ca626;
    font-style: italic;
    font-weight: bold;
    text-decoration: underline;
    font-size: 36px;
}

/* Normal heading */
.benefits h2 {
    color: #000000;
    font-size: 36px;
}

/* Benefit card */
.benefit-card {
    background: #ffffff;
    padding: 30px 20px;
    /* px */
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(76, 166, 38, 0.35);
}

/* Icon */
.benefit-icon {
    font-size: 48px;
    /* px */
    color: #4ca626;
    /* Green */
    margin-bottom: 16px;
    /* px */
}

/* Card heading */
.benefit-card h3 {
    font-size: 18px;
    /* px */
    margin-bottom: 12px;
    /* px */
    color: #000000;
    /* Black text */
}

/* Card paragraph */
.benefit-card p {
    font-size: 15px;
    /* px */
    line-height: 20px;
    /* px */
    color: #555555;
}

.packages {
    background: #ffffff;
}

.packages h2 {
    text-align: center;
    font-size: 36px;
    color: #000000;
}

/* Grid */
.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
}

/* Card */
.package-card {
    background: #f6fbf3;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid #cfe6c4;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Featured */
.package-card.featured {
    border-color: #4ca626;
    position: relative;
}

/* Featured badge */
.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1f1f1f 0%, #4ca626 100%);
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
}

/* Image */
.package-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #ffffff;
    padding: 10px;
}

/* Header */
.package-header {
    background: linear-gradient(135deg, #f3f9ef 0%, #cfe6c4 50%, #4ca626 100%);
    color: #333;
    padding: 30px;
    text-align: center;
}


.package-card.featured .package-header {
    background: linear-gradient(135deg, #1f1f1f 0%, #4ca626 100%);
    color: #fff;
}



/* Text */
.package-name {
    font-size: 26px;
    margin-bottom: 10px;
    font-weight: 600;
}

.package-price {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
}

.original-price {
    text-decoration: line-through;
    opacity: 0.7;
    font-size: 16px;
    display: block;
}

/* Discount */
.discount-badge {
    background: #ffffff;
    color: #4ca626;
    padding: 8px 22px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    border: 2px dashed #4ca626;
}


/* Body */
.package-body {
    padding: 35px;
}

/* Features */
.package-features {
    list-style: none;
    margin-bottom: 30px;
    padding: 0;
}

.package-features li {
    padding: 14px 0;
    border-bottom: 1px solid #e1efdb;
    display: flex;
    align-items: start;
    color: #333333;
}

.package-features li:before {
    content: "✓";
    color: #4ca626;
    font-weight: bold;
    margin-right: 12px;
    font-size: 18px;
    flex-shrink: 0;
}

/* Primary CTA */
.cta-button {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #4ca626, #2f6b1a);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(76, 166, 38, 0.45);
}

.secondary-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #1f1f1f;
    text-align: center;
    text-decoration: none !important;
    border: 2px solid #1f1f1f;
    border-radius: 30px;
    font-weight: 600;
    margin-top: 12px;
    transition: all 0.3s ease;
}

.secondary-cta:hover {
    background: #1f1f1f;
    transform: translateY(-2px);
    color: #ffffff;
}


.custom-section {
    background: #ffffff;
}

.custom-heading {
       text-align: center;
    font-size: 36px;
    color: #000000;
}


.custom-intro  {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    color: #666;
}


/* Custom feature cards */
.custom-feature-card {
    background: #f6f6f6;
    padding: 30px 20px;
    border-radius: 15px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.custom-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(76, 166, 38, 0.35);
}

.custom-feature-icon {
    font-size: 48px;
    color: #4ca626;
    margin-bottom: 16px;
}

.custom-feature-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #1f1f1f;
}

.custom-feature-card p {
    font-size: 15px;
    line-height: 20px;
    color: #555555;
}

/* CTA Buttons Base */
.custom-cta-btn {
    display: inline-block;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

/* Call Now - Outline Green */
.custom-cta-btn.outline-btn {
    background: transparent;
    color: #4ca626;
    border: 2px solid #4ca626;
}

.custom-cta-btn.outline-btn:hover {
    background: #4ca626;
    color: #fff;
    transform: scale(1.05);
}

/* WhatsApp - Gradient */
.custom-cta-btn.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #1f7f43 100%);
    color: #fff;
    border: none;
}

.custom-cta-btn.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1f7f43 0%, #25d366 100%);
    transform: scale(1.05);
}


/* Responsive */
@media (max-width: 768px) {
    .custom-heading {
        font-size: 28px;
    }
    .custom-intro {
        font-size: 16px;
    }
    .custom-feature-card {
        margin-bottom: 20px;
    }
}



/* CTA Button */
.table-cta-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, #4ca626 0%, #1f1f1f 100%);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.table-cta-btn:hover {
    background: #1f1f1f;
    transform: scale(1.05);
}

.custom-whatsapp {
    font-size: 14px;
    color: #555;
}

.custom-whatsapp a {
    color: #4ca626;
    text-decoration: none;
}

.custom-whatsapp a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-heading {
        font-size: 28px;
    }
    .custom-intro {
        font-size: 16px;
    }
    .benefit-card {
        margin-bottom: 20px;
    }
}



.urgency {
    background: linear-gradient(135deg, #4ca626 0%, #1f1f1f 100%); 
    color: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.urgency-heading {
    font-size: 28px;
    color: #f4c430;
    font-weight: 700;
}

.urgency-text {
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
}

/* Pulse animation for urgency heading */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

.urgency-heading.pulse {
    display: inline-block;
    animation: pulse 1.5s infinite;
}

@media (max-width: 768px) {
    .urgency {
        padding: 30px 15px; /* reduce padding on mobile */
    }

    .urgency-heading {
        font-size: 22px; /* smaller heading */
    }

    .urgency-text {
        font-size: 16px; /* smaller text */
        line-height: 1.4; /* tighter spacing */
    }
}


.inclusions {
    background: #ffffff; /* soft white for main background */
}

.inclusions-heading {
  text-align: center;
    font-size: 36px;
    color: #000000;
}

.inclusions-content {
    max-width: 1100px;
    margin: 0 auto;
}

.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.inclusion-card {
    border-left: 5px solid #4ca626;
    padding: 30px 25px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}


.inclusion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(76, 166, 38, 0.3);
}

.inclusion-icon {
    font-size: 48px;
    color: #4ca626; /* theme green */
    margin-bottom: 15px;
}

.inclusion-card h3 {
    font-size: 22px;
    color: #1f1f1f;
    margin-bottom: 20px;
}

.inclusion-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.inclusion-card li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: left;
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.inclusion-card li i {
    color: #4ca626;
    margin-right: 10px;
}


.transparency-banner {
    background: linear-gradient(135deg, #4ca626 0%, #1f1f1f 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    color: #fff;
}

.transparency-icon i {
    font-size: 48px; /* bigger icon */
    color: #f4c430; /* bright yellow/gold */
    display: inline-block;
    animation: pulse 1.5s infinite; /* subtle attention animation */
}

.transparency-banner h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #f4c430;
    /* font-weight: 700; */
}

.transparency-banner p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    color: #fff;
    margin: 0;
}

/* Pulse animation */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

/* Responsive for small screens */
@media (max-width: 768px) {
    .inclusions {
        padding: 50px 15px;
    }
    .inclusions-heading {
        font-size: 28px;
        margin-bottom: 40px;
    }
    .inclusion-card h3 {
        font-size: 20px;
    }
    .inclusion-card li {
        font-size: 14px;
    }
   .transparency-banner h3 {
        font-size: 22px;
    }
    .transparency-banner p {
        font-size: 16px;
    }
    .transparency-icon i {
        font-size: 36px;
    }
}

.social-proof {
    background: #f8f9fa; /* light grey background */
    box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}

.social-proof h2.social-heading {
    font-size: 36px;
    color: #000;
    text-align: center;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}

.stat {
    background: #ffffff; /* card style */
    padding: 30px 20px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    text-align: center;
    flex: 1 1 200px;
    max-width: 220px;
}

.stat {
        flex: unset;  /* disables flex on mobile */
        max-width: 100%; /* lets it wrap naturally */
    }

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #4ca626; /* theme green */
    margin-bottom: 10px;
}

.stat-label {
    font-size: 18px;
    font-style: italic;
    color: #555555;
}

/* Responsive */
@media (max-width: 768px) {
    .social-proof h2.social-heading {
        font-size: 28px;
    }
    .stat-number {
        font-size: 36px;
    }
    .stat-label {
        font-size: 16px;
    }
}


.contact-section {
    background: #007bff;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

.contact-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 12px;
    transition: background 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.contact-method a {
    color: white;
    text-decoration: none;
    font-size: 1.15em;
    font-weight: 600;
}

.comparison-section {
    background: #f8f9fa;
}

.comparison-section h2 {
   text-align: center;
    font-size: 36px;
    color: #000000;
}

.comparison-intro {
    text-align: center;
    font-size: 18px;
    font-style: italic;
    color: #666;
}

.comparison-table-wrapper {
    overflow-x: auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.comparison-table thead {
    /* background: linear-gradient(135deg, #fff 0%, #4ca626 100%); */
    color: #333;
}

.comparison-table th {
    padding: 25px 15px;
    text-align: center;
    font-weight: 600;
}

.feature-col {
    text-align: left !important;
    min-width: 250px;
    position: sticky;
    left: 0;
    /* background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); */
      /* background: linear-gradient(135deg, #1f1f1f 0%, #4ca626 100%); */
      color: #fff;
    z-index: 10;
}

.package-col {
    min-width: 130px;
}

.popular-col {
  background: linear-gradient(135deg, #1f1f1f 0%, #4ca626 100%);
  color: #fff;
}

.package-header-compact {
    font-size: 1.1em;
    /* font-weight: 700; */
}

.price-compact {
    display: block;
    font-size: 0.85em;
    margin-top: 5px;
    opacity: 0.9;
}

.popular-badge-small {
    display: block;
    background: rgba(255, 255, 255, 0.3);
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.7em;
    margin-bottom: 5px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table td {
    padding: 18px 15px;
    text-align: center;
    color: #555;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: white;
    position: sticky;
    left: 0;
    z-index: 5;
    border-right: 2px solid #e0e0e0;
}

.category-row td {
    background: #4ca626 !important;
    color: #ffff !important;
    font-size: 1.1em;
    padding: 20px 15px !important;
 font-style: italic;
}

.check {
    color: #28a745;
    font-size: 1.5em;
    font-weight: bold;
}

.cross {
    color: #dc3545;
    font-size: 1.5em;
    opacity: 0.3;
}

.cta-row {
    background: #f0f0f0;
}

.cta-row td {
    padding: 25px 15px !important;
}

.table-cta-btn {
    display: inline-block;
    padding: 10px 25px;
    background: #4ca626; /* Theme green */
    color: white;
    text-decoration: none;
    border-radius: 30px; /* Rounded corners */
    font-weight: 600;
    transition: all 0.3s ease;
}

.table-cta-btn:hover {
    background: #3e8e1e; /* Darker green on hover */
    color:#fff;
    transform: scale(1.05);
}

.popular-cta {
    background: #1f1f1f; /* Theme black/dark for popular */
    color: #fff;
    border-radius: 30px;
}

.popular-cta:hover {
    background: #333333; /* Slightly lighter black on hover */
    color: #fff;
    transform: scale(1.05);
}



.comparison-help {
    background: linear-gradient(135deg, #4ca626 0%, #1f1f1f 100%); /* Green to black gradient */
    border-radius: 15px;
    text-align: center;
    color: white;
}

.comparison-help h3 {
    font-size: 28px; /* px */
    margin-bottom: 15px;
}

.comparison-help p {
    font-size: 18px; /* px */
    margin-bottom: 25px;
    line-height: 1.5;
}

.comparison-help-btn {
    display: inline-block;
    padding: 15px 45px;
    background: white;
    color: #4ca626; /* Theme green */
    text-decoration: none;
    border-radius: 30px; /* Rounded corners consistent with table buttons */
    font-weight: 700;
    font-size: 18px; /* px */
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.comparison-help-btn:hover {
    transform: scale(1.05);
    background: #4ca626; /* Hover fills green */
    color: #fff; /* Text turns white */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .comparison-help h3 {
        font-size: 24px;
    }
    .comparison-help p {
        font-size: 16px;
    }
    .comparison-help-btn {
        padding: 12px 35px;
        font-size: 16px;
    }
}


.testimonials-section {
    background: #ffffff;
}

.testimonials-section h2 {
     text-align: center;
    font-size: 36px;
    color: #000000;
}


.testimonials-intro {
      text-align: center;
    font-size: 18px;
    font-style: italic;
    color: #666;
}

.testimonials-grid .testimonial-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%; /* equal height */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonials-grid .testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.testimonial-thumb {
    width: 100%;
    display: block;
    height: 200px; /* fixed height for consistency */
    object-fit: cover; /* crop nicely */
}

.testimonial-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    font-style: italic;
    flex-grow: 1;
}

.testimonial-author {
    font-size: 16px;
    color: #222;
    margin-top: 10px;
}

.testimonial-content hr {
    border: 0;
    border-top: 1px solid #eee;
    margin: 10px 0;
}


.testimonials-cta p {
    font-size: 16px;
    color: #666;
    font-style: italic;
}

.testimonials-cta-btn {
    display: inline-block;
    padding: 12px 35px;
    background: #4ca626;
      background: linear-gradient(135deg, #4ca626, #2f6b1a);
    color: #fff;
    border-radius: 30px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-cta-btn:hover {
    transform: scale(1.05);
    color: #fff;
    /* background: #3d8b1f; */
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 28px;
    }
    .testimonials-intro {
        font-size: 16px;
    }
    .testimonials-grid .col-md-4 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


.footer-section {
    background-color: #111; /* dark background */
    color: #fff;
    font-family: Arial, sans-serif;
}

.footer-logo {
    max-width: 180px;
}

.footer-text {
    font-size: 20px;
    color: #f4c430;
    font-style: italic;
    border: 4px dotted grey;
    border-radius: 30px;
    padding: 10px;
}

.footer-contacts a {
    display: inline-block;
    margin: 5px 15px 5px 0;
    font-size: 16px;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contacts a i {
    margin-right: 8px;
    color: #4ca626; /* green accent for icons */
}

.footer-contacts a:hover i,
.footer-contacts a:hover {
    color: #4ca626;
}

.footer-social a {
    display: inline-block;
    margin: 0 10px;
    font-size: 18px;
    color: #fff;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social a:hover {
    color: #4ca626;
    transform: scale(1.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-text {
        text-align: center;
    }
    .footer-contacts {
        text-align: center;
    }
    .footer-social {
        text-align: center;
        margin-top: 15px;
    }
}
