/* ==========================================================
   DomainGemsAI — Clean, Minimal, Fixed Header + Hero
   ========================================================== */


/* ----------------------------------------------------------
   REMOVE CLOUDIFY UNUSED ELEMENTS
   ---------------------------------------------------------- */

.demo4::before,
.demo4::after,
.fullscreen::before,
.fullscreen::after,
.cloud1,
.cloud2,
.clouds,
.demo4 .clouds {
    display: none !important;
}

.top-header {
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

.cbp-spmenu {
    z-index: 9999 !important;
}


/* ==========================================================
   GLOBAL FIX — REMOVE HORIZONTAL SCROLL ON MOBILE
========================================================== */

html,
body {
    overflow-x: hidden !important;
    max-width: 100% !important;
}

/* Bootstrap col padding sometimes causes extra width */
.container,
.row {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

/* Hero section image sometimes overflows */
.drops-hero-img img,
.blog-hero-img img,
.how-hero-img img {
    max-width: 100% !important;
    width: 100% !important;
}

/* Navbar responsive fix */
.navbar-header,
.navbar-collapse {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Cards grid fix */
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-7,
.col-sm-6,
.col-xs-12 {
    overflow-x: hidden !important;
}

/* Prevent sections from widening due to effects */
section {
    overflow-x: hidden !important;
}

/* Glow backgrounds can overflow → block it */
.dg-hero-glow,
#drops-hero::before {
    overflow: hidden !important;
    max-width: 100% !important;
}

/* Remove accidental wide shadows */
.shadow {
    overflow: hidden !important;
}

/* Remove Owl / Swiper overflow */
.owl-carousel,
.swiper-container {
    overflow: hidden !important;
}

/* Table responsive fix */
.dg-table-wrapper {
    width: 100% !important;
    overflow-x: auto !important;
}



/* ----------------------------------------------------------
   GLOBAL
   ---------------------------------------------------------- */

body.overlay-gradient {
    background: #04060b;
    color: #d9e6f2;
    font-family: "Inter", "Poppins", sans-serif;
}

.text-blue {
    color: #00e6ff !important;
}

.text-green {
    color: #6bffba !important;
}

.muted {
    color: #9fb3c8 !important;
}

.nomargin {
    margin: 0 !important;
}

.nopadding {
    padding: 0 !important;
}

.mt10 {
    margin-top: 10px !important;
}

.mt15 {
    margin-top: 15px !important;
}

.mt20 {
    margin-top: 20px !important;
}

.mt30 {
    margin-top: 30px !important;
}

.ptb80 {
    padding: 80px 0 !important;
}

.ptb40 {
    padding: 40px 0 !important;
}


/* ----------------------------------------------------------
   HEADER — Perfect Transparent → White Scroll
   ---------------------------------------------------------- */

/* BASE HEADER (Transparent Mode) */
/* ==========================================================
   HEADER LINK HOVER — DUAL MODE
   Transparent Mode  = Neon hover
   White Sticky Mode = Dark hover
   ========================================================== */

/* Remove unwanted border/line under header */
#dg-header,
#dg-header nav,
#dg-header .container,
#dg-header .dg-nav-right,
#dg-header .dg-nav-left {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Cloudify override – remove default nav bottom border */
.navbar,
header,
nav {
    border-bottom: none !important;
    box-shadow: none !important;
}



/* ✨ 1) TRANSPARENT HEADER (initial state) */
header.fixed:not(.navbar-fixed-top) .navbar-nav>li>a {
    color: #d9e6f2 !important;
    transition: color .25s ease;
}

header.fixed:not(.navbar-fixed-top) .navbar-nav>li>a:hover {
    color: #00e6ff !important;
    /* neon blue hover */
    text-shadow: 0 0 6px rgba(0, 230, 255, 0.8);
}

/* Buttons in transparent mode */
header.fixed:not(.navbar-fixed-top) .btn:hover {
    border-color: #00e6ff !important;
    color: #00e6ff !important;
}


/* ✳ 2) WHITE STICKY HEADER (scroll ke baad) */
header.navbar-fixed-top .navbar-nav>li>a {
    color: #111 !important;
    transition: color .25s ease;
}

header.navbar-fixed-top .navbar-nav>li>a:hover {
    color: #111 !important;
    /* black hover */
}

/* Buttons in sticky mode */
header.navbar-fixed-top .btn:hover {
    border-color: #000 !important;
    color: #000 !important;
}

/* Logo brightness transitions */
header.fixed:not(.navbar-fixed-top) .navbar-brand img {
    filter: brightness(100%);
}

/* header.navbar-fixed-top .navbar-brand img {
    filter: none;
} */




header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent !important;
    transition: all .35s ease;
}

/* Navbar size — SMALL + CLEAN */
header.fixed .navbar {
    min-height: 50px !important;
    padding: 6px 0 !important;
    background: transparent !important;
    transition: all .35s ease;
}

/* ============================
   NAVBAR LOGO — RESPONSIVE FIX
============================ */

/* Desktop / Laptop */
.navbar-brand img {
    max-height: 50px !important;   /* BIGGER LOGO */
    width: auto;
    object-fit: contain;
    transition: 0.3s ease;
}

/* When navbar becomes sticky or scrolled (optional ENHANCEMENT) */
.navbar.scrolled .navbar-brand img {
    max-height: 65px !important; 
}

/* Tablets */
@media (max-width: 992px) {
    .navbar-brand img {
        max-height: 70px !important;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 50px !important;
        width: 150px; /* smaller for mobile */
    }
}


/* MOBILE MENU — Modern Slide-In Drawer */
@media (max-width: 768px) {

    /* Hide desktop nav */
    #main-nav {
        position: fixed;
        top: 0;
        right: -260px;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transition: right 0.35s ease;
        padding-top: 70px;
        z-index: 99999;
    }

    /* Slide open */
    #main-nav.menu-open {
        right: 0;
    }

    /* Menu items */
    #main-nav ul.nav>li {
        display: block;
        margin: 15px 0;
        text-align: left;
        padding-left: 25px;
    }

    #main-nav ul.nav>li>a {
        color: #111 !important;
        font-size: 16px;
        padding: 10px 0;
        display: block;
    }

    /* Background blur overlay */
    #dg-overlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(4px);
        background: rgba(0, 0, 0, 0.35);
        z-index: 9990;
        transition: 0.3s ease;
    }

    #dg-overlay.active {
        display: block;
    }
}

/* ===========================
   FULLSCREEN MOBILE MENU
   =========================== */
@media (max-width: 768px) {

    .dg-full-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 99999;
        transition: 0.4s ease;
        padding-top: 80px;
        display: flex;
        flex-direction: column;
    }

    .dg-full-menu.menu-open {
        right: 0;
    }

    /* Close Button */
    .dg-menu-header {
        position: absolute;
        top: 15px;
        right: 20px;
    }

    .dg-menu-close {
        font-size: 35px;
        font-weight: bold;
        cursor: pointer;
        color: #00e6ff;
        transition: 0.3s;
    }

    .dg-menu-close:hover {
        color: #0099cc;
        text-shadow: 0 0 10px rgba(0, 230, 255, 0.6);
    }

    /* Menu links */
    .dg-full-menu .nav-links {
        list-style: none;
        margin: 50px 0 0 25px;
        padding: 0;
    }

    .dg-full-menu .nav-links li {
        margin: 18px 0;
    }

    .dg-full-menu .nav-links li a {
        font-size: 22px;
        color: #111;
        text-decoration: none;
        transition: 0.3s;
    }

    .dg-full-menu .nav-links li a:hover {
        color: #00e6ff;
        text-shadow: 0 0 8px rgba(0, 230, 255, 0.8);
    }

    /* Overlay */
    #dg-overlay {
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        backdrop-filter: blur(6px);
        background: rgba(0, 0, 0, 0.45);
        z-index: 9990;
        transition: 0.3s ease;
    }

    #dg-overlay.active {
        display: block;
    }
}

