 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            min-height: 100vh;
        }
/* 
        .container {
            max-width: 1200px;
            margin: 10px;
            padding: 0 20px;
        } */

        /* Header */
        /* .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 20px rgb(5 5 6 / 88%);
        }

        .nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 0;
        } */

 /* === Header Base Styles === */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgb(5 5 6 / 88%);
}

/* === Navigation Container === */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    box-sizing: border-box;
}

/* === Logo Styles === */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo span {
    font-size: 1.8rem;
    font-weight: bold;
    color: #667eea;
}

/* === CTA Button === */
.cta-button {
    background-color: #f59e0b;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d97706;
}

/* === Responsive Styles === */
@media (max-width: 768px) {
    .nav {
        flex-direction: column;
        align-items: center; /* Center everything */
        padding: 1rem;
        text-align: center;
    }

    .logo {
        margin-bottom: 0.5rem;
        justify-content: center;
    }

    .logo img {
        display: block;
        margin: 0 auto;
    }

    .cta-button {
        width: 100%;
        margin-top: 0.75rem;
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
}



        .cta-button {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 24px;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
        }

        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 120px 0 80px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.05" points="0,1000 1000,0 1000,1000"/></svg>');
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            animation: slideInUp 1s ease-out;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .btn-primary {
            background: #fff;
            color: #667eea;
            padding: 15px 30px;
            border: none;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.3);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            padding: 15px 30px;
            border: 2px solid white;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .btn-secondary:hover {
            background: white;
            color: #667eea;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Services Section */
        .services {
            background: white;
            padding: 30px 0;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .service-card {
            /* background: linear-gradient(145deg, #f0f4ff, #e6edff); */
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            border: 1px solid rgba(102, 126, 234, 0.1);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
        }

        .service-icon {
            font-size: 3rem;
            color: #667eea;
            margin-bottom: 1rem;
        }

        .service-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 60px 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item h3 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }

        .stat-item p {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        
        /* Contact Form */
       /*
  ==============================================
  Final Professional Contact Section
  ==============================================
*/

/* --- General Section Styling --- */
.contact {
    background-color: #f8faff;
    padding: 30px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
    animation: slideFadeUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
     
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Give the form more space */
    gap: 4rem;
    align-items: start;
}

/* --- Contact Info (Left Side of Page) --- */
.contact-info {
    padding-top: 0.5rem;
    opacity: 0;
    animation: slideFadeUp 1s 0.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.contact-info h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.why-choose-us-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.why-choose-us-list li {
    margin-bottom: 0.9rem; font-size: 1.1rem; display: flex; align-items: center;
    opacity: 0; transform: translateX(-30px);
    animation: slideInItem 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.why-choose-us-list li:nth-child(1) { animation-delay: 0.4s; }
.why-choose-us-list li:nth-child(2) { animation-delay: 0.5s; }
.why-choose-us-list li:nth-child(3) { animation-delay: 0.6s; }
.why-choose-us-list li:nth-child(4) { animation-delay: 0.7s; }
.why-choose-us-list li:nth-child(5) { animation-delay: 0.8s; }
.why-choose-us-list .fa-check { color: #667eea; margin-right: 12px; }
.contact-details { margin-top: 2rem; }
.contact-details h4 { font-size: 1.5rem; margin-bottom: 1rem; }
.contact-details p { margin: 0.4rem 0; font-size: 1rem; display: flex; align-items: center; }
.contact-details i { color: #667eea; margin-right: 10px; }


/*
  ==============================================
  Professional Multi-Column Form
  ==============================================
*/
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    opacity: 0;
    animation: slideFadeUp 1s 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.form-title {
    text-align: center; color: #667eea; font-size: 1.6rem;
    font-weight: 700; margin-bottom: 2rem;
}

/* --- NEW: The Main Two-Column Form Layout --- */
.form-layout-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem; /* The space between the left and right columns */
    margin-bottom: 1.5rem; /* Space before the submit button */
}

.form-group {
    margin-bottom: 1.2rem; /* Vertical space between fields in the same column */
    opacity: 0;
    transform: translateY(25px);
    animation: slideUpField 0.7s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.form-group:last-child {
    margin-bottom: 0;
}

/* --- RE-TIMED Animation Delays for the new layout --- */
/* Left Column */
.form-column:nth-child(1) .form-group:nth-child(1) { animation-delay: 0.5s; } /* Name */
.form-column:nth-child(1) .form-group:nth-child(2) { animation-delay: 0.6s; } /* Email */
.form-column:nth-child(1) .form-group:nth-child(3) { animation-delay: 0.7s; } /* Service */
/* Right Column */
.form-column:nth-child(2) .form-group:nth-child(1) { animation-delay: 0.8s; } /* Phone */
.form-column:nth-child(2) .form-group:nth-child(2) { animation-delay: 0.9s; } /* Company */
.form-column:nth-child(2) .form-group:nth-child(3) { animation-delay: 1.0s; } /* Details */

.form-group label {
    display: block; margin-bottom: 0.5rem; font-weight: 600;
    font-size: 0.9rem; color: #444;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%; padding: 12px 14px; border: 1px solid #ddd;
    border-radius: 8px; font-size: 1rem; background-color: #fdfdff;
    transition: all 0.3s ease;
}

.form-group textarea {
    resize: vertical; /* Allow user to resize the textarea height */
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none; border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.2);
    background-color: #fff;
}

/* --- Submit Button & Footer --- */
.submit-btn {
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: white; padding: 14px 25px; border: none;
    border-radius: 8px; font-size: 1.1rem; font-weight: 700;
    cursor: pointer; width: 100%; transition: all 0.3s ease;
    opacity: 0; transform: translateY(25px);
    animation: slideUpField 0.7s 1.1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.submit-btn:hover, .submit-btn:focus {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(102, 126, 234, 0.4);
    outline: none;
}

.form-footer-text {
    text-align: center; margin-top: 1rem; font-size: 0.9rem;
    color: #777; opacity: 0; transform: translateY(25px);
    animation: slideUpField 0.7s 1.2s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

/* --- Responsive: Stack columns on smaller screens --- */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .form-layout-grid {
        grid-template-columns: 1fr; /* Stack form columns */
    }
    .contact-info { text-align: center; }
    .why-choose-us-list li, .contact-details p { justify-content: center; }
}

/* --- Animation Keyframes (Unchanged) --- */
@keyframes slideFadeUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInItem {
    to { opacity: 1; transform: translateX(0); }
}
@keyframes slideUpField {
    to { opacity: 1; transform: translateY(0); }
}


        /* Footer */
       /* --- General Footer Styling --- */
/* --- General Footer Styling (More Compact) --- */
.footer {
    background: #1c1c1c; 
    color: #a0a0a0;
    /* DECREASED from 60px to make the footer shorter */
    padding: 40px 0; 
    position: relative;
    opacity: 0; 
    animation: fadeInFooter 1.5s ease-out forwards;
}

/* --- No change needed here, animation is fine --- */
@keyframes fadeInFooter {
    to {
        opacity: 1;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    /* DECREASED from 3rem to reduce space above the bottom line */
    margin-bottom: 2rem; 
    text-align: left;
}

.footer-section h4 {
    font-size: 1.2rem;
    color: #667eea;
    /* DECREASED from 1.5rem for a tighter look */
    margin-bottom: 1rem; 
    position: relative;
    padding-bottom: 10px;
}

/* --- Footer Bottom Styling (More Compact) --- */
.footer-bottom {
    border-top: 1px solid #444;
    /* DECREASED from 2rem to bring it closer to the content above */
    padding-top: 1.5rem; 
    text-align: center;
    font-size: 0.9rem;
}

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }
            
            .hero .subtitle {
                font-size: 1.1rem;
            }
            
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .quick-links {
                flex-direction: column;
                align-items: center;
            }
            
            .quick-link-btn {
                width: 100%;
                max-width: 250px;
            }
            
            .alert-content {
                flex-direction: column;
                text-align: center;
            }
            
            .countdown-mini {
                justify-content: center;
            }

            .alert-button {
                width: 100%;
                max-width: 200px;
                justify-content: center;
            }
        }

        /* Animation for scroll */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .bonus-offer {
            background: linear-gradient(45deg, #ff6b6b, #feca57);
            color: white;
            padding: 20px;
            text-align: center;
            margin: 2rem 0;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
        }

        .bonus-offer h3 {
            margin-bottom: 0.5rem;
        }

        /* Coming Soon Alert */
        .coming-soon-alert {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
        }

        .alert-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            text-align: center;
        }

        .alert-icon {
            font-size: 3rem;
            animation: pulse 2s infinite;
        }

        .alert-text {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }

        .alert-text h3 {
            margin-bottom: 0.5rem;
            font-size: 1.5rem;
            text-align: center;
        }

        .alert-text p {
            opacity: 0.9;
            font-size: 1.1rem;
            text-align: center;
        }

        .countdown-mini {
            display: flex;
            gap: 0.5rem;
        }

        .countdown-mini-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem;
            border-radius: 8px;
            text-align: center;
            min-width: 50px;
        }

        .mini-count {
            display: block;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .mini-label {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .alert-cta {
            display: flex;
            align-items: center;
        }

        .alert-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .alert-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }

        /* Service Card Images */
        .service-image {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            overflow: hidden;
            margin-top: 1rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card:hover .service-image img {
            transform: scale(1.1);
        }

        /* Quick Access Section */
        .quick-access-section {
            background: #f8faff;
            padding: 2rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        }

        .quick-access-section h3 {
            margin-bottom: 1.5rem;
            color: #333;
        }

        .quick-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .quick-link-btn {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            padding: 12px 20px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            min-width: 180px;
            justify-content: center;
        }

        .quick-link-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
        }

        .quick-link-btn i {
            font-size: 1.1rem;
        }

        /* Connect Modal */
        .modal {
            display: none;
            position: fixed;
            z-index: 10000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            overflow: auto;
            background-color: rgba(0,0,0,0.5);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            background: linear-gradient(135deg, #f8faff 0%, #ffffff 100%);
            margin: 10% auto;
            padding: 2rem;
            border-radius: 20px;
            width: 90%;
            max-width: 500px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.3);
            position: relative;
            animation: slideInDown 0.3s ease-out;
        }

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .close-button {
            position: absolute;
            right: 1rem;
            top: 1rem;
            color: #667eea;
            font-size: 2rem;
            font-weight: bold;
            cursor: pointer;
            transition: color 0.3s ease;
        }

        .close-button:hover {
            color: #764ba2;
        }

        .modal-content h2 {
            text-align: center;
            color: #333;
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
        }

        .modal-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .modal-form input {
            padding: 15px;
            border: 2px solid #e1e8f0;
            border-radius: 10px;
            font-size: 1rem;
            transition: all 0.3s ease;
            background: white;
        }

        .modal-form input:focus {
            outline: none;
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
        }

        .modal-form .submit-button {
            background: linear-gradient(45deg, #667eea, #764ba2);
            color: white;
            border: none;
            padding: 15px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .modal-form .submit-button:hover:not(:disabled) {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
        }

        .modal-form .submit-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }




        /* About the Founder Section */
       /* --- Global Settings for the Section --- */
.about-founder {
    background-color: #f8f9fa; /* A clean, neutral background */
    padding: 80px 15px;
    font-family: 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif; /* Professional font stack */
}

.about-founder .container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

.section-title i {
    color: #3498db;
    margin-right: 10px;
}

/* --- Main Founder Layout --- */
.founder-content {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.founder-info {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 50px;
}

/* --- Founder Image & Badge --- */
.founder-image-wrapper {
    position: relative;
    text-align: center;
}

.founder-image-wrapper img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 6px solid #e7f3ff;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.2);
}

.founder-badge {
    position: absolute;
    bottom: 25px;
    right: 15px;
    background: #3498db;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* --- Founder Text Details --- */
.founder-details h3 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.founder-title {
    font-size: 1.25rem;
    color: #3498db;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.founder-subtitle {
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.founder-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.founder-bio p:last-child {
    margin-bottom: 0;
}

/* --- Reusable Section Styling --- */
.founder-section {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.founder-section h4 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.founder-section h4 i {
    color: #3498db;
}

/* --- Achievements Grid (Replaces Table) --- */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.achievement-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.achievement-card .card-icon {
    font-size: 1.8rem;
    color: #3498db;
    margin-bottom: 15px;
}

.achievement-card h5 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0 0 8px 0;
}

.achievement-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* --- Expertise Tags --- */
.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.expertise-tag {
    background-color: #e7f3ff;
    color: #3498db;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #d2e7ff;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.expertise-tag:hover {
    background-color: #3498db;
    color: #ffffff;
}

/* --- Vision & Contact --- */
.founder-vision {
    background: #f8f9fa;
    padding: 25px;
    border-left: 5px solid #3498db;
    border-radius: 8px;
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

.contact-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 20px;
    border-radius: 8px;
    background-color: #e7f3ff;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background-color: #cde7f9;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(52, 152, 219, 0.2);
}

.contact-item i {
    font-size: 1.3rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 992px) {
    .founder-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .founder-image-wrapper {
        margin-bottom: 30px;
    }
    .founder-details h3 {
        font-size: 2.5rem;
    }
    .founder-badge {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        bottom: 15px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .founder-content {
        padding: 30px;
    }
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    .founder-details h3 {
        font-size: 2.2rem;
    }
}

        

        /* Responsive for founder section */
        @media (max-width: 768px) {
            .founder-info {
                grid-template-columns: 1fr;
                gap: 2rem;
                text-align: center;
            }
            
            .founder-image img {
                width: 200px;
                height: 200px;
            }
            
            .founder-details {
                text-align: left;
            }
            
            .founder-details h3 {
                font-size: 2rem;
                text-align: center;
            }
            
            .founder-title,
            .founder-subtitle {
                text-align: center;
            }
            
            .expertise-tags {
                justify-content: center;
            }
        }

        
         /* Book Meeting Section */
   /* ==========================================================================
   Book Meeting Section
   ========================================================================== */

/* Root variables for easy theme management */
:root {
    --primary-color-start: #667eea;
    --primary-color-end: #764ba2;
    --secondary-color: #90EE90;
    --text-color-light: #ffffff;
    --text-color-muted: rgba(255, 255, 255, 0.9);
    --bg-light-alpha-10: rgba(255, 255, 255, 0.1);
    --bg-light-alpha-20: rgba(255, 255, 255, 0.2);
    --bg-light-alpha-30: rgba(255, 255, 255, 0.3);
    --border-light-alpha: rgba(255, 255, 255, 0.3);
    --shadow-color-light: rgba(0, 0, 0, 0.2);
    --shadow-color-heavy: rgba(0, 0, 0, 0.3);
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 20px;
    --border-radius-pill: 50px;
    --transition-speed: 0.3s;
}

.book-meeting {
    background: linear-gradient(135deg, var(--primary-color-start), var(--primary-color-end));
    color: var(--text-color-light);
    padding: 30px 0;
    overflow: hidden; /* Prevents animations from showing before they should */
}

.book-meeting .section-title {
    color: var(--text-color-light);
    text-align: center;
    margin-bottom: 3rem;
    animation: fadeInDown 1s ease-out;
}

.meeting-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.meeting-info, .calendly-container {
    animation: fadeInUp 1s ease-out;
}

.meeting-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.meeting-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1.2s ease-out;
}

/* Main styles */
.meeting-benefits h4,
.meeting-topics h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #f0f4ff;
  animation: fadeInUp 1.3s ease-out;
}

.meeting-benefits ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.meeting-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin: 1rem 0;
  font-size: 1.1rem;
  opacity: 0;
  transform: translateX(-20px);
  animation: slideInFade 0.5s ease-out forwards;
}

.meeting-benefits li i {
  color: var(--secondary-color);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Animation delays */
.meeting-benefits li:nth-child(1) { animation-delay: 0.5s; }
.meeting-benefits li:nth-child(2) { animation-delay: 0.7s; }
.meeting-benefits li:nth-child(3) { animation-delay: 0.9s; }
.meeting-benefits li:nth-child(4) { animation-delay: 1.1s; }
.meeting-benefits li:nth-child(5) { animation-delay: 1.3s; }

/* ✅ Responsive styles */
@media (max-width: 768px) {
  .meeting-benefits h4 {
    font-size: 1.1rem;
    text-align: center;
  }

  .meeting-benefits li {
    font-size: 1rem;
    flex-direction: row;
    align-items: center;
  }

  .meeting-benefits ul {
    padding-left: 0;
    text-align: left;
  }
}

@media (max-width: 480px) {
  .meeting-benefits li {
    font-size: 0.95rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .meeting-benefits li i {
    font-size: 1rem;
  }
}


.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.topic-tag {
    background: var(--bg-light-alpha-20);
    color: var(--text-color-light);
    padding: 8px 16px;
    border-radius: var(--border-radius-pill);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-light-alpha);
    transition: all var(--transition-speed) ease;
    transform: scale(1);
}

.topic-tag:hover {
    background: var(--bg-light-alpha-30);
    transform: scale(1.05);
    box-shadow: 0 5px 15px var(--shadow-color-light);
}

.urgency-note {
    background: var(--bg-light-alpha-10);
    padding: 1rem;
    border-radius: var(--border-radius-sm);
    border-left: 4px solid var(--secondary-color);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.1rem;
    animation: pulseBorder 2s infinite;
}

.urgency-note i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

.calendly-container {
    background: var(--text-color-light);
    border-radius: var(--border-radius-md);
    padding: 1rem;
    box-shadow: 0 15px 35px var(--shadow-color-light);
    transition: all var(--transition-speed) ease;
}

.calendly-container:hover {
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
    transform: translateY(-5px);
}

.calendly-embed {
    border-radius: var(--border-radius-sm);
    overflow: hidden;
}

.calendly-fallback {
    text-align: center;
    padding: 2rem;
}

.calendly-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: linear-gradient(45deg, var(--primary-color-start), var(--primary-color-end));
    color: var(--text-color-light);
    padding: 15px 30px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all var(--transition-speed) ease;
    box-shadow: 0 8px 25px var(--shadow-color-light);
}

.calendly-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--shadow-color-heavy);
}

.quick-meeting-cta {
    background: var(--bg-light-alpha-10);
    border-radius: var(--border-radius-md);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
    backdrop-filter: blur(10px);
    animation: fadeInUp 1s 1s ease-out backwards; /* Delayed start */
}

.quick-meeting-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-color-light);
}

.quick-meeting-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.quick-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.quick-cta-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: var(--bg-light-alpha-20);
    color: var(--text-color-light);
    padding: 12px 20px;
    border-radius: var(--border-radius-pill);
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-speed) ease;
    border: 1px solid var(--border-light-alpha);
    backdrop-filter: blur(5px);
}

.quick-cta-btn:hover {
    background: var(--bg-light-alpha-30);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-color-light);
}

