@import url('/fonts/lato/lato.css');

* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*, :after, :before {
    margin: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

body {
    font-family: 'Lato', sans-serif;
    background: #fff;
    color: #333;
    font-size: 15px;
    font-weight: 300;
    overflow-x: hidden;
}

.header {
    background: black;
}

.container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 30px;
}

.icons {
    margin-bottom: 10px;
}

/*******************navigation section start*************/

/* Nav V2 - Modern Glassmorphism Navbar */
.nav-v2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    padding: 16px 0;
    background: #0a0a0a57;
    transition: all 0.35s ease;
}

.nav-v2.scrolled {
    background: rgba(10, 10, 20, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-v2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 50px;
}

.nav-v2-logo img {
    height: 38px;
    width: auto;
    transition: height 0.3s ease;
}

.nav-v2.scrolled .nav-v2-logo img {
    height: 34px;
}

.nav-v2-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 4px;
    margin: 0;
    padding: 0;
}

.nav-v2-menu li a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.25s ease;
    letter-spacing: 0.2px;
}

.nav-v2-menu li a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* Nav Button */
.nav-v2-btn {
    background: linear-gradient(135deg, #ff6b35, #f7931e) !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 9px 22px !important;
    border-radius: 8px !important;
    letter-spacing: 0.3px !important;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25);
    transition: all 0.3s ease !important;
}

.nav-v2-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
    background: linear-gradient(135deg, #ff7a4a, #f9a030) !important;
}

.nav-v2-btn-outline {
    background: transparent !important;
    border: 1px solid rgba(255, 107, 53, 0.5) !important;
    color: #ff6b35 !important;
    box-shadow: none !important;
}

.nav-v2-btn-outline:hover {
    background: rgba(255, 107, 53, 0.1) !important;
    border-color: #ff6b35 !important;
    box-shadow: none !important;
}

/* Hamburger Toggle */
.nav-v2-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.nav-v2-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-v2-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-v2-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-v2-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
@media screen and (max-width: 768px) {
    .nav-v2 {
        padding: 12px 0;
    }

    .nav-v2-toggle {
        display: flex;
    }

    .nav-v2-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(15, 15, 30, 0.98);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: stretch;
        padding: 90px 24px 40px;
        gap: 2px;
        transition: right 0.35s ease;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.4);
        z-index: 9999;
    }

    .nav-v2-menu.active {
        right: 0;
    }

    .nav-v2-menu li a {
        padding: 14px 16px;
        font-size: 15px;
        border-radius: 10px;
        width: 100%;
    }

    .nav-v2-menu li a:hover {
        background: rgba(255, 255, 255, 0.06);
    }

    .nav-v2-btn {
        margin-top: 12px !important;
        text-align: center !important;
        display: block !important;
    }

    /* Overlay */
    .nav-v2-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav-v2-overlay.active {
        opacity: 1;
        visibility: visible;
    }
}


/* Legacy nav classes - keep for old theme compat */
.nav-container {
    width: 100%;
    background: #000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 95px;
    width: 100%;
    margin: 0 auto;
}

#navbar-logo {
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    text-align: center;
    justify-self: end;
}

.nav-links {
    display: inline;
    text-decoration: none;
    color: #ABABAB;
    font-size: 13px;
    padding: 13px 8px;
    transition: all 0.5s ease-out;
}

.nav-links:hover {
    background: #ff6c00;
}

.nav-links-btn {
    background: #ff6c00;
    letter-spacing: 3px;
    color: #fff;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: all 0.3s ease-in-out;
}

/*******************banner section**************/

.banner {
    background: url(images/bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 0;
}
.banner-content {
    text-align: center;
    margin: 0 auto;
    padding: 70px 0 100px;
    background-color: rgba(0,0,0,.43);
}

.main-title {
    text-align: center;
    font-size: 36px;
    letter-spacing: 2px;
    color: #fff;
}

.sub-title {
    color: #fff;
    font-size: 20px;
    margin: 50px 0;
}

.sub-title .lead {
    font-size: 20px;
}

.sub-title p {
    font-size: 19px;
}

.banner-input-form input {
    padding: 14px 26px;
    font-size: 18px;
    border: none;
    outline: none;
    border: 1px solid #ccc;
    background-color: rgba(0,0,0,0.50);
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
    margin-right: 20px;
}

input:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.message:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
            box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}

