/* Basic Reset and Font Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #d3d6d4;
    color: white;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    background: #000000;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    height: 60px; /* Adjust based on your header height */
}

.logo img {
    max-height: 130px; /* Adjust the size of the logo */
    width: auto;
    margin-left: -100px;
}


/* Navigation List */
nav ul {
    list-style: none;
    display: flex;
    padding: 0;
    margin: 0;
    justify-content: center;
    margin-left: -120px ;
}

/* Navigation Items */
nav ul li {
    margin: 0 15px;
}

/* Navigation Links */
nav ul li a {
    text-decoration: none;
    color: white;
    font-size: 26px;
    font-family: Arial, sans-serif;
    transition: color 0.3s ease, opacity 0.3s ease;
}

nav ul li a:hover {
    color: #7abd98;
    opacity: 0.7;
}

/* Book Button */
.book-btn {
    background: #f3eed9;
    padding: 16px 35px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    cursor: pointer;
    font-family: Arial, sans-serif;
    transition: background 0.3s ease;
    margin-right: 40px;
}

.book-btn:hover {
    background: #7abd98;
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {

    html, body {
        overflow-x: hidden;
        width: 100%;
    }

    header .book-btn { 
        display: none !important; /* Hides only the header button */
    }

    /* Other styles remain the same */
    header {
        display: flex;
        justify-content: space-between; /* Aligns logo left and menu icon right */
        align-items: center; /* Vertically centers both */
        padding: 10px 15px; /* Adjust padding */
        height: 60px; /* Reduce overall header height */
    }

    .logo img {
        max-height: 50px; /* Smaller logo for mobile */
        width: auto;
        margin-left: 0;
    }

    .menu-icon {
        display: block;
        font-size: 30px;
        color: white;
        cursor: pointer;
    }

    /* Hide navigation by default on mobile */
    nav ul {
        display: none;
        flex-direction: column;
        margin-top: 16px;
        background: #000; /* Ensure visibility */
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 1001;
        margin-left: 0;
    }

    /* Navigation Links */
    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    nav ul li a {
        font-size: 14px;
        display: block;
        padding: 6px;
    }

    /* Display menu when the menu icon is clicked */
    .menu-icon.active + nav ul {
        display: flex;
    }
}

/* Desktop Styles (Fixes Menu Display) */
@media screen and (min-width: 769px) {
    /* Hide hamburger icon on desktop */
    .menu-icon {
        display: none;
    }

    /* Ensure the menu is displayed properly */
    nav ul {
        display: flex !important; /* Fix visibility issue */
        flex-direction: row; /* Keep items in a row */
        justify-content: flex-end; /* Align to the right */
        gap: 20px;
    }

    /* Keep the header book button on desktop */
    header .book-btn {
        display: inline-block !important;
    }
}




/* General Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100vh;
    position: relative;
    text-align: center;
    margin-top: 100px;
    background: url('./images/back2.webp') no-repeat center center/cover;
}

/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

/* Hero Text */
.hero-title {
    font-size: 66px;
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 30px;
    font-family: 'Courier New', Courier, monospace;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Highlighted Text */
.highlight-text {
    color: #7abd98;
}

/* Book a Shoot Button */
.book-btn {
    background: #f3eed9;
    padding: 16px 35px;
    border: none;
    border-radius: 40px;
    font-size: 20px;
    cursor: pointer;
    font-family: 'Courier New', Courier, monospace;
    transition: background 0.3s ease;
    margin-top: 20px;
    position: relative;
    z-index: 2;
}

.book-btn:hover {
    background: #7abd98;
}

/* 🔹 Responsive Hero Section Fixes */
@media (max-width: 768px) {
    .hero {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: auto;
        padding: 50px 15px 25px; /* Adjusted for better spacing */
        margin-top: 60px; /* Reduced gap from the top */
        position: relative;
    }

    /* Background Overlay for Better Readability */
    .hero::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.6); /* Darker overlay */
        z-index: 1;
    }

    /* Ensure content is above overlay */
    .hero div {
        max-width: 90%;
        position: relative;
        z-index: 2;
    }

    .hero-title {
        font-size: 28px;
        line-height: 1.4;
        max-width: 100%;
        color: #fff; /* White text for better contrast */
    }

    .hero-subtitle {
        font-size: 18px;
        margin-top: 10px; /* Adds spacing below title */
        max-width: 100%;
        color: #f1f1f1; /* Slightly off-white for better contrast */
    }

    .book-btn {
        font-size: 16px;
        padding: 10px 20px;
        margin-top: 20px;
        background: #6fa886;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .book-btn:hover {
        background: #5a9d7e;
    }
}