/* ================================
   NEW FULLSCREEN MOBILE MENU (B)
   ================================ */
@media (max-width: 768px) {

    /* Hide the old menu completely on mobile */
    #main-nav {
        display: none !important;
    }

    /* FULLSCREEN SLIDE MENU */
    #dg-fullscreen-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 99999;
        transition: 0.45s ease;
        padding-top: 90px;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    #dg-fullscreen-menu.menu-open {
        right: 0;
    }

    /* Close Button */
    .dg-menu-header {
        position: absolute;
        top: 20px;
        right: 24px;
    }

    .dg-menu-close {
        font-size: 40px;
        font-weight: 700;
        cursor: pointer;
        color: #00e6ff;
        transition: 0.3s ease;
    }

    .dg-menu-close:hover {
        color: #0099cc;
        text-shadow: 0 0 12px rgba(0, 230, 255, 0.8);
        transform: scale(1.15);
    }

    /* MENU LINKS */
    .dg-mobile-links {
        list-style: none;
        padding: 0;
        margin: 20px 0 0 30px;
    }

    .dg-mobile-links li {
        margin: 20px 0;
    }

    .dg-mobile-links li a {
        font-size: 22px;
        color: #111;
        font-weight: 500;
        text-decoration: none;
        transition: 0.3s ease;
    }

    .dg-mobile-links li a:hover {
        color: #00e6ff;
        text-shadow: 0 0 10px rgba(0, 230, 255, 0.7);
        padding-left: 4px;
    }

    /* Overlay blur */
    #dg-overlay {
        display: none;
        position: fixed;
        inset: 0;
        backdrop-filter: none !important;
        background: rgba(0, 0, 0, 0.35);
        z-index: 9990;
        transition: 0.35s ease;
    }

    #dg-overlay.active {
        display: block;
    }
}


.dg-menu-header {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 999999;
}

/* Logo inside mobile menu */
.dg-menu-logo {
    height: 50px;
    width: 150px;
}



/* Close icon */
.dg-menu-close {
    font-size: 34px;
    font-weight: bold;
    cursor: pointer;
    color: #00e6ff;
    transition: .3s ease;
}

.dg-menu-close:hover {
    color: #00bcd4;
}

/* DESKTOP VIEW — Restore original navbar */
@media (min-width: 769px) {

    /* Desktop nav should ALWAYS be visible */
    #main-nav {
        position: static !important;
        width: auto !important;
        height: auto !important;
        right: auto !important;
        top: auto !important;
        background: transparent !important;
        display: block !important;
        box-shadow: none !important;
    }

    /* Hide fullscreen mobile menu completely */
    #dg-fullscreen-menu,
    #dg-overlay {
        display: none !important;
    }

    /* Hide hamburger toggle button */
    #dg-menu-toggle {
        display: none !important;
    }
}

/* MOBILE VIEW — Enable fullscreen menu + hide desktop nav */
@media (max-width: 768px) {

    /* Hide desktop nav */
    #main-nav {
        display: none !important;
    }

    /* Show hamburger button */
    #dg-menu-toggle {
        display: block !important;
        z-index: 999999;
    }

    /* Fullscreen mobile menu */
    #dg-fullscreen-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        z-index: 999999;
        transition: 0.4s ease;
        padding-top: 90px;
        display: block !important;
    }

    #dg-fullscreen-menu.menu-open {
        right: 0;
    }
}


/* ----------------------------------------------------------
   WHITE STICKY HEADER STATE (ON SCROLL)
   ---------------------------------------------------------- */

/* STICKY HEADER — White header → Black hamburger lines */
header.navbar-fixed-top .navbar-toggle .icon-bar {
    background-color: #000000 !important;
}

header.navbar-fixed-top .navbar-toggle:hover .icon-bar {
    background-color: #111 !important;
}


header.navbar-fixed-top {
    background: #ffffff !important;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.10);
}

/* Nav link color on white */
header.navbar-fixed-top .navbar-nav>li>a {
    color: #111 !important;
}

/* Buttons look darker on white */
header.navbar-fixed-top .btn {
    color: #111 !important;
    border-color: #111 !important;
}

/* Logo darken on white bg */
/* header.navbar-fixed-top .navbar-brand img {
    filter: brightness(100%);
    margin-top: -20px;
} */

header.navbar-fixed-top .navbar-brand img {
    filter: brightness(100%) !important; /* Keeps original color */
    max-height: 50px !important;         /* Shrinks it to fit the navbar */
    padding-top: 0px;                    /* Centers it vertically */
}

.cbp-spmenu-open {
    display: block !important;
}



#main-nav.cbp-spmenu-open {
    right: 0;
}


/* ----------------------------------------------------------
   HERO — No Extra Space
   ---------------------------------------------------------- */

/* HERO TOP SPACING — add soft gap below header */
#home.demo4 {
    padding-top: 90px !important;
    /* 58px header + ~20px gap */
}

/* Fullscreen area spacing */
#home .fullscreen {
    min-height: calc(100vh - 60px) !important;
    padding-top: 100px !important;
}

/* Remove Cloudify default offset */
.demo-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
}

/* Neon glow */
.dg-hero-glow {
    position: absolute;
    left: 50%;
    top: 70%;
    transform: translate(-50%, -50%);
    width: 420px;
    height: 420px;
    background: radial-gradient(circle,
            rgba(0, 255, 255, 0.18) 0%,
            rgba(0, 255, 255, 0.03) 70%,
            transparent 100%);
    filter: blur(45px);
    pointer-events: none;
}


/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */

.btn.btn-blue {
    border-color: #00e6ff !important;
    color: #00e6ff !important;
}

.btn.btn-green {
    border-color: #6bffba !important;
    color: #6bffba !important;
}

.btn-border-rev {
    background: transparent !important;
}

.btn:hover {
    opacity: 0.8;
}


/* ----------------------------------------------------------
   CARDS / SERVICES / PRICING
   ---------------------------------------------------------- */

.service.boxed,
.pricing-table,
.shadow,
.card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all .3s ease;
}

.service.boxed:hover,
.pricing-table:hover,
.shadow:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 18px rgba(0, 255, 255, 0.15);
}


/* ----------------------------------------------------------
   SPECIFIC SECTIONS
   ---------------------------------------------------------- */

#how .service {
    background: rgba(255, 255, 255, 0.02);
}

#how .featured {
    border-top: 3px solid #00e6ff;
}

#sample-top10 .shadow {
    background: rgba(255, 255, 255, 0.02) !important;
}

#audit-plans .pricing-table {
    background: rgba(255, 255, 255, 0.02);
}

#audit-plans .featured {
    border-top: 3px solid #00e6ff !important;
}

#testimonials {
    background: #06080f;
}

.testimonial {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
    padding: 20px;
}


/* ----------------------------------------------------------
   WAITLIST / FORMS
   ---------------------------------------------------------- */

/* WAITLIST — Premium Input Styling */
.dg-input {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.05);
    color: #dff9ff;
    transition: all .3s ease;
}

.dg-input:focus {
    border-color: #00e6ff;
    background: rgba(0, 230, 255, 0.10);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 230, 255, 0.20);
}

.dg-btn-full {
    width: 100%;
    height: 48px;
    line-height: 34px;
    border-radius: 8px;
    font-size: 15px;
}

#waitlist .mb10 {
    margin-bottom: 10px;
}

#waitlist .mb15 {
    margin-bottom: 15px;
}

#waitlist .mb30 {
    margin-bottom: 30px;
}


/* ==========================================================
   UNIFORM CARD HEIGHTS — For How-It-Works & Sample Top-10
   ========================================================== */

/* Make all cards stretch uniformly */
#how .row .service,
#sample-top10 .row .shadow {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Force column to match tallest sibling */
#how .col-md-2,
#how .col-md-4,
#sample-top10 .col-md-3 {
    display: flex;
}

/* Actual equalizer wrapper */
#how .service,
#sample-top10 .shadow {
    width: 100%;
    min-height: 170px;
    /* adjust if you want taller */
    padding: 20px !important;
}