.active-button {
    color: #ABABAB;
    padding: 14px 46px;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f8993b), color-stop(100%, #ee7906), to(#53cbf1));
    background: -o-linear-gradient(top, #f8993b 0, #ee7906 100%, #53cbf1 100%);
    background: linear-gradient(to bottom, #f8993b 0, #ee7906 100%, #53cbf1 100%);
    color: #fff;
    border: none;
    outline: none;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    margin-top: 23px;
}

.active-button:hover {
    background: #e84a00;
}

/************ Banner V2 (Modern Redesign) ******************/

.banner-v2 {
    background: url(images/bg1.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
}

.banner-v2-overlay {
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.92) 0%, rgba(26, 26, 46, 0.88) 50%, rgba(22, 33, 62, 0.92) 100%);
    padding: 120px 0 110px;
    position: relative;
    overflow: hidden;
}

.banner-v2-overlay::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-v2-overlay::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.banner-v2-content {
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.banner-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 22px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.banner-v2-badge svg {
    color: #ff6b35;
}

.banner-v2-content h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 28px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.banner-v2-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 35px;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

.banner-v2-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 14px;
    padding: 14px 24px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
    text-align: left;
}

.banner-v2-offer svg {
    color: #f7931e;
    flex-shrink: 0;
}

.banner-v2-offer strong {
    color: #f7931e;
}

.banner-v2-offer div {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.banner-v2-error {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.4);
    border-radius: 12px;
    padding: 12px 22px;
    margin-bottom: 20px;
    color: #ff8a8a;
    font-size: 15px;
}

.banner-v2-error svg {
    flex-shrink: 0;
    color: #ff6b6b;
}

/* Banner Form */
.banner-v2-form {
    margin-bottom: 35px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.banner-v2-inputs {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 10px;
    backdrop-filter: blur(10px);
}

.banner-v2-input-full {
    margin-bottom: 10px;
}

.banner-v2-input-row {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.banner-v2-input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 0 16px;
    transition: all 0.3s ease;
}

.banner-v2-input-wrap:focus-within {
    background: rgba(255, 255, 255, 0.12);
}

.banner-v2-input-wrap svg {
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
}

.banner-v2-input-wrap:focus-within svg {
    color: #ff6b35;
}

.banner-v2-input-wrap input {
    flex: 1;
    padding: 16px 0;
    font-size: 16px;
    font-family: inherit;
    border: none;
    outline: none;
    background: transparent;
    color: #fff;
    box-shadow: none;
}

.banner-v2-input-wrap input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.banner-v2-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 17px;
    font-weight: 700;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.banner-v2-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Trust Badges */
.banner-v2-trust {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.banner-v2-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.banner-v2-trust-item svg {
    color: #4caf50;
}

.banner-v2-trust-item span {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Banner V2 Responsive */
@media screen and (max-width: 1024px) {
    .banner-v2-content h1 {
        font-size: 42px;
    }
}

@media screen and (max-width: 768px) {
    .banner-v2-overlay {
        padding: 120px 0 70px;
    }

    .banner-v2-content h1 {
        font-size: 34px;
    }

    .banner-v2-lead {
        font-size: 16px;
    }

    .banner-v2-input-row {
        flex-direction: column;
        gap: 10px;
    }

    .banner-v2-trust {
        gap: 16px;
    }

    .banner-v2-offer {
        padding: 12px 18px;
    }

    .banner-v2-offer div {
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .banner-v2-overlay {
        padding: 110px 0 60px;
    }

    .banner-v2-badge {
        font-size: 11px;
        padding: 6px 16px;
        letter-spacing: 1px;
    }

    .banner-v2-content h1 {
        font-size: 28px;
    }

    .banner-v2-lead {
        font-size: 15px;
    }

    .banner-v2-trust-item span {
        font-size: 13px;
    }

    .banner-v2-trust {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}

/************Service Header Section******************/

.services-section {
    margin: 20px 0;
    margin-bottom: 80px;
    text-align: center;
}

.services-header {
    margin: 40px;
}

.services-header h1{
    padding: 20px 0;
    font-size: 42px;
    position: relative;
}

.services-header h1::after {
    content:"";
    background: #F28455;
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.services-header p{
    margin: 30px 0;
    font-size: 18px;
    color: #777;
    font-weight: 300;
}

.circle-row {
    margin: 10px 40px;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.cicle-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}


.circle-outer {
    border: 10px solid lightgray;
    padding: 20px;
    border-radius: 50%;
}
.circle-inner {
    height: 160px;
    width: 160px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    position: relative;
}

.circle-inner.video {
    background-color: #f38252;
}

.circle-inner.appearance {
    background-color: #10cb7f;
}

.circle-inner.launch {
    background-color: #EC1C23;
}

.circle-inner p {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    font-size: 28px;
}

.services-section-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
}

.services-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 20px;
    height: 300px;
    padding: 40px 20px;
    margin-bottom: 40px;
    text-align: center;
    background-color: #FAFAFA;
    border: 1px solid rgb(233, 231, 231);

}

.services-card .fa {
    font-size: 50px;
    color: #D36B05;
    margin-bottom: 20px;
}

.services-card h4 {
    color: #292929;
    font-size: 24px;
    font-weight: 700;
    line-height: 30px;
}

.services-card p {
    color: #777;
    font-size: 18px;
    margin-top: 20px;
}

/************ Services Section V2 (Modern Redesign) ******************/

.services-section-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
    text-align: center;
}

.services-v2-header {
    margin-bottom: 60px;
}

.services-v2-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.services-v2-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: none;
    padding-bottom: 0;
}

.services-v2-header h2::after {
    display: none;
}

.services-v2-header p {
    font-size: 18px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Step Flow */
.services-v2-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.step-item {
    flex: 0 0 auto;
    text-align: center;
}

.step-icon-wrap {
    position: relative;
    width: 90px;
    height: 90px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-icon-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.step-icon-wrap.video-step {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
}

.step-icon-wrap.appearance-step {
    background: linear-gradient(135deg, #10cb7f, #0db36e);
}

.step-icon-wrap.launch-step {
    background: linear-gradient(135deg, #EC1C23, #ff4757);
}

.step-icon-wrap svg {
    width: 38px;
    height: 38px;
    color: #fff;
}

.step-num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.step-item h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
    border-bottom: none;
    padding-bottom: 0;
}

.step-item p {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.step-connector {
    flex: 0 0 auto;
    margin: 0 10px;
    margin-bottom: 40px;
}

.step-connector svg {
    width: 40px;
    height: 40px;
    color: #ccc;
}

/* Service Cards Grid */
.services-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-v2-card {
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.service-v2-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-v2-card:hover .service-v2-icon {
    border-radius: 50%;
    transform: rotate(5deg) scale(1.05);
}

.service-v2-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.service-v2-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-v2-card p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/*********************Vidorange club*****************/

.vidorang-club {
    margin: 0px 0px;
}

.row-items {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    background:  #F28455;
}

.col-item-2 {
    /* flex-basis: 50%;  */
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.col-item-2 img {
    width: 100%;
    height: 100%;
    /* flex-basis: 50%;  */
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.col-item-2.content {
    padding: 50px 24px;
    /* flex-basis: 50%; */
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    
}

.col-item-2.content h1,
.col-item-2.content h2 {
    color: #fff;
    font-size: 36px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    border-bottom: none;
    text-align: left;
    padding-bottom: 0;
}

.col-item-2.content h2::after {
    display: none;
}

.col-item-2.content h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin: 15px 0 10px;
    border-bottom: none;
    padding-bottom: 0;
}

.col-item-2.content p {
    color: #fff;
    font-size: 18px;
    line-height: 1.7;
    margin: 10px 0;
    text-align: left;
}

/************ VidOrange Club V2 (Modern Redesign) ******************/

.club-v2 {
    padding: 100px 0;
    background: #fff;
}

.club-v2-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.club-v2-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.club-v2-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.club-v2-image:hover img {
    transform: scale(1.03);
}

.club-v2-image-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 14px;
    padding: 16px 24px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.club-v2-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.club-v2-stat-number {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.club-v2-stat-label {
    font-size: 12px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.club-v2-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.club-v2-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
    margin-bottom: 18px;
    border-bottom: none;
    padding-bottom: 0;
}

.club-v2-content h2::after {
    display: none;
}

.club-v2-lead {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}

.club-v2-reasons h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    border-bottom: none;
    padding-bottom: 0;
}

.club-v2-reasons h3::after {
    display: none;
}

.club-v2-reason-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}

.club-v2-reason {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 18px;
    background: #f8f9fc;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.club-v2-reason:hover {
    background: #fff;
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transform: translateX(5px);
}

.club-v2-reason-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.club-v2-reason-icon svg {
    width: 18px;
    height: 18px;
    color: #fff;
}

.club-v2-reason strong {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.club-v2-reason p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.club-v2-strategies h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    border-bottom: none;
    padding-bottom: 0;
}

.club-v2-strategies h3::after {
    display: none;
}

.club-v2-strategy-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.club-v2-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.club-v2-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 26, 46, 0.3);
}

.club-v2-tag svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/**********************service section****************/

.service-container {
    margin-top: 70px;
}

.media-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 50px;
}

.media-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 200px;
    text-align: center;
    padding: 40px 20px;
    margin: 0 10px;
    margin-bottom: 40px;
    background-color: #FAFAFA;
    border: 1px solid rgb(233, 231, 231);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.media-card .fa {
    font-size: 50px;
    color: #D36B05;
    margin-bottom: 20px;
}

.media-card .icons {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.media-card .icons img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.service-container h1,
.service-container h2 {
    font-size: 40px;
    text-align: center;
    padding: 0 30px;
    padding-bottom: 20px;
    position: relative;
    margin-bottom: 30px;
}

.service-container h1::after,
.service-container h2::after {
    content:"";
    background: #F28455;
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.media-card h4 {
    color: #292929;
    font-weight: 700;
    font-size: 26px;
    line-height: 30px;
}

/*******************thambnail section****************/

.thambnail-container h1,
.thambnail-container h2 {
    font-size: 40px;
    text-align: center;
    padding: 0 30px;
    margin: 60px 0;
    padding-bottom: 20px;
    position: relative;
}

.thambnail-container h1::after,
.thambnail-container h2::after {
    content:"";
    background: #F28455;
    width: 80px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
}

.thambnail-cards {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.thambnail-card {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 20px;
    padding-bottom: 30px;
    margin: 0 10px;
    margin-bottom: 20px;
    text-align: center;
    background-color: #FAFAFA;
    border: 1px solid rgb(233, 231, 231);
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.thambnail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.thambnail-card img{
    width: 100%;
    margin-bottom: 20px;
    display: block;
}

.thambnail-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #292929;
    margin: 15px 0;
    text-align: center;
}

.views {
    margin-top: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
}

.views h4 {
    font-size: 18px;
    color: #555;
    margin: 5px 0;
    font-weight: 600;
}

.views h4 span{
    color: #EE7906;
    font-weight: 700;
}

/************ Why Choose V2 (Modern Redesign) ******************/

.why-choose-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
}

.why-choose-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-v2-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.why-choose-v2-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.3;
}

.why-choose-v2-header h2::after {
    display: none;
}

.why-choose-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.why-choose-v2-card {
    position: relative;
    background: #fff;
    border-radius: 16px;
    padding: 40px 30px 45px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.why-choose-v2-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 53, 0.2);
}

.why-choose-v2-card-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.why-choose-v2-card:hover .why-choose-v2-card-accent {
    transform: scaleX(1);
}

.why-choose-v2-icon {
    width: 75px;
    height: 75px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-choose-v2-card:hover .why-choose-v2-icon {
    border-radius: 50%;
    transform: rotate(5deg) scale(1.05);
}

.why-choose-v2-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.why-choose-v2-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.3;
}

.why-choose-v2-card-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/************ Success Stories V2 (Modern Redesign) ******************/

.success-stories-v2 {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
}

.success-stories-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.success-stories-v2-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.success-stories-v2-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.success-stories-v2-header h2::after {
    display: none;
}

.success-stories-v2-header p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.75);
    max-width: 550px;
    margin: 0 auto;
}

.success-stories-v2-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.success-story-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.success-story-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.success-story-image {
    position: relative;
    overflow: hidden;
}

.success-story-image img {
    width: 100%;
    display: block;
    transition: transform 0.4s ease;
}

.success-story-card:hover .success-story-image img {
    transform: scale(1.05);
}

.success-story-growth {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    color: #fff;
    padding: 6px 14px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.success-story-growth svg {
    width: 16px;
    height: 16px;
}

.success-story-body {
    padding: 25px;
}

.success-story-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
}

.success-story-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.stat-before,
.stat-after {
    text-align: center;
    flex: 1;
}

.stat-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.stat-before .stat-value {
    font-size: 22px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
}

.stat-after .stat-value {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-arrow {
    flex-shrink: 0;
}

.stat-arrow svg {
    width: 24px;
    height: 24px;
    color: rgba(255, 255, 255, 0.4);
}

/**************** inner banner section********/

.inner-banner {
    margin-top: 50px;
    margin-bottom: 20px;
    background-image: url(images/bg.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    position: relative;
}

.inner-banner .bg-blur {
    background-color: rgba(0,0,0,.43);
}

.motto-cards {  
    padding: 87px 20px 65px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
}

.motto-card img {
    height: 55px;
}

.motto-card {
    margin-bottom: 30px;
}
.motto-card p {
    color: #fff;
    font-size: 20px;
    margin-top: 45px;
    font-weight: 500;
}

/************ Features V2 (Inner Banner Modern Redesign) ******************/

.features-v2 {
    padding: 70px 0;
    background: linear-gradient(135deg, #0f3460 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.features-v2::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.features-v2::after {
    content: '';
    position: absolute;
    bottom: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.features-v2-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.feature-v2-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-v2-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-v2-icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
}

.feature-v2-card:hover .feature-v2-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.4);
}

.feature-v2-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.feature-v2-text h4 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
}

.feature-v2-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
    margin: 0;
}

/*************address section**************/

.contact-information {
    padding-top: 60px;
    padding-bottom: 40px;
    background-color: #fff;
}

.contact-information-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
}

.contact-title {
    font-size: 32px;
    margin-bottom: 20px;
    color: #333;
}

.address-form {
    padding: 20px 0;
    padding-bottom: 40px;
    width: 50vw;
}

.address-form .message {
    display: block;
    height: 215px;
    padding: 6px 12px;
    font-size: 18px;
    width: 100%;
    border: none;
    outline: none;
    border: 1px solid #ccc;
}

.address-form input{
    display: inline;
    padding: 6px 12px;
    margin: 20px 0;
    width: 24vw;
    height: 40px;
    border: none;
    outline: none;
    font-size: 18px;
    border: 1px solid #ccc;
}

.right {
    float: right;
}

.address-form .active-button {
    display: block;
    padding: 15px 40px;
}


.address-section {
    margin-left: 30px;
}

.information-row {
    max-width: 300px;
}

.information-card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 40px;
}