.quick-cta-btn i {
    font-size: 1.1rem;
}

/* ==========================================================================
   Keyframe Animations
   ========================================================================== */

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulseBorder {
    0%, 100% {
        border-left-color: var(--secondary-color);
    }
    50% {
        border-left-color: rgba(144, 238, 144, 0.7);
    }
}

/* ==========================================================================
   Responsive for Book Meeting
   ========================================================================== */

@media (max-width: 992px) {
    .meeting-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .meeting-info {
        order: 2;
    }
    .calendly-container {
        order: 1;
    }
    .meeting-info h3 {
        font-size: 1.6rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .quick-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .quick-cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .topic-tags {
        justify-content: center;
    }
}



        .founder-achievements-table {
        width: 100%;
        border-collapse: collapse;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0,0,0,0.05);
        border-radius: 10px;
        overflow: hidden;
    }

    .founder-achievements-table th,
    .founder-achievements-table td {
        text-align: left;
        padding: 15px 20px;
        vertical-align: top;
        font-size: 16px;
        color: #444;
    }

    .founder-achievements-table th {
        background-color: #f5f5f5;
        font-size: 18px;
        color: #333;
    }

    .founder-achievements-table td i {
        color: #555;
        margin-right: 10px;
        width: 20px;
        text-align: center;
    }

    .table-wrapper {
        overflow-x: auto;
        margin-top: 20px;
    }

    /* Basic styling for the body */
