/* header  */
:root {
    /* Frequency Colors */
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);

    /* Frequency Colors */
    --accent-green: #00ff88;
    --accent-blue: #016ef4;
    --accent-red: #ff4d4d;
    --accent-purple: #bd00ff;

    --bg-dark: #030014;
    --primary-blue: #016ef4;
    --text-muted: #a0aec0;
    --font-main: "Poppins", sans-serif;
    --font-dm: "DM Sans", sans-serif;
    --card-bg: #12141d;
    --footer-bg: #020310;
    --brand-blue: #016ef4;
    --muted-text: #8b949e;
    --white-text: #ffffff;
    --nav-bg: #161b22;
}



body {
    background-color: var(--bg-dark);
    color: var(--white-text);
    font-family: var(--font-main);
    margin: 0;
    padding: 0;
}

.pt-100 {
    padding-top: 100px;
}

.pb-100 {
    padding-bottom: 100px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}


a {
    text-decoration: none !important;
}

.w-75 {
    width: 80% !important;
}

/* --- CSS VARIABLES (Agar aapne define nahi kiye toh ye zaruri hain) --- */


/* --- GLOW EFFECT (Aapka Code) --- */
.sticky-header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Continuous glow at the top for header + hero integration */
    background-image: radial-gradient(circle at 50% 35%,
            rgba(3, 110, 243, 0.25) 0%,
            transparent 50%);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: -1;
}

/* --- HEADER BASE (Aapka Code + Glass Effect) --- */
.header-custom {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    /* Transparent to show body glow */
    backdrop-filter: blur(12px);
    /* Glass effect */
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem 0;
}

/* Scroll hone par background thoda dark karne ke liye */
.header-custom.scrolled {
    background-color: rgba(0, 0, 0, 0.7);
    /* padding: 0.6rem 0; */
}

.nav-link-custom {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link-custom:hover {
    color: var(--primary-blue) !important;
}

.btn-trial {
    background-color: var(--primary-blue);
    color: var(--white-text);
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    border: none;
    font-size: 0.95rem;
    transition: 0.3s;
}

.btn-trial:hover {
    background-color: #0256c2;
    color: var(--white-text)f;
}

/* --- MEGA MENU HOVER LOGIC --- */

@media (min-width: 992px) {

    /* Hover par menu kholna */
    .nav-item.dropdown:hover>.mega-menu-wrapper {
        display: block;
        opacity: 1;
        visibility: visible;
        margin-top: 0;
    }

    .nav-item.dropdown {
        position: static !important;
        /* Isse menu full width center ho sakega */
    }

    .mega-menu-wrapper {
        display: none;
        /* Default hidden */
        position: absolute;
        width: 750px;
        left: 50% !important;
        transform: translateX(-50%);
        background: var(--white-text) !important;
        /* Image jaisa white background */
        border-radius: 12px;
        padding: 20px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
        border: none;
    }
}

/* --- MEGA MENU INTERNAL DESIGN --- */
.mega-item {
    display: flex;
    align-items: start;
    gap: 15px;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    transition: 0.2s;
}

.mega-item:hover {
    background-color: #fff9e6 !important;
    /* Light yellow highlight */
}

.icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background-color: rgba(1, 110, 244, 0.1) !important;
}

.icon-box i {
    color: var(--brand-blue);
    font-size: 1.25rem;
}

.mega-item h6 {
    color: #111;
    font-weight: 700;
    margin-bottom: 2px;
    font-size: 0.95rem;
}

.mega-item p {
    color: #666;
    font-size: 12px;
    margin-bottom: 0;
    line-height: 1.4;
    white-space: normal;
}

.btn-trial {
    background-color: var(--primary-blue);
    color: var(--white-text);
    font-weight: 600;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    /* Exact rounded look */
    border: none;
    font-size: 0.95rem;
}

/* --- HERO SECTION --- */
.hero-section {
    padding: 50px 0;
    text-align: center;
    /* Glow is now handled by body for seamless header integration */
    background: transparent;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 7px 16.16px 9px 16px;
    border-radius: 50px;
    background: rgba(1, 110, 244, 0.1);
    border: 1px solid rgba(1, 110, 244, 0.3);
    color: #92c5fd;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 0 15px rgba(1, 110, 244, 0.1);
    backdrop-filter: blur(5px);
}