.info-text {
    margin-left: 20px;
}

.info-text p {
    font-size: 18px;
    line-height: 26px;
    margin-top: 8px;
}

/************ Contact V2 (Modern Redesign) ******************/

.contact-v2 {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fc 0%, #eef1f8 100%);
}

.contact-v2-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-v2-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.contact-v2-header h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-v2-header h2::after {
    display: none;
}

.contact-v2-header p {
    font-size: 17px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
}

.contact-v2-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: start;
}

/* Form */
.contact-v2-form-wrap {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-v2-textarea {
    display: block;
    width: 100%;
    height: 180px;
    padding: 16px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid #eee;
    border-radius: 12px;
    outline: none;
    resize: vertical;
    transition: border-color 0.3s ease;
    background: #fafbfd;
}

.contact-v2-textarea:focus {
    border-color: #ff6b35;
    background: #fff;
}

.contact-v2-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 16px 0 24px;
}

.contact-v2-inputs input {
    padding: 14px 18px;
    font-size: 16px;
    font-family: inherit;
    border: 2px solid #eee;
    border-radius: 12px;
    outline: none;
    transition: border-color 0.3s ease;
    background: #fafbfd;
}

.contact-v2-inputs input:focus {
    border-color: #ff6b35;
    background: #fff;
}

.contact-v2-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.25);
}

.contact-v2-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.35);
}

/* Info Side */
.contact-v2-info {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    border-radius: 16px;
    padding: 40px 35px;
    color: #fff;
}

.contact-v2-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
}

.contact-v2-info h3::after {
    display: none;
}

.contact-v2-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-v2-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: all 0.3s ease;
    padding: 12px;
    border-radius: 12px;
}

.contact-v2-info-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-v2-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.contact-v2-info-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.contact-v2-info-text h4 {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
}

.contact-v2-info-text p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
    margin: 0;
}

.contact-v2-info-text a {
    text-decoration: none;
}

.contact-v2-info-text a p {
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s ease;
}

.contact-v2-info-text a:hover p {
    color: #ff6b35;
}

/**************footer section**************/

#footer {
    padding: 30px 0;
    background: #000;
    color: #fff;
}

#footer a {
    color: #fff;
}

#footer a:hover {
    color: #45aed6;
}

.footer {
    width: 100%;
    background: #000;
    color: #ABABAB;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-container {
    padding: 30px 20px;
    padding-top: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.footer-container .left {
    font-size: 18px;
    color: #fff;
}

.footer-icons {
    height: 50px;
    width: 50px;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 50%;
    margin-left: 10px;
}

.footer-icons:hover {
    background-color: #ff6c00;
}


.footer-container .right .fa {
    color: #ccc;
    width: 45px;
    height: 45px;
    border: 1px solid #fff;
    border-radius: 50%;
    font-size: 24px;
    margin-left: 10px;
    cursor: pointer;
}

.footer-container .right .fa:hover {
    background: #ff6c00;
}

.footer-container .right .fa-facebook,
.footer-container .right .fa-twitter,
.footer-container .right .fa-instagram
 {
    padding-top: 10px;
    padding-left: 12px;
}

.footer-container .right .fa-facebook {
    padding-left: 14px;
}

/* Services Links Section */
.services-links-section{
    padding: 60px 0;
    background: #f8f9fa;
}
.services-links-header{
    text-align: center;
    margin-bottom: 40px;
}
.services-links-badge{
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.services-links-header h2{
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 10px 0;
}
.services-links-header p{
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}
.services-links-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.services-link-card{
    display: block;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 24px 20px;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.services-link-card:hover{
    box-shadow: 0 4px 16px rgba(255,107,0,0.12);
    border-color: #ff6b00;
    transform: translateY(-2px);
}
.services-link-card h3{
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}
.services-link-card p{
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}
@media screen and (max-width: 900px){
    .services-links-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 550px){
    .services-links-grid{
        grid-template-columns: 1fr;
    }
}

/* Blog Posts Section */
.blog-posts-section{
    padding: 60px 0;
    background: #fff;
}
.blog-posts-header{
    text-align: center;
    margin-bottom: 40px;
}
.blog-posts-badge{
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}
.blog-posts-header h2{
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 10px 0;
}
.blog-posts-header p{
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}
.blog-posts-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.blog-post-card{
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    border: 1px solid #e8e8e8;
    border-radius: 10px;
    padding: 28px 24px;
    text-decoration: none;
    transition: box-shadow 0.2s, border-color 0.2s, transform 0.2s;
}
.blog-post-card:hover{
    box-shadow: 0 4px 16px rgba(255,107,0,0.12);
    border-color: #ff6b00;
    transform: translateY(-2px);
}
.blog-post-card h3{
    font-size: 17px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
    line-height: 1.4;
}
.blog-post-card p{
    font-size: 14px;
    color: #666;
    margin: 0 0 16px;
    line-height: 1.5;
    flex: 1;
}
.blog-post-read{
    font-size: 13px;
    font-weight: 700;
    color: #ff6b00;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-posts-footer{
    text-align: center;
    margin-top: 32px;
}
.blog-view-all{
    display: inline-block;
    background: #ff6b00;
    color: #fff;
    padding: 12px 36px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s;
}
.blog-view-all:hover{
    background: #e55a00;
}
@media screen and (max-width: 900px){
    .blog-posts-grid{
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 550px){
    .blog-posts-grid{
        grid-template-columns: 1fr;
    }
}

.bottom-menue{
    background: #000;
    padding: 20px 0;
}
.bottom-menue ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
    gap: 20px;
}
.bottom-menue ul li a{
    color: #fff;
    text-decoration: none;
}
.bottom-menue ul li a:hover{
    text-decoration: underline;
}
@media screen and (max-width:1080px) {
    .circle-row img {
        display: none;
    }
}

@media screen and (max-width: 970px){
    .views h4{
        margin: 0 auto;
    }

    .circle-row img {
        display: none;
    }

    .input-group input {   
        width: 220px;
    }

    .contact-title {
        font-size: 22px;
    }

    .information-card {
        margin-bottom: 20px;
    }
    .contact-information {
        margin-bottom: 40px;
    }

}

/*************navigation*****************/
@media screen and (max-width: 940px) {
    .nav-container {
        position: relative;
    }

    .nav-menu {
        border-top: 1px solid #ABABAB;
        padding-top: 15px;
        padding-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        width: 100%;
        position: absolute;
        top: 95px;
        left: -100%;
        opacity: 0;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .nav-menu.active {
        background: black;
        left: 0;
        opacity: 1;
        -webkit-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        transition: all 0.5s ease;
    }

    .nav-links {
        text-align: center;
        width: 100%;
        display: table;
        -webkit-transition: all 0.4s ease-out;
        -o-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }

    .nav-links:hover {
        background: transparent;
    }

    .navbar {
        width: 100%;
    }

    .nav-links-btn {
        border: none;
        padding: 0;
        margin-top: 10px;
        border-radius: 0;
        background: black;
        color: #fff;
        -webkit-transition: all 0.4s ease-out;
        -o-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }

    .nav-links-btn:hover {
        background: transparent;
        -webkit-transition: all 0.4s ease-out;
        -o-transition: all 0.4s ease-out;
        transition: all 0.4s ease-out;
    }

    #mobile-menu {
        position: absolute;
        top: 36%;
        right: 6%;
    }

    .menu-toggle .bar {
        display: block;
        cursor: pointer;
    }

    .menu-toggle:hover {
        cursor: pointer;
    }

    #mobile-menu.is-active .bar:nth-child(2){
        opacity: 0;
    }

    #mobile-menu.is-active .bar:nth-child(1){
        -webkit-transform: translateY(8px) rotate(45deg);
            -ms-transform: translateY(8px) rotate(45deg);
                transform: translateY(8px) rotate(45deg);
    }

    #mobile-menu.is-active .bar:nth-child(3){
        -webkit-transform: translateY(-8px) rotate(-45deg);
            -ms-transform: translateY(-8px) rotate(-45deg);
                transform: translateY(-8px) rotate(-45deg);
    }


    .circle-inner {
        height: 150;
        width: 150;
    }

    .motto-card p {
        font-size: 17px;
    }
}