/* Title spacing fix */
#how .service h5,
#sample-top10 .shadow h4 {
    margin-bottom: 10px !important;
}

/* Button alignment bottom */
#sample-top10 .shadow .mt10 {
    margin-top: auto !important;
}


/* ===========================================
   HORIZONTAL NEON TIMELINE (ENGINE SECTION)
=========================================== */

.dg-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 60px;
    padding-top: 30px;
}

/* Connecting Line */
.dg-timeline::before {
    content: "";
    position: absolute;
    top: 18px;
    /* Lifts the line upward */
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            rgba(0, 230, 255, 0.3),
            rgba(0, 230, 255, 0.8),
            rgba(0, 230, 255, 0.3));
    z-index: 0;
}

/* Every Step */
.dg-step {
    width: 20%;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Circle */
.dg-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 230, 255, 0.12);
    border: 2px solid #00e6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 600;
    color: #00e6ff;
    margin-bottom: 12px;
    box-shadow: 0 0 12px rgba(0, 230, 255, 0.55);
    transform: translateY(-22px);
    /* Lifts circle upward */
    transition: all 0.25s ease;
}

/* Circle Hover */
.dg-circle:hover {
    background: #00e6ff;
    color: #04060b;
    box-shadow: 0 0 18px rgba(0, 230, 255, 0.9);
    transform: translateY(-26px) scale(1.05);
}

/* Featured circle (Stage 4) */
.dg-circle.featured {
    border-color: #66ffb3;
    color: #66ffb3;
    box-shadow: 0 0 16px rgba(102, 255, 179, 0.55);
}

/* Hover for featured */
.dg-circle.featured:hover {
    background: #66ffb3;
    color: #04060b;
    box-shadow: 0 0 20px rgba(102, 255, 179, 0.9);
}

/* ENGINE PIPELINE — Modern Circle Layout */
.engine-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    gap: 30px;
    margin-top: 40px;
}

.engine-item {
    width: 18%;
    text-align: center;
}

.engine-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 2px solid #00e6ff;
    color: #00e6ff;
    font-size: 24px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 12px auto;
    background: rgba(0, 230, 255, 0.05);
    box-shadow: 0 0 12px rgba(0, 230, 255, 0.4);
    transition: 0.3s ease;
}

/* Hover effect */
.engine-circle:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 18px rgba(0, 230, 255, 0.7);
}

/* Stage 4 special glow */
.engine-circle.glow {
    box-shadow: 0 0 20px rgba(0, 255, 180, 0.7);
}

/* Text size fix */
.engine-item p.small {
    font-size: 13px;
    line-height: 1.4;
}

/* Mobile Fix */
@media(max-width: 992px) {
    .engine-wrapper {
        flex-wrap: wrap;
        justify-content: center;
    }

    .engine-item {
        width: 46%;
        margin-bottom: 30px;
    }
}

@media(max-width: 600px) {
    .engine-item {
        width: 100%;
    }

    .engine-circle {
        width: 58px;
        height: 58px;
    }
}


/* Mobile (Stacks vertically) */
@media(max-width: 992px) {
    .dg-timeline {
        flex-direction: column;
        padding-left: 10px;
    }

    .dg-timeline::before {
        display: none;
    }

    .dg-step {
        width: 100%;
        text-align: left;
        margin-bottom: 30px;
    }

    .dg-circle {
        margin-left: 0;
        transform: translateY(0);
    }
}




/* ==========================================================
   FOUNDER SECTION
   ========================================================== */

#founder h2 {
    font-weight: 600;
}

#founder ul li {
    list-style: none;
    margin-left: 0;
}

#founder ul li::before {
    content: "• ";
    color: #00e6ff;
    margin-right: 6px;
}


/* ==========================================================
   HOW IT WORKS — Hero Section
========================================================== */

#how-hero {
    background: linear-gradient(180deg,
            rgba(0, 230, 255, 0.06) 0%,
            rgba(0, 230, 255, 0.02) 40%,
            transparent 100%);
    text-align: center;
    padding-top: 110px !important;
    padding-bottom: 80px !important;
    position: relative;
    overflow: hidden;
}

/* Glowing background grid */
#how-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/grid-light.png");
    opacity: 0.08;
    pointer-events: none;
}

/* Main title */
#how-hero .dg-title-xl {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.25;
    color: #e6f9ff;
    text-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
}

/* Paragraph */
#how-hero p {
    max-width: 760px;
    margin: 20px auto 0 auto;
    font-size: 17px;
    line-height: 1.65;
}

/* CTA Buttons */
#how-hero .dg-btn {
    padding: 12px 26px;
    font-size: 15px;
    font-weight: 600;
}

/* Blue button */
#how-hero .dg-btn-blue {
    background: #00e6ff;
    color: #04060b;
    border: none;
    box-shadow: 0 0 14px rgba(0, 230, 255, 0.55);
}

#how-hero .dg-btn-blue:hover {
    background: #00f5ff;
    box-shadow: 0 0 20px rgba(0, 230, 255, 0.85);
}

/* Outline button */
#how-hero .dg-btn-outline {
    border: 1px solid #00e6ff;
    color: #00e6ff;
    background: transparent;
}

#how-hero .dg-btn-outline:hover {
    background: rgba(0, 230, 255, 0.12);
    box-shadow: 0 0 16px rgba(0, 230, 255, 0.35);
}

/* Funnel image */
.how-hero-img img {
    width: 68%;
    max-width: 620px;
    opacity: 0.95;
    filter: drop-shadow(0 0 12px rgba(0, 230, 255, 0.35));
    transition: 0.3s;
}

.how-hero-img img:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 0 18px rgba(0, 230, 255, 0.55));
}

/* HERO IMAGE — add more spacing below buttons */
#how-hero .how-hero-img {
    margin-top: 60px !important;
    /* Previously 40px — now more breathable */
}

/* Optional: Smooth fade-in animation (looks premium) */
#how-hero .how-hero-img img {
    width: 100%;
    max-width: 760px;
    opacity: 0;
    transform: translateY(20px);
    animation: heroImgFade 1s ease-out forwards;
}

@keyframes heroImgFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* ==========================================================
   FUNNEL / PIPELINE — Horizontal Cards
========================================================== */

.dg-funnel-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: nowrap;
}

.dg-funnel-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.04);
    padding: 22px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: left;
    transition: 0.3s ease;
    min-height: 220px;
}

.dg-funnel-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 20px rgba(0, 230, 255, 0.18);
}

.dg-funnel-card.featured {
    border-top: 3px solid #00e6ff;
    background: rgba(255, 255, 255, 0.06);
}

.dg-funnel-card h4 {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}

@media(max-width: 992px) {
    .dg-funnel-row {
        flex-wrap: wrap;
    }

    .dg-funnel-card {
        flex: 0 0 48%;
        min-height: auto;
    }
}

@media(max-width: 600px) {
    .dg-funnel-card {
        flex: 0 0 100%;
    }
}


/* ==========================================================
   PLAN UNLOCK TABLE (SaaS Pricing Table Style)
========================================================== */

.dg-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: 8px;
    margin-top: 40px;
}

.dg-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    overflow: hidden;
}

.dg-table thead {
    background: rgba(255, 255, 255, 0.06);
}

.dg-table th {
    padding: 16px;
    color: #00e6ff;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
}

.dg-table td {
    padding: 14px;
    text-align: center;
    color: #d9e6f2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 14px;
}

.dg-table tr td:first-child {
    text-align: left;
    font-weight: 500;
    color: #9fb3c8;
    width: 260px;
}

.dg-table tbody tr:hover {
    background: rgba(0, 230, 255, 0.04);
}

@media(max-width: 768px) {

    .dg-table th,
    .dg-table td {
        font-size: 13px;
        padding: 10px;
    }
}


/* ==========================================================
   WHY THIS MATTERS SECTION
========================================================== */