.hero-title-small {
    font-size: 1.5rem;
    color: #d1d5db;
}

.hero-title-main {
    font-size: 3rem;
    font-weight: 700;
    line-height: 3.4rem;
    letter-spacing: -1.5px;
}


.btn-hero-primary {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 600;
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    font-size: 1.1rem;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.2);

    /* 🔥 Transition yahan hona chahiye */
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.3);
    transform: translateY(-2px);
    border: 1px solid var(--white-text);
}

.btn-hero-outline {
    background-color: transparent;
    color: var(--white-text);
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-hero-outline:hover {
    background-color: var(--white-text);
    color: var(--primary-blue);
}

.guarantee-text {
    color: #94a3b8;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.section-clients-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 3rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-title-small {
        font-size: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-outline {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* our client  */

/* Wrapper with edge blur */
.scroll-gallery {
    position: relative;
    overflow: hidden;
}

/* Left and right fade overlays */
.scroll-gallery::before,
.scroll-gallery::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    /* Increased from 80px */
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scroll-gallery::before {
    left: 0;
    /* background: var(--primary-blue); */
}

.scroll-gallery::after {
    right: 0;
    /* background: var(--primary-blue); */
}

/* Scrolling content */
.scroll-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scroll-left 20s linear infinite;
}

/* Reverse direction if needed */
.scroll-track.reverse {
    animation-name: scroll-right;
}

/* Pause on hover */
.scroll-gallery:hover .scroll-track {
    animation-play-state: paused;
}

/* Images inside scroll */
.scroll-track img {
    width: 160px;
    margin: 0 30px;
    flex-shrink: 0;
    opacity: 0.6;
    filter: grayscale(100%) brightness(200%);
    /* Make logos look white/monochrome */
    transition: all 0.3s ease;
}

.scroll-track img:hover {
    opacity: 1;
    filter: none;
    /* Show original color on hover */
}

/* Left direction animation */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Right direction animation */
@keyframes scroll-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* featured section  */
.padding-section {
    padding: 50px 0;
}

.hosting-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.hosting-section .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 400;
}

.hosting-section .main-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 15px 0 25px;
}

/* --- CARD STYLING --- */
.hosting-card {

    background: linear-gradient(180deg, rgba(130, 130, 130, 0.15) 0.01%, rgba(0, 0, 0, 0.15) 100%);
    border-radius: 12px;
    padding: 32px 23px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0px 12px 40px 0px #040f160a;
    transition:
        transform 0.4s ease,
        border-color 0.3s ease;
    will-change: transform;
    text-align: left;
}

.hosting-card:hover {
    transform: translateY(-10px);
    border-color: rgba(1, 110, 244, 0.3);
    background: var(--primary-blue);
    color: var(--white-text);
}

/* Icon Styling */
.card-icon {
    font-size: 2.5rem;
    margin-bottom: 22px;
    color: var(--text-white);
}

.hosting-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.hosting-card p {
    color: var(--white-text);
    font-size: 14px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 25px;
}

.hosting-card:hover .read-more-link {
    color: var(--white-text);
}

.read-more-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.read-more-link i {
    font-size: 0.8rem;
    margin-left: 8px;
}

/* --- ACTIVE/BLUE CARD STATE --- */
.hosting-card.active {
    background-color: var(--primary-blue);
    box-shadow: 0 20px 40px rgba(1, 110, 244, 0.25);
}

.hosting-card.active p,
.hosting-card.active .read-more-link {
    color: var(--white-text) !important;
}

/* Mobile Tweak */
@media (max-width: 768px) {
    .hosting-section .main-title {
        font-size: 2rem;
    }
}

/* static section   */
/* --- STATS SECTION --- */
.stats-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.stats-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-white);
}