@media screen and (max-width: 860px){
    .container {
        max-width: 100%;
    }

    .circle-row {
        margin: 10px 20px;
    }

    .motto-card p {
        font-size: 15px;
    }

    .input-group input {
        width: 170px;
    }

}
.whatsapp-main{
    background-color:#000;
}
@media screen and (max-width: 785px) {
    .container {
        max-width: 100%;
    }

    .circle-row {
        display: none;
    }
    
    .active-button {
        display: block;
        margin: auto;
    }

    .thambnail-card{
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
        height: 100%;
        padding-bottom: 20px;
    }

    .thambnail-card .views{
        display: inline-block;
        text-align: center;
    }

    .thambnail-card .views h4{
        margin-bottom: 10px;
    }

    .row-items {
        display: block;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .col-item-2,
    .col-item-2.content {
        /* flex-basis: 100%; */
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
    }

    .services-card, .media-card {
        min-width: 100%;
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .services-section-row {
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }

    .motto-cards {
        display: block;
    }

    .contact-information-row {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .address-form {
        width: 100%;
    }

    .address-form input {
        width: 42vw;
    }

    .address-section {
        margin-left: 0;
    }
    .footer-container {
        padding-top: 30px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .footer-container .left {
        margin-bottom: 20px;
    }

    .footer-container .right {
        display: flex;
        justify-content: center;
    }
}

@media screen and (max-width: 540px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }

    .banner-input-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-direction: column;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        padding: 0 20px;
    }

    .banner-input-form input {
        margin-bottom: 35px;
        padding: 14px 26px;
        font-size: 14px;
    }

    .main-title {
        font-size: 14px;
    }

    .banner-content {
        padding: 30px 0 40px;
    }

    .sub-title {
        font-size: 16px;
        margin: 25px 0;
    }

    .sub-title .lead {
        font-size: 16px;
    }

    .sub-title p {
        font-size: 15px;
    }
}

@media screen and (max-width: 414px) {
    .container{
        max-width: 94%;
        padding: 0px;
    }

    .navbar {
        height: 78px;
    }

    .nav-menu {
        top: 78px;
        
    }

    #mobile-menu {
        right: 5%;
    }

    .banner-content {
        padding: 30px 0 40px;
    }

    .main-title {
        font-size: 14px;
    }

    .sub-title {
        font-size: 14px;
        margin: 24px 0;
    }

    .sub-title .lead {
        font-size: 14px;
    }

    .sub-title p {
        font-size: 13px;
    }

    .banner-input-form {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
    }

    .banner-input-form input {
        margin-bottom: 35px;
        margin-right: 0;
        padding: 14px 0px;
        font-size: 12px;
    }

    .services-header {
        margin: 0px;
    }

    .services-header h1 {
        padding: 17px 0;
        font-size: 25px;

    }

    .services-section-row {
        margin: 0;
        margin-top: 40px;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }

    .services-card {
        min-width: 100%;
        margin: 0 0 20px 0;
        width: 100%;
    }
    
    .col-item-2.content h1 {
        font-size: 17px;
    }

    .col-item-2.content {
        padding: 30px 20px;
    }

    .col-item-2.content p {
        font-size: 15px;
        line-height: 25px;
        margin: 15px 0;
    }

    .service-container h1,
    .service-container h2 {
        font-size: 24px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .media-card {
        min-width: 100%;
        min-height: auto;
        padding: 30px 15px;
    }

    .media-card .icons img {
        width: 60px;
        height: 60px;
    }

    .media-card h4 {
        font-size: 20px;
    }

    .thambnail-container h1,
    .thambnail-container h2 {
        font-size: 24px;
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 40px;
        margin-top: 40px;
    }

    .thambnail-card h3 {
        font-size: 18px;
    }

    .contact-title {
        font-size: 26px;
        margin-bottom: 5px;
        margin-top: 40px;
    }

}


@media screen and (max-width: 375px){
    .container{
        max-width: 95%;
        padding: 0px;
    }
}

@media screen and (max-width: 320px){
    .container{
        max-width: 96%;
        padding: 0px;
    }

    .banner-input-form input {
        margin-bottom: 35px;
        margin-right: 0;
        padding: 12px 0px;
        font-size: 10px;
    }
}

@media screen and (max-width: 280px){
    .container{
        max-width: 96%;
        padding: 0px;
    }

    .main-title {
        font-size: 10px;
    }

    .sub-title {
        font-size: 12px;
        margin: 20px 0;
    }

    .sub-title .lead {
        font-size: 12px;
    }

    .sub-title p {
        font-size: 11px;
    }
    .banner-input-form input {
        margin-bottom: 35px;
        margin-right: 0;
        padding: 10px 5px;
        font-size: 8px;
    }

    .footer-container {
        padding: 20px 0px;
        padding-top: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        text-align: center;
    }

    .footer-container .left {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .footer-container .right {
        display: flex;
        justify-content: center;
    }
}

/*******************Article Section Styles*****************/

.article-section {
    padding: 60px 0;
    background-color: #fff;
}

.article-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.article-section article {
    line-height: 1.8;
    color: #333;
}

.article-section h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 30px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}

.article-section h2::after {
    content: "";
    background: #F28455;
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.article-section h3 {
    font-size: 26px;
    color: #333;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F28455;
}

.article-section h4 {
    font-size: 20px;
    color: #444;
    margin: 25px 0 15px;
}

.article-section p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.article-section ul,
.article-section ol {
    margin: 20px 0 20px 30px;
    color: #555;
}

.article-section li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.article-section strong {
    color: #333;
}

.article-intro {
    font-size: 18px;
    color: #444;
    background: #f9f9f9;
    padding: 25px;
    border-left: 4px solid #F28455;
    margin-bottom: 30px;
}

/*******************FAQ Section Styles*****************/

.faq-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}

.faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.faq-section h2 {
    font-size: 36px;
    color: #222;
    margin-bottom: 40px;
    padding-bottom: 15px;
    position: relative;
    text-align: center;
}

.faq-section h2::after {
    content: "";
    background: #F28455;
    width: 100px;
    height: 4px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.faq-section .faq-intro {
    text-align: center !important;
    font-size: 16px;
    color: #666;
    margin: 0 auto 40px auto;
    max-width: 800px;
    display: block;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 30px;
}

.faq-category h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 20px;
    padding-left: 15px;
    border-left: 4px solid #F28455;
}

.faq-item {
    background: #fff;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 17px;
    font-weight: 700;
    color: #333;
    background: #fff;
    border: none;
    outline: none;
    text-align: left;
    font-family: 'Lato', sans-serif;
    transition: all 0.3s ease;
}

.faq-question:focus {
    outline: 2px solid #F28455;
    outline-offset: -2px;
}

.faq-question:hover {
    background: #fef6f2;
    color: #F28455;
}

.faq-question .faq-icon {
    font-size: 20px;
    color: #F28455;
    transition: transform 0.3s ease;
    font-weight: bold;
    min-width: 25px;
    text-align: center;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    background: #fff;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.faq-answer ul {
    margin: 15px 0 0 20px;
    color: #555;
}

.faq-answer li {
    margin-bottom: 8px;
    font-size: 15px;
}

/*******************Article & FAQ Responsive Styles*****************/

@media screen and (max-width: 970px) {
    .article-section h2,
    .faq-section h2 {
        font-size: 30px;
    }

    .article-section h3 {
        font-size: 22px;
    }

    .article-section h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 785px) {
    .article-section,
    .faq-section {
        padding: 40px 0;
    }

    .article-section h2,
    .faq-section h2 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .article-section h3 {
        font-size: 20px;
        margin: 30px 0 15px;
    }

    .article-section p,
    .faq-answer p {
        font-size: 15px;
    }

    .faq-question {
        font-size: 15px;
        padding: 15px 20px;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 20px;
    }
}

@media screen and (max-width: 540px) {
    .article-section .container,
    .faq-section .container {
        padding: 0 15px;
    }

    .article-section h2,
    .faq-section h2 {
        font-size: 22px;
    }

    .article-section h3 {
        font-size: 18px;
    }

    .article-intro {
        font-size: 16px;
        padding: 20px;
    }

    .faq-question {
        font-size: 14px;
        padding: 12px 15px;
    }

    .faq-answer p,
    .faq-answer li {
        font-size: 14px;
    }
}

@media screen and (max-width: 414px) {
    .article-section h2,
    .faq-section h2 {
        font-size: 20px;
    }

    .article-section h3 {
        font-size: 17px;
    }

    .article-section h4 {
        font-size: 16px;
    }

    .article-section p {
        text-align: left;
    }
}

/* ============================================
   How It Works Icon Section Styles
   ============================================ */

.how-it-works-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 80px 0;
    color: #fff;
}

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

.how-it-works-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-section .section-header h2 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: none;
    padding-bottom: 0;
}