#why-matters {
    text-align: center;
}

.dg-list {
    list-style: none;
    padding: 0;
}

.dg-list li {
    font-size: 17px;
    margin-bottom: 10px;
    color: #d9e6f2;
}

.dg-list li::before {
    content: "✔ ";
    color: #00e6ff;
    margin-right: 6px;
}


/* ==========================================================
   CTA BANNER — Premium Neon Gradient
   ========================================================== */

#cta-banner {
    background: linear-gradient(135deg,
            rgba(0, 230, 255, 0.18),
            rgba(0, 255, 200, 0.12),
            rgba(0, 230, 255, 0.08));
    padding-top: 80px !important;
    padding-bottom: 80px !important;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Glow orb */
#cta-banner::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(0, 230, 255, 0.28) 0%,
            rgba(0, 230, 255, 0.08) 60%,
            transparent 100%);
    filter: blur(70px);
    z-index: 0;
}

/* CTA title */
#cta-banner .dg-title {
    font-size: 34px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

/* Subtitle */
#cta-banner p {
    font-size: 16px;
    margin-top: 10px;
    position: relative;
    z-index: 2;
}

/* CTA Buttons */
#cta-banner .dg-btn {
    padding: 12px 30px;
    font-weight: 600;
    font-size: 15px;
    position: relative;
    z-index: 2;
}

/* Primary button */
#cta-banner .dg-btn-blue {
    background: #00e6ff;
    color: #04060b;
    border: none;
    box-shadow: 0 0 14px rgba(0, 230, 255, 0.6);
}

#cta-banner .dg-btn-blue:hover {
    background: #00f8ff;
    box-shadow: 0 0 22px rgba(0, 230, 255, 0.85);
}

/* Outline button */
#cta-banner .dg-btn-outline {
    border: 1px solid #00e6ff;
    color: #00e6ff;
    background: transparent;
}

#cta-banner .dg-btn-outline:hover {
    background: rgba(0, 230, 255, 0.12);
    box-shadow: 0 0 16px rgba(0, 230, 255, 0.35);
}




/* ==========================================================
   PRICING PAGE STYLES
========================================================== */

/* HERO */
#pricing-hero {
    text-align: center;
}

#pricing-hero .dg-title-xl {
    font-size: 48px;
    font-weight: 700;
}

/* =====================================================
   FIX — TABLE COLUMN ALIGNMENT (PRICING TABLE)
   ===================================================== */

.dg-table {
    width: 100%;
    table-layout: fixed;
    /* forces equal column width */
    border-collapse: collapse;
    text-align: center;
    /* centers all body cells */
}

/* Heading alignment */
.dg-table thead th {
    text-align: center;
    font-size: 18px;
    padding: 18px 10px;
}

/* Body cells */
.dg-table tbody td {
    text-align: center !important;
    padding: 16px 12px;
    vertical-align: middle;
}

/* Optional: Improve row striping (better visibility) */
.dg-table tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.03);
}

/* Pricing Box Layout */
.pricing-box {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 22px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

/* On Hover */
.pricing-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 22px rgba(0, 230, 255, 0.18);
}

/* Highlighted Plan (Mini) */
.pricing-box.highlight {
    border: 1px solid #00e6ff;
    box-shadow: 0 0 22px rgba(0, 230, 255, 0.25);
    transform: translateY(-10px);
}

/* Titles */
.pricing-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: #00e6ff;
    margin-bottom: 14px;
}

/* Price */
.price {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.price span {
    font-size: 14px;
    color: #9fb3c8;
}

/* Feature List */
.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    min-height: 240px;
    /* ⭐ FIXED HEIGHT FOR ALL PLANS */
}

.pricing-list li {
    margin-bottom: 10px;
    font-size: 14px;
    color: #d9e6f2;
}

/* Off/Disabled Features */
.pricing-list .off {
    opacity: 0.45;
    text-decoration: line-through;
}

/* Buttons inside pricing cards */
.full-btn {
    width: 100%;
    padding: 12px 0;
    margin-top: auto;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
}


/* ==========================================================
   RESPONSIVE FIXES
   ========================================================== */

@media (max-width: 992px) {
    .pricing-box {
        margin-bottom: 30px;
        height: auto;
        /* allow natural stacking */
    }

    .pricing-list {
        min-height: auto;
    }
}

@media (max-width: 600px) {
    .pricing-box h3 {
        font-size: 18px;
    }

    .price {
        font-size: 28px;
    }
}

/* AUDIT BOXES */
.audit-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.audit-box h3 {
    color: #00e6ff;
    margin-bottom: 10px;
}

.audit-box ul {
    margin-top: 15px;
}

.audit-box ul li {
    margin-bottom: 6px;
    color: #d9e6f2;
}

/* ============================
      FAQ SECTION STYLING
============================= */

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

.dg-faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 230, 255, 0.15);
    border-radius: 10px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.dg-faq-item:hover {
    border-color: #00e6ff;
    box-shadow: 0 0 12px rgba(0, 230, 255, 0.25);
}

.dg-faq-question {
    width: 100%;
    padding: 16px 22px;
    text-align: left;
    background: transparent;
    color: #e9f7ff;
    font-size: 18px;
    font-weight: 600;
    border: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    outline: none;
    transition: 0.25s;
}

.dg-faq-question:hover {
    color: #00e6ff;
}

.faq-icon {
    font-size: 22px;
    font-weight: bold;
    color: #00e6ff;
    transition: transform 0.25s ease;
}

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

.dg-faq-answer {
    padding: 0 22px 0 22px;
    color: #9fb3c8;
    font-size: 15px;
    line-height: 1.6;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.35s ease;
}

.dg-faq-item.active .dg-faq-answer {
    padding: 0 22px 16px 22px;
    max-height: 300px;
    opacity: 1;
}


/* =====================================================
   CTA SECTION — Premium Neon SaaS Design
===================================================== */

.dg-cta-section {
    background: linear-gradient(180deg,
            rgba(0, 230, 255, 0.06) 0%,
            rgba(0, 230, 255, 0.01) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 90px 0 !important;
    position: relative;
    overflow: hidden;
}

/* Soft Glow Effects */
.dg-cta-section::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(0, 230, 255, 0.18) 0%,
            transparent 70%);
    filter: blur(60px);
    opacity: 0.6;
    pointer-events: none;
}

/* CTA Buttons Layout */
.dg-cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Large CTA Buttons */
.cta-btn-lg {
    padding: 14px 32px !important;
    font-size: 17px !important;
    border-radius: 8px !important;
    font-weight: 600;
    transition: 0.3s ease !important;
}

/* Hover Glow */
.cta-btn-lg:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 18px rgba(0, 230, 255, 0.4);
}



/* ==========================================================
   BLOG PAGE
   ========================================================== */

/* BLOG HERO FIX */
.blog-hero-fix {
    padding-top: 120px !important;
    /* earlier was 80 */
    padding-bottom: 100px !important;
}

.blog-hero-img img {
    max-width: 780px;
    width: 100%;
    margin-top: 40px;
    opacity: 0.95;
}

/* Optional: soft glow behind hero image for premium feel */
.blog-hero-img::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    left: 50%;
    top: 55%;
    transform: translateX(-50%);
    background: radial-gradient(circle, rgba(0, 230, 255, 0.15), transparent 70%);
    filter: blur(55px);
    z-index: -1;
}


/* ---------- CATEGORY FILTERS ---------- */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.blog-tag {
    padding: 8px 18px;
    border: 1px solid rgba(0, 230, 255, 0.4);
    background: rgba(0, 230, 255, 0.05);
    color: #00e6ff;
    border-radius: 25px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.3s;
}

.blog-tag:hover,
.blog-tag.active {
    background: #00e6ff;
    color: #04060b;
    box-shadow: 0 0 15px rgba(0, 230, 255, 0.7);
}

/* ======================================================
   BLOG PAGE — ALIGN LEFT + PERFECT EQUAL CARD HEIGHT
====================================================== */