.stats-section .section-desc {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 750px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

/* The Glowing Pill Container */
.stats-pill-container {
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(1, 110, 244, 0.3) 100%);
    /* border: 1px solid rgba(255, 255, 255, 0.05); */
    border-radius: 30px;
    padding: 30px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 4px 13px 0px #0000001a;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 5px;
    display: block;
}

.stat-label {
    color: var(--white-text);
    font-size: 17px;
    font-weight: 400;
}

/* Vertical Divider Lines */
.v-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .stats-pill-container {
        flex-direction: column;
        border-radius: 20px;
        gap: 30px;
    }

    .v-divider {
        width: 60%;
        height: 1px;
    }

    .stats-section .section-title {
        font-size: 2.2rem;
    }
}

/* --- TABLE DESIGN --- */
.comparison-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: var(--font-main);
}

.table-wrapper {
    position: relative;
    /* Highlight box ke liye */
    margin-top: 50px;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: fixed;
}

.comparison-table th,
.comparison-table td {
    padding: 25px 15px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Pehla column (Features Name) */
.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    width: 25%;
    font-weight: 600;
    color: var(--text-white);
}

/* Logos Styling */
.table-logo {
    max-height: 35px;
    max-width: 100px;
    object-fit: contain;
}

/* Price Styling */
.price-tag {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-period {
    display: block;
    font-size: 16px;
    color: var(--white-text);
    font-weight: 400;
    margin-top: 2px;
}

/* Icons */
.check-icon {
    color: var(--white-text);
    font-size: 1.2rem;
}

.cross-icon {
    color: #ff4d4d;
    font-size: 1.2rem;
}

/* --- HIQLOUD COLUMN HIGHLIGHT (The Floating Box) --- */
/* Ye box table ke upar float karega */
.hiqloud-border-box {
    position: absolute;
    top: -20px;
    bottom: -20px;
    left: 25%;
    width: 15%;
    border: 2.5px solid var(--primary-blue);
    border-radius: 20px;
    pointer-events: none;
    background: #016ef433;
    z-index: 10;
    box-shadow: 0 0 20px rgba(1, 110, 244, 0.1);
}

/* Responsive Mobile */
@media (max-width: 992px) {
    .table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 800px;
    }

    .hiqloud-border-box {
        display: none;
    }

    /* Mobile par complex highlight hide kar dena behtar hai */
}

/* --- BENEFITS SECTION --- */
.benefits-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.benefits-header .subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.benefit-row {
    padding: 50px 0;
    align-items: center;
}

.benefit-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-white);
}

.benefit-content p {
    color: var(--white-text);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.benefit-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.benefit-img-wrapper img {
    max-width: 100%;
    height: auto;
    /* Adding a subtle glow effect to the images to match original isometric look */
    filter: drop-shadow(0 0 15px rgba(1, 110, 244, 0.2));
}

.read-more-btn {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

.read-more-btn:hover {
    color: var(--white-text);
    transform: translateX(5px);
}

/* Mobile Tweak: Ensure images are always on top when stacked */
@media (max-width: 768px) {
    .benefit-row {
        text-align: center;
        padding: 40px 0;
    }

    .benefit-img-wrapper {
        margin-bottom: 30px;
    }
}

/* --- SUPPORT BANNER SECTION --- */
.support-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    /* Using previously defined black/navy */
}

.support-banner {
    background-color: var(--primary-blue);
    /* Using previously defined blue */
    border-radius: 30px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(1, 110, 244, 0.2);
}

.support-content {
    padding: 60px;
}

.support-tag {
    color: var(--white-text);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1.5rem;
    position: relative;
}

/* The cyan underline effect seen in the image */
.support-tag::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 3px;
    background-color: #00d2ff;
}

.support-title {
    color: var(--white-text);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.support-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.btn-support-white {
    background-color: var(--white-text);
    color: var(--primary-blue);
    font-weight: 600;
    padding: 14px 30px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    border: none;
}

.btn-support-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.support-img-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-right: 40px;
}

/* Mobile responsive fixes */
@media (max-width: 991px) {
    .support-content {
        padding: 40px;
        text-align: center;
    }

    .support-tag::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .support-img-wrapper {
        display: none;
    }

    /* Hide image on mobile for cleaner look */
    .support-title {
        font-size: 1.8rem;
    }
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 0;
}