.how-it-works-section .section-header h2::after {
    display: none;
}

.how-it-works-section .section-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* Process Grid - 4 Step Cards */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.process-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.process-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.process-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon svg {
    width: 40px;
    height: 40px;
    color: #fff;
}

.process-icon .step-number {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 28px;
    height: 28px;
    background: #fff;
    color: #ff6b35;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    border-bottom: none;
    padding-bottom: 0;
}

.process-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    margin-bottom: 80px;
}

.benefits-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    border-bottom: none;
    padding-bottom: 0;
}

.benefits-section h2::after {
    display: none;
}

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

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.benefit-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.benefit-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* Who Section */
.who-section {
    margin-bottom: 80px;
}

.who-section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 40px;
    border-bottom: none;
    padding-bottom: 0;
}

.who-section h2::after {
    display: none;
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.who-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.who-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.who-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.who-icon svg {
    width: 35px;
    height: 35px;
    color: #fff;
}

.who-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.who-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 50px 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    border-bottom: none;
    padding-bottom: 0;
}

.cta-section h2::after {
    display: none;
}

.cta-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 25px;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-features span svg {
    color: #4caf50;
}

.cta-section > p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
    color: #fff;
}

/* How It Works Section Responsive */
@media screen and (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .how-it-works-section {
        padding: 60px 0;
    }

    .how-it-works-section .section-header h2 {
        font-size: 28px;
    }

    .process-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 60px;
    }

    .process-card {
        padding: 30px 20px;
    }

    .benefits-section h2,
    .who-section h2,
    .cta-section h2 {
        font-size: 26px;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .who-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 40px 25px;
    }

    .cta-features {
        flex-direction: column;
        gap: 15px;
    }

    .cta-features span {
        justify-content: center;
    }

    .cta-button {
        padding: 15px 40px;
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .how-it-works-section .section-header h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .how-it-works-section .section-header p {
        font-size: 16px;
    }

    .process-icon {
        width: 70px;
        height: 70px;
    }

    .process-icon svg {
        width: 35px;
        height: 35px;
    }

    .process-card h3 {
        font-size: 18px;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon svg {
        width: 25px;
        height: 25px;
    }

    .who-icon {
        width: 60px;
        height: 60px;
    }

    .who-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* Services V2 Responsive */
@media screen and (max-width: 1024px) {
    .services-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-v2-steps {
        gap: 15px;
    }

    .step-icon-wrap {
        width: 75px;
        height: 75px;
    }

    .step-icon-wrap svg {
        width: 32px;
        height: 32px;
    }

    .step-connector svg {
        width: 30px;
        height: 30px;
    }
}

@media screen and (max-width: 768px) {
    .services-section-v2 {
        padding: 60px 0;
    }

    .services-v2-header h2 {
        font-size: 28px;
    }

    .services-v2-steps {
        flex-direction: column;
        gap: 10px;
    }

    .step-connector {
        transform: rotate(90deg);
        margin: 0;
    }

    .step-connector svg {
        width: 30px;
        height: 30px;
    }

    .services-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-v2-card {
        padding: 30px 25px;
    }

    .service-v2-card h4 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .services-v2-header h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .services-v2-header p {
        font-size: 16px;
    }

    .step-icon-wrap {
        width: 70px;
        height: 70px;
    }

    .step-icon-wrap svg {
        width: 30px;
        height: 30px;
    }

    .step-item h3 {
        font-size: 18px;
    }

    .service-v2-card h4 {
        font-size: 18px;
    }

    .service-v2-card p {
        font-size: 15px;
    }
}

/* Club V2 Responsive */
@media screen and (max-width: 1024px) {
    .club-v2-layout {
        gap: 40px;
    }

    .club-v2-content h2 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .club-v2 {
        padding: 60px 0;
    }

    .club-v2-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .club-v2-image {
        max-height: 350px;
    }

    .club-v2-content h2 {
        font-size: 26px;
    }

    .club-v2-lead {
        font-size: 16px;
    }

    .club-v2-reasons h3,
    .club-v2-strategies h3 {
        font-size: 20px;
    }

    .club-v2-strategy-tags {
        gap: 8px;
    }

    .club-v2-tag {
        font-size: 13px;
        padding: 8px 14px;
    }
}

@media screen and (max-width: 480px) {
    .club-v2 {
        padding: 50px 0;
    }

    .club-v2-content h2 {
        font-size: 22px;
    }

    .club-v2-lead {
        font-size: 15px;
    }

    .club-v2-reason {
        padding: 12px 14px;
    }

    .club-v2-reason strong {
        font-size: 15px;
    }

    .club-v2-reason p {
        font-size: 13px;
    }

    .club-v2-image-overlay {
        bottom: 12px;
        left: 12px;
        padding: 12px 18px;
    }

    .club-v2-stat-number {
        font-size: 22px;
    }
}

/* Why Choose V2 Responsive */
@media screen and (max-width: 1024px) {
    .why-choose-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .why-choose-v2 {
        padding: 60px 0;
    }

    .why-choose-v2-header h2 {
        font-size: 26px;
    }

    .why-choose-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-choose-v2-card {
        padding: 30px 25px 35px;
    }

    .why-choose-v2-card-content h4 {
        font-size: 18px;
    }
}

@media screen and (max-width: 480px) {
    .why-choose-v2-header h2 {
        font-size: 22px;
    }

    .why-choose-v2-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }

    .why-choose-v2-icon svg {
        width: 28px;
        height: 28px;
    }
}

/* Success Stories V2 Responsive */
@media screen and (max-width: 1024px) {
    .success-stories-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .success-stories-v2 {
        padding: 60px 0;
    }

    .success-stories-v2-header h2 {
        font-size: 26px;
    }

    .success-stories-v2-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
        margin: 0 auto;
    }

    .success-story-body h3 {
        font-size: 16px;
    }

    .stat-before .stat-value,
    .stat-after .stat-value {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .success-stories-v2-header h2 {
        font-size: 22px;
    }

    .success-stories-v2-header p {
        font-size: 15px;
    }

    .success-story-body {
        padding: 20px 15px;
    }

    .stat-before .stat-value,
    .stat-after .stat-value {
        font-size: 18px;
    }

    .stat-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Features V2 Responsive */
@media screen and (max-width: 1024px) {
    .features-v2-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .features-v2 {
        padding: 50px 0;
    }

    .features-v2-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        max-width: 420px;
        margin: 0 auto;
    }

    .feature-v2-card {
        display: flex;
        align-items: center;
        text-align: left;
        padding: 22px 20px;
        gap: 18px;
    }

    .feature-v2-icon {
        margin: 0;
        flex-shrink: 0;
        width: 55px;
        height: 55px;
    }

    .feature-v2-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-v2-text h4 {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .feature-v2-text p {
        font-size: 13px;
    }
}

@media screen and (max-width: 480px) {
    .features-v2-grid {
        max-width: 100%;
    }

    .feature-v2-card {
        padding: 18px 16px;
        gap: 14px;
    }

    .feature-v2-icon {
        width: 48px;
        height: 48px;
    }

    .feature-v2-icon svg {
        width: 22px;
        height: 22px;
    }

    .feature-v2-text h4 {
        font-size: 15px;
    }
}

/* Contact V2 Responsive */
@media screen and (max-width: 1024px) {
    .contact-v2-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-v2-form-wrap {
        padding: 30px;
    }
}

@media screen and (max-width: 768px) {
    .contact-v2 {
        padding: 60px 0;
    }

    .contact-v2-header h2 {
        font-size: 26px;
    }

    .contact-v2-inputs {
        grid-template-columns: 1fr;
    }

    .contact-v2-info {
        padding: 30px 25px;
    }

    .contact-v2-info h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 480px) {
    .contact-v2-header h2 {
        font-size: 22px;
    }

    .contact-v2-header p {
        font-size: 15px;
    }

    .contact-v2-form-wrap {
        padding: 25px 20px;
    }

    .contact-v2-textarea {
        height: 150px;
        font-size: 15px;
    }

    .contact-v2-inputs input {
        font-size: 15px;
    }

    .contact-v2-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 30px;
        font-size: 15px;
    }

    .contact-v2-info-icon {
        width: 44px;
        height: 44px;
    }

    .contact-v2-info-icon img {
        width: 20px;
        height: 20px;
    }
}

/* ==================== Auth Pages (Login/Signup) ==================== */

.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
    position: relative;
    overflow: hidden;
}