/* 🔹 Extra Small Screens (Phones) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 10px 20px;
        margin-top: 70px;
    }

    .hero-title {
        font-size: 24px;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-top: 8px;
    }

    .book-btn {
        font-size: 14px;
        padding: 8px 18px;
        margin-top: 15px;
    }
}


.video-section {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #f8f8f8;
}

.video-content {
    display: flex;
    max-width: 1300px;
    width: 100%;
    align-items: center;
    gap: 60px;
}

.video-text {
    flex: 1;
    max-width: 45%;
}

.video-text h2 {
    font-size: 42px;
    font-family: Arial, sans-serif; /* Fancy font */
    color: #222;
    font-weight: bold;
}

.video-text p {
    font-size: 20px;
    font-family: 'Georgia', serif; /* Elegant font */
    color: #444;
    line-height: 1.6;
}

.video-wrapper {
    flex: 1;
    max-width: 55%;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .video-content {
        gap: 30px; /* Reduce space for tablets */
    }

    .video-text h2 {
        font-size: 36px;
    }

    .video-text p {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .video-section {
        padding: 40px 20px; /* Reduce padding on smaller screens */
    }

    .video-content {
        flex-direction: column; /* Stack content vertically */
        text-align: center; /* Center text */
        gap: 20px;
    }

    .video-text, .video-wrapper {
        max-width: 100%; /* Take full width */
    }

    .video-text h2 {
        font-size: 30px; /* Adjust heading size */
    }

    .video-text p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 30px 15px;
    }

    .video-text h2 {
        font-size: 24px; /* Smaller heading */
    }

    .video-text p {
        font-size: 14px;
    }
}



/* Services Section Styles */
.real-estate-services {
    padding: 60px 20px;
    background-color: #e7e3e3;
    text-align: center;
}

.real-estate-services h2 {
    font-size: 2.5em;
    color: #292828;
    margin-bottom: 40px;
}

/* Grid Layout: 2 Columns */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 services per row */
    gap: 30px;
    max-width: 1100px;
    margin: auto;
}

/* Service Card */
.service-card {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card img {
    width: 100%;
    height: 400px; /* Larger images */
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

/* Hover Effect: Zoom In */
.service-card:hover img {
    transform: scale(1.05);
}

/* Header Overlay Stays at the Top */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6); /* Dark semi-transparent overlay */
    color: white;
    padding: 15px 10px;
    text-align: center;
}

.service-overlay h3 {
    font-size: 1.6em;
    margin: 0;
}

/* Learn More Button - Positioned at the Bottom */
.learn-more-container {
    position: absolute;
    bottom: 20px; /* Position at the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.btn-learn-more {
    display: inline-block;
    padding: 12px 24px;
    background-color: #7abd98;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover .btn-learn-more {
    background-color: #66a97d;
    transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid {
        gap: 20px; /* Reduce spacing on tablets */
    }

    .service-card img {
        height: 350px; /* Adjust image size */
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr; /* Single column layout for mobile */
    }

    .real-estate-services h2 {
        font-size: 2em; /* Smaller heading */
    }

    .service-card img {
        height: 300px; /* Smaller images */
    }

    .service-overlay h3 {
        font-size: 1.4em;
    }

    .btn-learn-more {
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .real-estate-services {
        padding: 40px 15px;
    }

    .real-estate-services h2 {
        font-size: 1.8em;
    }

    .service-card img {
        height: 250px;
    }

    .service-overlay h3 {
        font-size: 1.2em;
    }

    .btn-learn-more {
        font-size: 14px;
        padding: 8px 16px;
    }
}




/* Why Choose us */
.why-choose-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    background: linear-gradient(to right, #004b28, #e3e5e7);
    color: white;
    font-family: Arial, sans-serif;
}

.why-left {
    width: 40%;
}
.why-left h2 {
    font-size: 3em;
    color: #ecf0f1;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.why-left p {
    font-size: 1.3em;
    color: #bdc3c7;
    font-weight: 500;
}
.why-left span {
    font-weight: bold;
    color: #7abd98;
}

.why-right {
    width: 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    align-items: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
    color: black;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.why-item:hover {
    transform: translateY(-5px);
    box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.25);
}

.icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #7abd98, #4facfe);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8em;
    margin-right: 20px;
    box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.15);
}

.text h3 {
    margin: 0;
    font-size: 1.5em;
    color: #333;
    font-weight: 700;
}
.text p {
    margin: 5px 0 0;
    font-size: 1.1em;
    color: #666;
    font-weight: 500;
}

