@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    cursor: none;

}

html {
  scroll-behavior: smooth;
}




.navbar.fixed-top {
  margin-bottom: 0 !important;
  top: 0 !important;
}

#backToTop {
  position: fixed;
  bottom: 40px;
  right: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1000;
}

#backToTop svg {
  transform: rotate(0deg); /* Make arrow face up */
}


/*----------------------- start :  Outer circle -------------*/
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 2px solid #00c3ff;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: all 0.15s ease-out;
  z-index: 9999;
}

/* Inner dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background-color: #e52020;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

/*----------------------- END :  Outer circle -------------*/

/* START: WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    z-index: 9999;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* WhatsApp icon styling */
.whatsapp-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
    animation: bounceIn 1s ease;
}

.whatsapp-icon img {
    width: 28px;
    height: 28px;
}

.whatsapp-icon:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

/* Floating popup above WhatsApp icon */
.whatsapp-popup {
    background: #ffffff;
    color: #128C7E;
    font-weight: 600;
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    animation: floatPopup 2.5s infinite ease-in-out;
}

/* Floating animation for popup */
@keyframes floatPopup {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-6px);
        opacity: 0.85;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Bounce-in animation */
@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

    100% {
        transform: scale(1);
    }
}

/* END: WHATSAPP FLOAT  */


/* === START: CHATBOT ICON === */
#chatbot-icon {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #0397d6;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 28px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    z-index: 999;
}


#chatbot-tooltip {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 1000;
    animation: fadeSlideUp 0.5s ease forwards;
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === TOOLTIP === */
#chatbot-tooltip {
    position: fixed;
    bottom: 95px;
    right: 30px;
    background: #ffffff;
    color: #25D366;
    padding: 10px 15px;
    border-radius: 15px;
    font-size: 15px;
    font-weight: bold;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeSlideUp 0.5s ease forwards;
    /* Faster animation */
}

@keyframes fadeSlideUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hidden {
    display: none !important;
}

/* ---------------------START : CHATBOT---------------------------  */
#chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 25px;
    width: 320px;
    background: #fff;
    border-radius: 12px;
    box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 4px, rgba(0, 0, 0, 0.3) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -3px 0px inset;
    overflow: hidden;
    z-index: 999;
    display: flex;
    flex-direction: column;
    max-height: 500px;
}