.auth-page::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.auth-page::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -80px;
    border-radius: 50%;
    pointer-events: none;
}

.auth-page-overlay {
    width: 100%;
    position: relative;
    z-index: 1;
}

.auth-page .container {
    display: flex;
    justify-content: center;
}

.auth-card {
    width: 100%;
    max-width: 460px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 45px 40px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.auth-card-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.auth-logo svg {
    width: 30px;
    height: 30px;
    color: #fff;
}

.auth-card-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
    letter-spacing: -0.3px;
}

.auth-card-header p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
}

/* Auth Alerts */
.auth-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.4;
}

.auth-alert-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #fca5a5;
}

.auth-alert-error svg {
    color: #ef4444;
    flex-shrink: 0;
}

.auth-alert-success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #86efac;
}

.auth-alert-success svg {
    color: #22c55e;
    flex-shrink: 0;
}

/* Auth Form */
.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.auth-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 16px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 1;
}

.auth-input-icon svg {
    width: 18px;
    height: 18px;
    color: rgba(255, 255, 255, 0.35);
    transition: color 0.3s ease;
}

.auth-input-group input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
}

.auth-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.auth-input-group input:focus {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.auth-input-group input:focus + .auth-input-icon svg,
.auth-input-group input:focus ~ .auth-input-icon svg {
    color: #ff6b35;
}

.auth-input-group:has(input:focus) .auth-input-icon svg {
    color: #ff6b35;
}

/* Auth Checkbox */
.auth-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
    padding: 4px 0;
}

.auth-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: #ff6b35;
    cursor: pointer;
    flex-shrink: 0;
}

.auth-checkbox a {
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-checkbox a:hover {
    color: #f7931e;
    text-decoration: underline;
}

/* Auth Button */
.auth-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 24px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    letter-spacing: 0.3px;
    margin-top: 4px;
}

.auth-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.auth-btn:active {
    transform: translateY(0);
}

.auth-btn svg {
    transition: transform 0.3s ease;
}

.auth-btn:hover svg {
    transform: translateX(4px);
}

