/* ----- GLOBAL FONT SETTINGS FOR HEADER ----- */
#header {
    background: #ffffff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: 'Open Sans', sans-serif;
}

#header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* ----- LOGO STYLES ----- */
.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #0b1a33;
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo img {
    height: 38px;
    width: auto;
}

.logo span {
    color: #2563eb;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

/* ----- MOBILE TOGGLE BUTTON ----- */
.mobile-toggle {
    background: none;
    border: 2px solid rgba(11, 26, 51, 0.2);
    border-radius: 6px;
    color: #0b1a33;
    font-family: 'Font Awesome 6 Free', sans-serif;
    font-size: 20px;
    padding: 5px 10px;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mobile-toggle:hover {
    border-color: #7C3AED;
}

/* ----- NAVIGATION (hidden on mobile) ----- */
nav {
    width: 100%;
    display: none;
}
nav.active {
    display: block;
}

.nav-menu {
    list-style: none;
    margin: 0;
    padding: 10px 0 0;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    margin-top: 10px;
    font-family: 'Open Sans', sans-serif;
}

/* ----- MAIN MENU ITEMS ----- */
.nav-menu > li {
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.nav-menu > li:last-child {
    border-bottom: none;
}

.nav-menu > li > a {
    display: block;
    padding: 10px 14px;
    color: #0b1a33;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    transition: 0.2s;
    border-radius: 4px;
}
.nav-menu > li > a:hover {
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.06);
}
.nav-menu > li > a.active {
    color: #7C3AED;
    font-weight: 700;
}

/* ----- DROPDOWN INDICATOR (chevron) ----- */
.drop-down > a {
    position: relative;
}
.drop-down > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 12px;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.5;
    transition: transform 0.3s;
    color: #0b1a33;
}
.drop-down.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* ----- SUBMENU (dropdown items) ----- */
.drop-down > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: rgba(0,0,0,0.02);
    border-radius: 0 0 6px 6px;
}
.drop-down.open > ul {
    display: block;
}

.drop-down > ul > li {
    border-bottom: 1px solid rgba(0,0,0,0.03);
}
.drop-down > ul > li:last-child {
    border-bottom: none;
}

.drop-down > ul > li > a {
    display: block;
    padding: 8px 14px 8px 28px;
    color: #1e293b;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    transition: 0.2s;
}
.drop-down > ul > li > a:hover {
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.05);
}

/* ----- THIRD LEVEL (sub-submenu) ----- */
.drop-down > ul > li > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
    background: rgba(0,0,0,0.03);
    border-radius: 0 0 6px 6px;
}
.drop-down > ul > li.open > ul {
    display: block;
}

.drop-down > ul > li > ul > li > a {
    display: block;
    padding: 6px 14px 6px 44px;
    color: #334155;
    text-decoration: none;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 400;
    transition: 0.2s;
}
.drop-down > ul > li > ul > li > a::before {
    content: "\f0da";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 10px;
    margin-right: 6px;
    opacity: 0.4;
}
.drop-down > ul > li > ul > li > a:hover {
    color: #7C3AED;
    background: rgba(124, 58, 237, 0.05);
}

/* Third level chevron */
.drop-down > ul > li > a::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 11px;
    float: right;
    opacity: 0.4;
    transition: transform 0.3s;
    margin-right: 4px;
    color: #0b1a33;
}
.drop-down > ul > li.open > a::after {
    transform: rotate(180deg);
}