.section_desc {
    color: #94a3b8;
    font-size: 1.1rem;
}

/* --- Custom Accordion Design --- */
.custom-accordion .accordion-item {
    background-color: transparent;
    border: none;
    margin-bottom: 1.2rem;
    position: relative;
}

.custom-accordion .accordion-button {
    background-color: #020617 !important;
    color: var(--white-text) !important;
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 1rem !important;
    padding: 1.25rem 1.5rem;
    font-weight: 600;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Overlap Fix: Default Bootstrap Icon Hide */
.custom-accordion .accordion-button::after {
    display: none !important;
}

/* Active State Border & Glow */
.custom-accordion .accordion-button:not(.collapsed) {
    border-color: var(--primary-blue);
    box-shadow: 0 0 20px rgba(1, 110, 244, 0.1) !important;
    background-color: rgba(1, 110, 244, 0.1) !important;
}

/* Custom SVG Icon Rotation */
.custom-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: #94a3b8;
}

.accordion-button:not(.collapsed) .custom-icon {
    transform: rotate(90deg);
    color: var(--primary-blue);
}

/* Vertical Connector Line */
.accordion-item:has(.show)::before {
    content: "";
    position: absolute;
    left: 32px;
    top: 65px;
    bottom: 20px;
    width: 1px;
    background-color: var(--accent-blue);
    z-index: 0;
}

/* Inner Content Box Styling */
.custom-accordion .accordion-body {
    padding: 0.5rem 1rem 1rem 5.5rem;
    /* Space for vertical line */
}

.inner-content-card {
    background-color: rgba(11, 17, 33, 0.6);
    border: 1px solid rgba(51, 65, 85, 0.4);
    border-radius: 1.2rem;
    padding: 1.5rem;
    margin-left: -20px !important;
}

.ans-text {
    color: #94a3b8;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.category-badge {
    margin-left: auto;
    background-color: #111827;
    color: #4b5563;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: 1px solid rgba(51, 65, 85, 0.4);
}

/* --- CTA SECTION --- */
.cta-section {
    background-color: #070222;
    padding: 50px 0;
    text-align: center;
    color: var(--text-white);
    font-family: var(--font-main);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: -0.5px;
}

.cta-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 45px;
    font-weight: 400;
}

/* Custom CTA Button */
.btn-cta-blue {
    background-color: var(--primary-blue);
    color: var(--white-text);
    padding: 16px 50px;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 600;
    font-size: 1.1rem;
    border: none;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-cta-blue:hover {
    background-color: #0056c1;
    /* Slightly darker on hover */
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 110, 244, 0.3);
    color: var(--white-text);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-title {
        font-size: 2rem;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

.custom-footer {
    background-color: var(--footer-bg);
    color: var(--white-text);
    padding: 80px 0 40px;
}

.footer-logo img {
    height: 32px;
    /* Logo size adjustment */
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 320px;
}

/* Social Icons as Boxes */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.08);
    /* Transparent box */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background-color: var(--brand-blue);
    color: var(--white-text);
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--white-text);
}

/* Bottom Copyright Bar */
.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--white-text);
}

/* Responsive Tweak */
@media (max-width: 768px) {
    .footer-bottom-links {
        margin-top: 10px;
        gap: 15px;
    }
}