/* Auth Links */
.auth-links {
    text-align: center;
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.auth-links span,
.auth-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

.auth-links a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.auth-links a:hover {
    color: #f7931e;
    text-decoration: underline;
}

.auth-links-divider {
    display: block;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
}

/* Auth Pages Responsive */
@media screen and (max-width: 768px) {
    .auth-page {
        padding: 100px 16px 40px;
    }

    .auth-card {
        padding: 35px 28px;
        border-radius: 16px;
    }

    .auth-card-header h2 {
        font-size: 23px;
    }

    .auth-logo {
        width: 56px;
        height: 56px;
        border-radius: 14px;
    }

    .auth-logo svg {
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 480px) {
    .auth-page {
        padding: 90px 12px 30px;
    }

    .auth-card {
        padding: 30px 22px;
        border-radius: 14px;
    }

    .auth-card-header h2 {
        font-size: 21px;
    }

    .auth-card-header p {
        font-size: 14px;
    }

    .auth-input-group input {
        padding: 13px 14px 13px 44px;
        font-size: 14px;
    }

    .auth-btn {
        padding: 14px 20px;
        font-size: 15px;
    }

    .auth-alert {
        font-size: 13px;
        padding: 10px 14px;
    }
}

/* ==================== Page Hero (Shared) ==================== */

.page-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.07) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(247, 147, 30, 0.05) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    border-radius: 50%;
    pointer-events: none;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ==================== Content Page (Shared Wrapper) ==================== */

.content-page {
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
    padding: 70px 0 90px;
    color: rgba(255, 255, 255, 0.88);
}

/* Default text colours for all content inside dark content-page */
.content-page article,
.content-page .content-body,
.content-page .seo-content {
    color: rgba(255, 255, 255, 0.88);
}

.content-page article h1,
.content-page article h2,
.content-page article h3,
.content-page article h4,
.content-page .content-body h1,
.content-page .content-body h2,
.content-page .content-body h3,
.content-page .content-body h4,
.content-page .seo-content h1,
.content-page .seo-content h2,
.content-page .seo-content h3,
.content-page .seo-content h4 {
    color: #ffffff;
}

.content-page article p,
.content-page article li,
.content-page .content-body p,
.content-page .content-body li,
.content-page .seo-content p,
.content-page .seo-content li {
    color: rgba(255, 255, 255, 0.85);
}

/* TOC box and other light-bg cards inside content-page — restore dark text */
.content-page .toc-box,
.content-page nav[style*="background: #f8f9fa"],
.content-page nav[style*="background:#f8f9fa"],
.content-page div[style*="background: #f8f9fa"],
.content-page div[style*="background:#f8f9fa"],
.content-page li[style*="background: #f8f9fa"],
.content-page li[style*="background:#f8f9fa"],
.content-page tr[style*="background: #f8f9fa"],
.content-page tr[style*="background:#f8f9fa"],
.content-page div[style*="background: #fff"],
.content-page div[style*="background:#fff"],
.content-page section[style*="background: #f8f9fa"],
.content-page section[style*="background:#f8f9fa"],
.content-page div[style*="background: #e8f5e9"],
.content-page div[style*="background:#e8f5e9"],
.content-page div[style*="background: #fce4ec"],
.content-page div[style*="background:#fce4ec"],
.content-page div[style*="background: #fbe9e7"],
.content-page div[style*="background:#fbe9e7"],
.content-page div[style*="background: #e3f2fd"],
.content-page div[style*="background:#e3f2fd"],
.content-page div[style*="background: #fff3e0"],
.content-page div[style*="background:#fff3e0"],
.content-page div[style*="background: #f5f5f5"],
.content-page div[style*="background:#f5f5f5"],
.content-page div[style*="background: white"],
.content-page div[style*="background:white"],
.content-page div[style*="background: #ffffff"],
.content-page div[style*="background:#ffffff"],
.content-page tr[style*="background: #fff"],
.content-page tr[style*="background:#fff"],
.content-page tr[style*="background: #f9f9f9"],
.content-page tr[style*="background:#f9f9f9"],
.content-page tr[style*="background: #fff3e0"],
.content-page tr[style*="background:#fff3e0"],
.content-page tr[style*="background: #fff7f0"],
.content-page tr[style*="background:#fff7f0"] {
    color: #1a1a2e;
}

/* Ensure all child elements inside light-bg containers also get dark text */
.content-page .toc-box h2,
.content-page .toc-box h3,
.content-page .toc-box p,
.content-page .toc-box li,
.content-page .toc-box a,
.content-page div[style*="background: #f8f9fa"] h2,
.content-page div[style*="background: #f8f9fa"] h3,
.content-page div[style*="background: #f8f9fa"] p,
.content-page div[style*="background: #f8f9fa"] li,
.content-page div[style*="background: #f8f9fa"] a,
.content-page div[style*="background: #f8f9fa"] span,
.content-page div[style*="background: #f8f9fa"] strong,
.content-page div[style*="background: #f8f9fa"] td,
.content-page div[style*="background: #e8f5e9"] h2,
.content-page div[style*="background: #e8f5e9"] h3,
.content-page div[style*="background: #e8f5e9"] p,
.content-page div[style*="background: #e8f5e9"] li,
.content-page div[style*="background: #e8f5e9"] strong,
.content-page div[style*="background: #fce4ec"] h2,
.content-page div[style*="background: #fce4ec"] h3,
.content-page div[style*="background: #fce4ec"] p,
.content-page div[style*="background: #fce4ec"] li,
.content-page div[style*="background: #fce4ec"] strong,
.content-page div[style*="background: #fbe9e7"] h2,
.content-page div[style*="background: #fbe9e7"] h3,
.content-page div[style*="background: #fbe9e7"] p,
.content-page div[style*="background: #fbe9e7"] li,
.content-page div[style*="background: #fbe9e7"] strong,
.content-page nav[style*="background: #f8f9fa"] h2,
.content-page nav[style*="background: #f8f9fa"] h3,
.content-page nav[style*="background: #f8f9fa"] p,
.content-page nav[style*="background: #f8f9fa"] li,
.content-page nav[style*="background: #f8f9fa"] a {
    color: #1a1a2e;
}

/* Ensure CTA links inside light-bg still use brand orange */
.content-page div[style*="background: #f8f9fa"] a[style*="color: #ff6b00"],
.content-page nav[style*="background: #f8f9fa"] a[style*="color: #ff6b00"] {
    color: #ff6b00 !important;
}

/* ==================== About Us Page ==================== */

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.about-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.about-card-full {
    grid-column: 1 / -1;
    text-align: center;
    padding: 50px 40px;
}

.about-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.about-card-full .about-card-icon {
    margin: 0 auto 20px;
}

.about-card-icon svg {
    width: 26px;
    height: 26px;
    color: #ff6b35;
}

.about-card h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px;
}

.about-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 12px;
}

.about-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 10px;
}

.about-card-full p {
    max-width: 700px;
    margin: 0 auto 10px;
}

/* About Quick Links */
.about-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.about-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.about-link-card:hover {
    background: rgba(255, 107, 53, 0.08);
    border-color: rgba(255, 107, 53, 0.25);
    color: #ff6b35;
    transform: translateY(-2px);
}

.about-link-card svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: #ff6b35;
}

/* ==================== Contact Page ==================== */

.contact-page-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 30px;
}

.contact-page-form-wrap {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 35px;
}

.contact-page-form-wrap h2 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px;
}

.contact-page-form-wrap > p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 28px;
}

.contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-page-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-page-input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-page-input-group label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-page-input-group input,
.contact-page-input-group textarea {
    width: 100%;
    padding: 13px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    font-size: 15px;
    color: #ffffff;
    outline: none;
    transition: all 0.3s ease;
    font-family: inherit;
    resize: vertical;
}

.contact-page-input-group input::placeholder,
.contact-page-input-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact-page-input-group input:focus,
.contact-page-input-group textarea:focus {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    align-self: flex-start;
}

.contact-page-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.contact-page-btn svg {
    transition: transform 0.3s ease;
}

.contact-page-btn:hover svg {
    transform: translateX(4px);
}

/* Contact Info Panel */
.contact-page-info {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 30px;
}

.contact-page-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px;
}

.contact-page-info > p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 28px;
}

.contact-page-info-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.contact-page-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-page-info-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-page-info-icon svg {
    width: 20px;
    height: 20px;
    color: #ff6b35;
}

.contact-page-info-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 4px;
}

.contact-page-info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    margin: 0;
    line-height: 1.5;
}

.contact-page-info-item a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-page-info-item a:hover {
    color: #ff6b35;
}

.contact-page-map {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==================== FAQ Page ==================== */

.faq-layout {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.faq-category-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-category-icon svg {
    width: 22px;
    height: 22px;
    color: #ff6b35;
}

.faq-category-header h2 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.faq-item-v2 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-v2 > * {
    background: transparent;
}

.faq-item-v2:hover {
    border-color: rgba(255, 107, 53, 0.2);
}

.faq-item-v2[open] {
    border-color: rgba(255, 107, 53, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.faq-item-v2 summary {
    padding: 18px 22px;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.2s ease;
}

.faq-item-v2 summary::-webkit-details-marker {
    display: none;
}

.faq-item-v2 summary::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item-v2[open] summary::after {
    content: '−';
    color: #ff6b35;
}

.faq-item-v2 summary:hover {
    color: #ff6b35;
}

.faq-item-v2 .faq-answer {
    padding: 0 22px 18px;
    max-height: none;
    overflow: visible;
    background: transparent;
}

.faq-item-v2 .faq-answer p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0;
}

.faq-item-v2 .faq-answer a {
    color: #ff6b35;
    text-decoration: none;
}

.faq-item-v2 .faq-answer a:hover {
    text-decoration: underline;
}

/* FAQ CTA */
.faq-cta {
    text-align: center;
    padding: 50px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    margin-top: 20px;
}

.faq-cta-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.faq-cta-icon svg {
    width: 26px;
    height: 26px;
    color: #ff6b35;
}

.faq-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 10px;
}

.faq-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0 0 22px;
}

.faq-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 30px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
    color: #fff;
}

/* ==================== Legal Pages (TOS / Privacy / Refund) ==================== */

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 45px 40px;
}

.legal-section {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
}

.legal-number svg {
    color: #ff6b35;
}

.legal-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 10px;
}

.legal-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin: 0 0 8px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: #ff6b35;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.legal-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-list li {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.legal-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

.legal-updated {
    text-align: center;
    padding-top: 24px;
    margin-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}

/* ==================== Pages Responsive ==================== */