/* ----- DESKTOP (> 992px) ----- */
@media (min-width: 992px) {
    #header .container {
        flex-wrap: nowrap;
    }
    .mobile-toggle {
        display: none !important;
    }
    nav {
        display: block !important;
        width: auto;
        flex: 1;
    }
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 2px;
        justify-content: flex-end;
        padding: 0;
        margin: 0;
        background: transparent;
        border-top: none;
        border-radius: 0;
    }
    .nav-menu > li {
        border-bottom: none;
        position: relative;
    }
    .nav-menu > li > a {
        padding: 6px 14px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        border-radius: 30px;
        white-space: nowrap;
        color: #0b1a33;
    }
    .nav-menu > li > a:hover {
        background: transparent;
        color: #0b1a33;
    }
    .nav-menu > li > a.active {
         color: #0b1a33;
    }

    /* Desktop dropdown indicator */
    .drop-down > a::after {
        position: static;
        transform: none;
        margin-left: 4px;
        font-size: 11px;
        color: #0b1a33;
    }
    .drop-down.open > a::after {
        transform: none;
    }

    /* Dropdown - hover */
    .drop-down > ul {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 200px;
        background: #ffffff;
        border-radius: 10px;
        padding: 6px 0;
        box-shadow: 0 15px 35px rgba(0,0,0,0.12);
        display: none !important;
        border: 1px solid rgba(0,0,0,0.06);
    }
    .drop-down:hover > ul {
        display: block !important;
    }
    .drop-down > ul > li {
        position: relative;
        border-bottom: 1px solid rgba(0,0,0,0.04);
        padding: 0 4px;
    }
    .drop-down > ul > li:last-child {
        border-bottom: none;
    }
    .drop-down > ul > li > a {
        display: block;
        padding: 8px 16px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #0b1a33;
        text-decoration: none;
        white-space: nowrap;
        position: relative;
    }
    .drop-down > ul > li > a::after {
        content: "\f054";
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        font-size: 10px;
        opacity: 0.5;
        color: #0b1a33;
    }
    .drop-down > ul > li > a:hover,
    .drop-down > ul > li > ul > li > a:hover {
        background: #f8fafc;
        color: #0b1a33;
    }

    /* Third level desktop */
    .drop-down > ul > li {
        position: relative;
    }
    .drop-down > ul > li > ul {
        position: absolute;
        left: 100%;
        top: 0;
        min-width: 240px;
        background: #fff;
        border: 1px solid rgba(0,0,0,.06);
        border-radius: 10px;
        box-shadow: 0 15px 35px rgba(0,0,0,.12);
        padding: 6px 0;
        display: none !important;
    }
    .drop-down > ul > li:hover > ul {
        display: block !important;
    }
    .drop-down > ul > li > ul > li > a {
        display: block;
        padding: 8px 16px;
        font-family: 'Open Sans', sans-serif;
        font-size: 14px;
        font-weight: 600;
        line-height: 1.5;
        color: #0b1a33;
        text-decoration: none;
        white-space: nowrap;
    }
    .drop-down > ul > li > ul > li > a::before,
    .drop-down > ul > li > ul > li > a::after {
        display: none;
    }
    .drop-down > ul > li > ul > li > a:hover {
        background: rgba(124, 58, 237, 0.08);
        color: #7C3AED;
    }

    /* Remove chevron from Google Cloud */
    .nav-menu > li:last-child > a::after {
        display: none !important;
    }

    /* Reset mobile open styles for desktop */
    .drop-down.open > ul {
        display: none !important;
    }
    .drop-down:hover > ul {
        display: block !important;
    }
    .drop-down > ul > li.open > ul {
        display: none !important;
    }
    .drop-down > ul > li:hover > ul {
        display: block !important;
    }
}

/* ----- SMALL SCREEN ADJUSTMENTS ----- */
@media (max-width: 420px) {
    .logo a {
        font-size: 18px;
    }
    .logo img {
        height: 32px;
    }
    .mobile-toggle {
        font-size: 17px;
        padding: 4px 8px;
    }
    .nav-menu > li > a {
        font-size: 14px;
        padding: 8px 12px;
    }
    .drop-down > ul > li > a {
        font-size: 13px;
        padding: 6px 12px 6px 24px;
    }
    .drop-down > ul > li > ul > li > a {
        font-size: 12px;
        padding: 5px 12px 5px 38px;
    }
}

@media (max-width:991px){
    .drop-down > ul{
        display:none;
    }
    .drop-down.open > ul{
        display:block;
    }
    .drop-down .drop-down > ul{
        display:none;
    }
    .drop-down .drop-down.open > ul{
        display:block !important;
    }
    .drop-down > a{
        cursor:pointer;
    }
}

