/* ===== THEME COLORS ===== */
:root {
    --bs-primary: #04ECF0;   /* AQUA PRIMARY */
    --bs-secondary: #04ECF0; /* AQUA (green replace) */
    --bs-dark: #0b0b0b;
    --bs-white: #ffffff;
}
/* ======================= */



/*** Spinner Start ***/

#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease-out, visibility 0s linear .5s;
    z-index: 99999;
 }

 #spinner.show {
     transition: opacity .8s ease-out, visibility 0s linear .0s;
     visibility: visible;
     opacity: 1;
 }

/*** Spinner End ***/


/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-md-square {
    width: 46px;
    height: 46px;
}

.btn-lg-square {
    width: 58px;
    height: 58px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.back-to-top {
    position: fixed;
    width: 50px;
    height: 50px;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}

/*** Button End ***/


/*** Topbar Start ***/

.topbar .top-info {
    letter-spacing: 1px;
}

.topbar .top-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topbar .top-link a {
    margin-right: 10px;
}

#note {
    width: 500px;
    overflow: hidden;
}

#note small {
    position: relative;
    display: inline-block;
    animation: mymove 5s infinite;
    animation-timing-function: all;
}

@keyframes mymove {
    from {left: -100%;}
    to {left: 100%;}
}

/*** Topbar End ***/


/*** Navbar Start ***/
.navbar .navbar-nav {
    padding: 15px 0;
}

.navbar .navbar-nav .nav-link {
    padding: 10px;
    color: var(--bs-white);
    font-size: 18px;
    outline: none;
    
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--bs-secondary) !important;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "font awesome 5 free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    transition: .5s;
    opacity: 1;
}

/*** Navbar End ***/


/*** Carousel Start ***/

.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .6);
}

.carousel-caption {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.carousel-item p {
    max-width: 700px;
    margin: 0 auto 35px auto;
}

.carousel-control-prev {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    left: 0;
    background: var(--bs-primary);
    border-radius: 0 50px 50px 0;
    opacity: 1;
}

.carousel-control-prev:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-control-next {
    width: 90px;
    height: 60px;
    position: absolute;
    top: 50%;
    right: 0;
    background: var(--bs-primary);
    border-radius: 50px 0 0 50px;
    opacity: 1;
}

.carousel-control-next:hover {
    background: var(--bs-secondary);
    transition: .8s;
}

.carousel-caption .carousel-content a button.carousel-content-btn1 {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn1:hover {
    background: var(--bs-primary);
    color: #ffffff;
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2 {
    background: var(--bs-primary);
    color: var(--bs-white);
    opacity: 1;
    border: 0;
    border-radius: 20px;
}

.carousel-caption .carousel-content a button.carousel-content-btn2:hover {
    background: var(--bs-secondary);
    color: var(--bs-dark);
    border: 0;
    opacity: 1;
    transition: 1s;
    border-radius: 20px;
}

#carouselId .carousel-indicators li {
    width: 30px;
    height: 10px;
    background: var(--bs-primary);
    margin: 10px;
    border-radius: 30px;
    opacity: 1;
}

#carouselId .carousel-indicators li:hover {
    background: var(--bs-secondary);
    opacity: 1;
}

@media (max-width: 992px) {
    .carousel-item {
        min-height: 500px;
    }
    
    .carousel-item img {
        min-height: 500px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 40px important;
    }

    .carousel-item p {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px;
    }
    
    .carousel-item img {
        min-height: 400px;
        object-fit: cover;
    }

    .carousel-item h1 {
        font-size: 28px !important;
    }

    .carousel-item p {
        font-size: 14px !important;
    }
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .6), rgba(0, 0, 0, .6)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-white);
}

.page-header .breadcrumb-item,
.page-header .breadcrumb-item a {
    font-size: 18px;
    color: var(--bs-white);
}

/*** Carousel End ***/


/*** Services Start ***/

.services .services-item {
    box-shadow: 0 0 60px rgba(0, 0, 0, .2);
    width: 100%;
    height: 100%;
    border-radius: 10px;
    padding: 10px 0;
    position: relative;
}


.services-content::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-radius: 10px;
    background: rgba(4, 236, 240, 0.85);
    transition: .5s;
}


.services-content::after {
    top: 0;
    bottom: auto;
    border-radius: 10px 10px 10px 10px;
}

.services-item:hover .services-content::after {
    height: 100%;
    opacity: 1;
    transition: .5s;
}

.services-item:hover .services-content-icon {
    position: relative;
    z-index: 2;
}

