* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            overflow-x: hidden;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header Styles */
        header {
            background: #fff;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
            position: fixed;
            width: 100%;
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        /* portfolio css for the skillbridge image */

        #about-image {
            display: flex;
            align-items: center;
            gap: 5px;
        }

        #image-placeholder {
            width: 60px;
            height: 60px;
            border-radius: 50%;  /* Circle */
            overflow: hidden;    /* Keep image inside circle */
            margin: 0;
        }

        #image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;   /* Cover the circle nicely */
        }

        .logo-text h1 {
            font-size: 22px;
            color: #1a1a1a;
        }

        .logo-text p {
            font-size: 12px;
            color: #007bff;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .nav-menu a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            transition: color 0.3s;
        }

        .nav-menu a:hover {
            color: #007bff;
        }

        /* Hamburger icon (only visible on mobile) */
        .hamburger {
            display: none;          /* hidden on desktop */
            flex-direction: column;
            cursor: pointer;
            margin: 5%;
            position: relative;
        } 

        
        .hamburger span {
            height: 3px;
            width: 25px;
            background: #333;
            margin: 3px 0;
            transition: 0.3s;
        }

        .get-started-btn {
            background: #007bff;
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .get-started-btn:hover {
            background: #0056b3;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            margin-top: 20px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-tag {
            display: inline-block;
            background: #e3f2fd;
            color: #007bff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .hero-title {
            font-size: 56px;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .hero-description {
            font-size: 18px;
            color: #666;
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn-primary {
            background: #007bff;
            color: white;
            padding: 15px 35px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .btn-primary:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }

        .btn-secondary {
            background: white;
            color: #007bff;
            padding: 15px 35px;
            border: 2px solid #007bff;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: #007bff;
            color: white;
        }

        .hero-stats {
            display: flex;
            gap: 60px;
            margin-top: 50px;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: #007bff;
        }

        .stat-label {
            color: #666;
            font-size: 16px;
        }

        .hero-image {
            background: linear-gradient(135deg, #c5d7f2 0%, #a8c0e8 100%);
            border-radius: 20px;
            padding: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 0 auto;
        }

                /* portfolio css */
        .image-placeholder {
            width: 400px;
            height: 400px;
            border-radius: 50%;  /* Circle */
            overflow: hidden;    /* Keep image inside circle */
            margin: 0 ;
        }

        .image-placeholder img {
            width: 100%;
            height: 100%;
            object-fit: cover;   /* Cover the circle nicely */
        }

        /* About Section */
        .about {
            padding: 80px 0;
            background: white;
        }

        .section-tag {
            display: inline-block;
            background: #e3f2fd;
            color: #007bff;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 14px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: 42px;
            text-align: center;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .section-description {
            text-align: center;
            color: #666;
            max-width: 900px;
            margin: 0 auto 60px;
            font-size: 18px;
            line-height: 1.8;
        }
        .about-cards {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-top: 40px;
        }

        .about-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 40px;
            transition: all 0.3s;
        }

        .about-card:hover {
            border-color: #007bff;
            box-shadow: 0 10px 30px rgba(0,123,255,0.1);
        }

        .about-card-icon {
            width: 60px;
            height: 60px;
            background: #e3f2fd;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .about-card-icon svg {
            width: 30px;
            height: 30px;
            stroke: #007bff;
        }

        .about-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .about-card p {
            color: #666;
            line-height: 1.8;
        }

        /* Features Section */
        .features {
            padding: 80px 0;
            background: #f8f9fa;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .feature-card {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .feature-icon {
            width: 70px;
            height: 70px;
            background: #007bff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .feature-icon svg {
            width: 35px;
            height: 35px;
            stroke: white;
        }

        .feature-card h3 {
            font-size: 20px;
            margin-bottom: 15px;
            color: #1a1a1a;
        }

        .feature-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
        }

        /* Programs Section */
        .programs {
            padding: 80px 0;
            background: white;
        }

      .programs-grid {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        margin: 0 auto 60px;
        }
        

        .program-card {
            background: white;
            border: 2px solid #e9ecef;
            border-radius: 15px;
            padding: 35px;
            transition: all 0.3s;
        }

        .program-card:hover {
            border-color: #007bff;
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,123,255,0.1);
        }

        .program-icon {
            width: 60px;
            height: 60px;
            background: #007bff;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .program-icon svg {
            width: 30px;
            height: 30px;
            stroke: white;
        }

        .program-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: #1a1a1a;
        }

        .program-duration {
            color: #007bff;
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 14px;
        }

        .program-card p {
            color: #666;
            font-size: 14px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .program-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .program-tag {
            background: #e3f2fd;
            color: #007bff;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
        }

        /* Contact Section */
        .contact {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        }

        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }

        .contact-form h2 {
            font-size: 28px;
            margin-bottom: 10px;
        }

        .contact-form p {
            color: #666;
            margin-bottom: 30px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #333;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 2px solid #e9ecef;
            border-radius: 8px;
            font-size: 14px;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #007bff;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
        }

        .submit-btn {
            width: 100%;
            background: #007bff;
            color: white;
            padding: 15px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .submit-btn:hover {
            background: #0056b3;
        }

        .contact-info-container {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .info-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        }

        .info-card h3 {
            font-size: 24px;
            margin-bottom: 20px;
            color: #1a1a1a;
        }

        .info-item {
            margin-bottom: 15px;
        }

        .info-label {
            font-weight: 600;
            color: #333;
            margin-bottom: 5px;
        }

        .info-value {
            color: #007bff;
            text-decoration: none;
        }

        .info-value:hover {
            text-decoration: underline;
        }

        .cta-card {
            background: linear-gradient(135deg, #007bff, #0056b3);
            color: white;
            padding: 40px;
            border-radius: 15px;
            text-align: center;
        }

        .cta-card h3 {
            font-size: 24px;
            margin-bottom: 15px;
        }

        .cta-card p {
            margin-bottom: 25px;
            opacity: 0.9;
            line-height: 1.6;
            margin-bottom: 22px;
            font-size: 14px;
        }

        .cta-btn {
            background: white;
            color: #007bff;
            padding: 15px 40px;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            width: 100%;
            text-align: center;
        }

        .cta-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.2);
        }

        /* Vertical Domain Layout */

    .domain-title {
            font-size: 32px;
            margin: 60px 0 30px 0;
            color: #1a1a1a;
            border-left: 4px solid #007bff;
            padding-left: 20px;
        }

    .domain-section {
        margin-top: 50px;
        cursor: pointer;
    }

    .domain-list {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .domain-card {
        border: 2px solid #007bff;
        border-radius: 18px;
        padding: 35px 40px;
        background: #fff;
        transition: all 0.3s ease;
        cursor: pointer;
        text-align: left;
    }

    .domain-card:hover {
        box-shadow: 0 15px 40px rgba(0,123,255,0.15);
        transform: translateY(-3px);
    }

    .domain-icon {
        width: 55px;
        height: 55px;
        background: #007bff;
        color: #fff;
        border-radius: 14px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        margin-bottom: 18px;
    }

    .domain-title-text {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 8px;
        color: #000;
    }

    .domain-duration {
        color: #007bff;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .domain-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 18px;
    }

    .domain-tag {
        background: #e3f2fd;
        color: #007bff;
        padding: 6px 14px;
        border-radius: 20px;
        font-size: 13px;
        font-weight: 500;
    }

    .domain-list {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 ek row me */
        gap: 30px;
    }

    /* ===== CONTACT SECTION IMAGE-STYLE FIX ===== */

    .contact-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .contact-form {
        height: fit-content;
    }

    .contact-info-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .info-card {
        background: #fff;
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .contact-form {
        background: #fff;
        padding: 40px;
        border-radius: 18px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
    }

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .contact-form p {
        color: #666;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1.5px solid #dfe3eb;
        font-size: 14px;
    }

    .form-group textarea {
        resize: none;
        height: 120px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #007bff;
    }

    .submit-btn {
        width: 100%;
        background: #007bff;
        color: #fff;
        border: none;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
    }

    .submit-btn:hover {
        background: #0056b3;
    }

    /* ===== CONTACT SECTION IMAGE-STYLE FIX ===== */

    .contact-container {
        display: grid;
        grid-template-columns: 1.2fr 1fr;
        gap: 40px;
        align-items: start;
    }

    .contact-info-container {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .info-card {
        background: #fff;
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    }

    .contact-form {
        background: #fff;
        padding: 40px;
        border-radius: 18px;
        box-shadow: 0 12px 35px rgba(0,0,0,0.1);
        height: fit-content;
    }

    .contact-form h2 {
        font-size: 26px;
        margin-bottom: 8px;
    }

    .contact-form p {
        color: #666;
        margin-bottom: 30px;
    }

    .form-group {
        margin-bottom: 18px;
    }

    .form-group label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 12px 14px;
        border-radius: 10px;
        border: 1.5px solid #dfe3eb;
        font-size: 14px;
    }

    .form-group textarea {
        resize: none;
        height: 120px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: #007bff;
    }

    .submit-btn {
        width: 100%;
        background: #007bff;
        color: #fff;
        border: none;
        padding: 14px;
        font-size: 16px;
        font-weight: 600;
        border-radius: 10px;
        cursor: pointer;
    }

    .submit-btn:hover {
        background: #0056b3;
    }

                /* ===== FOOTER ===== */

    footer {
                background: #1a1d29;
                color: white;
                padding: 60px 0 20px;
                margin-top: 0;
            }

    .footer {
        background: linear-gradient(135deg, #0c1323, #0b1c33);
        color: #fff;
        padding: 70px 0 25px;
        width: 100vw;              /* full screen width */
        margin-left: calc(-50vw + 50%);
    }

    .footer-content {
        display: grid;
        grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
        gap: 60px;
        /* margin-bottom: 30px; */
    }

    .footer-logo {
                display: flex;
                align-items: center;
                gap: 5px;
            }

    .footer-logo-icon {
                width: 60px;
                height: 60px;
                border-radius: 50%;
                overflow: hidden;
                margin: 0;
                display: flex;
            }

            .footer-logo-icon img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: flex;   /* Cover the circle nicely */
            }

    .footer-about {
                color: #007bff;
                margin-bottom: 15px;
            }

    .tagline {
                color: #007bff;
                margin-bottom: 15px;
            }

    .footer-about h3 {
                font-size: 20px;
                margin-bottom: 10px;
            }

    .footer-brand h3 {
        margin-top: 15px;
    }

    .footer-about p {
                color: #adb5bd;
                line-height: 1.8;
            }        


    .footer-tagline {
        color: #1e90ff;
        font-weight: 600;
        margin-bottom: 12px;
    }

    .footer-section h4 {
                font-size: 18px;
                margin-bottom: 20px;
            }

    .footer-links {
                list-style: none;
            }

    .footer-links li {
                margin-bottom: 12px;
            }

    .footer-links a {
                color: #adb5bd;
                text-decoration: none;
                transition: color 0.3s;
            }

    .footer-links a:hover {
                color: #007bff;
            }

    .contact-item {
                display: flex;
                align-items: start;
                gap: 10px;
                margin-bottom: 15px;
                color: #adb5bd;
            }

    .contact-item a {
                color: #adb5bd;
                text-decoration: none;
            }

    .contact-item a:hover {
                color: #007bff;
            }

    .footer-desc {
        color: #cfd8e3;
        font-size: 14px;
        line-height: 1.7;
    }

    .footer-section h4 {
        margin-bottom: 18px;
    }

    .footer-section ul {
        list-style: none;
        padding: 0;
    }

    .footer-section ul li {
        margin-bottom: 10px;
    }

    .footer-section ul li a {
        color: #cfd8e3;
        text-decoration: none;
    }

    .footer-section ul li a:hover {
        color: #1e90ff;
    }

    .footer-section p {
        color: #cfd8e3;
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-socials {
        display: flex;
        gap: 12px;
        margin-bottom: 20px;
    }

    .footer-socials a {
        width: 38px;
        height: 38px;
        background: rgba(255,255,255,0.08);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: #fff;
        text-decoration: none;
        font-weight: bold;
    }

    .footer-socials a:hover {
        background: #1e90ff;
    }

    .social-links {
                display: flex;
                gap: 15px;
                margin-top: 20px;
            }

    .social-icon {
                width: 40px;
                height: 40px;
                background: rgba(255,255,255,0.1);
                border-radius: 8px;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s;
            }

    .social-icon:hover {
                background: #007bff;
                transform: translateY(-3px);
            }

    .office-hours {
        font-size: 14px;
        color: #cfd8e3;
    }

    .footer-bottom {
        text-align: center;
        margin-top: 40px;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        font-size: 14px;
        color: #adb5bd;
    }


            /* Responsive Design */

        @media (max-width: 2470px) {
            .cta-card {
                margin-top: 20px;
                margin-bottom: 0px;
            }
        }

        @media (max-width: 1024px) {
            .programs-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .domain-list {
                grid-template-columns: repeat(2, 1fr);
            }

        }
        
        @media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        }
    }

    html, body {
        margin: 0;
        padding: 0;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
    }

    html {
        overflow-x: clip;
    }

    section, footer, header, main {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    /* Remove min-height bugs */
    section {
        min-height: auto !important;
    }

    /* Fix footer last gap */
    footer {
        padding-bottom: 0 !important;
    }

    body {
        overflow-y: auto;
    }

    /* Space between Contact section and Footer */
    #contact,
    .contact-section,
    .contact-form {
        margin-bottom: 60px;   /* adjust: 40–80px as you like */
    }

    /* Footer should not add extra gap */

    .card h3 {
        margin-bottom: 10px;
        color: #0b5ed7;
    }

    /* Make cards clickable */
    .card {
        cursor: pointer;
        text-decoration: none;
        color: inherit;
    }

    /* Hover effect for better UX */
    .card:hover {
        transform: translateY(-6px);
        transition: 0.3s ease;
        box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    }

        @media (max-width: 768px) {

            .image-placeholder {
                width: 250px;
                height: 250px;
            }

            #image-placeholder {
                width: 60px;
                height: 60px;
            }

            .nav-links {
                display: none;
            }

             /* Show hamburger icon on mobile */
            .hamburger {
                display: flex;
            }

            /* Convert nav-menu to vertical full-width panel on mobile */
            .nav-menu {
                position: fixed;
                left: -100%;  /* Hidden outside screen by default */
                top: 70px;
                flex-direction: column;
                background: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            }

            /* When .active is added via JS, slide-in from left */
            .nav-menu.active {
                left: 0;
            }

            /* Animate hamburger lines into an “X” */
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .hero-content {
                grid-template-columns: 1fr;
            }

            .hero-title {
                font-size: 30px;
            }

            .hero-stats {
                flex-direction: row;
                gap: 30px;
            }

            .about-cards {
                grid-template-columns: 1fr;
            }

            .programs-grid {
                grid-template-columns: 1fr;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .contact-container {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .domain-list {
                grid-template-columns: 1fr;
            }

        }

        @media (max-width: 480px) {
        .image-placeholder {
                width: 200px;
                height: 200px;
            }

            #image-placeholder {
                width: 75px;
                height: 45px;
            }

            .hero-stats {
                flex-direction: row;
                gap: 30px;
            }

            .cta-card {
                margin-bottom: 20px;
            }

         /* Show hamburger icon on mobile */
            .hamburger {
                display: flex;
            }

            /* Convert nav-menu to vertical full-width panel on mobile */
            .nav-menu {
                position: fixed;
                left: -100%;  /* Hidden outside screen by default */
                top: 70px;
                flex-direction: column;
                background: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            }

            /* When .active is added via JS, slide-in from left */
            .nav-menu.active {
                left: 0;
            }

            /* Animate hamburger lines into an “X” */
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .nav-menu a:hover {
            color: #007bff;
        }
        }

        @media (max-width: 380px) {

            header {
                padding: 10px 0;
            }

            .image-placeholder {
                width: 150px;
                height: 150px;
            }

            .hero-image {
                padding: 40px;
                width: 100%;
                margin: 0;
            }

            #image-placeholder {
                width: 60px;
                height: 40px;
            }

            .logo-text h1 {
                font-size: 12px;
            }

            .logo-text p {
                font-size: 6px;
            }
            /* Show hamburger icon on mobile */
            .hamburger {
                display: flex;
            }

            /* Convert nav-menu to vertical full-width panel on mobile */
            .nav-menu {
                position: fixed;
                left: -100%;  /* Hidden outside screen by default */
                top: 70px;
                flex-direction: column;
                background: #ffffff;
                width: 100%;
                text-align: center;
                transition: 0.3s;
                padding: 2rem 0;
                box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
            }

            /* When .active is added via JS, slide-in from left */
            .nav-menu.active {
                left: 0;
            }

            /* Animate hamburger lines into an “X” */
            .hamburger.active span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .hamburger.active span:nth-child(2) {
                opacity: 0;
            }

            .hamburger.active span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }

            .nav-menu a:hover {
            color: #007bff;
        }

        .hero-buttons {
           display: grid;
        }

        .btn-primary {
            padding: 15px 35px;
            width: 85%;
        }

        .btn-secondary {
            padding: 13px 35px;
            width: 75%;
            text-align: center;
        }

        .hero-stats {
            gap: 1px;
            display: grid;
        }

        .get-started-btn {
            padding: 5px 10px;
            border-radius: 24px;
        }

        .section-title {
            font-size: 20px;
        }

        .hero-description {
            text-align: start;
            font-size: 9px;
        }

        .section-description {
            text-align: start;
            font-size: 14px;   
        }

        .domain-title {
            font-size: 20px;
            margin: 5px 0 15px 0;
        }

        .domain-section {
            margin-top: 25px;
        }

        .domain-icon {
            width: 35px;
            height: 35px;
            border-radius: 5px;
            margin-bottom: 8px;
            margin-top: 0;
        }

        .domain-title-text {
            font-size: 18px;
            margin-bottom: 2px;
        }

        .domain-duration {
            margin-bottom: 0;
            font-size: 10px;
            margin-top: 0;
        }

        .domain-tags {
           display: grid; 
           gap: 5px;
           margin-top: 8px;
        }

        .domain-list {
            gap: 15px;
        }

        .contact-container {
            display: grid;
            gap: 5px;
        }
        }
/* ===============================
   HERO TRUE CENTER — FINAL OVERRIDE
   (ADD AT VERY END OF CSS FILE)
================================ */

/* Fixed header height */
header {
    height: 90px;
}

/* Hero takes remaining screen */
.hero {
    height: calc(100vh - 90px);
    margin-top: 0 !important;
    padding: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* Neutralize container limits */
.hero .container {
    max-width: 100% !important;
    padding: 0 !important;

    display: flex;
    justify-content: center;
}

/* Remove grid completely */
.hero-content {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    text-align: center;
    max-width: 850px;
    width: 100%;
    gap: 0;
}

/* Center buttons */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

/* Center stats */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-top: 40px;
}

/* Kill right image completely */
.hero-image {
    display: none !important;
}
.verify-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.verify-box {
  background: #fff;
  padding: 30px;
  width: 360px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.verify-box h2 {
  margin-bottom: 8px;
}

.verify-box p {
  font-size: 14px;
  color: #555;
}

.verify-box input {
  width: 100%;
  padding: 12px;
  margin: 18px 0 10px;
  border-radius: 8px;
  border: 2px solid #ddd;
}

.verify-btn {
  width: 100%;
  padding: 12px;
  background: #007bff;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 10px;
}

.close-btn {
  margin-top: 10px;
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
}

.verify-status {
  margin-top: 10px;
  font-weight: 600;
  font-size: 14px;
}

/* Loading spinner */
.loading::after {
  content: '';
  width: 18px;
  height: 18px;
  border: 3px solid #fff;
  border-top: 3px solid transparent;
  border-radius: 50%;
  display: inline-block;
  animation: spin 1s linear infinite;
  margin-left: 8px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}
@media (max-width: 768px) {

  nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    display: none;
    gap: 16px;
    padding: 20px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    text-align: center;
  }

  .get-started-btn {
    display: none;
  }

  .hamburger {
    display: block;
  }
}
@media (max-width: 768px) {

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 32px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 768px) {

  .domain-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .domain-card {
    text-align: left;
  }
}
@media (max-width: 768px) {

  .contact-container {
    flex-direction: column;
  }

  .contact-form,
  .contact-info-container {
    width: 100%;
  }
}
@media (max-width: 768px) {

  .footer-content {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-socials {
    justify-content: center;
  }
}
/* HAMBURGER ICON */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background-color: #000;
  border-radius: 2px;
}

/* SHOW HAMBURGER ON MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
}
@media (max-width: 768px) {

  header nav.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  #about-image {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  #about-image img {
    width: 40px;
    height: 40px;
  }

  .logo-text h1 {
    font-size: 14px;
    line-height: 1.1;
  }

  .logo-text p {
    font-size: 11px;
  }
}
@media (max-width: 768px) {

  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 20px 0;
    gap: 15px;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    text-align: center;
  }

  .nav-menu a {
    font-size: 16px;
  }

  .get-started-btn {
    display: none;
  }
}
@media (max-width: 768px) {

  .hero {
    padding-top: 40px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  .hero-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
/* LOGO IMAGE FIX */
#about-image img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}

nav.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
}
#about-image {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 70%;
}
.logo-text h1 {
  font-size: 14px;
  line-height: 1.2;
  white-space: normal;
}