/* Keep Courses menu black */
.nav-menu > li.drop-down > a,
.nav-menu > li.drop-down > a:hover,
.nav-menu > li.drop-down:hover > a,
.nav-menu > li.drop-down > a.active {
    color: #0b1a33 !important;
    background: transparent !important;
}

/* ----- TAB STYLES ----- */
.tab-btn {
    transition: all 0.3s ease;
}
.tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.25);
}
.tab-btn.active {
    background: #7C3AED !important;
    color: #fff !important;
}
.tab-content {
    transition: opacity 0.3s ease;
}

/* ----- FRONTIER CARD STYLES ----- */
.frontier-card {
    transition: all 0.3s ease;
}
.frontier-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Tools Grid */
.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    margin-top: 10px;
}
.tool-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    padding: 8px 20px;
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    border: 1.5px solid #e0e7ef;
}
.tool-badge i {
    font-size: 1.1rem;
    width: 1.4rem;
    text-align: center;
}
.tool-badge:hover {
    box-shadow: 0 4px 14px rgba(0,0,0,0.10);
    transform: translateY(-3px);
    border-color: #FFA500; /* orange */
}

/* Partner Logos */
.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px 20px;
    margin-top: 20px;
}
.partner-badge {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.25s ease;
    cursor: default;
}
.partner-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.10);
}

/* Section padding */
.section-padding {
    padding: 60px 0;
}
.section-title {
    text-align: center;
    margin-bottom: 40px;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0b1a33;
    margin: 0 0 12px 0;
}
.section-title p {
    font-size: 16px;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .tools-grid {
        gap: 10px;
    }
    .tool-badge {
        font-size: 0.8rem;
        padding: 6px 14px;
    }
    .tool-badge i {
        font-size: 0.9rem;
        width: 1.2rem;
    }
    .partner-logos {
        gap: 10px 14px;
    }
    .partner-badge {
        font-size: 0.85rem;
        padding: 6px 18px;
    }
    .tab-btn {
        font-size: 14px !important;
        padding: 10px 20px !important;
    }
    .section-title h2 {
        font-size: 24px;
    }
    .frontier-card {
        padding: 20px !important;
    }
}

@media (max-width: 480px) {
    .tabs-nav {
        gap: 8px !important;
    }
    .tab-btn {
        font-size: 12px !important;
        padding: 8px 14px !important;
        width: 100%;
        text-align: center;
    }
    .tab-btn i {
        margin-right: 6px !important;
    }
}

/* Hero Slideshow Styles */
#hero {
    position: relative;
    overflow: hidden;
    height: 550px;
}
#hero .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}
#hero .slide.active {
    opacity: 1;
    z-index: 2;
}
#hero .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 26, 51, 0.85) 0%, rgba(11, 26, 51, 0.60) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}
#hero .slide-content {
    max-width: 800px;
    padding: 30px;
    text-align: center;
    color: #fff;
}
#hero .slide-content .badge {
    display: inline-block;
    background: rgba(124, 58, 237, 0.9); /* plum */
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}
#hero .slide-content h1 {
    font-size: 40px;
    font-weight: 800;
    margin: 0 0 16px 0;
    line-height: 1.2;
}
#hero .slide-content h1 span {
    color: #FFA500; /* orange */
}
/* Override inline orange and reddish-violet spans */
#hero .slide-content h1 span[style*="color: #FFA500"] {
    color: #FFA500 !important;
}
#hero .slide-content h1 span[style*="color: #D81B60"] {
    color: #7C3AED !important;
}
#hero .slide-content p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 25px 0;
    line-height: 1.6;
}
#hero .btn-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}
#hero .btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 16px;
}
#hero .btn-primary {
    background: #2563eb;
    color: #fff;
}
#hero .btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
}
#hero .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
#hero .btn-outline:hover {
    background: #fff;
    color: #0b1a33;
    transform: translateY(-2px);
}
#hero .slideshow-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}
#hero .slideshow-dots .dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}
#hero .slideshow-dots .dot.active {
    background: #7C3AED; /* plum */
    transform: scale(1.2);
}
#hero .slideshow-dots .dot:hover {
    background: rgba(255,255,255,0.8);
}