body {
    font-family: sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 2rem;
}

/* Container for the testimonials section */
.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Styling for the section title */
.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
    padding-top: 15px;
}

/* Grid container for the testimonials */
.testimonial-grid {
    display: flex;
    justify-content: center;
    gap: 2rem; /* space between the cards */
    flex-wrap: wrap; /* allows cards to wrap on smaller screens */
}

/* Individual testimonial card styling */
.testimonial {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 4px 15px rgb(24 21 30);;
    flex: 1; /* allows the cards to grow and fill the space */
    min-width: 280px; /* minimum width for each card */
    max-width: 350px; /* maximum width for each card */
    /* border-left: 5px solid #6c63ff; Adds the purple accent line on the left */
    text-align: left;
    margin-bottom: 30px;
}

/* Styling for the testimonial text */
.testimonial-text {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Styling for the testimonial author */
.testimonial-author {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
}




 .breakthrough-alert {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            margin: 2rem 0;
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.4);
            position: relative;
            overflow: hidden;
        }

        .breakthrough-alert::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff" fill-opacity="0.03" points="0,1000 1000,0 1000,1000"/></svg>');*/
            animation: float 8s ease-in-out infinite; 
        }

  .breakthrough-alert {
  position: relative;
  z-index: 2;
  text-align: center; /* centers inline elements */
}

