/* =========================================
   HOSTING HERO (ORBIT LAYOUT - UNIQUE)
========================================= */

.hosting-hero-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(
            circle at center,
            rgba(59, 130, 246, 0.12),
            transparent 45%
        ),
        radial-gradient(
            circle at top left,
            rgba(124, 58, 237, 0.1),
            transparent 40%
        ),
        #0b1220;
}

/* CENTER CONTENT */
.hosting-center {
    max-width: 900px;
    margin: auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hosting-center h1 {
    font-size: 56px;
    color: #fff;
    font-weight: 600;
    line-height: 1.2;
}

.hosting-center h1 span {
    display: block;
    color: #60a5fa;
    font-weight: 300;
}

.hosting-center p {
    font-size: 18px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 20px;
}

/* highlight box */
.hosting-highlight {
    margin-top: 30px;
    padding: 18px 22px;

    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 14px;

    color: #cbd5f5;

    font-size: 15px;
}

/* =========================================
   ORBIT FLOATING SYSTEM (NEW LAYOUT TYPE)
========================================= */

.hosting-orbit {
    position: absolute;
    inset: 0;
    z-index: 1;
}

/* orbit items */
.orbit-item {
    position: absolute;

    padding: 10px 16px;
    border-radius: 50px;

    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.18);

    color: #93c5fd;
    font-size: 13px;

    animation: floatOrbit 10s infinite ease-in-out;
}

/* positioning (orbit feel) */
.orbit-item:nth-child(1) {
    top: 15%;
    left: 10%;
}
.orbit-item:nth-child(2) {
    top: 15%;
    right: 10%;
}
.orbit-item:nth-child(3) {
    top: 50%;
    left: 5%;
}
.orbit-item:nth-child(4) {
    top: 40%;
    right: 8%;
}
.orbit-item:nth-child(5) {
    bottom: 25%;
    left: 15%;
}
.orbit-item:nth-child(6) {
    bottom: 25%;
    right: 15%;
}

/* animation */
@keyframes floatOrbit {
    0% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-15px);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .hosting-center h1 {
        font-size: 34px;
    }

    .orbit-item {
        display: none; /* clean mobile */
    }
}

/* =========================================
   HOSTING SERVICES (PREMIUM LIGHT GRID UI)
========================================= */

.hosting-services-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

/* soft blue glow background */
.hosting-services-section::before {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;

    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.1),
        transparent 60%
    );

    top: -250px;
    left: -250px;

    filter: blur(10px);
}

.hosting-services-section::after {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;

    background: radial-gradient(
        circle,
        rgba(99, 102, 241, 0.08),
        transparent 60%
    );

    bottom: -250px;
    right: -250px;

    filter: blur(10px);
}

/* =========================================
   HEADER
========================================= */

.hosting-services-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.hosting-services-header h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.hosting-services-header p {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
    font-weight: 300;
}

/* =========================================
   GRID LAYOUT (IMPORTANT UPGRADE)
========================================= */

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;

    position: relative;
    z-index: 2;
}