.chatbot-header {
    background: #007bff;
    color: white;
    padding: 12px 15px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header span {
    cursor: pointer;
}

.chatbot-body {
    padding: 10px;
    overflow-y: auto;
    height: 260px;
    font-size: 14px;
    background: #f9f9f9;
}

.chatbot-body .bot-message,
.chatbot-body .user-message {
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 10px;
    max-width: 90%;
    clear: both;
}

.bot-message {
    background: #e9f1ff;
    color: #333;
    align-self: flex-start;
}

.user-message {
    background: #d1ffd6;
    color: #333;
    text-align: right;
    align-self: flex-end;
    margin-left: auto;
}

.chatbot-input-area {
    display: flex;
    border-top: 1px solid #ccc;
    padding: 10px;
}

.chatbot-input-area input {
    flex: 1;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 6px;
    margin-right: 10px;
}

.chatbot-input-area button {
    padding: 8px 14px;
    border: none;
    background: #007bff;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

/* ---------------------END : CHATBOT ---------------------------  */


/* ---------------------START : OFFCANVAS---------------------------  */
.custom-offcanvas {
    background-color: #FBFBFB;
    width: 260px;
    padding: 1rem;
    transition: transform 0.3s ease-in-out;
}

.custom-offcanvas .nav-link {
    font-size: 1rem;
    padding: 10px 0;
    color: #243642;
    font-weight: 500;
}

.custom-offcanvas .nav-link:hover {
    color: #007bff;
}

.custom-offcanvas .btn.liquid-btn {
    border: 2px solid #007bff;
    color: #000000 !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease;
}

.custom-offcanvas .btn.liquid-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #007bff;
    z-index: -1;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.custom-offcanvas .btn.liquid-btn:hover::before {
    transform: translateY(0);
}

.custom-offcanvas .btn.liquid-btn:hover {
    color: #fff;
}

.custom-offcanvas .social-icons img.top-img {
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-left: 10px;
    /* small space between icons */
    margin-top: 50px;
}

.custom-offcanvas .social-icons img.top-img:first-child {
    margin-left: 20px;
    /* no margin before the first icon */
}

/* ---------------------End : OffCanvas ---------------------------  */

@media (max-width: 768px) {
    .navbar {
        
        background: transparent;
    }

    .navbar-brand img {
        height: 80px;
        margin-top: 20px;
    }

    .carousel-caption {
        top: 180px !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        top: 500px !important;


    }

    .custom-control {
        width: 35px !important;
        height: 35px !important;
    }



    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        background-size: 50% 50% !important;
    }
}


@media (max-width: 336px) {
    .navbar {
       
        background: transparent;
    }

    .navbar-brand img {
        height: 80px;
        margin-top: 0px;
    }
}


/* Scroll Down Animation for Navbar */
.navbar-scrolled {
    animation: slideDown 0.4s ease-in-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.nav-gap .nav-item {
    margin-right: 30px;
}


.nav-gap .nav-item:last-child {
    margin-right: 0;
}


@media (max-width: 991.98px) {
    .nav-gap .nav-item {
        margin-right: 0;
    }
}


/* Custom blue border for navbar-toggler */
.custom-toggler {
    border: 2px solid #0397d6 !important;
    border-radius: 5px;
    padding: 5px 8px;
}

/* Make the navbar-toggler-icon blue */
.custom-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(3,151,214, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}


/* BASE NAVBAR */
.custom-navbar {
    position: fixed;
    width: 100%;
    top: 45px;
    z-index: 1041;
    transition: background-color 0.4s ease, padding 0.3s ease, transform 0.5s ease;
    background-color: transparent !important;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* BASE NAV LINKS - WHITE initially */
.custom-navbar .nav-link {
    font-weight: 600;
    font-size: 17px;
    color: #fefefe !important;
    /* White color before scroll */
    transition: color 0.3s ease;
}

/* BASE HOVER - light blue hover */
.custom-navbar .nav-link:hover {
    color: #4CC9FE !important;
}

/* SCROLL EFFECT - BACKGROUND YELLOW */
.navbar-scrolled {
    background-color: rgb(255, 255, 255) !important;
    padding-top: 0.7rem !important;
    padding-bottom: 0.7rem !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

/* SCROLL EFFECT - NAV LINKS RED */
.navbar-scrolled .nav-link {
    color: #102E50 !important;
    font-weight: 700;
}


/* DROPDOWN HOVER - DESKTOP ONLY */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar-nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}


/* ---------------------START : LOGIN HERE  BUTTON ---------------------------  */

/* 1) Base styling for the liquid button */
.liquid-btn {
    position: relative;
    display: inline-block;
    padding: 0.5rem 1.5rem;
    font-size: 17px !important;
    color: #ffffff;
    background-color: #e63946;
    border: 2px solid #ffffff;
    border-radius: 50px;
    overflow: hidden;
    z-index: 0;
    transition: color 0.4s ease;
}

/* 2) The “fill” layer */
.liquid-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #3D90D7;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(.19, 1, .22, 1);
    border-radius: 50px;
    z-index: -1;
}

/* 3) Hover state: slide in the fill & switch text color */
.liquid-btn:hover {
    color: #fff;
}

.liquid-btn:hover::before {
    transform: scaleX(1);
    animation: liquid-blob 0.6s ease;
}

/* 1. Base hover: Blue fill with white text (already there, keeping it) */
.liquid-btn:hover {
    color: #fff;
}

.liquid-btn:hover::before {
    transform: scaleX(1);
    animation: liquid-blob 0.6s ease;
}



/* 2. SCROLL MODE: Button hover = Red fill + Black text, same animation */
.navbar-scrolled .liquid-btn {
    color: rgb(255, 255, 255) !important;
    /* Static text color before hover */
    border: 2px solid red !important;
    font-weight: 500;
}

.navbar-scrolled .liquid-btn:hover {
    color: #00b3ff!important;
    /* Text stays black on hover too */
}

.navbar-scrolled .liquid-btn::before {
    background-color: red !important;
    /* Red fill */
}

.navbar-scrolled .liquid-btn:hover::before {
    transform: scaleX(1);
    animation: liquid-blob 0.6s ease;
}

/* 4) Optional blob-shape keyframe for extra “liquid” feel */
@keyframes liquid-blob {

    0%,
    100% {
        border-radius: 50px;
    }

    50% {
        border-radius: 25px 75px;
    }
}


/* ---------------------END : LOGIN HERE BUTTON  ---------------------------  */

/* Dropdown Hover */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar-nav .dropdown-toggle::after {
        transition: transform 0.3s ease;
    }

    .navbar-nav .dropdown:hover .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}


.animated-dropdown {
    animation: fadeInDown 0.3s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* DROPDOWN ANIMATION */
.animated-dropdown {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: block !important;
    visibility: hidden;
    pointer-events: none;
}

.custom-dropdown:hover .animated-dropdown {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    pointer-events: auto;
}

/* DROPDOWN ITEM HOVER */
.dropdown-menu .dropdown-item:hover {
    background-color: #4CC9FE !important;
    font-weight: 600 !important;
    color: black !important;
}


@media (max-width: 991.98px) {
    .navbar-collapse {
        text-align: center;
    }

    .navbar-collapse .btn {
        width: 100%;
        margin-top: 15px;
    }
}


/* Allow dropdowns to open on hover only for desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
}

/* For mobile (disable hover effect explicitly) */
@media (max-width: 991.98px) {
    .dropdown-menu {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
        opacity: 1;
    }

}

@media (max-width: 991.98px) {
    .navbar-nav {
        gap: 0 !important;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 10px 15px;
        border-bottom: 1px solid #eee;
    }

    .navbar-nav .dropdown-menu {
        margin-top: 0;
        width: 100%;
        border: none;
        box-shadow: none;
    }
}


@media (max-width: 768px) {
   
    .custom-navbar {
        top: 2px !important;
        /* Same as top-bar height */
    }
}

@media (max-width: 744px) {
    .top-bar {
        height: auto;
    }

    .custom-navbar {
        top: 3px !important;
    }
}

@media (max-width: 1000px) {
    .liquid-btn {
        font-size: 15px !important;
        padding: 6px 12px !important;
        white-space: nowrap;
    }

    .navbar-toggler {
        padding: 4px 6px;
    }
}


/* ---------------------START : CAROUSEL ---------------------------  */

/* Carousel container adjustments */
.carousel {
    margin-top: -120px;
    z-index: 0;
}


/* Remove infinite zoom on all images */
.carousel-item img {
    height: 100vh !important;
    object-fit: cover;
    transform-origin: center center;
}

/* Zoom animation only for the active slide */
.carousel-item.active img.zoom-img {
    animation: zoomInSlow 5s ease-in-out forwards;
}

/* Smooth zoom animation */
@keyframes zoomInSlow {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}


/* Restart zoom every slide */
.carousel-item.active img.zoom-img {
    animation: zoomInSlow 5s ease-in-out;
}

/* Carousel caption styling */
.carousel-caption {
    z-index: 2;
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    color: #fff;
    animation: fadeInUp 1.2s ease-in-out;
}


/* Text inside carousel */
.carousel-caption h6.small-title {
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.carousel-caption h2.main-title {
    font-family: "Saira", sans-serif;
    font-size: 3.7rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
}

.carousel-caption p.sub-title {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

/* Button inside carousel */
.carousel-caption .btn {
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 30px;
    border-radius: 30px;
    transition: all 0.3s ease;
}



.zoom-img {
    animation: zoomInSlow 5s ease-in-out infinite;
    transform-origin: center center;
}

@keyframes zoomInSlow {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}


/* Carousel controls custom design */
.custom-control {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 204, 204, 0.6) !important;
    border-radius: 10px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    z-index: 2;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-size: 100% 100%;
    filter: drop-shadow(0 0 5px black);
}

.overlay-dark {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #24283E7D !important;
    z-index: 1;
}


/* Fade-in-up animation for captions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/*-------------------- end : carousel ----------------- */




/*------------- START : OUR GROUPS OF COMPANIES------------  */

/* GROUP HEADING COLORS */
.section-heading {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 2.2rem;
    margin-bottom: 2rem;
}

.group-blue {
    color: #295F98;
}

.company-red {
    color: #E52020;
}


/* GROUP COMPANY CARD CUSTOM STYLING */
.group-card {
    background-color: #ffffff; /* Light card background */
    border-radius: 10px !important;
   box-shadow: rgb(204, 219, 232) 3px 3px 6px 0px inset, rgba(255, 255, 255, 0.5) -3px -3px 6px 1px inset;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    cursor: pointer;
}

.group-card:hover {
    transform: translateY(-8px);
    box-shadow: rgba(3, 102, 214, 0.3) 0px 0px 0px 3px;
}

.group-card .card-img-top {
    max-height: 120px !important;
    object-fit: contain;
}

.group-card .card-title {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.group-card .card-text {
    font-size: 0.95rem;
    color: #444;
}


.group-card img {
    max-height: 200px !important;
    object-fit: contain;
    margin: auto;
}


.group-card img {
    background-color: transparent;
    padding: 1rem;
    border-radius: 0.5rem;
    height: 120px;
    object-fit: contain;
    margin: auto;
    display: block;
}


#companies .card img {
  height: 100px;
  object-fit: contain;
}

.card-img-top {
  height: 100px;
  object-fit: contain;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: translateY(-10px);
}

.visit-btn {
    position: relative;
    display: inline-block;
    padding: 10px 20px;
    color: #295F98;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #295F98;
    background: transparent;
    overflow: hidden;
    z-index: 1;
    transition: color 0.4s ease-in-out;
}

.visit-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background-color: #e52020;
    z-index: -1;
    transition: height 0.4s ease-in-out;
}

.visit-btn:hover {
    color: white;
}

.visit-btn:hover::before {
    height: 100%;
}

/*---------------------- END : COMPANY ------------ */


.bg-gradient-blue {
  background: linear-gradient(to right, #2563eb, #1e40af);
}

.bg-gradient-red {
  background: linear-gradient(to right, #ef4444, #b91c1c);
}

.text-gradient {
  background: linear-gradient(to right, #2563eb, #b91c1c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/*------------------ START: MARQUEE -----------------------*/
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background-color: #fff;
  position: relative;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-content {
  display: inline-block;
  font-size: 60px;
  font-weight: 700;
  color: #FAB12F;
  white-space: nowrap;
  padding-right: 100px;
}

.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px #0397d6;
  margin: 0 20px;
}

.bitmax .bit {
  color: #1f4e79;
}

.bitmax .max {
  color: #e52020;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*-------------------- END: MARQUEE --------------------*/

/*----------------- START : ABOUT US PAGE------------------  */
.about-section {
  background-color: #EEEEEE;
}

.quote-box {
  border-left: 6px solid #ef4444;
}

.about-section .text-danger {
  color: #ef4444 !important;
}
/*----------------- END : ABOUT US PAGE --------------------- */



/*-------------- start :  Counter Box -----------------*/
/* COUNTER SECTION */
.parallax-counter {
  position: relative;
  background-image: url('/assets/image/BITMAXXX\ IMAGE.jpg'); /* Update with your image path */
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  z-index: 1;
  overflow: hidden;
}

.unique-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
  z-index: 2;
}

.counter-container {
  position: relative;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  z-index: 3;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.counter-box {
  flex: 1 1 200px;
  background: white;
  border-radius: 20px;
  padding: 40px 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.counter-box:hover {
  transform: translateY(-5px);
}

.counter-box .icon img {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}

.counter-box h2 {
  font-size: 36px;
  color: #e52020;
  margin: 0 0 10px;
  font-weight: 700;
}

.counter-box p {
  font-size: 16px;
  font-weight: 800;
  color: #007bff;
  letter-spacing: 1px;
  margin: 0;
}


/*------------------- end : Counter ------------- */

/* START: MARQUEE  */
.marquee-wrapper {
    width: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: none;
}

.marquee-content {
    font-size: 60px;
    font-weight: 700;
    color: #FAB12F;
    display: inline-block;
    padding-right: 100px;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 1px #0397d6;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Marquee Styling */
@media (max-width: 768px) {
    .marquee-content {
        font-size: 28px !important;
        padding-right: 50px !important;
    }

    .outline-text {
        -webkit-text-stroke: 0.8px #0397d6 !important;
    }
}

@media (max-width: 480px) {
    .marquee-content {
        font-size: 22px !important;
        padding-right: 30px !important;
    }

    .outline-text {
        -webkit-text-stroke: 0.6px #0397d6 !important;
    }
}

/* END: MARQUEE  */

.feature-card {
  position: relative;
  height: 380px;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease;
}

.card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: opacity 0.5s ease;
}

.default-bg {
  opacity: 1;
  z-index: 1;
}

.hover-bg {
  opacity: 0;
  z-index: 2;
}

.card-content {
  position: absolute;
  bottom: 0;
  padding: 25px;
  color: white;
  z-index: 3;
  transition: opacity 0.5s ease, transform 0.5s ease;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
}

.default-content {
  opacity: 1;
}

.hover-content {
  opacity: 0;
}

.feature-card:hover .default-bg {
  opacity: 0;
}

.feature-card:hover .hover-bg {
  opacity: 1;
}

.feature-card:hover .default-content {
  opacity: 0;
  transform: translateY(20px);
}

.feature-card:hover .hover-content {
  opacity: 1;
  transform: translateY(0);
}

.btn-explore {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 18px;
  background-color: #ffffff;
  color: #000;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-explore:hover {
  background-color: #007bff;
  color: #fff;
}

/* START : FOOTER DESIGN  */
.footer {
  background-color: #332D56;
  color: white;
  padding: 40px 20px 20px;
}
 
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
 
.footer-column {
  flex: 1;
  min-width: 250px;
}
 
.footer-column h3 {
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
}
.footer-column h3:hover{
    color: rgb(65, 65, 171);
}
 
.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  padding: 5px;
}


.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
 
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background-color: #f5f2f2;
  color: #282727;
  border-radius: 50%;
  transition: 0.3s ease;
  text-decoration: none;
  font-size: 16px;
}
 
.social-icons a:hover {
  background-color: #f43c3c;
  color: #212121;
  transform: scale(1.1);
}




.search-box {
  width: 100%;
  padding: 10px;
  margin-bottom: 20px;
  border: 1px solid #555;
  background-color: #ffffff;
  color: white;
}


.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  padding: 5px;
}
 
.contact-item i {
  margin-right: 10px;
  color: #ccc;
    cursor: pointer;
}
 
.contact-item i:hover{
    color: #f43c3c;
  }
 
.contact-item span:hover {
    color: #f43c3c;
    cursor: pointer;
}
 
.hours-item {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  padding: 5px;
  margin: 8px 0;
}
 
.line {
  height: 1px;
  background-color: #7a7979;
  margin: 6px 0;
}
 
.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
 
.footer-bottom span {
  font-size: 14px;
  white-space: nowrap;
  text-align: center;
}
 
.bottom-line {
  flex: 1;
  height: 1px;
  background-color: white;
  opacity: 0.2;
  margin-top: 30px;
  max-width: 100%;
}



.footer-column a {
  color: #ccc;
  text-decoration: none;
}
.footer-column a:hover {
  color: #fff;
}
.footer-column p {
  margin-bottom: 10px;
  font-size: 15px;
  color: #ddd;
}

 
/* 🔻 Responsive Breakpoints */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
  }
 
  .footer-column {
    width: 100%;
  }
 
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 20px;
  }
 
  .footer-bottom span {
    margin: 10px 0;
    margin-left: 0;
    margin-top: 0;
  }
 
  .bottom-line {
    width: 100%;
    margin-top: 10px;
  }
}
 
@media (max-width: 480px) {
  .footer-column p,
  .contact-item,
  .hours-item {
    font-size: 13px;
  }
 
  .search-box {
    font-size: 13px;
  }
 
  .footer-column h3 {
    font-size: 15px;
  }
 
  .footer-bottom span {
    font-size: 13px;
  }
}

/* END  */

/* start : login module  */
.bg-bitmax {
  background: linear-gradient(135deg, #007bff, #00c6ff);
}

/* Bitmax Button */
.btn-bitmax {
  background-color: #dc3545;
  color: white;
  border: none;
  transition: all 0.3s ease;
}
.btn-bitmax:hover {
  background-color: #a71d2a;
  transform: scale(1.02);
}

/* Input with icon */
.glass-input {
  padding-left: 2.5rem;
  border-radius: 12px;
  height: 45px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  transition: all 0.3s ease;
}
.glass-input:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.15rem rgba(0, 123, 255, 0.25);
}

.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  font-size: 1.2rem;
  color: #666;
}

