 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: #fafafa;
}


/* ========== WEBINAR BANNER ========== */
.webinar-banner {
    position: fixed;
    height: 7%;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    color: white;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    transition: all 0.3s ease;
}

.webinar-banner.hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.webinar-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1400px;
    width: 100%;
    position: relative;
}

.webinar-text {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
}

.watch-btn {
    padding: 10px 28px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.watch-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.watch-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.watch-btn:hover::before {
    height: 100%;
}

.close-banner {
    position: absolute;
    right: 50px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-banner svg {
    width: 20px;
    height: 20px;
    stroke: white;
    stroke-width: 2;
}

/* ========== STICKY NAVBAR ========== */
.sticky-navbar {
    position: fixed;
    top: -100px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 100px 8px 7.2%;
    transition: top 0.4s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sticky-navbar.visible {
    top: 0;
    animation: slideDownNav 0.4s ease-out;
}

@keyframes slideDownNav {
    from {
        top: -90px;
        opacity: 0;
    }
    to {
        top: 0;
        opacity: 1;
    }
}

.sticky-navbar img {
    height: 64px;
    width: auto;
}

.sticky-navbar .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.sticky-navbar .menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.sticky-navbar .menu-toggle svg {
    width: 30px;
    height: 30px;
    stroke: #333;
    stroke-width: 2;
}

.sticky-navbar .consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.sticky-navbar .consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.sticky-navbar .consultation-btn:hover {
    color: white;
}

.sticky-navbar .consultation-btn:hover::before {
    height: 100%;
}

/* ========== LOGO CONTAINER ========== */
.logo-container {
    position: fixed;
    top: 65px;
    left: 7.05%;
    z-index: 900;
    transition: all 0.3s ease;
}

.logo-container.banner-hidden {
    top: 40px;
}

.logo-container.hide {
    opacity: 0;
    pointer-events: none;
}

.logo-container img {
    height: 69px;
    width: auto;
}

/* ========== MENU TOGGLE CONTAINER ========== */
.menu-toggle-container {
    position: fixed;
    top: 70px;
    right: 100px;
    z-index: 900;
    transition: all 0.3s ease;
}

.menu-toggle-container.banner-hidden {
    top: 60px;
}

.menu-toggle-container.hide {
    opacity: 0;
    pointer-events: none;
}

.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-toggle svg {
    width: 32px;
    height: 32px;
    stroke: white;
    stroke-width: 2;
    filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

/* ========== DROPDOWN MENU ========== */
.dropdown-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 1000;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    z-index: 10;
    padding: 8px 100px 8px 7.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dropdown-logo img {
    height: 66px;
    width: auto;
}

.dropdown-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.dropdown-consultation-btn {
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.dropdown-consultation-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.dropdown-consultation-btn:hover {
    color: white;
    border-top: 1px solid white;
    border-left: 1px solid white;
    border-right: 1px solid white;
}

.dropdown-consultation-btn:hover::before {
    height: 100%;
}

.close-menu {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.close-menu svg {
    width: 28px;
    height: 28px;
    stroke: white;
    stroke-width: 2;
}

.dropdown-container {
    max-width: 1400px;
    margin: 0 80px;
    padding: 60px 40px 80px;
}

.dropdown-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    color: white;
}

.dropdown-section-wrapper {
    display: block;
    margin-bottom: 0;
}

.dropdown-section-title {
    font-size: 22px;
    margin-bottom: 24px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.dropdown-items-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 30px;
    grid-auto-flow: row;
}

.dropdown-item {
    display: block;
}

.dropdown-item a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 8px 0;
    transition: opacity 0.3s;
    font-size: 18px;
    line-height: 1.5;
}

.dropdown-item a:hover {
    opacity: 0.7;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.social-links a {
    color: white;
    transition: opacity 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

.social-links svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

/* ========== HERO SECTION - FIXED BACKGROUND ========== */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
    padding: 200px 7.5% 80px;
    background: #fafafa;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(5, 7, 20, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
    z-index: 1;
}

.hero-content,
.hero-image {
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    z-index: 2;
}

.hero-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #050714;
    margin-bottom: 24px;
    padding: 8px 20px;
    background: white;
    border-left: 4px solid #050714;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.hero-content h1 {
    
    font-size: 50px;
    font-weight: 900;
    line-height: 1.1;
    color: #050714;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    display: block;
    background: linear-gradient(135deg, #050714 0%, #0B2A3D 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 48px;
    max-width: 580px;
    font-weight: 400;
}

.hero-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 520px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #050714;
    margin-bottom: 8px;
}

.form-group label .required {
    color: #e74c3c;
}

.form-group input {
    padding: 14px 18px;
    font-size: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #050714;
    box-shadow: 0 0 0 3px rgba(5, 7, 20, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-submit {
    margin-top: 12px;
}

.submit-btn{
  display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: normal; /* Allow text to wrap if needed */
    text-align: center;
    width: auto;
    min-width: 150px;
}

.submit-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.submit-btn:hover {
    color: white;
}

.submit-btn:hover::before {
    height: 100%;
}


.hero-image {
    position: relative;
    z-index: 2;
}



.image-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    display: block;
}
/* ========== BENEFITS SECTION ========== */
.benefits-section {
    padding: 100px 7.5%;
    background: linear-gradient(to bottom, #f5f8fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(5, 7, 20, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(5, 7, 20, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.benefits-left {
    position: sticky;
    top: 150px;
    align-self: start;
}

.benefits-eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0B2A3D;
    margin-bottom: 20px;
    padding: 6px 16px;
    background: rgba(5, 7, 20, 0.05);
    border-radius: 50px;
}

.benefits-title {
    font-size: 50px;
    font-weight: 900;
    line-height: 1.15;
    color: #050714;
    margin-bottom: 24px;
    letter-spacing: -0.5px;
}

.benefits-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
}

.benefits-cta-btn {
 display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: normal; /* Allow text to wrap if needed */
    text-align: center;
    width: auto;
    min-width: 150px;
}

.benefits-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.benefits-cta-btn:hover {
    color: white;
}

.benefits-cta-btn:hover::before {
    height: 100%;
}

.benefits-right {
    background: white;
    border-radius: 12px;
    border: 2px solid #e8eef3;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.benefits-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #050714 0%, #0B2A3D 100%);
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px 0;
    position: relative;
}

.benefit-item:not(:last-child) {
    border-bottom: 1px solid #e8eef3;
    margin-bottom: 20px;
    padding-bottom: 32px;
}

.benefit-item:last-child {
    padding-bottom: 0;
}

.benefit-checkmark {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #050714 0%, #0B2A3D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.benefit-checkmark svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

.benefit-text {
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    font-weight: 500;
}
.content-container {
    margin: 0 7.2% 0 7.5%;
    /* Left margin matches logo (7.5%), right margin matches toggle button area */
}

/* ========== RECENT POSTS SECTION - FIXED ========== */
.recent-posts-section {
    background: white;
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.recent-posts-section .content-container {
    margin: 0 7.2% 0 7.5%;
    /* Ensures alignment with logo on left and toggle on right */
}

.recent-posts-header {
    margin-bottom: 60px;
}

.recent-posts-header h2 {
    font-size: 48px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.post-card {
    display: block;
}

.post-card-image-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.post-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 4px;
}

.post-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-card-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    backdrop-filter: blur(10px);
    color: white;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-top: 3px solid rgba(255, 255, 255, 0.3);
    min-height: 76px;
}

.post-card-badge-logo-section {
    display: flex;
    flex-direction: column;
    padding-right: 16px;
    border-right: 2px solid rgba(255, 255, 255, 0.3);
    align-self: center;
}

.post-card-badge-logo {
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1;
    white-space: nowrap;
}

.post-card-badge-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.post-card-badge-title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.post-card-badge-subtitle {
    font-size: 12px;
    opacity: 0.9;
    font-weight: 400;
    line-height: 1.3;
    min-height: 16px;
}

.post-card-date {
    color: #050714;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
    text-decoration: none;
    cursor: pointer;
    width: fit-content;
}

.post-card-title-link {
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.post-card-title {
    color: #222;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.view-all-articles {
    text-align: center;
}

.view-all-articles a {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.view-all-articles a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.view-all-articles a:hover {
    color: white;
    border-bottom-color: #050714;
}

.view-all-articles a:hover::before {
    height: 100%;
}

/* ========== ABOUT QUALYTIX SECTION ========== */
.about-Qualytix-section {
    background: #f8f9fa;
    padding: 100px 0;
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.about-Qualytix-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(5, 7, 20, 0.02) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(5, 7, 20, 0.02) 0%, transparent 40%);
    pointer-events: none;
}

.about-Qualytix-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 7.5%;
    position: relative;
    z-index: 2;
}

.about-decorative-line {
    width: 120px;
    height: 4px;
    background: linear-gradient(135deg, #050714 0%, #0B2A3D 100%);
    margin-bottom: 60px;
}

.about-content-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
}

.about-main-content {
    position: relative;
}

.about-title {
    font-size: 56px;
    font-weight: 900;
    color: #050714;
    margin-bottom: 32px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.about-description {
    font-size: 20px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 40px;
    max-width: 650px;
}

.about-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #050714;
    border-top: 0.4px solid #050714;
    border-left: 1px solid #050714;
    border-right: 1px solid #050714;
    border-bottom: 3px solid #050714;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.about-cta-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.about-cta-btn:hover {
    color: white;
}

.about-cta-btn:hover::before {
    height: 100%;
}

.about-stats-grid {
    display: block;
    background: transparent;
    padding: 0;
    border-radius: 8px;
    box-shadow: none;
    border: none;
}

.about-stats-grid img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

/* ========== MOBILE RESPONSIVENESS ========== */

/* Tablets */
@media (max-width: 1024px) {
    .about-Qualytix-container {
        padding: 0 5%;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-title {
        font-size: 44px;
    }

    .about-description {
        font-size: 18px;
        max-width: 100%;
    }
}

/* Mobile - Image First, Then Text */
@media (max-width: 768px) {
    .about-Qualytix-section {
        padding: 60px 0;
    }

    .about-Qualytix-container {
        padding: 0 20px;
    }

    .about-decorative-line {
        width: 80px;
        height: 3px;
        margin-bottom: 30px;
    }

    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column;
    }

    /* Image appears first on mobile */
    .about-stats-grid {
        order: 1;
        margin-bottom: 20px;
    }

    /* Text content appears second */
    .about-main-content {
        order: 2;
    }

    .about-title {
        font-size: 32px;
        margin-bottom: 20px;
        line-height: 1.2;
    }

    .about-description {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .about-cta-btn {
        padding: 13px 32px;
        font-size: 14px;
        width: 100%;
        text-align: center;
    }

    .about-stats-grid img {
        border-radius: 6px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .about-Qualytix-section {
        padding: 50px 0;
    }

    .about-Qualytix-container {
        padding: 0 15px;
    }

    .about-decorative-line {
        width: 60px;
        margin-bottom: 25px;
    }

    .about-content-wrapper {
        gap: 30px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-description {
        font-size: 15px;
        margin-bottom: 24px;
    }

    .about-cta-btn {
        padding: 12px 28px;
        font-size: 13px;
    }

    .about-stats-grid img {
        border-radius: 4px;
    }
}

/* Extra Small Mobile */
@media (max-width: 375px) {
    .about-Qualytix-container {
        padding: 0 12px;
    }

    .about-title {
        font-size: 24px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-cta-btn {
        padding: 11px 24px;
        font-size: 12px;
    }
}

/* ========== CTA BANNER SECTION - FIXED ========== */
.cta-banner-section {
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.cta-banner-section .content-container {
    margin: 0 7.2% 0 7.5%;
}

.cta-banner-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cta-banner-text {
    flex: 1;
}

.cta-banner-text h2 {
    font-size: 32px;
    font-weight: 600;
    color: white;
    margin-bottom: 10px;
    line-height: 1.3;
}

.cta-banner-text p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    opacity: 0.95;
}

.cta-banner-button {
    flex-shrink: 0;
}

.cta-banner-btn {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: #050714;
    border: none;
    border-bottom: 2px solid #050714;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
    white-space: nowrap;
}

.cta-banner-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #050714;
    transition: height 0.3s ease;
    z-index: -1;
}

.cta-banner-btn:hover {
    color: white;
    border-bottom-color: #050714;
}

.cta-banner-btn:hover::before {
    height: 100%;
}

/* ========== FOOTER SECTION - FIXED ========== */
.footer-section {
    background: white;
    padding: 80px 0 0 0;
    position: relative;
    z-index: 2;
}

.footer-section .content-container {
    margin: 0 7.2% 0 7.5%;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 0.7fr;
    margin-bottom: 60px;
}

.footer-column h3 {
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 24px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 14px;
    width: 90% !important;
}

.footer-column ul li a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    display: block;
    width: 100% !important;
}

.footer-column ul li a:hover {
    color: #050714;
}

.footer-column sup {
    font-size: 11px;
    top: -0.3em;
}

.footer-social-icons {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f0f0;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

.social-icon:hover {
    background: #050714;
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.gptw-badge {
    width: 100px;
    height: auto;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding: 40px 0;
    margin-top: 60px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-logo img {
    height: 64px;
    width: auto;
}

.footer-copyright {
    flex: 1;
    text-align: center;
    color: #666;
    font-size: 15px;
}

.footer-search {
    display: flex;
    gap: 0;
    max-width: 400px;
    width: 100%;
}

.footer-search input {
    flex: 1;
    padding: 14px 20px;
    border: 2px solid #e0e0e0;
    border-right: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    outline: none;
    transition: border-color 0.3s ease;
    min-width: 0;
}

.footer-search input:focus {
    border-color: #050714;
}

.footer-search input::placeholder {
    color: #999;
}

.footer-search button {
    padding: 14px 28px;
    background: linear-gradient(135deg, #050714 0%, #081A2F 60%, #0B2A3D 100%);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 60px;
}

.footer-search button:hover {
    background: linear-gradient(135deg, #081A2F 0%, #0B2A3D 60%, #050714 100%);
}

.footer-links {
    background: #f5f5f5;
    padding: 20px 0;
    text-align: center;
}

.footer-links .content-container {
    margin: 0 7.2% 0 7.5%;
}

.footer-links-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #050714;
}

.footer-links-separator {
    color: #ccc;
}


/* Responsive adjustments */
@media (max-width: 1200px) {
    .benefits-container {
        gap: 60px;
    }
    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 160px 5% 60px;
        gap: 60px;
    }

    .hero-content h1 {
        font-size: 52px;
    }

     .benefits-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .benefits-left {
        position: relative;
        top: 0;
    }

    .benefits-title {
        font-size: 44px;
    }

    .content-container {
        margin: 0 5% !important;
    }

    .recent-posts-section .content-container,
    .cta-banner-section .content-container,
    .footer-section .content-container,
    .footer-links .content-container {
        margin: 0 5% !important;
    }
    

    .cta-banner-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-columns {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }

   .dropdown-items-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px 20px;
    }
}

@media (max-width: 768px) {
    /* Webinar Banner */
    .webinar-banner {
        height: auto;
        padding: 10px 12px;
        flex-wrap: wrap;
    }

    .webinar-content {
        flex-direction: column;
        gap: 10px;
        padding-right: 35px;
        width: 100%;
        max-width: 100%;
    }

    .webinar-text {
        font-size: 12px;
        line-height: 1.4;
        text-align: center;
        width: 100%;
    }

    .watch-btn {
        padding: 8px 20px;
        font-size: 12px;
        width: auto;
        text-align: center;
    }

    .close-banner {
        right: 12px;
        top: 10px;
    }

    .close-banner svg {
        width: 16px;
        height: 16px;
    }

    /* Logo Container */
    .logo-container {
        position: fixed !important;
        left: 20px !important;
        top: 100px !important;
        z-index: 900 !important;
    }

    .logo-container.banner-hidden {
        top: 20px !important;
    }

    .logo-container img {
        height: 50px !important;
        width: auto !important;
    }

    /* Menu Toggle Container */
    .menu-toggle-container {
        position: fixed !important;
        right: 20px !important;
        top: 100px !important;
        z-index: 900 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .menu-toggle-container.banner-hidden {
        top: 20px !important;
    }

    .menu-toggle {
        display: flex !important;
        padding: 10px !important;
        border-radius: 4px !important;
    }

    .menu-toggle svg {
        width: 28px !important;
        height: 28px !important;
        stroke: white !important;
        stroke-width: 2.5 !important;
    }

    /* Sticky Navbar */
    .sticky-navbar {
        padding: 10px 15px;
    }

    .sticky-navbar img {
        height: 45px;
    }

    .sticky-navbar .nav-right {
        gap: 12px;
    }

    .sticky-navbar .consultation-btn {
        padding: 10px 20px;
        font-size: 13px;
    }

    /* Dropdown Menu */
    .dropdown-header {
        padding: 12px 15px;
    }

    .dropdown-logo img {
        height: 45px;
    }

    .dropdown-consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .dropdown-container {
        margin: 0 15px;
        padding: 30px 15px;
    }

    .dropdown-content {
        gap: 0;
    }

    .dropdown-section-wrapper {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .dropdown-section-title {
        font-size: 18px;
        margin-bottom: 0;
        padding: 10px 0;
        cursor: pointer;
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-section-title::after {
        content: '›';
        font-size: 28px;
        font-weight: 300;
        transform: rotate(90deg);
        transition: transform 0.3s ease;
    }

    .dropdown-section-wrapper.active .dropdown-section-title::after {
        transform: rotate(-90deg);
    }

    .dropdown-items-grid {
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding-bottom: 12px;
    }

    .dropdown-section-wrapper.active .dropdown-items-grid {
        display: grid;
    }

    .dropdown-item {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-item a {
        font-size: 15px;
        padding: 14px 0 14px 16px;
    }
    .hero-section {
        padding: 140px 20px 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-form {
        padding: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
     .submit-btn {
        padding: 12px 28px;
        font-size: 14px;
        width: 100%; /* Full width on mobile */
        max-width: 300px; /* Prevent it from being too wide */
        margin: 0 auto; /* Center it */
        display: block;
    }


    .benefits-section {
        padding: 60px 20px;
    }

    .benefits-container {
        gap: 40px;
    }

    .benefits-title {
        font-size: 32px;
    }

    .benefits-subtitle {
        font-size: 17px;
    }

    .benefits-right {
        padding: 30px;
    }

    .benefit-item {
        padding: 16px 0;
    }

    .benefit-item:not(:last-child) {
        margin-bottom: 16px;
        padding-bottom: 24px;
    }

    .benefit-text {
        font-size: 15px;
    }

   
    /* Recent Posts Section */

    .recent-posts-header h2 {
        font-size: 28px;
    }

    .content-container {
        margin: 0 20px !important;
    }

    .recent-posts-section .content-container,
    .cta-banner-section .content-container,
    .footer-section .content-container,
    .footer-links .content-container {
        margin: 0 20px !important;
    }

    .posts-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .post-card-image-wrapper {
        height: 240px;
    }

    .post-card-badge {
        padding: 16px 20px;
        min-height: 70px;
    }

    .post-card-title {
        font-size: 20px;
    }
   
    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 15px;
    }

    .cta-banner-section {
        padding: 40px 0;
    }

    .cta-banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .cta-banner-text h2 {
        font-size: 24px;
    }

    .cta-banner-text p {
        font-size: 16px;
    }

    .cta-banner-btn {
        width: 100%;
    }

    .footer-section {
        padding: 60px 0 0 0;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }

    .footer-column h3 {
        font-size: 20px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        padding: 0;
    }

    .footer-logo {
        order: 1;
        text-align: center;
    }

    .footer-logo img {
        height: 55px;
    }

    .footer-copyright {
        order: 2;
        font-size: 14px;
        text-align: center;
    }

    .footer-search {
        order: 3;
        width: 100%;
        max-width: 100%;
    }

    .footer-search input {
        padding: 12px 16px;
        font-size: 14px;
        border: 1px solid #e0e0e0;
    }

    .footer-search button {
        padding: 12px 24px;
        font-size: 16px;
        min-width: 60px;
    }

    .footer-links-content {
        flex-direction: column;
        gap: 12px;
    }

    .footer-links-separator {
        display: none;
    }
    
}

@media (max-width: 480px) {
    .hero-section{
        padding-top: 200px;
    }
    .hero-content h1 {
        font-size: 30px;
    }
      .logo-container {
        left: 15px !important;
        top: 55px;
    }

    .logo-container.banner-hidden {
        top: 35px;
    }

    .logo-container img {
        height: 38px;
    }

    .menu-toggle-container {
        right: 15px !important;
        top: 20px;
    }

    .menu-toggle svg {
        width: 24px;
        height: 24px;
    }

    .sticky-navbar {
        padding: 8px 12px;
    }

    .sticky-navbar img {
        height: 38px;
    }

    .sticky-navbar .consultation-btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .dropdown-header {
        padding: 10px 12px;
    }

    .dropdown-logo img {
        height: 38px;
    }

    .dropdown-right {
        gap: 10px;
    }

    .dropdown-consultation-btn {
        padding: 6px 12px;
        font-size: 11px;
    }

    .close-menu svg {
        width: 22px;
        height: 22px;
    }

    .dropdown-container {
        margin: 0 12px;
        padding: 25px 12px;
    }

    .dropdown-section-title {
        font-size: 16px;
        padding: 3px 0;
    }

    .dropdown-section-title::after {
        font-size: 24px;
    }

    .dropdown-item a {
        font-size: 14px;
        padding: 12px 0 12px 12px;
    }

    .hero-section {
        
        background: #fafafa;
    }

    .hero-section::before {
        background: #fafafa;
    }

    .hero-section::after {
        display: none;
    }

    .hero-description {
        font-size: 16px;
    }
     .submit-btn {
        padding: 12px 24px;
        font-size: 13px;
        width: 100%;
        max-width: 100%;
    }

    .benefits-title {
        font-size: 28px;
    }

    .benefits-right {
        padding: 24px;
    }
    
    .stat-number {
        font-size: 36px;
    }

    .stat-label {
        font-size: 14px;
    }

  .footer-bottom {
        padding: 25px 0;
    }

    .footer-bottom-content {
        gap: 16px;
        padding: 0;
    }

    .footer-logo img {
        height: 50px;
    }

    .footer-copyright {
        font-size: 13px;
        padding: 0 10px;
        line-height: 1.4;
    }

    .footer-search input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .footer-search button {
        padding: 10px 18px;
        font-size: 16px;
        min-width: 52px;
    }
   
}
/* ========== EXTRA SMALL MOBILE (375px) ========== */
@media (max-width: 375px) {
   

    .footer-columns {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        padding: 20px 0;
    }

    .footer-bottom-content {
        gap: 14px;
    }

    .footer-logo img {
        height: 45px;
    }

    .footer-copyright {
        font-size: 12px;
        padding: 0 5px;
    }

    .footer-search input {
        padding: 10px 10px;
        font-size: 12px;
    }

    .footer-search button {
        padding: 10px 16px;
        font-size: 15px;
        min-width: 48px;
    }
}