.services-item .services-content-icon i,
.services-item .services-content-icon p {
    transition: .5s;
}

.services-item:hover .services-content-icon i {
    color: var(--bs-secondary) !important;
}

.services-item:hover .services-content-icon p {
    color: var(--bs-white);
}

/*** Services End ***/


/*** Blog Start ***/
.blog-item .blog-btn {
    z-index: 2;
}

.blog-btn .blog-btn-icon {
    height: 50px;
    position: relative;
    overflow: hidden;
}

.blog-btn-icon .blog-icon-2 {
    display: flex;
    position: absolute;
    top: 6px;
    left: -140px;
    
}

.blog-btn-icon:hover .blog-icon-2 {
    transition: 1s;
    left: 5px;
    top: 6px;
    padding-bottom: 5px;
}
.blog-icon-1 {
    position: relative;
    top: -4px;
}
.blog-btn-icon:hover .blog-icon-1 {
    top: 0;
    right: -140px;
    transition: 1s;
}
/*** Blog End ***/


/*** Contact Start ***/
.contact-detail::before {
    position: absolute;
    content: "";
    height: 50%;
    width: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(rgba(4, 236, 240, 1), rgba(4, 236, 240, .3)), url(../img/background.jpg) center center no-repeat;
    background-size: cover;
    border-radius: 10px;
    z-index: -1;
}

.contact-map,
.contact-form {
    background: #04ECF0;
}


/*** Contact End ***/


/*** Footer Start ***/

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    transition: .5s;
}

.footer .short-link a:hover,
.footer .help-link a:hover,
.footer .contact-link a:hover {
    letter-spacing: 1px;
}

.footer .hightech-link a:hover {
    background: var(--bs-secondary);
    border: 0;
}

/*** Footer End ***/