/* end  */


/* start : contact us  */


.contact-section {
  padding: 60px 20px;
  background-color: #f2faf7;
 
}
 
.contact-container {
  max-width: 1000px;
  margin: auto;
  background: white;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
 
/* Left Section */
.contact-left {
  flex: 1;
  padding: 30px;
  background: #fff;
}
 
.contact-left h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: bold;
}
 
.underline {
  width: 40px;
  height: 3px;
  background-color: red;
  margin-bottom: 20px;
}
 
.contact-left form input,
.contact-left form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  background: #eee;
  border-radius: 5px;
  font-size: 14px;
}
 
.contact-left .submit-btn {
  background-color: rgb(248, 67, 67);
  color: rgb(253, 254, 254);
  border: none;
  font-weight: bold;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 15px;
  transition: background 0.3s ease;
}
 
.contact-left .submit-btn:hover {
  background-color: white;
  border: 1px solid red;
  color: #409bf7;
}
 
/* Right Section */
.contact-right {
  flex: 1;
  padding: 30px;
  background-color: white;
}
 
.contact-right h3 {
  font-size: 18px;
  margin-top: 20px;
  font-weight: bold;
}
 
.contact-right p {
  font-size: 14px;
  color: #000000;
  margin-bottom: 20px;
  line-height: 1.6;
  font-weight: 600;
}
 
.map img {
  width: 100%;
  border-radius: 5px;
 
}


.input-icon {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #999;
  z-index: 2;
}

.glass-input {
  padding-left: 35px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #ccc;
  border-radius: 8px;
}

.bg-bitmax {
  background: linear-gradient(135deg, #283593, #5c6bc0);
}

.btn-bitmax {
  background: linear-gradient(to right, #5c6bc0, #3949ab);
  border: none;
  color: #fff;
}


/* end  */