.breakthrough-badge {
  display: inline-flex; /* allows icons and text to align nicely */
  background: rgba(255, 255, 255, 0.2);
  color: #FFD700;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem; /* remove auto margins */
  border: 2px solid rgba(255, 215, 0, 0.3);
  animation: pulse 2s infinite;
}




        .breakthrough-badge i {
            font-size: 1.2rem;
        }

        .breakthrough-alert h2 {
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: 700;
            line-height: 1.2;
        }

        .breakthrough-subtitle {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            line-height: 1.4;
        }

        .breakthrough-features {
            text-align: left;
            max-width: 1000px;
            margin: 0 auto;
        }

        .feature-highlight {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border-left: 4px solid #FFD700;
        }

        .feature-highlight h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: #FFD700;
        }

        .feature-highlight p {
            font-size: 1.1rem;
            line-height: 1.5;
        }

        /* .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
        }

        .feature-item i {
            color: #90EE90;
            font-size: 1.2rem;
            margin-top: 0.2rem;
            flex-shrink: 0;
        }

        .feature-item span {
            font-size: 1rem;
            line-height: 1.4;
        } */

   .feature-grid {
    display: flex;
    flex-wrap: wrap; /* Allow wrap to next line if needed on small screens */
    gap: 1rem;
    justify-content: space-between;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 10px;
    flex: 1; /* Distribute available space equally */
    min-width: 200px; /* Prevent from getting too small */
    max-width: 24%;   /* 4 items per row on wide screens */
    box-sizing: border-box;
}

 /* .target-audience {
            background: rgba(255, 255, 255, 0.1);
            padding: 1.5rem;
            border-radius: 15px;
            margin: 2rem 0;
            text-align: center;
        } */

  

      .target-audience {
  display: flex;
  flex-wrap: wrap;               /* ✅ Allow wrapping */
  justify-content: center;       /* ✅ Center the items */
  gap: 0.8rem;
  margin-top: 30px;
}