/* Left alignment for cards */
#blog-posts .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start !important;
}

/* COLUMN SPACING FIX */
#blog-posts .col-md-4,
#blog-posts .col-sm-6 {
    padding: 10px;
}

/* Blog Card — identical height for all */
.blog-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 18px;

    height: 380px;
    /* 🔥 FIXED & CONSISTENT HEIGHT */
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    transition: 0.3s ease;
}

/* Hover effect */
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 22px rgba(0, 230, 255, 0.25);
}

/* Thumbnail — fixed size */
.blog-thumb {
    width: 100%;
    height: 150px;
    /* 🔥 Fixed thumbnail height */
    border-radius: 10px;
    background: linear-gradient(145deg, #00353f, #002429);
    margin-bottom: 15px;
}

/* Title */
.blog-title {
    font-size: 18px;
    font-weight: 600;
    color: #eaffff;
    margin-bottom: 10px;
    min-height: 48px;
    /* 🔥 Ensures titles align */
}

/* Read More */
.blog-read {
    margin-top: 12px;
    color: #00e6ff;
    font-weight: 500;
    text-decoration: none;
}

.blog-read:hover {
    text-decoration: underline;
}

/* Mobile — Full width cards */
@media(max-width: 768px) {

    #blog-posts .col-md-4,
    #blog-posts .col-sm-6 {
        width: 100% !important;
    }

    .blog-card {
        height: auto;
        /* Auto height for mobile */
    }
}



/* ---------- SEARCH ---------- */
.blog-search-input {
    max-width: 420px;
    margin: auto;
}


/* ================================
   NEWSLETTER SUBSCRIBE BUTTON
================================ */

.newsletter-box {
    display: flex;
    gap: 12px;
    justify-content: center;
    align-items: center;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-btn {
    padding: 12px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border: 1px solid #00e6ff !important;
    color: #00e6ff !important;
    background: rgba(0, 230, 255, 0.05);
    transition: 0.3s ease;
    box-shadow: 0 0 8px rgba(0, 230, 255, 0.25);
}

/* Hover Glow Effect */
.newsletter-btn:hover {
    background: #00e6ff !important;
    color: #04060b !important;
    box-shadow: 0 0 18px rgba(0, 230, 255, 0.85);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .newsletter-box {
        flex-direction: column;
        width: 100%;
    }

    .newsletter-btn {
        width: 100%;
    }
}



/* ======================================================
   BLOG CTA BANNER — Neon Premium Style
====================================================== */

#blog-cta {
    background: linear-gradient(180deg, rgba(0, 20, 30, 0.6), rgba(0, 8, 14, 0.9));
    border-top: 1px solid rgba(0, 255, 255, 0.06);
    border-bottom: 1px solid rgba(0, 255, 255, 0.06);
    padding: 80px 0 !important;
}

#blog-cta .dg-title {
    font-size: 32px;
    font-weight: 700;
    color: #eaffff;
    text-shadow: 0 0 10px rgba(0, 230, 255, 0.3);
}

#blog-cta p {
    font-size: 16px;
    color: #9fb3c8;
}

/* CTA Button Group */
.cta-btn-group {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

/* Base CTA Button */
.cta-btn {
    padding: 12px 26px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: 0.25s ease;
    display: inline-block;
}

/* Primary Button — Neon Blue */
.cta-primary {
    background: #00e6ff;
    color: #04060b;
    box-shadow: 0 0 14px rgba(0, 230, 255, 0.5);
}

.cta-primary:hover {
    box-shadow: 0 0 22px rgba(0, 230, 255, 0.9);
    transform: translateY(-3px);
}

/* Outline Button */
.cta-outline {
    border: 1px solid #00e6ff;
    color: #00e6ff;
}

.cta-outline:hover {
    background: rgba(0, 230, 255, 0.15);
    box-shadow: 0 0 14px rgba(0, 230, 255, 0.4);
    transform: translateY(-3px);
}

/* Mobile Optimization */
@media(max-width: 600px) {
    #blog-cta .dg-title {
        font-size: 26px;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .cta-btn-group {
        gap: 12px;
    }
}



/* ==========================================================
   LEGAL PAGE — STYLE 4 (Premium Minimal Neon Editorial Look)
   ========================================================== */

/* ---------- PAGE HERO ---------- */
.legal-hero {
    padding-top: 110px;
    padding-bottom: 80px;
}

.legal-hero h1 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: #eaffff;
    letter-spacing: 0.5px;
}

.legal-hero p {
    max-width: 680px;
    margin: 15px auto 0;
    text-align: center;
    color: #9fb3c8;
    font-size: 17px;
}

/* ---------- PAGE WRAPPER ---------- */
.legal-page {
    padding-top: 50px;
    padding-bottom: 80px;
}

/* Clean centered layout with right-shift content */
.legal-card {
    max-width: 880px;
    margin: 0 auto;
    padding-left: 40px;
    /* SHIFT content slightly to the right */
}

/* ---------- Date Styling ---------- */
.legal-date {
    color: #7fa9ba;
    font-size: 14px;
    margin-bottom: 25px;
    display: block;
}

/* ---------- MAIN HEADINGS ---------- */
.legal-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 10px;
    color: #eaffff;
    position: relative;
    padding-left: 15px;
}

/* Blue neon accent line left of headings */
.legal-card h3::before {
    content: "";
    width: 4px;
    height: 20px;
    background: linear-gradient(180deg, #00e6ff, #0088aa);
    position: absolute;
    left: 0;
    top: 5px;
    border-radius: 4px;
}

/* ---------- PARAGRAPHS ---------- */
.legal-card p {
    font-size: 16px;
    color: #b8c7d9;
    line-height: 1.7;
    margin-bottom: 15px;
    padding-left: 15px;
    /* align paragraphs under title shift */
}

/* ---------- LISTS ---------- */
.legal-card ul {
    margin-left: 15px;
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-card ul li {
    color: #b8c7d9;
    margin-bottom: 8px;
    font-size: 16px;
    position: relative;
}

/* Neon bullet */
.legal-card ul li::before {
    content: "•";
    color: #00e6ff;
    font-size: 20px;
    position: absolute;
    left: -20px;
    top: -1px;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 768px) {
    .legal-card {
        padding-left: 15px;
        /* smaller shift on mobile */
    }

    .legal-card h3 {
        font-size: 22px;
    }

    .legal-hero h1 {
        font-size: 32px;
    }
}


/* =====================================================
   PRIVACY POLICY PAGE — Modern UI (STYLE 4)
===================================================== */

/* Hero Section */
.legal-hero {
    text-align: center;
    padding: 90px 0;
}

.legal-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #eaffff;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.legal-hero p {
    font-size: 16px;
    color: #b7dfe6;
    max-width: 700px;
    margin: 0 auto;
}

/* Main Page Wrapper */
.legal-page {
    padding: 60px 0;
}

/* Content Wrapper (No Card, Just Clean Layout) */
.legal-card {
    width: 100%;
    max-width: 830px;
    margin: 0 auto;
    padding-left: 25px;
    /* Slight right shift */
    border-left: 2px solid rgba(0, 255, 255, 0.25);
}

/* Last Updated */
.legal-date {
    color: #9bc9d1;
    margin-bottom: 25px;
    font-size: 14px;
}

/* Headings */
.legal-card h3 {
    color: #ffffff;
    margin-top: 30px;
    margin-bottom: 8px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    padding-left: 10px;
}

.legal-card h3::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #00eaff;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: -12px;
    top: 12px;
}

/* Body Text */
.legal-card p,
.legal-card ul li {
    font-size: 16px;
    color: #cfeaed;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* UL Styling */
.legal-card ul {
    margin-top: 8px;
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-card ul li {
    list-style-type: "➤ ";
    padding-left: 6px;
    color: #d7f7ff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-card {
        padding-left: 15px;
        border-left-width: 2px;
    }

    .legal-card h3 {
        font-size: 20px;
    }

    .legal-hero h1 {
        font-size: 32px;
    }
}


/* ============================================================
   LEGAL PAGE — GLOBAL STYLE (Same for all legal pages)
=============================================================== */

/* Hero Section */
.legal-hero {
    padding-top: 120px;
    padding-bottom: 70px;
    text-align: center;
}

.legal-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #eaffff;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.legal-hero p {
    color: #b8dfe6;
    font-size: 16px;
}