/* Bottom Navigation Control */
.bottom-nav {
    background-color: var(--nav-bg);
    border-radius: 12px;
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-arrow {
    color: var(--muted-text);
    cursor: pointer;
    font-size: 1.2rem;
    border: none;
    background: none;
    padding: 0 10px;
}

.nav-arrow:hover {
    color: var(--white-text);
}

.nav-divider {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-counter {
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

/* contact us pages design  */
.assist-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.assist-card {
    background: linear-gradient(180deg,
            rgba(95, 95, 95, 0.1) -91.09%,
            #000000 100%);
    /* Slightly lighter than bg-dark for depth */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    position: relative;
    transition: var(--transition);
}

.assist-card:hover {
    border-color: rgba(1, 110, 244, 0.3);
    transform: translateY(-5px);
}

.assist-icon-top {
    font-size: 2rem;
    color: var(--white-text);
    margin-bottom: 20px;
}

.assist-icon-corner {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 1.8rem;
    color: var(--white-text);
    /* Subdued corner icon */
}

.assist-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-white);
}

.assist-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Specific button for this section */
.btn-assist {
    background-color: var(--primary-blue);
    color: var(--white-text);
    border: none;
    padding: 10px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
    display: inline-block;
}

.btn-assist:hover {
    filter: brightness(1.1);
    color: var(--white-text);
}

.assist-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.assist-list li {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.assist-list i {
    color: var(--primary-blue);
}

.email-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

/* Mobile Tweak */
@media (max-width: 991px) {
    .assist-card {
        margin-bottom: 20px;
    }
}

/* policy  */
.policy-header {
    padding: 80px 0 40px;
}

.policy-card {
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 20px 50px;
    /* max-width: 900px; */
    margin: 0 auto 100px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
}

/* Numerical badge styling */
.section-badge {
    background-color: rgba(1, 110, 244, 0.15);
    color: var(--primary-blue);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 8px;
    margin-right: 15px;
    display: inline-block;
    vertical-align: middle;
}

.policy-section {
    margin-bottom: 50px;
}

.policy-section h2 {
    font-size: 1.4rem;
    font-weight: 700;
    display: inline;
    vertical-align: middle;
    color: var(--text-white);
}

.policy-section p,
.policy-section ul {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 20px;
}

.policy-section li {
    margin-bottom: 12px;
}

/* Policy Footer Section */
.policy-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 50px;
    margin-top: 50px;
}

.btn-privacy {
    background-color: var(--primary-blue);
    border: none;
    padding: 14px 35px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-privacy:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(1, 110, 244, 0.3);
    color: white;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .policy-card {
        padding: 30px 20px;
    }

    .policy-header h1 {
        font-size: 2.5rem;
    }
}

/* --- REFUND POLICY SPECIFIC --- */
.policy-hero {
    padding: 80px 0 60px;
    text-align: center;
}

/* Feature highlight cards at the top */
.highlight-card {
    background-color: var(--card-dark);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    height: 100%;
    transition: var(--transition);
}

.highlight-card i {
    font-size: 1.8rem;
    margin-bottom: 15px;
    display: block;
}

.highlight-card h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* The Blue Callout Box */
.info-callout {
    background: rgba(1, 110, 244, 0.05);
    border-left: 3px solid var(--primary-blue);
    padding: 20px 25px;
    border-radius: 4px 12px 12px 4px;
    /* margin: 30px 0; */
}

.info-callout p {
    color: #72b0ff;
    font-style: italic;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.policy-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-white);
}

.policy-body p,
.policy-body li {
    color: var(--text-muted);
    line-height: 1.7;
}

.policy-body ul,
.policy-body ol {
    padding-left: 20px;
}

.policy-body li {
    margin-bottom: 10px;
}

/* --- ABOUT PAGE STYLES --- */

/* Hero Section Base Reuse - optional tweaks */
.about-hero-section {
    padding: 50px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.ptb-50 {
    padding-top: 50px;
    padding-bottom: 50px;
}

/* Map Section */
.map-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.map-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    z-index: 2;
    position: relative;
    color: var(--white-text);
}

.map-img-container {
    position: relative;
    margin: 0 auto;
    max-width: 1000px;
}

.map-img-container img {
    width: 100%;
    opacity: 0.8;
    mix-blend-mode: screen;
    /* Blend with dark background */
}

/* Who We Are Section */
.who-we-are-section {
    padding: 50px 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #031430 100%);
    position: relative;
}

.who-we-are-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--white-text);
    text-align: center;
}

.who-we-are-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    text-align: left;
    margin-bottom: 20px;
}

/* Our Values Section */
.our-values-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
}

.our-values-section .section-subtitle {
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: block;
    text-align: center;
}

.our-values-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
    color: var(--white-text);
}