/* ===============================
   LUXURY INVESTOR GRADE UI
================================ */
/* --- Global Colorful Enhancements --- */
:root {
    --grad-1: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    --grad-2: linear-gradient(135deg, #00DBDE 0%, #FC00FF 100%);
    --grad-3: linear-gradient(135deg, #85FFBD 0%, #FFFB7D 100%);
    --gold-white: linear-gradient(to right, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    --shadow-vibrant: 0 20px 40px rgba(0,0,0,0.15);
}

/* --- NEW: Universal Heading Animation (White-Gold) --- */
/* HTML mein h1 par class="header-shimmer" laga dena */
.header-shimmer {
    font-weight: 800 !important;
    background: var(--gold-white);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textShine 3s linear infinite;
    display: inline-block;
}

@keyframes textShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* --- 1. Right Side 4 Boxes (What is Dropshipping) --- */
.col-md-6:nth-child(1) .premium-card { background: linear-gradient(135deg, #667eea, #764ba2); color: white; }
.col-md-6:nth-child(2) .premium-card { background: linear-gradient(135deg, #FF9a9e, #FAD0C4); color: #444; }
.col-md-6:nth-child(3) .premium-card { background: linear-gradient(135deg, #2193b0, #6dd5ed); color: white; }
.col-md-6:nth-child(4) .premium-card { background: linear-gradient(135deg, #ee9ca7, #ffdde1); color: #444; }

.icon-bubble {
    background: rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
    width: 65px; height: 65px;
    border-radius: 18px;
    margin-bottom: 15px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    transition: 0.4s;
}

/* --- 2. Our Dropshipping System (Process Cards) --- */
.container-fluid.bg-soft {
    background: #0f172a !important; 
    padding: 100px 0;
}

.bg-soft h1, .bg-soft h5 { color: white !important; }

.bg-soft .premium-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 30px !important;
    padding: 50px 30px !important;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-number {
    font-size: 80px !important;
    font-weight: 900;
    position: absolute;
    top: -15px; right: 25px;
    background: var(--grad-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.15;
}

.bg-soft .premium-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-20px) scale(1.03);
    border-color: #FFD700 !important; /* Gold Border on Hover */
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.2);
}

/* --- 3. End-to-End Support (Service Items) --- */
.services-item {
    background: white !important;
    border-top: 5px solid #6366f1 !important; /* Changed to Top Border for Modern look */
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    border-radius: 25px !important;
    padding: 35px !important;
    transition: 0.3s;
}

.services-item:hover {
    transform: scale(1.05);
}

.col-lg-4:nth-child(1) .services-item { border-color: #ff3cac !important; }
.col-lg-4:nth-child(2) .services-item { border-color: #784ba0 !important; }
.col-lg-4:nth-child(3) .services-item { border-color: #2b86c5 !important; }
.col-lg-4:nth-child(4) .services-item { border-color: #00dbde !important; }
.col-lg-4:nth-child(5) .services-item { border-color: #fc00ff !important; }
.col-lg-4:nth-child(6) .services-item { border-color: #04ECF0 !important; }

/* --- CTA Box (Built to Scale) --- */
.cta-box {
    background: linear-gradient(rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.9)), 
                url('https://www.transparenttextures.com/patterns/carbon-fibre.png') !important;
    border-radius: 50px !important;
    padding: 100px 30px !important;
    border: 1px solid rgba(255,215,0,0.3); /* Subtle Gold border */
    text-align: center;
}

/* Floating Animation for all cards */
@keyframes unicornFloat {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

.premium-card {
    animation: unicornFloat 5s ease-in-out infinite;
}
/* LOGO FIX - TRANSPARENT STYLE */
.logo-wrap {
    background: transparent;  /* Removed the white background */
    padding: 5px 0px;         /* Adjusted padding for better alignment */
    display: flex;
    align-items: center;
    max-height: 55px;         /* Keeps the navbar height consistent */
}

.logo-wrap img {
    height: 40px;             /* Standard professional height */
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2)); /* Adds slight depth */
}

/* =============================================
   ONLY GREEN TO AQUA REPLACEMENT (UPDATED)
   ============================================= */

/* 1. Green Variables to Aqua */
:root {
    --bs-secondary: #04ECF0 !important;
    --bs-secondary-rgb: 4, 236, 240 !important;
}

/* 2. Fix Text Secondary: Remove background to stop the "ugly" boxes */
.text-secondary {
    color: #04ECF0 !important;
    background-color: transparent !important; /* This removes the highlight box */
    background: none !important;
}

/* 3. Target Background & Borders: Only these should have the Aqua color fill */
.btn-secondary, 
.bg-secondary, 
.border-secondary,
.contact-map, 
.contact-form {
    background-color: #04ECF0 !important;
    border-color: #04ECF0 !important;
    color: #000000 !important; /* Keeps text readable (black) on aqua background */
}

/* 4. Button Hover */
.btn-secondary:hover {
    background-color: #03ced1 !important; 
    border-color: #03ced1 !important;
    color: #000 !important;
}

/* 5. Services Section: Icons and Overlay */
.services-item:hover .services-content-icon i {
    color: #04ECF0 !important;
    background: transparent !important;
}

.services-content::after {
    background: rgba(4, 236, 240, 0.85) !important; /* Semi-transparent overlay */
}

/* 6. Footer & Topbar Clean up */
.footer h4, .footer a, .topbar a {
    background: transparent !important; /* Ensures no boxes in footer titles */
}

.footer .hightech-link a:hover {
    background: #04ECF0 !important;
    color: #000 !important;
}

/* Force text into max 2 lines (Fact Section only) */
.fact-text {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    max-width: 210px;

    display: -webkit-box;
    -webkit-line-clamp: 2;   /* 👈 only 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
/* =====================================
   CAROUSEL MOBILE CLEAN FIX (SAFE)
===================================== */
@media (max-width: 768px) {

    /* Caption container fix */
    .carousel-caption {
        position: absolute;
        inset: auto 0 20px 0;   /* bottom aligned */
        height: auto !important;
        padding: 0 16px;
        display: block !important;
        text-align: center;
    }

    /* Text width control */
    .carousel-caption h1,
    .carousel-caption p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .carousel-caption h1 {
        font-size: 26px !important;
        line-height: 1.25;
        margin-bottom: 10px;
    }

    .carousel-caption p {
        font-size: 14px !important;
        line-height: 1.5;
        margin-bottom: 14px;
    }

    /* Buttons stack properly */
    .carousel-caption .carousel-content a {
        display: inline-block;
        margin: 6px 6px;
    }

    /* Controls size + position */
    .carousel-control-prev,
    .carousel-control-next {
        top: 45%;
        width: 42px;
        height: 38px;
    }
}


/* ==============================
   INDEX FOOTER FORCE FIX
   (FINAL – GUARANTEED)
============================== */

.footer h1,
.footer h2,
.footer h3,
.footer h4 {
    display: block !important;
    width: 100%;
}

.footer .short-link,
.footer .help-link,
.footer .contact-link {
    display: block;
}

.footer .short-link a,
.footer .help-link a,
.footer .contact-link a {
    display: block;
    white-space: normal;
}

/* Stop heading sticking effect */
.footer .col-lg-3 {
    float: none;
}