/* feature card */
.hosting-feature {
    background: #ffffff;

    border: 1px solid #dbeafe;

    padding: 22px 18px;

    border-radius: 14px;

    text-align: center;

    transition: 0.35s ease;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

/* hover */
.hosting-feature:hover {
    transform: translateY(-6px);
    border-color: #3b82f6;
    box-shadow: 0 18px 40px rgba(59, 130, 246, 0.15);
}

/* highlight (important service) */
.hosting-feature.highlight {
    background: linear-gradient(135deg, #3b82f6, #6366f1);
    border: none;
}

.hosting-feature.highlight h4 {
    color: #fff;
}

/* text */
.hosting-feature h4 {
    font-size: 16px;
    font-weight: 500;
    color: #1e3a8a;
}

/* =========================================
   FOOTER STRIP
========================================= */

.hosting-footer {
    margin-top: 50px;
    text-align: center;

    font-size: 16px;
    color: #64748b;
    font-weight: 300;

    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .hosting-services-header h2 {
        font-size: 32px;
    }

    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .hosting-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   HOSTING MATRIX SECTION (NEW LAYOUT TYPE)
========================================= */

.hosting-matrix-section {
    padding: 80px 0;
    background:
        radial-gradient(
            circle at top right,
            rgba(99, 102, 241, 0.1),
            transparent 45%
        ),
        radial-gradient(
            circle at bottom left,
            rgba(59, 130, 246, 0.08),
            transparent 50%
        ),
        #ffffff;

    position: relative;
    overflow: hidden;
}

/* container split */
.matrix-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;

    position: relative;
    z-index: 2;
}

/* =========================================
   LEFT SIDE (CONTENT BLOCK)
========================================= */

.matrix-left {
    flex: 1;
}

.matrix-left h2 {
    font-size: 48px;
    font-weight: 600;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.matrix-left p {
    font-size: 18px;
    line-height: 1.9;
    color: #64748b;
    font-weight: 300;
}

.matrix-note {
    margin-top: 25px;
    padding: 18px 20px;

    background: linear-gradient(135deg, #eef2ff, #ffffff);

    border-left: 4px solid #6366f1;

    font-size: 15px;
    color: #334155;

    line-height: 1.7;

    border-radius: 10px;
}

/* =========================================
   RIGHT SIDE (STACKED DEPTH BLOCKS)
========================================= */

.matrix-right {
    flex: 1;

    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* each box */
.matrix-box {
    padding: 14px 18px;

    background: #ffffff;

    border: 1px solid #e0e7ff;

    border-radius: 12px;

    color: #1e3a8a;
    font-size: 14px;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);

    transition: 0.4s ease;
}

/* hover depth effect */
.matrix-box:hover {
    transform: translateX(10px);
    border-color: #6366f1;
    box-shadow: 0 18px 35px rgba(99, 102, 241, 0.15);
}

/* subtle stacking illusion */
.matrix-box:nth-child(odd) {
    transform: translateX(6px);
}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {
    .matrix-wrapper {
        flex-direction: column;
    }

    .matrix-left h2 {
        font-size: 32px;
    }

    .matrix-box {
        transform: none !important;
    }
}

/* =========================================
   LUXURY HOSTING SECTION (0D0B61 + EEEEEE)
========================================= */

.hosting-luxury-section {
    padding: 80px 0;
    background: #eeeeee;
    position: relative;
    overflow: hidden;
}

/* deep indigo glow */
.hosting-luxury-section::before {
    content: "";
    position: absolute;
    width: 800px;
    height: 800px;

    background: radial-gradient(
        circle,
        rgba(13, 11, 97, 0.15),
        transparent 60%
    );

    top: -300px;
    left: -300px;
}

.hosting-luxury-section::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;

    background: radial-gradient(circle, rgba(13, 11, 97, 0.1), transparent 60%);

    bottom: -300px;
    right: -300px;
}

/* HEADER */
.luxury-header {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 70px auto;
}

.luxury-header h2 {
    font-size: 52px;
    color: #0d0b61;
    font-weight: 600;
}

.luxury-header p {
    font-size: 18px;
    color: #0d0b61;
    opacity: 0.75;
    margin-top: 12px;
}

/* GRID LAYOUT */
.luxury-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}

/* LEFT CORE */
.core-image-box {
    background: #0d0b61;
    padding: 20px;
    border-radius: 18px;

    box-shadow: 0 25px 60px rgba(13, 11, 97, 0.25);

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
    position: relative;
}

/* image styling */
.core-image-box img {
    width: 100%;
    height: 100%;
    max-height: 320px;
    object-fit: cover;

    border-radius: 12px;

    transition: 0.4s ease;
}

/* subtle hover zoom */
.core-image-box:hover img {
    transform: scale(1.05);
}

/* optional glow effect */
.core-image-box::after {
    content: "";
    position: absolute;
    inset: 0;

    background: radial-gradient(
        circle at center,
        rgba(238, 238, 238, 0.08),
        transparent 60%
    );
    pointer-events: none;
}

/* RIGHT FEATURES */
.luxury-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* FEATURE ITEMS */
.lux-item {
    background: #eeeeee;
    border: 1px solid rgba(13, 11, 97, 0.15);

    padding: 14px 16px;
    border-radius: 12px;

    color: #0d0b61;
    font-size: 14px;

    transition: 0.35s ease;

    position: relative;
    overflow: hidden;
}

/* premium hover glow */
.lux-item:hover {
    transform: translateY(-6px);
    background: #0d0b61;
    color: #eeeeee;
    box-shadow: 0 20px 40px rgba(13, 11, 97, 0.25);
}

/* FOOTER */
.luxury-footer {
    margin-top: 70px;
    text-align: center;

    color: #0d0b61;
    font-size: 16px;
    opacity: 0.75;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .luxury-grid {
        grid-template-columns: 1fr;
    }

    .luxury-features {
        grid-template-columns: 1fr;
    }

    .luxury-header h2 {
        font-size: 32px;
    }
}

.hosting-plans {
    padding: 80px;
    background: linear-gradient(180deg, #fffdf7, #fff8e6);
    font-family: sans-serif;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #b8860b;
}

.section-header p {
    color: #7a6a3a;
    font-size: 15px;
}

/* GRID */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* CARD */
.plan-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    border: 1px solid #f1e3b2;
    transition: 0.3s ease;
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.08);
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(184, 134, 11, 0.25);
    border-color: #d4af37;
}

/* TITLE */
.plan-card h3 {
    font-size: 22px;
    color: #8b6b00;
    margin-bottom: 10px;
}

/* PRICE */
.price {
    font-size: 28px;
    color: #d4af37;
    font-weight: bold;
    display: block;
    margin-bottom: 20px;
}

/* LIST */
.plan-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.plan-card ul li {
    margin: 8px 0;
    color: #6b5a2a;
    font-size: 14px;
}

/* BUTTON */
.buy-btn {
    display: inline-block;
    padding: 10px 22px;
    background: linear-gradient(45deg, #d4af37, #b8860b);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn:hover {
    background: linear-gradient(45deg, #b8860b, #d4af37);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

/* FEATURED CARD */
.featured {
    border: 2px solid #d4af37;
    transform: scale(1.05);
    background: linear-gradient(180deg, #fff, #fffaf0);
}
.extra-info-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.info-box {
    background: #fffaf0;
    border: 1px solid #f1e3b2;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.08);
}

.info-box h3 {
    font-size: 18px;
    color: #b8860b;
    margin-bottom: 15px;
    border-left: 4px solid #d4af37;
    padding-left: 10px;
}

.info-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-box ul li {
    padding: 6px 0;
    font-size: 14px;
    color: #6b5a2a;
    position: relative;
    padding-left: 18px;
}

.info-box ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.cloudBizSection {
    padding: 80px;
    background: #ffffff;
    font-family: sans-serif;
}

/* HEADER */
.cloudBizHeader {
    text-align: center;
    margin-bottom: 50px;
}

.cloudBizHeader h2 {
    font-size: 38px;
    font-weight: 700;
    color: #4b1fa6;
}

.cloudBizHeader p {
    color: #6b5ca5;
    font-size: 15px;
}

/* GRID */
.cloudBizGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* BOX */
.cloudBizBox {
    background: linear-gradient(145deg, #ffffff, #f7f4ff);
    border: 1px solid #e5dbff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(75, 31, 166, 0.08);
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

/* LEFT & RIGHT ACCENT DIFFERENCE */
.cloudBizBox--left::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #6c2bd9, #4b1fa6);
}

.cloudBizBox--right::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #9b5de5, #6c2bd9);
}

/* HOVER */
.cloudBizBox:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(75, 31, 166, 0.18);
    border-color: #cbb6ff;
}

/* TITLE */
.cloudBizBox h3 {
    font-size: 18px;
    color: #4b1fa6;
    margin-bottom: 15px;
    font-weight: 700;
}

/* LIST */
.cloudBizBox ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cloudBizBox ul li {
    font-size: 14px;
    color: #5a4a8a;
    margin: 7px 0;
    padding-left: 20px;
    position: relative;
}

/* CHECK ICON */
.cloudBizBox ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #6c2bd9;
    font-weight: bold;
}

.vpsModernSection {
    padding: 80px;
    background: #ffffff;
    font-family: sans-serif;
}

/* HEADER */
.vpsTop {
    text-align: center;
    margin-bottom: 25px;
}

.vpsTop h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0b1f4b;
}

.vpsTop p {
    font-size: 15px;
    color: #4a5a7a;
    max-width: 850px;
    margin: 10px auto 0;
}

/* LABEL */
.vpsFlowItem {
    text-align: center;
    margin: 25px 0 15px;
}

.vpsFlowItem span {
    font-size: 16px;
    font-weight: 600;
    color: #0b1f4b;
    display: inline-block;
    position: relative;
}

.vpsFlowItem span::before,
.vpsFlowItem span::after {
    content: "";
    height: 2px;
    width: 40px;
    background: #1e3a8a;
    display: inline-block;
    margin: 0 10px;
    vertical-align: middle;
}

/* CHIPS */
.vpsChips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 900px;
    margin: auto;
}

.vpsChips span {
    background: linear-gradient(145deg, #ffffff, #f3f7ff);
    border: 1px solid #d9e6ff;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #3d4f73;
    box-shadow: 0 6px 15px rgba(11, 31, 75, 0.06);
    transition: 0.3s ease;
}

.vpsChips span:hover {
    background: #0b1f4b;
    color: #fff;
    transform: translateY(-4px);
}

/* BOTTOM TEXT */
.vpsBottomText {
    text-align: center;
    margin-top: 40px;
}

.vpsBottomText p {
    font-size: 14px;
    color: #4a5a7a;
    max-width: 800px;
    margin: auto;
}

.wpEcomSection {
    padding: 80px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    font-family: sans-serif;
}

/* HEADER */
.wpEcomHeader {
    text-align: center;
    margin-bottom: 50px;
}

.wpEcomHeader h2 {
    font-size: 38px;
    font-weight: 700;
    color: #0f5132;
}

.wpEcomHeader p {
    color: #4a6b5c;
    font-size: 15px;
    max-width: 850px;
    margin: auto;
    margin-top: 10px;
}

/* GRID */
.wpGrid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* CARD */
.wpCard {
    background: linear-gradient(145deg, #ffffff, #f3fff7);
    border: 1px solid #d7f5e6;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 25px rgba(15, 81, 50, 0.08);
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.wpCard:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(15, 81, 50, 0.18);
}

/* TITLE */
.wpCard h3 {
    font-size: 18px;
    color: #0f5132;
    margin-bottom: 15px;
}

/* CHIPS */
.chipWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.chipWrap span {
    background: #ffffff;
    border: 1px solid #d7f5e6;
    padding: 9px 12px;
    border-radius: 25px;
    font-size: 13px;
    color: #2f5d46;
    transition: 0.3s;
}

.chipWrap span:hover {
    background: #0f5132;
    color: #fff;
    transform: translateY(-3px);
}

/* RADIAL BACKGROUND ICONS */
.radialIcon {
    position: absolute;
    font-size: 80px;
    opacity: 0.06;
    animation: float 6s ease-in-out infinite;
    z-index: 1;
}

/* positions */
.radial1 {
    top: 10%;
    left: 5%;
}
.radial2 {
    bottom: 10%;
    right: 8%;
    animation-delay: 1s;
}
.radial3 {
    top: 40%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.securitySection {
    padding: 80px;
    background: #ffffff;
    font-family: sans-serif;
}

/* HEADER */
.securityHeader {
    text-align: center;
    margin-bottom: 60px;
}

.securityHeader h2 {
    font-size: 38px;
    color: #0b1f4b;
    font-weight: 700;
}

.securityHeader p {
    color: #4a5a7a;
    font-size: 15px;
    max-width: 850px;
    margin: auto;
    margin-top: 10px;
}

/* HUB LAYOUT */
.securityHub {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

/* SIDES */
.securitySide {
    display: flex;
    flex-direction: column;
    gap: 18px;
    width: 280px;
}

/* CARDS */
.securityCard {
    background: linear-gradient(145deg, #ffffff, #f3f7ff);
    border: 1px solid #d9e6ff;
    padding: 14px 16px;
    border-radius: 12px;
    color: #0b1f4b;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(11, 31, 75, 0.06);
    transition: 0.3s ease;
    position: relative;
}

.securityCard:hover {
    transform: translateX(6px);
    box-shadow: 0 15px 30px rgba(11, 31, 75, 0.15);
}

/* CENTER CIRCLE */
.securityCenter {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, #0b1f4b, #1e3a8a);
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 50px rgba(11, 31, 75, 0.3);
    text-align: center;
}

.lockIcon {
    font-size: 40px;
    margin-bottom: 10px;
}

/* FOOTER */
.securityFooter {
    text-align: center;
    margin-top: 50px;
    font-size: 14px;
    color: #4a5a7a;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.migrationSection {
    padding: 80px;
    background: #fffbdb;
    font-family: sans-serif;
}

/* SPLIT LAYOUT */
.migrationSplit {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.migrationHeader h2 {
    font-size: 38px;
    color: #da7422;
    font-weight: 700;
}

.migrationHeader p {
    font-size: 15px;
    color: #7a5a3a;
    margin-top: 10px;
}

/* FLOW */
.migrationFlow {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* CARD */
.migrationStep {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1px solid #f3d7b3;
    padding: 14px 16px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(218, 116, 34, 0.08);
    transition: 0.3s ease;
    position: relative;
}

.migrationStep::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: #da7422;
}

.migrationStep:hover {
    transform: translateX(6px);
    box-shadow: 0 18px 40px rgba(218, 116, 34, 0.18);
}

/* ICON */
.stepIcon {
    font-size: 20px;
    width: 38px;
    height: 38px;
    background: #fffbdb;
    border: 1px solid #f3d7b3;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* TEXT */
.stepText {
    font-size: 14px;
    color: #7a5a3a;
}

/* FOOTER */
.migrationFooter {
    margin-top: 30px;
    font-size: 14px;
    color: #7a5a3a;
}

/* RIGHT IMAGE */
.migrationRight .imageBox {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(218, 116, 34, 0.25);
}

.migrationRight img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* OVERLAY */
.imageOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, transparent, rgba(218, 116, 34, 0.9));
    color: #fff;
    padding: 20px;
}

.imageOverlay h3 {
    margin: 0;
    font-size: 18px;
}

.whySection {
    padding: 80px;
    background: #ffffff;
    font-family: sans-serif;
}

/* HEADER */
.whyHeader {
    text-align: center;
    margin-bottom: 50px;
}

.whyHeader h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1d3557;
}

.whyHeader p {
    font-size: 15px;
    color: #4b5d73;
    max-width: 850px;
    margin: auto;
    margin-top: 10px;
}

/* GRID */
.whyGrid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 30px;
}

/* MAIN CARD */
.whyMainCard {
    background: linear-gradient(145deg, #ffffff, #f8fbff);
    border: 1px solid #dbe6f3;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(29, 53, 87, 0.08);
}

/* TITLE */
.whyMainCard h3 {
    color: #1d3557;
    font-size: 20px;
    margin-bottom: 20px;
}

/* BADGES (NO LIST STYLE) */
.whyBadges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.whyBadges span {
    background: #ffffff;
    border: 1px solid #dbe6f3;
    padding: 10px 14px;
    border-radius: 30px;
    font-size: 13px;
    color: #1d3557;
    transition: 0.3s ease;
}

.whyBadges span:hover {
    background: #f77f00;
    color: #fff;
    border-color: #f77f00;
    transform: translateY(-3px);
}

/* SIDE CARD */
.whySideCard {
    background: linear-gradient(145deg, #1d3557, #152a45);
    color: #fff;
    border-radius: 18px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(29, 53, 87, 0.25);
}

/* ICON */
.whyIcon {
    font-size: 40px;
    margin-bottom: 15px;
}

/* TEXT */
.whySideCard h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.whySideCard p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* HIGHLIGHT STRIP */
.whyHighlight {
    margin-top: 20px;
    display: inline-block;
    background: #f77f00;
    color: #fff;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.ctaSection {
    position: relative;
    padding: 80px 20px;
    overflow: hidden;
    font-family: sans-serif;
    background: #0b0b2b;
}

/* ANIMATED WAVY BACKGROUND */
.ctaBg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(270deg, #1d1b4f, #2d2a7a, #4b3bbd, #1d1b4f);
    background-size: 400% 400%;
    animation: waveBG 10s ease infinite;
    opacity: 0.85;
    z-index: 1;
}

/* KEYFRAME WAVING EFFECT */
@keyframes waveBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* CONTENT */
.ctaContent {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: auto;
    color: #fff;
}

/* TITLE */
.ctaContent h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.85);
}

/* PARAGRAPHS */
.ctaContent p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* CTA BUTTON */
.ctaBtn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;

    background: linear-gradient(90deg, #3b2cff, #7a3cff, #3b2cff);
    background-size: 300% 300%;
    animation: btnWave 4s ease infinite;

    box-shadow: 0 10px 30px rgba(123, 60, 255, 0.4);
    transition: 0.3s ease;
}

/* BUTTON HOVER */
.ctaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(123, 60, 255, 0.6);
}

/* BUTTON ANIMATION */
@keyframes btnWave {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.faqSection {
    padding: 80px;
    background: #ffffff;
    font-family: sans-serif;
}

/* HEADER */
.faqHeader {
    text-align: center;
    margin-bottom: 40px;
}

.faqHeader h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1d3557;
}

/* WRAPPER */
.faqWrapper {
    max-width: 900px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* ITEM */
.faqItem {
    background: #ffffff;
    border: 1px solid #dbe6f3;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(29, 53, 87, 0.08);
    cursor: pointer;
    transition: 0.3s ease;
}

/* QUESTION */
.faqQuestion {
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 600;
    color: #1d3557;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ARROW */
.faqArrow {
    font-size: 18px;
    color: #f77f00;
    transition: 0.3s ease;
}

/* ANSWER */
.faqAnswer {
    max-height: 0;
    overflow: hidden;
    transition: 0.4s ease;
    padding: 0 18px;
    font-size: 14px;
    color: #4b5d73;
    line-height: 1.6;
}

/* ACTIVE STATE */
.faqItem.active .faqAnswer {
    max-height: 200px;
    padding: 10px 18px 16px 18px;
}

/* ROTATE ARROW */
.faqItem.active .faqArrow {
    transform: rotate(180deg);
}

/* HOVER */
.faqItem:hover {
    transform: translateY(-3px);
}