.value-card {
    background: var(--white-text);
    border-radius: 20px;
    padding: 40px 30px;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.value-card .icon-wrapper {
    margin-bottom: 25px;
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.value-card h4 {
    color: #000;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.value-card .read-more {
    color: var(--primary-blue);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
}

.value-card .read-more i {
    margin-left: 5px;
    transition: margin-left 0.3s ease;
}

.value-card .read-more:hover i {
    margin-left: 10px;
}

/* News Section */
.news-section {
    padding: 50px 0;
    background-color: var(--bg-dark);
    text-align: center;
}

.news-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--white-text);
}

.logo-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.logo-grid img {
    height: 35px;
    opacity: 0.5;
    filter: invert(1) brightness(2);
    /* Make them white if possible, or adjust based on logos */
    transition: all 0.3s ease;
}

/* Adjust filter if logos are colored/black. If existing logos are colored, this makes them white. If they are already white, it might mess up. 
   Assuming standard colored logos. I'll make them grayscale and brighter. 
*/
.logo-grid img {
    filter: grayscale(100%) brightness(1.5);
}

.logo-grid img:hover {
    opacity: 1;
    filter: none;
}

/* Bottom CTA Section */
.bottom-cta-section {
    padding: 50px 0;
    background: #070222;
    text-align: center;
}

.bottom-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white-text);
}

.bottom-cta-section p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.btn-bottom-cta {
    background-color: var(--primary-blue);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(1, 110, 244, 0.3);
    border: none;
}

.btn-bottom-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(1, 110, 244, 0.4);

    color: white;
}

/* Helper Classes for About Page */
.about-hero-desc {
    max-width: 100%;
    margin: 0 auto;
    color: var(--text-muted) !important;
    width: 75%;
}

.about-map-desc {
    max-width: 100%;
    width: 75%;
    margin: 0 auto;
    line-height: 1.6;
    color: var(--text-muted);
    /* Ensure text-muted variable is used */
}

/* terms-condition  */

/* Glowing Background Header */
.legal-header {
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.legal-header::before {
    content: "";
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(1, 110, 244, 0.1) 0%,
            transparent 70%);
    z-index: -1;
}

/* Sidebar Styling */
.sidebar-sticky {
    position: sticky;
    top: 100px;
}