/* Main Legal Content Area */
.legal-page {
    padding-top: 60px;
    padding-bottom: 80px;
}

.legal-card {
    max-width: 850px;
    margin: 0 auto;
    padding: 0 10px;
}

/* Last Updated Line */
.legal-date {
    color: #77f2ff;
    font-size: 15px;
    margin-bottom: 30px;
}

/* Headings */
.legal-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: #eaffff;
    margin-top: 35px;
    margin-bottom: 10px;
}

/* Paragraphs */
.legal-card p {
    color: #c8e7ed;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 12px;
}

/* Lists */
.legal-card ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-card ul li {
    color: #c8e7ed;
    margin-bottom: 6px;
    font-size: 16px;
}

/* Desktop Alignment Improvement – Push Text Slightly Right */
.legal-card {
    padding-left: 20px;
}

/* Mobile Responsive Fixes */
@media(max-width: 768px) {

    .legal-hero h1 {
        font-size: 32px;
    }

    .legal-card {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .legal-card h3 {
        font-size: 20px;
    }

    .legal-card p,
    .legal-card ul li {
        font-size: 15px;
    }
}


/* =======================================================
   LEGAL PAGES — Premium Modern UI (Unified Styling)
   ======================================================= */

/* ---------- HERO SECTION ---------- */
.legal-hero {
    background: linear-gradient(145deg, rgba(0, 30, 40, 0.7), rgba(0, 18, 26, 0.85));
    padding: 90px 0 70px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
}

.legal-hero h1 {
    font-size: 46px;
    font-weight: 700;
    color: #eaffff;
    letter-spacing: 0.5px;
}

.legal-hero p {
    font-size: 18px;
    color: #a8d9df;
    margin-top: 10px;
}

/* ---------- MAIN PAGE LAYOUT ---------- */
.legal-page {
    padding: 70px 0;
}

.legal-card {
    max-width: 900px;
    margin: auto;
    padding-left: 20px;
    border-left: 3px solid rgba(0, 255, 255, 0.3);
}

/* ---------- DATE STYLE ---------- */
.legal-date {
    font-size: 15px;
    color: #7dc9d6;
    margin-bottom: 25px;
}

/* ---------- HEADINGS ---------- */
.legal-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: #c8f9ff;
    margin-top: 35px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 5px;
}

.legal-card h3::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #00eaff;
    border-radius: 50%;
    position: absolute;
    left: -18px;
    top: 12px;
    opacity: 0.9;
}

/* ---------- TEXT & PARAGRAPHS ---------- */
.legal-card p {
    color: #d7f8ff;
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 16px;
}

/* ---------- LIST STYLING ---------- */
.legal-card ul {
    padding-left: 20px;
    margin-bottom: 10px;
}

.legal-card ul li {
    color: #c6f7ff;
    line-height: 1.7;
    position: relative;
    list-style: none;
    padding-left: 18px;
    margin-bottom: 8px;
}

.legal-card ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: #00eaff;
}

/* ---------- RESPONSIVE ---------- */
@media(max-width: 768px) {
    .legal-hero h1 {
        font-size: 34px;
    }

    .legal-card {
        padding-left: 15px;
        border-left-width: 2px;
    }

    .legal-card h3 {
        font-size: 20px;
    }
}


/* ===================== DAILY DROPS PAGE ===================== */


#drops-hero {
    padding: 120px 0 90px;
    text-align: center;
    background: transparent;
    position: relative;
}

/* Soft glow background behind the hero */
#drops-hero::before {
    content: "";
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 140, 255, 0.25), rgba(0, 0, 0, 0));
    filter: blur(120px);
    z-index: -1;
}

/* Hero Title */
#drops-hero .dg-title-xl {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    color: #e9faff;
    text-shadow: 0 0 20px rgba(0, 200, 255, 0.25);
}

/* Subtitle */
#drops-hero p {
    font-size: 18px;
    color: #b7c9d1;
    margin-top: 15px;
}

/* BUTTON GROUP */
#drops-hero .mt30 {
    margin-top: 35px;
}

/* Primary Button */
#drops-hero .dg-btn-blue {
    background: linear-gradient(135deg, #00d2ff, #0078ff);
    color: #fff !important;
    padding: 14px 32px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    box-shadow: 0 0 18px rgba(0, 170, 255, 0.4);
    transition: 0.3s ease;
}

#drops-hero .dg-btn-blue:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(0, 200, 255, 0.55);
}

/* Outline Button */
#drops-hero .dg-btn-outline {
    border: 2px solid #00d2ff;
    padding: 14px 32px;
    color: #00d2ff;
    background: transparent;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s ease;
}

#drops-hero .dg-btn-outline:hover {
    background: rgba(0, 210, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 0 20px rgba(0, 200, 255, 0.4);
}

/* Hero Image */
.drops-hero-img {
    margin-top: 60px;
}

.drops-hero-img img {
    width: 100%;
    max-width: 680px;
    opacity: 0.95;
    filter: drop-shadow(0 0 30px rgba(0, 210, 255, 0.25));
    transition: 0.4s ease;
}

.drops-hero-img img:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 0 40px rgba(0, 210, 255, 0.35));
}

/* ===========================
   RESPONSIVE FIX
=========================== */
@media(max-width: 768px) {
    #drops-hero {
        padding: 90px 0 60px;
    }

    #drops-hero .dg-title-xl {
        font-size: 30px;
    }

    #drops-hero p {
        font-size: 16px;
    }

    #drops-hero .dg-btn-blue,
    #drops-hero .dg-btn-outline {
        width: 100%;
        margin-bottom: 12px;
    }

    .drops-hero-img img {
        max-width: 100%;
    }
}

/* ============================================
   RESPONSIVE BUTTON
============================================ */
@media (max-width: 768px) {

    /* Make button container full width */
    #drops-hero .mt30 {
        display: flex;
        flex-direction: column;
        gap: 12px;
        align-items: center;
        width: 100%;
    }

    /* Make each button full width */
    #drops-hero .dg-btn-blue,
    #drops-hero .dg-btn-outline {
        width: 100%;
        max-width: 380px;
        margin: 0;
        padding: 14px 22px;
        text-align: center;
    }
}



/* WHAT YOU GET DAILY */
.drops-feature-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.drops-feature {
    width: 300px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    text-align: center;
}


/* DAILY DELIVERY */
.drops-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.drops-steps .step {
    width: 350px;
}

/* =====================================================
   DAILY DROPS — HOW DELIVERY WORKS (Modern UI)
===================================================== */

#drops-how {
    background: #050b11;
    padding: 90px 0;
}

#drops-how .dg-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #eaffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.25);
}

/* Steps wrapper */
.drops-steps {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 35px;
}

/* Each step box */
.drops-steps .step {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.08);
    padding: 28px 30px;
    border-radius: 14px;
    transition: 0.35s ease;
    backdrop-filter: blur(6px);
    position: relative;
    overflow: hidden;
}

/* Hover Glow */
.drops-steps .step:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.17);
}

/* Header inside box */
.drops-steps .step h4 {
    color: #00e6ff;
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

/* List items */
.drops-steps .step ul {
    margin: 0;
    padding-left: 18px;
}

.drops-steps .step ul li {
    color: #c6f7ff;
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.6;
    position: relative;
}

/* Custom small dot */
.drops-steps .step ul li::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #00e6ff;
    border-radius: 50%;
    position: absolute;
    left: -14px;
    top: 9px;
}