.logo-text p {
  font-size: 11px;
  line-height: 1.1;
}
@media (max-width: 768px) {

  #about-image {
    max-width: 80%;
  }

  .logo-text {
    display: flex;
    flex-direction: column;
  }

  .hamburger {
    margin-left: auto;
  }
}
/* ===============================
   FINAL MOBILE FIX – DO NOT EDIT
   Paste at END of style.css
================================ */

/* -------- NAVBAR MOBILE FIX -------- */
@media (max-width: 768px) {

  header {
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1000;
  }

  nav.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
  }

  /* Logo + text container */
  #about-image {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 75%;
  }

  /* Logo image size FIX */
  #about-image img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain;
  }

  /* Logo text FIX */
  .logo-text h1 {
    font-size: 14px !important;
    line-height: 1.2;
    margin: 0;
    white-space: normal;
  }

  .logo-text p {
    font-size: 11px !important;
    line-height: 1.1;
    margin: 0;
  }

  /* Hamburger always visible */
  .hamburger {
    display: flex !important;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
  }

  .hamburger span {
    width: 24px;
    height: 3px;
    background: #000;
    border-radius: 2px;
  }

  /* Hide desktop button */
  .get-started-btn {
    display: none !important;
  }

  /* Mobile menu */
  .nav-menu {
    position: absolute;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    gap: 16px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    font-size: 16px;
  }
}