/* Trust Bar */
#trust-bar {
    background: #0b1a33;
    padding: 20px 0;
    position: relative;
    z-index: 5;
}
#trust-bar .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 15px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
#trust-bar .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}
#trust-bar .trust-item i {
    font-size: 24px;
    color: #FFA500; /* orange */
}
#trust-bar .trust-item .text {
    font-size: 15px;
    font-weight: 600;
    color: #E0E7FF;
}
#trust-bar .trust-item .text small {
    display: block;
    font-weight: 400;
    font-size: 12px;
    opacity: 0.7;
    color: #F8FAFC;
}

/* Stats */
#stats {
    background: #f8fafc;
    padding: 50px 0;
}
#stats .container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
#stats .stat-item {
    text-align: center;
}
#stats .stat-item .number {
    font-size: 40px;
    font-weight: 800;
    color: #7C3AED; /* plum */
}
#stats .stat-item .label {
    font-size: 16px;
    color: #475569;
    font-weight: 600;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.course-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e8edf4;
    transition: all 0.3s;
}
.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.10);
}
.course-card .icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
    color: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    border: 2px solid rgba(255,255,255,0.3);
}
.course-card .icon i {
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.course-card .icon.aws { background: #FFA500; } /* orange */
.course-card .icon.azure { background: #2563EB; }
.course-card .icon.devops { background: #7C3AED; } /* plum */
.course-card .icon.dsai { background: #0D9488; } /* teal */
.course-card .icon.gcp { background: #4285f4; }
.course-card .icon.security { background: #E11D48; } /* rose */
.course-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1a33;
    margin: 0 0 10px 0;
}
.course-card p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 12px 0;
}
.course-card .course-tag {
    display: inline-block;
    background: #f1f5f9;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
.feature-item {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e8edf4;
    transition: all 0.3s;
}
.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.feature-item i {
    font-size: 36px;
    color: #7C3AED; /* plum */
    margin-bottom: 15px;
}
.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0b1a33;
    margin: 0 0 10px 0;
}
.feature-item p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* CTA */
#cta {
    background: linear-gradient(135deg, #0b1a33 0%, #1a2d4a 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
#cta h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 12px 0;
}
#cta p {
    font-size: 18px;
    opacity: 0.9;
    margin: 0 0 25px 0;
}
#cta .btn {
    padding: 14px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    font-size: 16px;
    margin: 5px;
}
#cta .btn-secondary {
    background: #FFA500; /* orange */
    color: #0b1a33;
}
#cta .btn-secondary:hover {
    background: #E67E00; /* darker orange */
    transform: translateY(-2px);
}
#cta .btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
#cta .btn-outline:hover {
    background: #fff;
    color: #0b1a33;
    transform: translateY(-2px);
}

/* FAQ */
#faq {
    background: #f8fafc;
}
.faq-list {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 15px;
}
.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    border: 1px solid #e8edf4;
    overflow: hidden;
}
.faq-item summary {
    padding: 18px 24px;
    font-weight: 600;
    font-size: 16px;
    color: #0b1a33;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}
.faq-item summary::-webkit-details-marker {
    display: none;
}
.faq-item summary::after {
    content: "\f078";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 14px;
    color: #7C3AED; /* plum */
    transition: transform 0.3s;
}
.faq-item[open] summary::after {
    transform: rotate(180deg);
}
.faq-item .faq-answer {
    padding: 0 24px 20px;
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
}
.faq-item .faq-answer ul {
    padding-left: 20px;
}
.faq-item .faq-answer ul li {
    margin-bottom: 6px;
}

/* Footer */
#footer {
    background: #0b1a33;
    color: #cbd5e1;
    padding: 40px 0 20px;
}
#footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
#footer h4 {
    color: #fff;
    font-size: 18px;
    margin: 0 0 15px 0;
}
#footer a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    padding: 4px 0;
    font-size: 14px;
    transition: color 0.3s;
}
#footer a:hover {
    color: #FFA500; /* orange */
}
#footer .social-links {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}
#footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s;
}
#footer .social-links a:hover {
    background: #7C3AED; /* plum */
    color: #fff;
}
#footer .copyright {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    color: #94a3b8;
}

