:root {
    --primary-color: #ffb6c1; /* Light pink for buttons/accents */
    --secondary-color: #5a7d9a; /* Darker blue for text */
    --background-gradient-start: #ffe0f0;
    --background-gradient-end: #e0f0ff;
    --header-bg: rgba(255, 255, 255, 0.9);
    --text-light: #ffffff;
    --text-dark: #333333;
    --text-medium: #666666;
    --card-bg: #ffffff;
    --footer-bg: #2d3e50;
    --footer-text: #e0e0e0;
    --footer-link: #ffffff;
    --icon-bg-pink: #ffe9ee;
    --icon-color-pink: #ff6f91;
    --icon-bg-blue: #e0f7fa;
    --icon-color-blue: #00bcd4;
    --icon-bg-green: #e8f5e9;
    --icon-color-green: #4caf50;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--header-bg);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 1.8rem;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 4px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--background-gradient-start), var(--background-gradient-end));
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
    padding-top: 80px; /* Offset for fixed header */
    position: relative;
    overflow: hidden;
}

.hero::before, .hero::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(50px);
    opacity: 0.6;
}

.hero::before {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
}

.hero::after {
    width: 200px;
    height: 200px;
    bottom: 15%;
    right: 10%;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
    color: var(--text-dark);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: var(--secondary-color);
}
 
.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    font-weight: 400;
    color: var(--text-medium);
}

.btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.p1 {
    padding-bottom: 1.5rem;
}

.btn:hover {
    background-color: #ff8fa3;
    transform: translateY(-3px);
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
    font-weight: 600;
}

.why-choose-us h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.why-choose-us > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card .icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
    font-size: 2.2rem;
}

.feature-card .icon.shield {
    background-color: var(--icon-bg-pink);
    color: var(--icon-color-pink);
}
.feature-card .icon.lightbulb {
    background-color: var(--icon-bg-blue);
    color: var(--icon-color-blue);
}
.feature-card .icon.users {
    background-color: var(--icon-bg-green);
    color: var(--icon-color-green);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(135deg, #e0f7fa, #fff3e0); /* Light blue to light orange */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonials::before, .testimonials::after {
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
}

.testimonials::before {
    width: 250px;
    height: 250px;
    top: 5%;
    left: -5%;
}

.testimonials::after {
    width: 180px;
    height: 180px;
    bottom: 10%;
    right: -5%;
}

.testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    position: relative;
    z-index: 1;
}

.testimonials > p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.testimonial-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 1;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background-color: var(--card-bg);
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0 15px; /* Adjust spacing between cards if desired */
}

.testimonial-card .quote-icon {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}
 
.testimonial-card .author-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f0f0; /* Placeholder */
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #999;
    font-size: 1.5rem;
}

.testimonial-card p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-style: italic;
}

.testimonial-card .author {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.8);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.carousel-button:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.carousel-button.prev {
    left: -20px;
}

.carousel-button.next {
    right: -20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.carousel-dot.active {
    background-color: var(--primary-color);
}

/* Call to Action Section */
.cta-section {
    padding: 80px 0;
    text-align: center;
    background-color: #f9f9f9;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
    font-weight: 600;
}
 
.cta-section p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 60px 0 20px;
    font-size: 0.95rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-col .logo {
    color: var(--footer-link);
    margin-bottom: 15px;
}
 
.footer-logo-col .logo i {
    color: var(--primary-color);
}

.footer-logo-col p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--footer-text);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: var(--footer-text);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: var(--text-light);
}

.footer-col h4 {
    font-size: 1.2rem;
    color: var(--footer-link);
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--footer-text);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--footer-text);
}

.contact-info p i {
    margin-right: 10px;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    color: var(--footer-text);
}

.footer-bottom .made-with {
    display: flex;
    align-items: center;
    color: var(--footer-text);
}

.footer-bottom .made-with i {
    color: var(--primary-color);
    margin: 0 5px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .why-choose-us h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-card h3 {
        font-size: 1.3rem;
    }

    .testimonial-card {
        padding: 40px;
    }
    .carousel-button.prev { left: 0px; }
    .carousel-button.next { right: 0px; }
}

@media (max-width: 768px) {
    .navbar {
        flex-wrap: wrap;
    }
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: var(--header-bg);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
        position: absolute;
        top: 70px;
        left: 0;
        padding: 20px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .why-choose-us,
    .testimonials,
    .cta-section {
        padding: 60px 0;
    }

    .why-choose-us h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .why-choose-us > p,
    .testimonials > p,
    .cta-section p {
        font-size: 1rem;
    }

    .feature-card {
        margin: 0 10px; /* Add some horizontal margin for smaller screens */
    }

    .testimonial-card {
        padding: 30px;
    }

    .testimonial-card p {
        font-size: 1.1rem;
    }
     
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-logo-col .logo {
        justify-content: center;
    }
    .social-links {
        justify-content: center;
    }
    .contact-info p {
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.2rem;
    }
    .logo i {
        font-size: 1.5rem;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    .hero p {
        font-size: 0.9rem;
    }
    .why-choose-us h2,
    .testimonials h2,
    .cta-section h2 {
        font-size: 1.5rem;
    }
    .testimonial-card p {
        font-size: 1rem;
    }
    .carousel-button {
        width: 35px;
        height: 35px;
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .hero p { font-size: 1.1rem; }  
            .hero {
                padding-left: 14px;
                padding-right: 14px;
            }
        }

        @media (max-width: 610px) {
            .hero h1 { font-size: 1.8rem; }
            .hero p { font-size: 1rem; }  
            .hero {
                padding-left: 14px;
                padding-right: 14px;
            }
        }