
/* ============================================== */
/* HERO SECTION */
/* ============================================== */
.hero-section {
    position: relative;
    height: 500px; /* Adjust as needed */
    background-color: #eee7e7; /* Placeholder color */
    background-image: url('images/hero-bpg'); /* Use a placeholder image */
    background-image: url(images/1140-toronto.jpg);
    background-size:cover;
    background-position:center;
    display:flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    color: rgb(241, 241, 241);
}
.hero-content {
    position: absolute; 
    left: 10%; /* Positioning adjustment based on video */
    padding: 20px;
}
.hero-content h1 {
    color: rgb(250, 247, 247);
    font-size: 3em;
    line-height: 1.1;
    margin: -100px 0 20px 0;
}
.hero-tag {
    color: var(--accent-color);
}
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
      

}

/* Placeholder styling for image boxes to match the look */
.image-box {
    min-height: 200px;
    background-color: #e0e0e0; 
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 150px;
    background-image: url(images/welcome-to-canada-flag-scaled.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    
}
.year-experience {
    background-color: var(--primary-color);
    color: rgb(82, 9, 9);
    font-size: 1.2em;
    font-weight: bold;
    background-image: url(images/Immigrate-to-Canada.webp);
    line-height: 1.2;
}
.welcome-canada {
    background-color: #fcf9f9;
    color: rgb (82, 9,  9);
    font-weight: bold;
}

.intro-image-grid{
    background-size:cover;
    padding:50px;
}

.intro-text {
    flex: 1;
}
.since-tag {
    color: var(--accent-color);
    font-weight: bold;
    margin: 15px 0;
}
.founder-info {
    display: flex;
    align-items: center;
    margin-top: 30px;
}
.founder-image {
    
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
    /* This image is not shown clearly in the video but a placeholder is useful */
    background-color: #ccc; 
}
.founder-title {
    color: #888;
    font-size: 0.9em;
}

/* --- 2. Visa Stats Section --- */
.visa-stats-section {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    align-items: center;
}
.visa-stats-image {
    flex: 1;
    min-height: 400px;
    background-color: #eee; /* Placeholder for the image of the application form */
    background-image: url('images/Visa-Free-Countries-For-Canada-in-2025.webp');
    background-size: cover;
    background-position: center;
}
.visa-stats-content {
    flex: 1;
}
.approval-rate-box {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
}
.approval-rate-box .year, .approval-rate-box .big-number {
    line-height: 1;
    margin: 0;
}
.approval-rate-box .big-number {
    font-size: 2em;
    color: var(--primary-color);
}
.approval-percent {
    text-align: center;
}
.approval-percent .percent {
    font-size: 3em;
    font-weight: bold;
    color: var(--accent-color);
    display: block;
    line-height: 1;
}
.commitment {
    font-size: 0.9em;
    font-style: italic;
    color: #666;
}


/* --- 3. FAQ and Ask Our Experts Section --- */
.faq-experts-section {
    display: flex;
    gap: 40px;
    padding: 80px 20px;
    background-color: var(--light-bg);
}
.faq-column {
    flex: 1.5; /* Takes slightly more space for long questions */
}
.ask-experts-column {
    flex: 1;
}

/* FAQ Styling (Accordion Look) */
.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
.faq-question {
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-text);
}
.faq-question i {
    color: var(--accent-color);
    margin-right: 10px;
}
.faq-answer {
    /* In a real app, this would be hidden/shown with JavaScript */
    padding: 10px 0 0 30px;
    font-size: 0.95em;
    color: #555;
}

/* Ask Our Experts Form Styling */
.experts-form-box {
    background-color: white;
    padding: 30px;
    border-radius: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.experts-form-box h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
    text-align: center;
}
.experts-form-box p {
    margin-bottom: 20px;
    text-align: center;
    font-size: 0.9em;
}
.experts-form-box input, 
.experts-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
    box-sizing: border-box;
}
.experts-form-box .submit-btn {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 0;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}
/* --- WhatsApp Floating Button Styles --- */
.whatsapp-float {
    position: fixed; /* Makes the button stay in place when scrolling */
    width: 60px;     /* Size of the button */
    height: 60px;
    bottom: 40px;    /* Distance from the bottom of the viewport */
    right: 40px;     /* Distance from the right of the viewport */
    background-color: #23b659; /* WhatsApp Green */
    color: #f1efef;
    border-radius: 50px; /* Makes it a perfect circle */
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000; /* Ensures it is above all other content */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #4fee6a; /* Slightly darker green on hover */
}

/* Optional: Add a subtle animation */
.whatsapp-float:hover {
    transform: scale(1.05);
}


/* --- Responsive Adjustment for Small Screens --- */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px; /* Bring it closer to the bottom edge */
        right: 20px; /* Bring it closer to the right edge */
        font-size: 25px;
    }
}