.audience-tag {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;           /* Prevent line breaks inside each tag */
}

        /* .audience-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            justify-content: center;
        }

        .audience-tag {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 20px;
            border-radius: 25px;
            font-size: 0.9rem;
            font-weight: 600;
            border: 1px solid rgba(255, 255, 255, 0.3);
        } */


        .audience-tags {
    display: flex;
    flex-wrap: nowrap;           /* No wrapping */
    justify-content: space-between;
    gap: 0.8rem;
    flex-direction: row;
}

.audience-tag {
    white-space: nowrap;         /* Prevent line breaks inside tags */
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 8px 16px;           /* Slightly reduced for tighter fit */
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
    flex: 1 1 auto;              /* Allow flexible shrinking */
    text-align: center;
}


        .breakthrough-cta {
            text-align: center;
            margin: 2rem 0;
        }

        .breakthrough-cta h3 {
            font-size: 1.2rem;
            margin-bottom: 1.5rem;
            color: #FFD700;
            line-height: 1.4;
        }

        .breakthrough-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        /* .btn-breakthrough-primary {
            background: linear-gradient(45deg, #FFD700, #FFA500);
            color: #333;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 0.8rem;
            transition: all 0.3s ease;
            box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
            min-width: 250px;
            justify-content: center;
        }

        .btn-breakthrough-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
            background: linear-gradient(45deg, #FFA500, #FFD700);
        } */