@media screen and (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-card-full {
        grid-column: 1 / -1;
    }

    .about-links {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media screen and (max-width: 768px) {
    .page-hero {
        padding: 120px 0 50px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .page-hero p {
        font-size: 15px;
    }

    .content-page {
        padding: 50px 0 60px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .about-card {
        padding: 28px 24px;
    }

    .about-card-full {
        padding: 35px 28px;
    }

    .about-links {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .contact-page-form-wrap {
        padding: 30px 24px;
    }

    .contact-page-row {
        grid-template-columns: 1fr;
    }

    .contact-page-info {
        padding: 30px 24px;
    }

    .faq-category-header h2 {
        font-size: 19px;
    }

    .faq-item-v2 summary {
        padding: 15px 18px;
        font-size: 15px;
    }

    .faq-item-v2 .faq-answer {
        padding: 0 18px 15px;
    }

    .legal-card {
        padding: 30px 24px;
    }

    .legal-section {
        gap: 14px;
    }

    .legal-section h3 {
        font-size: 16px;
    }
}

@media screen and (max-width: 480px) {
    .page-hero {
        padding: 110px 0 40px;
    }

    .page-hero h1 {
        font-size: 26px;
    }

    .page-hero-badge {
        font-size: 12px;
        padding: 5px 16px;
    }

    .about-card h2 {
        font-size: 22px;
    }

    .about-card h3 {
        font-size: 18px;
    }

    .about-links {
        grid-template-columns: 1fr;
    }

    .about-link-card {
        padding: 14px 18px;
    }

    .contact-page-form-wrap {
        padding: 24px 18px;
    }

    .contact-page-info {
        padding: 24px 18px;
    }

    .contact-page-btn {
        width: 100%;
        justify-content: center;
    }

    .faq-cta {
        padding: 35px 20px;
    }

    .legal-card {
        padding: 24px 18px;
    }

    .legal-number {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .legal-section {
        flex-direction: column;
        gap: 12px;
    }
}

/*******************Scroll to Top Button******************/

.scroll-to-top {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 50px !important;
    height: 50px !important;
    background: linear-gradient(135deg, #f8993b 0%, #ee7906 100%) !important;
    color: #fff !important;
    border: 2px solid #fff !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    z-index: 99999 !important;
    box-shadow: 0 4px 15px rgba(238, 121, 6, 0.4) !important;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease !important;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    outline: none !important;
    pointer-events: none;
}

.scroll-to-top.show {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #ee7906 0%, #f8993b 100%);
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(238, 121, 6, 0.6);
}

.scroll-to-top:active {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(238, 121, 6, 0.4);
}

.scroll-to-top i {
    line-height: 1;
    display: block;
}

.scroll-to-top:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

@media screen and (max-width: 768px) {
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
        font-size: 18px;
    }
}

/* ==========================================================================
   Blog Styles
   ========================================================================== */

/* Blog Hero */
/* Blog Hero */
.blog-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: 140px 0 70px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.blog-hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.07) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    border-radius: 50%;
    pointer-events: none;
}

.blog-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
    position: relative;
}

.blog-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
}

/* Blog Section */
.blog-section {
    padding: 70px 0 90px;
    background: linear-gradient(180deg, #0f3460 0%, #1a1a2e 100%);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Blog Card */
.blog-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.2);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.blog-card-image-link {
    display: block;
    text-decoration: none;
}

.blog-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 24px;
}

.blog-card-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(247, 147, 30, 0.15));
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #ff6b35;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 14px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.blog-card-title a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-title a:hover {
    color: #ff6b35;
}

.blog-card-excerpt {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 18px;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-card-date {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.blog-card-date i {
    margin-right: 5px;
}

.blog-card-link {
    font-size: 14px;
    font-weight: 600;
    color: #ff6b35;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: #f7931e;
}

.blog-card-link i {
    margin-left: 5px;
    transition: transform 0.2s ease;
}

.blog-card-link:hover i {
    transform: translateX(3px);
}

/* Blog Breadcrumb */
.blog-breadcrumb {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 100px 0 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-breadcrumb a {
    color: #ff6b35;
    text-decoration: none;
    font-size: 14px;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-breadcrumb span {
    color: rgba(255, 255, 255, 0.35);
    margin: 0 8px;
    font-size: 14px;
}

.blog-breadcrumb .current {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Blog Post Section */
.blog-post-section {
    padding: 50px 0 80px;
    background: linear-gradient(180deg, #16213e 0%, #1a1a2e 100%);
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 40px;
    align-items: start;
}

/* Blog Post Content */
.blog-post-content {
    min-width: 0;
}

.blog-post-header {
    margin-bottom: 35px;
}

.blog-post-header h1 {
    font-size: 34px;
    font-weight: 700;
    line-height: 1.3;
    color: #ffffff;
    margin: 15px 0;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
}

.blog-post-meta i {
    margin-right: 5px;
}

/* Quick Answer Box */
.blog-quick-answer {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-left: 4px solid #ff6b35;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0 32px;
}

.blog-quick-answer-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ff6b35;
    margin-bottom: 10px;
}

.blog-quick-answer-label i {
    margin-right: 6px;
}

.blog-quick-answer p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-style: italic;
}

/* Blog Post Body Typography */
.blog-post-body {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
}

.blog-post-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: #ffffff;
    margin: 40px 0 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.4);
}

.blog-post-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 30px 0 12px;
}

.blog-post-body h4 {
    font-size: 17px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin: 20px 0 10px;
}

.blog-post-body p {
    margin-bottom: 18px;
}

.blog-post-body ul,
.blog-post-body ol {
    margin: 15px 0 20px 20px;
    padding: 0;
}

.blog-post-body li {
    margin-bottom: 8px;
    padding-left: 5px;
}

.blog-post-body a {
    color: #ff6b35;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    transition: border-color 0.2s ease;
}

.blog-post-body a:hover {
    border-bottom-color: #ff6b35;
}

.blog-post-body strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Blog Post Share */
.blog-post-share {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.blog-post-share span {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.blog-post-share a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-post-share a:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: transparent;
    color: #fff;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.blog-sidebar-widget {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 25px;
    margin-bottom: 24px;
}

.blog-sidebar-widget h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(255, 107, 53, 0.4);
}

.blog-sidebar-post {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-sidebar-post:last-child {
    border-bottom: none;
}

.blog-sidebar-post a {
    text-decoration: none;
}

.blog-sidebar-post h4 {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.4;
    margin: 0 0 5px;
    transition: color 0.2s ease;
}

.blog-sidebar-post a:hover h4 {
    color: #ff6b35;
}

.blog-sidebar-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

.blog-sidebar-date i {
    margin-right: 4px;
}

.blog-sidebar-cta {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.12), rgba(247, 147, 30, 0.12));
    border-color: rgba(255, 107, 53, 0.25);
    text-align: center;
}

.blog-sidebar-cta h3 {
    color: #fff;
    border-bottom-color: rgba(255, 107, 53, 0.3);
}

.blog-sidebar-cta p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

/* Blog CTA Section */
.blog-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-cta h2 {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.blog-cta p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 25px;
}

.blog-cta-btn {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.blog-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
    color: #fff;
    text-decoration: none;
}

/* Blog Pagination */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 48px 0 16px;
}
.blog-page-numbers {
    display: flex;
    align-items: center;
    gap: 6px;
}
.blog-page-num,
.blog-page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    color: #ff6b35;
    background: #fff;
    border: 2px solid #ff6b35;
    transition: all 0.2s ease;
    cursor: pointer;
}
.blog-page-num:hover,
.blog-page-btn:hover {
    background: #ff6b35;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
}
.blog-page-num.active {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.35);
    pointer-events: none;
}
.blog-page-ellipsis {
    color: #999;
    font-size: 15px;
    padding: 0 4px;
    line-height: 40px;
}
.blog-page-prev,
.blog-page-next {
    gap: 6px;
    padding: 0 18px;
}
.blog-page-info {
    width: 100%;
    text-align: center;
    color: #888;
    font-size: 14px;
    margin: 8px 0 0;
}
@media (max-width: 480px) {
    .blog-page-btn { padding: 0 12px; font-size: 14px; }
    .blog-page-num { min-width: 36px; height: 36px; font-size: 14px; }
}

/* Blog Responsive */
@media screen and (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-post-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }

    .blog-post-header h1 {
        font-size: 28px;
    }
}

@media screen and (max-width: 768px) {
    .blog-hero {
        padding: 120px 0 50px;
    }

    .blog-hero h1 {
        font-size: 30px;
    }

    .blog-hero p {
        font-size: 15px;
    }

    .blog-section {
        padding: 50px 0 60px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .blog-card-body {
        padding: 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }

    .blog-post-section {
        padding: 40px 0 60px;
    }

    .blog-post-header h1 {
        font-size: 24px;
    }

    .blog-post-body h2 {
        font-size: 22px;
    }

    .blog-post-body h3 {
        font-size: 18px;
    }

    .blog-cta h2 {
        font-size: 24px;
    }

    .blog-cta {
        padding: 40px 0;
    }

    .blog-post-meta {
        flex-direction: column;
        gap: 8px;
    }
}