/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 15px;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}

h3 {
    font-size: 1.2rem;
}

p {
    margin-bottom: 15px;
}

img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

section {
    padding: 60px 0;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 80px 0;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

/* Certificates Section */
.certificate-cards {
    display: flex;
    gap: 20px;
}

.certificate-card {
    flex: 1;
    background-color: #f0f2ff;
    padding: 25px;
    border-radius: 8px;
}

/* Benefits Section */
.benefits {
    background-color: #f9f9f9;
    background-image: url('images/benefits-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #333;
    position: relative;
    aspect-ratio: 21/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 1;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 8px;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background-color: #e6e9ff;
    border-radius: 5px;
    margin-bottom: 15px;
}

/* Process Section */
.process-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
    position: relative;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-line {
    height: 4px;
    background-color: #6c6dff;
    width: 80%;
    border-radius: 2px;
    margin-bottom: 20px;
}

.process-note {
    text-align: center;
    font-style: italic;
}

/* Why Us Section */
.why-us-content {
    display: flex;
    gap: 40px;
}

.why-us-cards {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-us-card {
    background-color: #f0f2ff;
    padding: 20px;
    border-radius: 8px;
}

.why-us-image {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    background-color: #4c4dce;
    color: white;
    position: relative;
    aspect-ratio: 21/9;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 60px 0;
}

.testimonials .container {
    position: relative;
    z-index: 2;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
}

.testimonial-card {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 8px;
}

/* Pricing Section */
.pricing-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.pricing-table td {
    padding: 15px;
    border-bottom: 1px solid #eee;
}

.pricing-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.pricing-table td:first-child {
    font-weight: 500;
    width: 30%;
}

.pricing-note {
    text-align: center;
    margin-top: 20px;
}

/* CTA Section */
.cta {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 60px 0;
}

.cta-content {
    flex: 1;
}

.cta-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cta-step {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.step-icon {
    width: 30px;
    height: 30px;
    background-color: #f0f2ff;
    border-radius: 5px;
    flex-shrink: 0;
}

.cta-image {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero,
    .why-us-content,
    .cta {
        flex-direction: column;
    }
    
    .certificate-cards,
    .testimonial-cards {
        flex-direction: column;
    }
    
    .benefits-grid,
    .why-us-cards {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-line {
        width: 4px;
        height: 30px;
    }
    
    .benefits, .testimonials {
        aspect-ratio: auto;
        min-height: 400px;
    }
}

/* Header Styles */
header {
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}
.nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
}
.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}
.nav-list a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 5px 10px;
    border-radius: 5px;
    transition: color 0.3s, background-color 0.3s;
}
.nav-list a:hover {
    background-color: #f0f2ff;
    color: #6c6dff;
}

/* Procedures Page Styles */
.procedure-list {
    list-style: none;
    padding: 0;
    display: grid;
    gap: 15px;
}
.procedure-item a {
    text-decoration: none;
    color: #6c6dff;
    border: 1px solid #6c6dff;
    padding: 8px 12px;
    border-radius: 5px;
    display: inline-block;
    transition: background-color 0.3s, color 0.3s;
}
.procedure-item a:hover {
    background-color: #6c6dff;
    color: #fff;
}

/* WhatsApp Floating Button */

.whatsapp-float {

    position: fixed;

    bottom: 20px;

    right: 20px;

    z-index: 1000;

    transition: transform 0.3s ease;

    font-size: 50px; /* Adjust size of the icon */

    color: #25D366; /* WhatsApp green color */

    background-color: #fff; /* White background for the icon */

    border-radius: 50%;

    box-shadow: 0 4px 8px rgba(0,0,0,0.2);

    width: 60px; /* Ensure circular background */

    height: 60px; /* Ensure circular background */

        display: flex;

        justify-content: center;

        align-items: center;

        text-decoration: none; /* Remove underline from the icon */

    }

    

    .whatsapp-float:hover {

        transform: scale(1.1);

    }