/* -------- HERO SECTION MOBILE FIX -------- */
@media (max-width: 768px) {

  .hero {
    padding-top: 40px;
  }

  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 28px !important;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 15px;
  }

  /* Buttons full width */
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }

  /* Stats stack properly */
  .hero-stats {
    flex-direction: column;
    gap: 22px;
  }
}
/* ===================================================
   UNIVERSAL MOBILE OVERRIDE FIX (FINAL)
   Paste at END of style.css – DO NOT EDIT
=================================================== */

@media screen and (max-width: 820px) {

  /* ---------- HEADER / NAVBAR ---------- */
  header {
    position: sticky !important;
    top: 0;
    background: #ffffff !important;
    z-index: 9999 !important;
  }

  header nav.container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 10px 14px !important;
    min-height: 60px !important;
  }

  /* Logo + text wrapper */
  #about-image {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    max-width: calc(100% - 40px) !important;
    overflow: hidden !important;
  }

  /* LOGO IMAGE – HARD FIX */
  #about-image img {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    object-fit: contain !important;
  }

  /* LOGO TEXT – HARD FIX */
  .logo-text {
    display: flex !important;
    flex-direction: column !important;
    overflow: hidden !important;
  }

  .logo-text h1 {
    font-size: 13px !important;
    line-height: 1.15 !important;
    margin: 0 !important;
    white-space: normal !important;
  }

  .logo-text p {
    font-size: 10px !important;
    line-height: 1.1 !important;
    margin: 0 !important;
  }

  /* ---------- HAMBURGER ---------- */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 4px !important;
  }

  .hamburger span {
    width: 22px !important;
    height: 2.5px !important;
    background: #000 !important;
    border-radius: 2px !important;
  }

  .get-started-btn {
    display: none !important;
  }

  /* ---------- MOBILE MENU ---------- */
  .nav-menu {
    position: absolute !important;
    top: 60px !important;
    left: 0 !important;
    width: 100% !important;
    background: #fff !important;
    display: none !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 16px 0 !important;
    gap: 14px !important;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12) !important;
  }

  .nav-menu.active {
    display: flex !important;
  }

  .nav-menu li a {
    font-size: 15px !important;
  }

  /* ---------- HERO SECTION ---------- */
  .hero {
    padding-top: 30px !important;
  }

  .hero .container {
    display: flex !important;
    flex-direction: column !important;
    text-align: center !important;
  }

  .hero-title {
    font-size: 26px !important;
    line-height: 1.2 !important;
  }

  .hero-description {
    font-size: 14.5px !important;
  }

  /* Buttons full width */
  .hero-buttons {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-buttons a {
    width: 100% !important;
    text-align: center !important;
  }

  /* ---------- STATS ---------- */
  .hero-stats {
    display: flex !important;
    flex-direction: column !important;
    gap: 22px !important;
  }
}
/* =====================================
   FORCE LOGO TO PERFECT CIRCLE (MOBILE)
   Paste at END of style.css
===================================== */

@media screen and (max-width: 820px) {

  /* Logo image force circle */
  #about-image img,
  .footer-logo-icon img {
    width: 34px !important;
    height: 34px !important;
    min-width: 34px !important;
    min-height: 34px !important;

    border-radius: 50% !important;   /* 🔥 MAKES IT CIRCLE */
    object-fit: cover !important;    /* prevents stretching */
    overflow: hidden !important;

    background: #ffffff !important;  /* clean white bg */
  }

}
/* ===== HERO GET STARTED – MOBILE VISIBLE FIX ===== */

/* Hero buttons always visible */
.hero-buttons {
  display: flex !important;
}

/* Mobile specific */
@media (max-width: 768px) {

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }

  .hero-buttons a {
    display: inline-flex !important;
    width: 90%;
    max-width: 300px;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
  }
}