/* Tablet and Mobile Optimization */
@media (max-width: 1024px) {
    .why-choose-us {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px;
    }

    .why-left, .why-right {
        width: 100%;
    }

    .why-left h2 {
        font-size: 2.5em;
    }

    .why-left p {
        font-size: 1.2em;
    }

    .why-right {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .why-choose-us {
        padding: 40px 20px;
    }

    .why-left h2 {
        font-size: 2.2em;
    }

    .why-left p {
        font-size: 1.1em;
    }

    .why-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px;
    }

    .icon {
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .why-choose-us {
        padding: 30px 15px;
    }

    .why-left h2 {
        font-size: 2em;
    }

    .why-left p {
        font-size: 1em;
    }

    .why-item {
        padding: 20px;
    }

    .icon {
        width: 60px;
        height: 60px;
        font-size: 1.5em;
    }

    .text h3 {
        font-size: 1.3em;
    }

    .text p {
        font-size: 1em;
    }
}




/* Our Clients */
.our-clients {
    text-align: center;
    background: #ffffff;
    padding: 60px 20px;
    color: #0f0f0f;
    font-family: Arial, sans-serif;
}

.our-clients h2 {
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.our-clients p {
    font-size: 1.2em;
    color: #3a3939;
    margin-bottom: 30px;
    font-weight: 500;
}

.clients-logos {
    display: flex;
    justify-content: center;
    gap: 60px; /* Increased gap for more spacing */
    flex-wrap: wrap;
    align-items: center;
}

.clients-logos img {
    max-width: 160px; /* Slightly increased size */
    margin: 10px 20px; /* Added margin for extra spacing */
}

@media (max-width: 768px) {
    .our-clients {
        padding: 40px 10px;
    }

    .our-clients h2 {
        font-size: 2em;
    }

    .our-clients p {
        font-size: 1em;
    }

    .clients-logos {
        gap: 30px;
    }

    .clients-logos img {
        max-width: 120px;
        margin: 8px 15px;
    }
}

@media (max-width: 480px) {
    .our-clients {
        padding: 30px 5px;
    }

    .our-clients h2 {
        font-size: 1.8em;
    }

    .our-clients p {
        font-size: 0.95em;
    }

    .clients-logos {
        gap: 20px;
    }

    .clients-logos img {
        max-width: 100px;
        margin: 5px 10px;
    }
}



/* Include Google Fonts for a stylish font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Popup background */
.custom-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Popup content */
.custom-popup-content {
    background: #ffffff;
    width: 90%;
    max-width: 900px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.15);
    border: 2px solid #6fa886;
    font-family: 'Poppins', sans-serif;
    position: relative;
    
    /* Ensure proper centering */
    margin: auto;
}

/* Close button */
.custom-close {
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 24px;
    cursor: pointer;
    color: #444;
}

.custom-close:hover {
    color: red;
}

/* Step indicator */
.custom-step-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.custom-step {
    width: 28px;
    height: 28px;
    background: #ccc;
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    margin: 0 6px;
    font-weight: bold;
    transition: background 0.3s;
}

.custom-step.active {
    background: #6fa886;
}

/* Step headers */
.custom-step-content h2 {
    font-size: 1.6em;
    color: #222;
    margin-bottom: 20px;
}

/* Labels for inputs */
.custom-label {
    font-weight: 400;
    margin-top: 16px;
    margin-bottom: 8px;
    text-align: left;
    color: #000 !important; 
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3em;
}

/* Inputs with better styling */
input, textarea {
    width: 90%; /* Reduced width for better appearance */
    margin: 8px 0;
    padding: 12px;
    border: 1px solid #6fa886;
    border-radius: 6px;
    background: rgba(111, 168, 134, 0.1);
    font-size: 1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Plans container */
.custom-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px; /* Increased spacing */
    justify-content: center;
    margin-top: 24px;
    padding: 12px;
}

/* Cards */
.custom-card {
    background: #f5f5f5;
    padding: 18px;
    border-radius: 12px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    font-weight: bold;
    color: #222;
    width: 70%;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    font-family: Arial, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid transparent;
    flex-direction: column;
    font-size: 1.3em;
    min-height: 90px;
    margin-right: 12px;
}

.custom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
}

.custom-card.selected {
    background: #6fa886;
    color: white;
    border: 2px solid #4e8767;
}

.custom-card span {
    font-size: 1.1em;
    text-align: center;
    font-weight: 600;
}

/* Total amount display */
.total-amount {
    margin-top: 16px;
    font-size: 1.4em;
    font-weight: bold;
    color: #6fa886;
}