.content-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.nav-legal .nav-link {
    color: var(--text-muted);
    padding: 10px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: left;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.nav-legal .nav-link:hover {
    color: var(--text-white);
    background: rgba(255, 255, 255, 0.05);
}

.nav-legal .nav-link.active {
    background: rgba(1, 110, 244, 0.1);
    color: var(--primary-blue);
    border-color: rgba(1, 110, 244, 0.2);
}

/* Help Card */
.help-card {
    background: linear-gradient(145deg, #0d0f25, #0a0c1b);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    margin-top: 40px;
}

/* Specially for Legal Cards */
.legal-card {
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 40px;
    margin-bottom: 30px;

    /* YEH LINE FIX KAREGI ISSUE */
    scroll-margin-top: 120px;

    transition: var(--transition);
}

/* Sidebar Active State Fix (Image ke hisaab se match karne ke liye) */
/* Sidebar Active State Fix */
.nav-legal .nav-link.active {
    background: rgba(1, 110, 244, 0.15) !important;
    /* Blue tint */
    color: var(--primary-blue) !important;
    /* Blue text */
    border: 1px solid rgba(1, 110, 244, 0.3) !important;
    font-weight: 700 !important;
}

/* Sections ke liye margin fix */
section[id] {
    scroll-margin-top: 130px;
}

.legal-card:hover {
    border-color: rgba(1, 110, 244, 0.2);
}

.legal-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
}

/* Blue Note Box */
.note-box {
    background: rgba(1, 110, 244, 0.08);
    border-left: 4px solid var(--primary-blue);
    padding: 20px;
    border-radius: 4px 12px 12px 4px;
    font-style: italic;
    font-size: 0.9rem;
    color: #72b0ff;
    margin-top: 30px;
}

/* Footer CTA */
.acceptance-box {
    background: rgba(1, 110, 244, 0.05);
    border: 1px solid rgba(1, 110, 244, 0.2);
    border-radius: 25px;
    padding: 60px;
    text-align: center;
    margin-top: 50px;
}

/* contact css  */
/* --- UTILITIES --- */
.max-width-500 {
    max-width: 500px;
}

/* --- REUSABLE COMPONENTS --- */
.sync-card {
    background-color: #020617;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}


.status-badge {
    background: rgba(0, 255, 136, 0.05);
    border: 1px solid rgba(0, 255, 136, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
}

.frequency-card {
    padding: 25px;
    border-radius: 15px;
    position: relative;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    margin-bottom: 15px;
}

.radar-map {
    width: 100%;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    position: relative;
    background: radial-gradient(circle,
            rgba(1, 110, 244, 0.05) 0%,
            transparent 70%);
}

.radar-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.btn-sync-main {
    background: var(--primary-blue);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-sync-main:hover {
    opacity: 0.9;
    transform: scale(1.02);
    color: white;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.section_heading {
    font-family: var(--font-dm);
    font-weight: 700;
    font-size: 36px;
    line-height: 45px;
}

.section_con {
    font-family: var(--font-dm);
    font-weight: 400;
    font-size: 20px;
    width: 65%;
    margin: auto;
}

.section_con span {
    color: var(--primary-blue);
    font-weight: 700;
}

.section_desc {
    font-family: var(--font-dm);
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    width: 70%;
    margin: auto;
}

.subHeading {
    font-weight: 400;
    font-size: 24px;
    line-height: 24px;
    text-align: center;
}

/* pricing section */

.pricing-section {
    margin-bottom: 60px;
}

.currency-toggle {
    background: #0f172a;
    border-radius: 30px;
    padding: 4px;
    margin: auto;
    width: fit-content;
    border-radius: 50px;
    padding: 6px 7px;
    background: var(--white-text);
    border: 1px solid var(--primary-blue);
}

.currency-toggle button {
    color: var(--primary-blue);
    font-family: var(--font-dm);
    font-weight: 700;
    font-size: 18px;
    line-height: 24px;
    text-align: center;
    text-transform: capitalize;
    border: 0px;
    background: transparent;
    padding: 5px 26px;
    border-radius: 30px;
}

.currency-toggle .active {
    background-color: var(--primary-blue);
    color: var(--white-text);
}

.currency-toggle a {
    padding: 8px 18px;
    color: #94a3b8;
    text-decoration: none;
    border-radius: 20px;
    font-size: 14px;
}



.plan-card {
    background: linear-gradient(180deg, rgba(130, 130, 130, 0.15) 0.01%, rgba(0, 0, 0, 0.15) 100%);
    border-radius: 14px;
    padding: 25px;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-6px);
}

.plan-card.popular {
    background: linear-gradient(180deg, rgba(1, 110, 244, 0.64) 0.01%, rgba(0, 0, 0, 0.64) 100%);

}

.badge-popular {
    font-family: var(--font-dm);
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white-text);
    color: var(--primary-blue);
    font-size: 16px;
    padding: 7px 24px;
    border-radius: 20px;
    font-weight: 700;
    white-space: nowrap;
}

.plan_name {
    font-family: var(--font-dm);
    font-weight: 700;
    font-size: 24px;
    line-height: 34px;
    text-align: center;
    color: var(--white-text);
}

.plan_text {
    font-family: var(--font-dm);
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    color: var(--white-text);
}

.price {
    font-family: var(--font-dm);
    font-weight: 700;
    font-size: 36px;
    line-height: 56px;
    text-align: center;
    color: var(--white-text);
    margin-bottom: 18px;
}

.currency-symbol,
.duration {
    font-weight: 500;
    font-size: 20px;
}

.popular_plan_btn {
    background-color: var(--primary-blue);
    border: 1px solid var(--primary-blue);
    color: #ddecff;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    padding: 10px;
    border-radius: 4px;
}

.plan-btn {
    background-color: #ddecff;
    border: 1px solid #ddecff;
    line-height: 24px;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: var(--primary-blue);
    padding: 10px;
    border-radius: 4px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    position: relative;
    margin-bottom: 12px;
    font-family: var(--font-dm);
    font-weight: 500;
    font-size: 14px;
    line-height: 22.5px;
    color: var(--white-text);
}

.renewed {
    font-family: var(--font-dm);
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    text-align: center;
    color: var(--white-text);
}

.plan_check {
    color: var(--primary-blue);
    margin-right: 8px;
    font-size: 18px;
}

.cloud_platform {
    width: 65%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 36px;
    grid-row-gap: 0px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(1, 110, 244, 0.3) 100%);
    border-radius: 20px;
    box-shadow: 0px 4px 13px 0px #0000001a;
    padding: 28px 35px;

}

.cloud_platform img {
    height: 50px;
    background-color: var(--white-text);
    border-radius: 6px;
}

/* comparison plan */
.comparison {
    padding: 60px 0;
}

.header-row {
    display: grid;
    grid-template-columns: 320px repeat(4, 1fr);
    border-bottom: 1px solid var(--white-text);
}

.label-spacer {
    height: 100%;
}

.header-card {
    border: 1px solid var(--white-text);
    padding: 14px 2px;
    text-align: center;
    font-size: 14px;
}

.header-card small {
    display: block;
    opacity: 0.6;
    font-size: 11px;
}

.header-card.active {
    background: #00224d;
    border-color: #00224d;
}

.table_section-title {
    padding: 20px 0;
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
}

.table-row {
    display: grid;
    grid-template-columns: 320px repeat(4, 1fr);
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.table-row:last-child {
    border-bottom: 0;
}

.label {
    padding: 20px 0px;
    font-weight: 400;
    font-size: 18px;
    line-height: 27px;
}

.cell {
    text-align: center;
    padding: 14px 10px;
    border-left: 1px solid #dedede;
}

.check {
    color: var(--white-text);
    font-size: 18px;
}

.cross {
    color: var(--primary-blue);
    font-size: 18px;
}

/* MOBILE */

@media (max-width: 1440px) {
    .cloud_platform {
        width: 70%;
        grid-column-gap: 22px;
    }
}

@media (max-width: 1199px) {
    .cloud_platform {
        width: 85%;
        grid-column-gap: 24px;
    }
}

@media (max-width: 991px) {
    .cloud_platform {
        width: 100%;
        grid-column-gap: 11px;
        padding: 23px 12px;
    }

    .header-row,
    .table-row {
        min-width: 900px;
    }

    .comparison .container {
        overflow-x: auto;
    }

    .section_desc {
        width: 100%;
    }
}

@media (max-width: 767px) {

    .header-row,
    .table-row {
        min-width: 821px;
    }

    .table_section-title {
        padding: 18px 0;
        font-size: 16px;
    }

    .label {
        padding: 16px 0px;
        font-size: 14px;
    }

    .table-row {
        grid-template-columns: 240px repeat(4, 1fr);
    }

    .header-row {
        grid-template-columns: 240px repeat(4, 1fr);
    }

    .pt-100 {
        padding-top: 50px;
    }

    .mb-80 {
        margin-bottom: 60px;
    }

    .benefit-content h3 {
        font-size: 1.5rem;
    }

    .cloud_platform {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: 2fr;
        grid-column-gap: 36px;
        grid-row-gap: 12px;
        padding: 28px 35px;
    }

    .section_heading {
        font-size: 28px;
        line-height: 32px;
    }

    .section_con {
        font-size: 16px;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .hero-title-main {
        font-size: 2.5rem;
    }

    .benefits-header h2 {
        font-size: 2rem;
    }

    .cta-desc {
        font-size: 1rem;
    }
}

.header-custom.scrolled {
    background-color: #030014;
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

@media(max-width:550px) {
    .cloud_platform {
        grid-template-columns: repeat(2, 1fr);

    }
}


/* Contact Info Cards */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border-color);
}

.contact-item i {
    font-size: 24px;
    color: var(--accent-blue);
    margin-bottom: 10px;
}