/* ========================================== */
/* WHATSAPP FLOATING BUTTON – ADDED           */
/* ========================================== */
.wa-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 999999;
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    font-family: 'Segoe UI', Roboto, sans-serif;
    cursor: pointer;
}

.wa-float .wa-label {
    background: rgba(255, 255, 255, 0.95);
    color: #1a1a2e;
    padding: 10px 20px;
    border-radius: 40px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.10);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
    border: 1px solid rgba(37, 211, 102, 0.25);
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.wa-float .wa-icon {
    width: 62px;
    height: 62px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    animation: wa-pulse 2.4s infinite;
    color: #fff;
    font-size: 34px;
    flex-shrink: 0;
}

.wa-float:hover .wa-icon {
    transform: scale(1.08);
    box-shadow: 0 8px 36px rgba(37, 211, 102, 0.60);
    animation: none;
}
.wa-float:hover .wa-label {
    transform: translateX(-4px);
    border-color: #25D366;
    background: #ffffff;
}

@keyframes wa-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
    70% { box-shadow: 0 0 0 18px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 640px) {
    .wa-float {
        bottom: 18px;
        right: 18px;
        gap: 10px;
    }
    .wa-float .wa-icon {
        width: 54px;
        height: 54px;
        font-size: 28px;
    }
    .wa-float .wa-label {
        font-size: 13px;
        padding: 8px 16px;
    }
}
@media (max-width: 420px) {
    .wa-float .wa-label {
        display: none;
    }
    .wa-float .wa-icon {
        width: 58px;
        height: 58px;
        font-size: 30px;
    }
}

/* ============================================ */
/* PAGE-SPECIFIC STYLES FOR ABOUT.PHP          */
/* ============================================ */

/* ----- GLOBAL RESET ----- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: #fff;
    color: #0b1a33;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #2563eb;
    color: #fff;
}
.btn-primary:hover {
    background: #1d4ed8;
}

.btn-outline {
    background: transparent;
    color: #2563eb;
    border: 2px solid #2563eb;
}
.btn-outline:hover {
    background: #2563eb;
    color: #fff;
}

.btn-secondary {
    background: #f59e0b;
    color: #0b1a33;
}
.btn-secondary:hover {
    background: #d97706;
}

/* ============================================ */
/* PAGE-HERO                                   */
/* ============================================ */
.page-hero {
    background: linear-gradient(135deg, #0b1a33 0%, #1a2a4a 100%);
    padding: 80px 0 50px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.page-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================ */
/* FEATURES GRID                               */
/* ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
}

.feature-item i {
    font-size: 2.5rem;
    color: #2563eb;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    color: #0b1a33;
}

.feature-item p {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .page-hero p {
        font-size: 1rem;
    }
}

/* ============================================ */
/* STATS SECTION                               */
/* ============================================ */
#stats {
    background: #f8fafc;
    padding: 50px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

#stats .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

#stats .stat-item .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2563eb;
}

#stats .stat-item .label {
    font-size: 0.95rem;
    color: #475569;
    font-weight: 600;
    margin-top: 4px;
}

@media (max-width: 768px) {
    #stats .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    #stats .container {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }
    #stats .stat-item .number {
        font-size: 1.8rem;
    }
}

/* ============================================ */
/* CTA SECTION                                 */
/* ============================================ */
#cta {
    background: #0b1a33;
    color: #fff;
    padding: 50px 20px;
    text-align: center;
}

#cta h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

#cta p {
    font-size: 16px;
    opacity: 0.8;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

#cta .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* ============================================ */
/* FOOTER STYLES                               */
/* ============================================ */
#footer {
    background: #0b1a33;
    color: #cbd5e1;
    padding: 40px 0 20px;
}

#footer .container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