/* Buttons inside the popup */
.custom-btn {
    background: #6fa886;
    color: white;
    padding: 14px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1.1em;
    margin: 16px 6px;
    font-family: 'Poppins', sans-serif;
    transition: background 0.3s ease, transform 0.2s ease;
}

.custom-btn:hover {
    background: #5a9d7e;
    transform: scale(1.05);
}

.custom-submit {
    background: #4e8767;
}

/* Responsive Popup Styling */
@media (max-width: 768px) {
    .custom-popup-content {
        width: 95%;
        max-width: 100%;
        padding: 16px;
        max-height: 90vh; /* Limits height to avoid cut-off */
        overflow-y: auto; /* Enables scrolling if needed */
    }

    .custom-step-content h2 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .custom-label {
        font-size: 1em;
    }

    input, textarea {
        font-size: 0.9em;
        padding: 8px;
    }

    .custom-btn {
        font-size: 0.95em;
        padding: 10px 16px;
        position: relative; /* Ensures visibility */
    }

    /* Cards - Adjust Grid Layout */
    .custom-plans {
        grid-template-columns: repeat(2, 1fr); /* 2 per row */
        gap: 12px;
        padding-bottom: 10px;
    }

    .custom-card {
        width: 100%;
        font-size: 1em;
        padding: 12px;
        min-height: 75px;
    }
}

/* Extra Small Screens (Phones) */
@media (max-width: 480px) {
    .custom-popup-content {
        width: 94%;
        padding: 14px;
        max-height: 85vh; /* Ensures it does not overflow */
        overflow-y: auto;
    }

    .custom-step-content h2 {
        font-size: 1.2em;
    }

    .custom-label {
        font-size: 0.95em;
    }

    input, textarea {
        font-size: 0.85em;
        padding: 7px;
    }

    .custom-btn {
        font-size: 0.9em;
        padding: 9px 14px;
        bottom: 10px;
    }

    /* Single column layout for smallest screens */
    .custom-plans {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .custom-card {
        width: 100%;
        padding: 10px;
        font-size: 0.95em;
    }
}




@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #111;
    color: #fff;
    text-align: center;
}

/* Testimonial Section */
.testimonials-section {
    padding: 60px 20px;
}

.testimonials-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container for cards */
.testimonials-container {
    display: flex;
    justify-content: center;
    gap: 30px; /* Increased spacing between cards */
    flex-wrap: wrap;
}

/* Individual Testimonial Cards */
.testimonial-card {
    background: #1a1a1a; /* Dark background */
    border-radius: 15px;
    padding: 20px;
    width: 300px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: 2px solid transparent;
    z-index: 1;
}

/* Glowing White Border Effect */
.testimonial-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    border-radius: 15px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

/* Hover Effects */
.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Make only the border glow on hover */
.testimonial-card:hover::before {
    opacity: 1;
}

/* User Image */
.user-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #7abd98;
    margin-bottom: 15px;
}

/* Testimonial Text */
.testimonial-text {
    font-size: 1rem;
    font-weight: 300;
    color: #ddd;
    margin-bottom: 10px;
}

/* Name */
.testimonial-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #7abd98;
}

/* Star Rating */
.star-rating {
    color: gold;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .testimonials-section {
        padding: 50px 30px; /* Increased padding for spacing */
    }

    .testimonials-container {
        gap: 25px; /* Increased spacing between cards */
    }

    .testimonial-card {
        width: 290px;
        padding: 22px; /* Added more padding inside the card */
        margin: 10px; /* Added margin for spacing around each card */
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-name {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 45px 20px; /* Increased left & right padding */
    }

    .testimonials-section h2 {
        font-size: 1.9rem;
    }

    .testimonials-container {
        gap: 20px; /* More spacing between cards */
        justify-content: center;
    }

    .testimonial-card {
        width: 270px;
        padding: 20px; /* Increased padding inside the card */
        margin: 12px; /* Spacing around the card */
    }

    .user-img {
        width: 75px;
        height: 75px;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .testimonial-name {
        font-size: 1.1rem;
    }

    .star-rating {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 35px 15px; /* More padding for better spacing */
    }

    .testimonials-section h2 {
        font-size: 1.7rem;
    }

    .testimonials-container {
        flex-direction: column;
        align-items: center;
        gap: 18px; /* Added spacing between stacked cards */
    }

    .testimonial-card {
        width: 95%;
        max-width: 270px;
        padding: 18px; /* Increased padding */
        margin: 15px 0; /* More margin between cards */
    }

    .user-img {
        width: 65px;
        height: 65px;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

    .star-rating {
        font-size: 1rem;
    }
}


