:root {
    --primary-green: #25D366;  /* WhatsApp Green */
    --secondary-green: #128C7E; /* Dark Green */
    --primary-red: #FF0000;  /* Canadian Red */
    --text-black: #000000;
    --bg-white: #ffffff;
    --light-gray: #f9f9f9;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

/* 🌐 Navigation */
.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background: rgb(73, 29, 29);
}

.logo-img {
    width: 50px;  /* Adjust for smaller navbar */
    height: auto;  /* Maintain aspect ratio */
    max-height: 50px;  /* Prevent it from being too large */
}

/* Navigation Links */
.nav-links a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
    font-size: 16px;
}

.nav-links a:hover {
    color: #25D366; /* WhatsApp green hover effect */
}

/* Sections */
section {
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 800px;
    margin: auto;
}

h2 {
    color: var(--text-black);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

/* 🟢 WhatsApp Buttons */
.primary-btn {
    padding: 1rem 2rem;
    background: var(--primary-green);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.primary-btn:hover {
    background: var(--secondary-green);
}

/* 🤖 How It Works */
.step-card {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.step-card i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.contact-image {
    flex: 1;
    max-width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-image img {
    max-width: 100%;
    border-radius: 10px;
}

.contact-form {
    flex: 1;
    padding: 20px;
}

.contact-form form {
    width: 100%;
}

@media (max-width: 992px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-image, .contact-form {
        max-width: 100%;
    }
}

/* 🌐 Footer */
footer {
    background: rgb(73, 29, 29);;
    color: white;
    padding: .5rem;
    text-align: center;
}

.footer-links a {
    color: var(--primary-green);
    margin: 0 10px;
    font-size: 1.5rem;
}

/* Discover Section Styling */
.discover-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.text-content {
    padding: 20px;
    text-align: left;
}

.image-background {
    min-height: 400px;
    background-image: url('canadaImage.png'); /* Replace with your image path */
    background-size: cover;
    background-position: center;
    border-radius: 10px;
}


.chat-assistant-section {
    background: #f8f9fa;
}

.chat-assistant-section h2 {
    color: #000;
}

.chat-assistant-section p {
    color: #4a4a4a;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: #fff;
}

.about-section h2 {
    color: #000;
}

.about-section .lead {
    max-width: 700px;
    margin: 0 auto;
    color: #333;
    font-size: 18px;
    font-weight: 500;
}

.about-section .about-card {
    background: white;
    border-left: 5px solid #28a745;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.about-section .small-text {
    max-width: 600px;
    margin: 20px auto;
    font-size: 14px;
    color: #555;
}

/* Support Section */
.support-section {
    background: #f8f9fa;
}

.support-section h4 {
    color: #000;
    font-size: 20px;
}

.support-section .small-text {
    font-size: 13px;
    color: #777;
    max-width: 600px;
    margin: 0 auto;
}

.support-section .btn {
    font-size: 16px;
    padding: 10px 20px;
}
/* Divider Line */


.custom-divider {
    width: 60%;
    border-top: 3px solid #28a745;
    opacity: 0.8;
    margin: 0 auto;
}

.whatsapp-benefits h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.whatsapp-benefits p {
    font-size: 1.1rem;
    color: #555;
}

/* Ensure all images have the same size */
/* Ensure all images in the Benefits section are the same size and responsive */
.benefit-img {
    width: 100%; /* Make images responsive */
    max-width: 350px; /* Set a fixed width */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Prevents cropping while ensuring uniform display */
    display: block;
    margin: 0 auto;
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Ensure uniform padding in the benefits section */
.whatsapp-benefits .row {
    padding: 20px 0;
}

/* Responsive Fix for iPhone Safari */
@media (max-width: 768px) {
    .benefit-img {
        max-width: 90%; /* Ensures proper scaling on smaller screens */
    }
}

/* Fix alternating layout for mobile */
@media (max-width: 768px) {
    .whatsapp-benefits .row {
        flex-direction: column-reverse;
        text-align: center;
    }

    .whatsapp-benefits .row:nth-child(even) {
        flex-direction: column;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-background {
        min-height: 250px;
        border-radius: 10px;
    }
}

/* Adjust AI Beaver Assistant Image Size to Logo */
.ai-beaver-img2 {
    max-width: 110px; /* Set a fixed width for logo size */
    height: auto; /* Maintain aspect ratio */
    display: block;
    margin: 0 auto;
}