.btn-breakthrough-primary {
  background: linear-gradient(45deg, #FFD700, #FFA500);
  color: #333;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
  min-width: 250px;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.btn-breakthrough-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 215, 0, 0.6);
  background: linear-gradient(45deg, #FFA500, #FFD700);
}


        .btn-breakthrough-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.3);
  min-width: 200px;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.btn-breakthrough-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* Optional: Ensure smooth scroll for all anchor links */
html {
  scroll-behavior: smooth;
}


       .btn-breakthrough-demo {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  min-width: 200px;
  justify-content: center;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.btn-breakthrough-demo:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(18, 140, 126, 0.4);
}

        .social-proof {
            background: rgba(255, 255, 255, 0.1);
            padding: 1rem;
            border-radius: 10px;
            text-align: center;
            font-size: 0.9rem;
        }

        .hashtags {
            color: #87CEEB;
            font-weight: 500;
        }

        /* Responsive for breakthrough */
        @media (max-width: 768px) {
            .breakthrough-alert h2 {
                font-size: 2rem;
            }
            
            .breakthrough-subtitle {
                font-size: 1.1rem;
            }
            
            .feature-grid {
                grid-template-columns: 1fr;
            }
            
            .breakthrough-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .btn-breakthrough-primary,
            .btn-breakthrough-secondary,
            .btn-breakthrough-demo {
                width: 100%;
                max-width: 300px;
            }
            
            .audience-tags {
                flex-direction: column;
                align-items: center;
            }
            
            .audience-tag {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }
        }

        .countdown-mini {
            display: flex;
            gap: 0.5rem;
        }

        .countdown-mini-item {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.5rem;
            border-radius: 8px;
            text-align: center;
            min-width: 50px;
        }

        .mini-count {
            display: block;
            font-size: 1.2rem;
            font-weight: bold;
        }

        .mini-label {
            font-size: 0.7rem;
            opacity: 0.8;
        }

        .alert-cta {
            display: flex;
            align-items: center;
        }

        .alert-button {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 12px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .alert-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
        }