#footer h4 {
    color: #fff;
    margin-bottom: 12px;
    font-size: 18px;
}

#footer a {
    color: #cbd5e1;
    text-decoration: none;
    display: block;
    margin: 4px 0;
}

#footer a:hover {
    color: #fff;
}

#footer .social-links a {
    display: inline-block;
    margin-right: 12px;
    font-size: 20px;
}

#footer .copyright {
    grid-column: 1/-1;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #334155;
    font-size: 14px;
}

@media (max-width: 768px) {
    #footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    #footer .container {
        grid-template-columns: 1fr;
    }
}

/* ============================================ */
/* ABOUT PAGE SPECIFIC CONTENT STYLES          */
/* ============================================ */
.about-legacy-text {
    text-align: center;
    margin-bottom: 40px;
}

.about-legacy-text h2 {
    color: #0b1a33;
    font-size: 2rem;
}

.about-legacy-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-top: 15px;
}

.about-why-box {
    background: #f8faff;
    border-radius: 20px;
    padding: 30px 30px 20px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}

.about-why-box h3 {
    font-size: 1.6rem;
    text-align: center;
    color: #0b1a33;
    margin-bottom: 20px;
}

.about-why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.about-why-grid h4 {
    font-size: 1.2rem;
}

.about-why-grid ul {
    list-style: none;
    padding: 0;
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
}

.about-why-grid ul li i {
    margin-right: 8px;
}

.about-why-location {
    text-align: center;
    margin-top: 25px;
    font-weight: 500;
}

.about-local-keywords {
    margin-top: 40px;
    background: #f1f5f9;
    border-radius: 16px;
    padding: 25px;
    text-align: center;
}

.about-local-keywords h3 {
    font-size: 1.3rem;
    color: #0b1a33;
}

.about-local-keywords p {
    font-size: 0.95rem;
    color: #475569;
    max-width: 700px;
    margin: 10px auto;
}

.about-local-keywords .check {
    font-size: 0.9rem;
    color: #64748b;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .about-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .about-why-box {
        padding: 20px 15px;
    }
    
    .about-why-box h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .about-legacy-text h2 {
        font-size: 1.5rem;
    }
    
    .about-legacy-text p {
        font-size: 1rem;
    }
}

/* ============================================ */
/* SOCIAL MEDIA ICON CENTERING FIX              */
/* ============================================ */

/* Fix for social media icons in footer - ensure perfect centering */
#footer .social-links a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    line-height: 1;
    /* Remove any extra spacing */
    padding: 0;
    margin: 0;
    border: none;
    /* Ensure proper box-sizing */
    box-sizing: border-box;
    /* Prevent text distortion */
    text-align: center;
    /* For any residual text */
    vertical-align: middle;
}

/* Ensure Font Awesome icons are perfectly centered */
#footer .social-links a i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 18px;
    line-height: 1;
    width: auto;
    height: auto;
    /* Remove any default margins */
    margin: 0;
    padding: 0;
    /* Ensure icon is centered within the flex container */
    flex-shrink: 0;
    /* Prevent icon from being squished */
    flex-grow: 0;
}

/* Hover states - maintain centering */
#footer .social-links a:hover {
    background: #7C3AED;
    color: #fff;
    transform: translateY(-2px);
}

/* Specific hover colors for each platform */
#footer .social-links a.facebook:hover {
    background: #1877f2;
    color: #fff;
}

#footer .social-links a.linkedin:hover {
    background: #0a66c2;
    color: #fff;
}

#footer .social-links a.twitter:hover {
    background: #000000;
    color: #fff;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    #footer .social-links a {
        width: 36px;
        height: 36px;
        font-size: 16px;
    }
    
    #footer .social-links a i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    #footer .social-links a {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
    
    #footer .social-links a i {
        font-size: 14px;
    }
}

/* For any SVG icons if used */
#footer .social-links a svg {
    width: 20px;
    height: 20px;
    display: block;
    fill: currentColor;
}

/* Stats - Blue variant for about page */
#stats.blue-stats .stat-item .number {
    color: #007bff;
}