/* Responsive */
@media (max-width: 992px) {
    .drops-steps {
        grid-template-columns: 1fr;
    }

    #drops-how .dg-section-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .drops-steps .step {
        padding: 22px 20px;
    }

    .drops-steps .step h4 {
        font-size: 18px;
    }
}


/* =====================================================
   DAILY DROPS — PLAN BREAKDOWN (NEW MODERN UI)
===================================================== */

/* Section base */
#drops-plans {
    padding: 80px 0;
}

/* Grid */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

/* Each plan card */
.plan-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 240, 255, 0.1);
    border-radius: 18px;
    padding: 28px;
    text-align: center;
    min-height: 260px;
    /* SAME HEIGHT FOR ALL */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.35s ease;
}

/* Hover effect */
.plan-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 0 25px rgba(0, 230, 255, 0.25);
    border-color: rgba(0, 240, 255, 0.4);
}

/* Plan title */
.plan-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: #00eaff;
}

/* Description */
.plan-box p {
    font-size: 15px;
    line-height: 1.5;
    margin-top: 8px;
}

/* Button */
.plan-btn {
    margin-top: 18px;
    background: #00eaff;
    color: #001016;
    padding: 12px 22px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    width: 100%;
    max-width: 180px;
    margin-left: auto;
    margin-right: auto;
    cursor: pointer;
    transition: 0.3s ease;
    text-align: center;
}

.plan-btn:hover {
    background: #0affff;
    box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 992px) {
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .plan-grid {
        grid-template-columns: 1fr;
    }

    .plan-box {
        min-height: auto;
        padding: 25px;
    }
}

/* ======================================================
   DAILY DROPS — SAMPLE OUTPUT (MODERN UI)
====================================================== */

#drops-sample {
    background: transparent;
}

.sample-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(0, 255, 255, 0.08);
    border-radius: 14px;
    padding: 30px 35px;
    max-width: 720px;
    margin: auto;
    backdrop-filter: blur(6px);
    transition: 0.3s ease;
}

.sample-box:hover {
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
    transform: translateY(-4px);
}

/* List styling */
.sample-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sample-box li {
    font-size: 18px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
    color: #ccfaff;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sample-box li strong {
    color: #00e6ff;
    font-weight: 600;
}

/* Last item no border */
.sample-box li:last-child {
    border-bottom: none;
}



/* Responsive fix */
@media(max-width: 600px) {
    .sample-box {
        padding: 20px;
    }

    .sample-box li {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .sample-box li::after {
        align-self: flex-start;
    }
}

/* =======================================================
   DAILY DROPS — WHY INTELLIGENCE MATTERS (Modern UI)
   ======================================================= */

#drops-why {
    text-align: center;
}

/* Section Title */
#drops-why .dg-section-title {
    font-size: 36px;
    font-weight: 700;
    color: #e8faff;
    text-shadow: 0 0 10px rgba(0, 230, 255, 0.35);
}

/* UL List Styling */
#drops-why .why-list {
    list-style: none;
    padding: 0;
    max-width: 650px;
    margin: 0 auto;
}

#drops-why .why-list li {
    position: relative;
    background: rgba(0, 255, 255, 0.06);
    padding: 16px 22px 16px 55px;
    margin-bottom: 14px;
    border-radius: 12px;
    font-size: 18px;
    color: #dff7ff;
    font-weight: 500;
    border: 1px solid rgba(0, 255, 255, 0.10);
    transition: all .3s ease;
}

/* Hover Glow */
#drops-why .why-list li:hover {
    background: rgba(0, 255, 255, 0.12);
    box-shadow: 0 0 16px rgba(0, 230, 255, 0.25);
    transform: translateY(-2px);
}

/* Animated Check Icon */
#drops-why .why-list li::before {
    content: "✔";
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 700;
    color: #00faff;
    text-shadow: 0 0 8px rgba(0, 255, 255, 0.6);
    animation: pulseCheck 2.5s infinite ease-in-out;
}

@keyframes pulseCheck {
    0% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }

    50% {
        transform: translateY(-50%) scale(1.22);
        opacity: 1;
    }

    100% {
        transform: translateY(-50%) scale(1);
        opacity: 0.9;
    }
}

/* Mobile Responsive */
@media(max-width: 768px) {
    #drops-why .dg-section-title {
        font-size: 28px;
    }

    #drops-why .why-list li {
        font-size: 16px;
        padding: 14px 18px 14px 50px;
    }
}

/* ============================================================
   DAILY DELIVERY TIMING — MODERN FUTURISTIC UI
============================================================ */

#drops-timing {
    padding: 80px 0;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(8px);
}

#drops-timing .dg-section-title {
    font-size: 34px;
    font-weight: 700;
    color: #eaffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

/* Subtext */
#drops-timing p {
    font-size: 17px;
    color: #9aa9b3;
}

/* Timing List */
.timing-list {
    list-style: none;
    margin: 40px auto 0;
    padding: 0;
    max-width: 550px;
}

.timing-list li {
    background: linear-gradient(145deg, rgba(0, 40, 45, 0.9), rgba(0, 25, 30, 0.85));
    padding: 18px 22px;
    border-radius: 12px;
    margin-bottom: 14px;
    color: #d7faff;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid rgba(0, 255, 255, 0.08);
    transition: 0.25s ease;
    position: relative;
}

/* Neon Left Line Accent */
.timing-list li::before {
    content: "";
    width: 6px;
    height: 60%;
    background: linear-gradient(180deg, #00eaff, #0088aa);
    border-radius: 20px;
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
}

.timing-list li:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 255, 255, 0.3);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.15);
}

/* Mobile Responsive */
@media(max-width: 768px) {
    #drops-timing .dg-section-title {
        font-size: 28px;
    }

    .timing-list li {
        font-size: 15px;
        padding: 16px;
    }
}

/* ==========================================================
   DAILY DROPS — CTA BANNER (Modern Futuristic UI)
========================================================== */

#drops-cta {
    background: linear-gradient(180deg, rgba(0, 255, 255, 0.06), rgba(0, 0, 0, 0.5));
    padding: 70px 0;
    border-top: 1px solid rgba(0, 255, 255, 0.08);
    border-bottom: 1px solid rgba(0, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

#drops-cta h2 {
    font-size: 34px;
    font-weight: 700;
    color: #eaffff;
    letter-spacing: 0.3px;
}

#drops-cta p {
    font-size: 16px;
    color: #8fbcc2;
}

/* BUTTON WRAPPER */
#drops-cta .mt30 {
    margin-top: 32px;
}

/* ======================== Modern Blue Button ======================== */
#drops-cta .dg-btn-blue {
    background: linear-gradient(135deg, #00e6ff 0%, #0094ff 100%);
    color: #00161a;
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-block;
    transition: 0.25s ease;
    border: none;
}

#drops-cta .dg-btn-blue:hover {
    background: linear-gradient(135deg, #00f7ff, #00b7ff);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

/* ======================== Outline Button ======================== */
#drops-cta .dg-btn-outline {
    padding: 14px 28px;
    font-size: 16px;
    border-radius: 10px;
    border: 1px solid #00e6ff;
    color: #00e6ff;
    font-weight: 600;
    display: inline-block;
    transition: 0.25s ease;
    margin-left: 12px;
}

#drops-cta .dg-btn-outline:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.25);
}

/* ======================== Responsive ======================== */
@media (max-width: 768px) {
    #drops-cta h2 {
        font-size: 26px;
        line-height: 1.3;
    }

    #drops-cta .dg-btn-blue,
    #drops-cta .dg-btn-outline {
        width: 100%;
        margin: 10px 0;
        text-align: center;
        display: block;
    }
}



/* PLAN GRID */
.plan-grid {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
}

.plan-box {
    width: 260px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    text-align: center;
}

.plan-btn {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #00e6ff;
    border-radius: 8px;
    color: #000;
    cursor: pointer;
}


/* SAMPLE OUTPUT */
.sample-box {
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.04);
    padding: 25px;
    border-radius: 12px;
}


/* WHY LIST */
.why-list li {
    margin-bottom: 10px;
    font-size: 18px;
}


/* TIMING */
.timing-list li {
    margin-bottom: 8px;
    font-size: 16px;
}


/* CTA */
#drops-cta .dg-btn {
    padding: 12px 25px;
    font-size: 17px;
}


/* MOBILE */
@media(max-width: 768px) {
    #drops-hero .dg-title-xl {
        font-size: 30px;
    }
}




/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */

footer {
    background: #04060b;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

footer .navbar-brand img {
    max-height: 32px !important;
}

/* ----------------------------------------------
   FOOTER — DomainGemsAI Modern SaaS Style
   ---------------------------------------------- */
#dg-footer {
    background: #04060b;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 60px !important;
    padding-bottom: 40px !important;
}

#dg-footer .footer-col {
    margin-bottom: 30px;
}

#dg-footer .footer-logo img {
    max-height: 100px;
    margin-bottom: 15px;
    width: 150px;
}

#dg-footer .footer-text {
    color: #9fb3c8;
    margin-bottom: 10px;
    line-height: 1.6;
}

#dg-footer .footer-copy {
    color: #6f8297;
    font-size: 13px;
}

/* Title */
#dg-footer .footer-title {
    color: #e9f7ff;
    margin-bottom: 12px;
    font-size: 17px;
    font-weight: 600;
}

/* Links */
#dg-footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

#dg-footer .footer-links li {
    margin-bottom: 8px;
}

#dg-footer .footer-links a {
    color: #a8bbce;
    text-decoration: none;
    transition: all 0.25s ease;
}

#dg-footer .footer-links a:hover {
    color: #00e6ff;
    padding-left: 6px;
}

/* Social Buttons */
#dg-footer .footer-social .footer-btn {
    display: inline-block;
    margin-bottom: 10px;
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.25s;
}

/* Neon Blue */
#dg-footer .footer-btn.btn-blue {
    border: 1px solid #00e6ff;
    color: #00e6ff;
}

#dg-footer .footer-btn.btn-blue:hover {
    background: #00e6ff;
    color: #04060b;
}

/* Neon Green */
#dg-footer .footer-btn.btn-green {
    border: 1px solid #66ffb3;
    color: #66ffb3;
}

#dg-footer .footer-btn.btn-green:hover {
    background: #66ffb3;
    color: #04060b;
}

/* Gray Button */
#dg-footer .footer-btn.btn-gray {
    border: 1px solid #9fb3c8;
    color: #9fb3c8;
}

#dg-footer .footer-btn.btn-gray:hover {
    background: #9fb3c8;
    color: #04060b;
}

/* Mobile Fix */
@media(max-width: 768px) {
    #dg-footer .footer-col {
        text-align: left;
    }

    #dg-footer .footer-social {
        text-align: left !important;
    }
}



/* ============================================
   Here are css for all RESPONSIVE sections 
            for all pages
============================================ */



/* ============================================
  ABOUT US PAGE
============================================ */

/* HERO SECTION RESPONSIVE — All Devices */


/* Base: Fix spacing issues */
#home .fullscreen {
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Ensure columns do not overflow */
#home .demo-content .col-md-7,
#home .demo-content .col-md-5 {
    padding: 0 15px;
}

/* Hero image box fix */
#home .shadow {
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ================================
   TABLET (992px and below)
================================ */
@media (max-width: 992px) {

    #home .demo-content {
        text-align: center;
    }

    #home .demo-content .col-md-7,
    #home .demo-content .col-md-5 {
        width: 100%;
        float: none;
        margin-bottom: 30px;
    }

    #home h1 {
        font-size: 30px !important;
        line-height: 1.3 !important;
    }

    #home p {
        font-size: 15px !important;
    }

    #home .shadow {
        max-width: 440px;
    }
}

/* ================================
   MOBILE (768px and below)
================================ */
@media (max-width: 768px) {

    #home {
        padding-top: 40px !important;
    }

    #home .fullscreen {
        padding-top: 100px;
        padding-bottom: 50px;
    }

    #home h1 {
        font-size: 28px !important;
        line-height: 1.32 !important;
    }

    #home p {
        font-size: 15px !important;
        margin-top: 12px;
    }

    #home .mt20 a {
        display: block;
        margin: 10px 0;
        text-align: center;
        width: 100%;
        max-width: 380px;
    }

    #home .shadow {
        margin-top: 20px;
        max-width: 100%;
    }

    .dg-hero-glow {
        width: 300px;
        height: 300px;
        top: 75%;
    }
}

/* ================================
   SMALL MOBILES (480px and below)
================================ */
@media (max-width: 480px) {

    #home h1 {
        font-size: 24px !important;
        line-height: 1.35 !important;
    }

    #home p {
        font-size: 14px !important;
    }

    #home .mt20 a {
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    .dg-hero-glow {
        width: 240px;
        height: 240px;
        top: 78%;
    }
}

/* ================================
   EXTRA SMALL (360px and below)
================================ */
@media (max-width: 360px) {

    #home h1 {
        font-size: 22px !important;
    }

    #home p {
        font-size: 13px !important;
    }

    #home .shadow {
        padding: 14px;
    }

    #home .shadow small {
        font-size: 12px;
    }
}

/* =====================================================
   OUR STORY — RESPONSIVE STYLING (All Devices)
===================================================== */

/* Base fixes */
#our-story .section-title h2 {
    font-size: 34px;
    font-weight: 700;
}

#our-story p {
    font-size: 16px;
    line-height: 1.65;
}

/* ================================
   TABLETS (992px and below)
================================ */
@media (max-width: 992px) {

    #our-story {
        padding: 60px 0 !important;
    }

    #our-story .section-title h2 {
        font-size: 30px;
    }

    #our-story .row .col-md-6 {
        padding: 0 10px;
    }

    #our-story p {
        font-size: 15px;
    }
}

/* ================================
   MOBILE (768px and below)
================================ */
@media (max-width: 768px) {

    #our-story {
        padding: 50px 0 !important;
        text-align: left;
    }

    /* Stack columns */
    #our-story .col-md-6 {
        width: 100%;
        float: none;
        margin-bottom: 25px;
    }

    #our-story .section-title {
        text-align: center;
        margin-bottom: 35px;
    }

    #our-story .section-title h2 {
        font-size: 28px;
        line-height: 1.3;
    }

    #our-story p {
        font-size: 15px;
    }

    #our-story h4 {
        font-size: 20px;
        margin-top: 25px;
    }
}

/* ================================
   SMALL MOBILE (480px and below)
================================ */
@media (max-width: 480px) {

    #our-story .section-title h2 {
        font-size: 24px;
    }

    #our-story p {
        font-size: 14px;
        line-height: 1.55;
    }

    #our-story h4 {
        font-size: 18px;
    }
}

/* ================================
   EXTRA SMALL (360px and below)
================================ */
@media (max-width: 360px) {

    #our-story .section-title h2 {
        font-size: 22px;
    }

    #our-story p {
        font-size: 13px;
    }

    #our-story h4 {
        font-size: 17px;
    }
}


/* ============================================
   ABOUT US PAGE END
============================================ */




/* ============================================
   PRICING PAGE FAQ SECTION
============================================ */

/* FAQ Container */
.dg-faq-wrapper {
    max-width: 750px;
    margin: 0 auto;
}

/* FAQ question button */
.dg-faq-question {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    padding: 18px 20px;
    color: #e9faff;
    border: none;
    outline: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 10px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.dg-faq-question:hover {
    background: rgba(0, 200, 255, 0.08);
}

/* Plus / X icon */
.faq-icon {
    font-size: 22px;
    font-weight: bold;
    color: #00e6ff;
    transition: 0.3s;
}

/* Answer hidden by default */
.dg-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 5px;
    margin-top: 8px;
    color: #c9d7df;
    font-size: 16px;
    line-height: 1.6;
    transition: max-height 0.4s ease;
}

/* ============================================
   PRICING PAGE FAQ SECTION END
============================================ */