/********** Template CSS **********/
:root {
    --primary: darkred;
    --secondary: #9B9B9B;
    --light: #F5F5F5;
    --dark: #161616;
}

.fw-medium {
    font-weight: 500 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-black {
    font-weight: 900 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}

body {
  font-size: 0.9rem; /* slightly smaller than the default 1rem */


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

/*** Navbar Base Styles ***/
.navbar.sticky-top {
    top: -100px;
    transition: 0.5s;
}
/* Navbar Flexbox Layout to Center the Button */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px; /* Adjust height for a better fit */
}

.navbar .navbar-nav {
  display: flex;
  align-items: center;
}

.navbar .navbar-nav .nav-link {
  margin-right: 20px;
  padding: 10px 15px;
}

.navbar .navbar-brand {
    height: 75px;
    display: flex;
    align-items: center;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: var(--dark);
    font-weight: 500;
    outline: none;
    transition: color 0.3s ease;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}
.responsive-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 1rem;
  padding: 0.75rem 2rem; /* vertical | horizontal */
  width: auto;            /* auto width, controlled by padding */
  min-width: 180px;       /* ensures minimum width on small screens */
  max-width: 250px;       /* prevents it from being too wide on large screens */
  height: 50px;           /* fixed height to keep uniformity */
  box-sizing: border-box;
}

/* Optional: adjust font size on smaller screens */
@media (max-width: 480px) {
  .responsive-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    min-width: 160px;
    height: 45px;
  }
}

.custom-navbar {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  font-size: 0.9rem; /* Reduce text size */
}

.custom-navbar .nav-link {
  padding: 0.25rem 0.5rem; /* Reduce link padding */
}
/* Move toggle button top-right, inline with brand */
.navbar-toggler {
  position: absolute;
  top: 50%;                 /* vertical center relative to navbar */
  right: 15px;              /* distance from right edge */
  transform: translateY(-50%); /* perfectly center vertically */
  padding: 0.25rem 0.5rem;  /* smaller size */
  border: none;
}

/* Optional: smaller icon size */
.navbar-toggler .navbar-toggler-icon {
  width: 28px;   /* default is ~30px */
  height: 28px;
}

/* Catalogue Button Styling */
.btn-catalogue {
  background: linear-gradient(135deg, darkred 0%, #a80000 100%); /* smooth dark red gradient */
  color: #fff;
  font-size: 15px;
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3); /* subtle depth */
  border: none;
}

/* Hover Effect */
.btn-catalogue:hover {
  background: linear-gradient(135deg, #b30000 0%, darkred 100%);
  box-shadow: 0 6px 16px rgba(139, 0, 0, 0.5); /* stronger glow */
  transform: translateY(-2px); /* slight lift */
}


/* Toggle Button: Top-right, inline with logo/title */
.navbar-toggler {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  padding: 0.25rem 0.5rem;
  border: none;
  z-index: 10001; /* above overlay */
}

.navbar-toggler .navbar-toggler-icon {
  width: 28px;
  height: 28px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  /* Stack nav links vertically */
  .navbar-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    width: 100%;
  }

  /* Catalogue button in mobile menu */
 /* Base styling */
.btn-catalogue {
  background-color: #0d6efd;
  color: #fff;
  padding: 12px 30px;
  font-size: 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.btn-catalogue:hover {
  background-color: #0b5ed7;
}

/* Full-height container */
.btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px; /* adjust as needed */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .btn-catalogue {
    font-size: 1.1rem;
    padding: 10px 25px;
  }

  .btn-container {
    min-height: 200px;
  }
}

@media (max-width: 576px) {
  .btn-catalogue {
    font-size: 1rem;
    padding: 8px 20px;
  }

  .btn-container {
    min-height: 150px;
  }
}

@media (max-width: 400px) {
  .btn-catalogue {
    font-size: 0.95rem;
    padding: 6px 15px;
  }

  .btn-container {
    min-height: 120px;
  }
}


  /* Half-screen right overlay */
  #navbarCollapse {
    position: fixed;
    top: 0;
    right: 0;             /* slide from right */
    width: 50%;           /* half screen */
    height: 100vh;        /* full height */
    background-color: white;
    padding: 60px 20px 20px; /* space for toggle + links */
    z-index: 9999;
    overflow-y: auto;
    transform: translateX(100%); /* hidden initially (offscreen right) */
    transition: transform 0.3s ease;
  }

  /* Slide in when menu is shown */
  #navbarCollapse.show {
    transform: translateX(0);
  }
}


/*** Dropdown Icon Customization ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 500;
    vertical-align: middle;
    margin-left: 8px;
}
.btn-catalogue {
  background-color: darkred;
  color: #fff;
  font-weight: 600;
  padding: 10px 25px;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

/* Light glow effect */
.btn-catalogue:hover {
  box-shadow: 0 0 12px rgba(220, 20, 60, 0.7); /* soft red glow */
  transform: translateY(-2px); /* small lift */
}






/*** Desktop Dropdown Animation ***/
@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s ease;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        opacity: 1;
    }
}

/*** Mobile Adjustments (≤ 991.98px) ***/
@media (max-width: 991.98px) {
    .navbar {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
        text-align: center;
    }

    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 12px 0;
    }

    .navbar .navbar-brand img {
        height: 40px;
    }

    .navbar .navbar-brand span {
        font-size: 16px;
        white-space: normal;
    }
}

/*** Extra Small Devices (≤ 576px) ***/
@media (max-width: 576px) {
    .navbar .navbar-brand img {
        height: 35px;
    }

    .navbar .navbar-brand span {
        font-size: 14px;
    }

    .navbar .navbar-nav .nav-link {
        padding: 8px 0;
    }
}
/* Make carousel full screen and responsive */
.owl-carousel-item img {
  width: 100%;
  height: 100vh;          /* full viewport height */
  object-fit:cover;       /* keep aspect ratio, fill screen */
}

/* Optional: make text scale nicely on mobile */
@media (max-width: 768px) {
  .owl-carousel-item h1 {
    font-size: 2rem;      /* smaller heading */
  }
  .owl-carousel-item p {
    font-size: 1rem;      /* smaller paragraph */
  }
  .owl-carousel-item .btn {
    padding: 10px 20px;   /* smaller buttons */
    font-size: 0.9rem;
  }
}




/*** Header ***/
/* Facts Card Styling */
.facts-card {
  background: #f5f5f5; /* light grey background instead of white */
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* softer shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.facts-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); /* softer hover shadow */
}

.facts-card h5 {
  color: #000000;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.facts-card span {
  color: #333333;
  line-height: 1.6;
  display: block;
}

/* Icon Circle */
.facts-card .btn-square {
  width: 64px;
  height: 64px;
  background: #f0f0f0; /* slightly darker grey for icon background */
  border: 2px solid #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Golden Number */
.fact-number {
  color: darkred; /* metallic gold */
  font-size: 3rem;
  font-weight: bold;
  margin: 0;
}

/* =============================
   HEADER CAROUSEL - BASE
============================= */
.header-carousel .carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

/* =============================
   NAVIGATION ARROWS (3D GLOW STYLE)
============================= */
.header-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    pointer-events: none;
    z-index: 10;
}

/* Arrow Buttons */
.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: rgba(0, 0, 0, 0.45);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    font-size: 24px;
    pointer-events: auto;
    transition: all 0.35s ease;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4),
                inset 0 0 10px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(6px);
}

/* Positioning */
.header-carousel .owl-nav .owl-prev {
    position: absolute;
    left: 25px;
}
.header-carousel .owl-nav .owl-next {
    position: absolute;
    right: 25px;
}

/* Hover Effects */
.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.15);
    border-color: var(--primary);
    box-shadow: 0 0 20px var(--primary),
                0 0 40px rgba(0, 0, 0, 0.3);
}

/* =============================
   DOTS BELOW (OPTIONAL)
============================= */
.header-carousel .owl-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.header-carousel .owl-dot {
    width: 14px;
    height: 14px;
    background: transparent;
    border: 1.5px solid #fff;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.header-carousel .owl-dot.active,
.header-carousel .owl-dot:hover {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}

/* =============================
   RESPONSIVE (MOBILE)
============================= */
@media (max-width: 768px) {
  .header-carousel .owl-nav .owl-prev,
  .header-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    font-size: 18px;
    background: rgba(0, 0, 0, 0.5);
  }

  /* left arrow */
  .header-carousel .owl-nav .owl-prev {
    left: 10px;
  }

  /* right arrow */
  .header-carousel .owl-nav .owl-next {
    right: 10px;
  }
}


.page-header-bt2{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/steel-pipelines-cables-plant1.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-bt1{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/abtsection.png) center center no-repeat;
    background-size: cover;
}
.page-header-bt3{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/banner\ 2.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-bt4{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/close-up-broken-manometers.jpg) center center no-repeat;
    background-size: cover;
}
.page-header-bt5{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/two-businessman-shake-hand-coffee-shop.jpg) center center no-repeat;
    background-size: cover;
}

.page-header-bt6{
    background: linear-gradient(rgba(22, 22, 22, .7), rgba(22, 22, 22, .7)), url(../img/customer-service-business-contact-concept-wooden-cube-block-which-print-screen-letter-telephone-email-address-message.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** About ***/

@media (min-width: 992px) {
    .container.about {
        max-width: 100% !important;
    }

    .about-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .about-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .about-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Service ***/
.service-points {
  list-style-type: none;       /* remove default bullets */
  padding-left: 0;             /* remove default padding */
  color: #654321;              /* match website theme */
  font-weight: 600;            /* bold text */
  font-size: 16px;             /* readable size */
  line-height: 2;              /* spacing between points */
  transition: all 0.3s ease;  /* smooth transition for hover */
}

.service-points li::before {
  content: "• ";               /* custom bullet */
  color: darkred;                /* bullet color */
  font-weight: bold;
  font-size: 18px;             /* slightly larger bullet */
  margin-right: 8px;           /* space between bullet and text */
}

.service-points li:hover {
  color: darkgreen;            /* text color changes on hover */
  cursor: pointer;             /* indicate interactivity */
}
/* Shake keyframes */
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.service-row {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.service-item {
    border-color: rgba(0, 0, 0, .03) !important;
}

.service-item .btn {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    color: #FFFFFF;
    background: var(--primary);
    border-radius: 38px;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Feature ***/
@media (min-width: 992px) {
    .container.feature {
        max-width: 100% !important;
    }

    .feature-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .feature-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .feature-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}

.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease-in-out;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hover Glow + Lift */
.glass-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
   /* green glow border */
}

/* Subtle animated shine overlay */
.glass-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(25deg);
  transition: 0.6s;
  opacity: 0;
}

.glass-card:hover::before {
  opacity: 1;
  top: -80%;
  left: -80%;
}

/* Heading Style */
.glass-card h3 {
  color: darkred;
  font-weight: bold;
  margin-top: 15px;
  font-size: 1.4rem;
  letter-spacing: 1px;
}

/* Icon */
.icon-glass {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, darkred, #00c6ff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 30px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0, 198, 255, 0.4);
  transition: all 0.3s ease;
}

/* Icon hover pulse */
.glass-card:hover .icon-glass {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 198, 255, 0.6);
}
/* Active Button */
.filter-btn.active {
  background: darkred;
  color: #fff !important;
  border: none; /* Remove border for active state */
}

/* Hover Effect – no border */
.filter-btn:hover {
  background: darkred;     /* Red background */
  color: #fff;             /* White text */
  border: none;            /* Remove border on hover */
  box-shadow: 0 4px 10px rgba(139, 0, 0, 0.3); /* subtle red glow */
}

/* Responsive for Mobile */
@media (max-width: 576px) {
  .filter-btn {
    font-size: 12px;          
    padding: 8px 14px;        
    margin: 3px;              
    display: inline-block;    
  }

  .filter-btn-group {
    display: flex;
    flex-wrap: wrap;          
    justify-content: center;  
    gap: 6px;                 
  }
}





.filter-btn {
  border-radius: 50px;               
  padding: 6px 16px;                 /* Comfortable padding */
  font-weight: 600;
  font-size: 14px;                   /* Slightly bigger for readability */
  text-transform: uppercase;
  transition: all 0.3s ease;
  border: 2px solid;
  color: darkred;
  background: #fff;
  margin: 4px;                       /* Enough gap between buttons */
  cursor: pointer;
  display: inline-block;             
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  min-height: 40px;                  /* Touch-friendly */
}

/* Hover Effect */
/* Contact Button Wrapper */
.contact-btn-wrapper {
  text-align: center;
  margin-top: 40px;
}

/* Contact Button Style */
.contact-btn {
  display: inline-block;
  background-color: darkred; /* Red */
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s, transform 0.3s, color 0.3s;
}

.contact-btn:hover {
  background-color: #c62828;
  color: #fff !important;  /* ✅ Keeps text white even on hover */
  transform: translateY(-3px);
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  .contact-btn {
    font-size: 16px;
    padding: 12px 24px;
  }
}

.market-section {
  padding: 15px 20px 40px 20px; /* reduced top padding from 30px/40px to 15px */
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Active Button */
.filter-btn.active {
  background: darkred;
  color: #fff !important;
  }

/* Responsive for Mobile */
@media (max-width: 576px) {
  .filter-btn {
    font-size: 12px;           /* Slightly smaller text */
    padding: 8px 14px;         /* Compact but still clickable */
    margin: 3px;               /* Reduce spacing */
    display: inline-block;     /* Wrap neatly */
  }

  .filter-btn-group {
    display: flex;
    flex-wrap: wrap;           /* Allow wrapping on small screens */
    justify-content: center;   /* Center align buttons */
    gap: 6px;                  /* Equal spacing */
  }
}

.product-card {
  border: none;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);  /* subtle shadow */
  transition: all 0.3s ease;
  background: #fff;  /* keep clean background */
}

.product-card:hover {
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);  /* glow effect */
  transform: translateY(-8px);             /* lift effect */
}

/* Image styling */
.product-card .card-img-top {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 0.75rem;
  border-top-right-radius: 0.75rem;
  transition: transform 0.3s ease;
}

.product-card:hover .card-img-top {
  transform: scale(1.05);
}
/* Base button style for desktop */
.btn-catalogue {
  background-color: darkred;
  color: white;
  font-size: 15px;       /* desktop font size */
  padding: 6px 22px;     /* desktop padding */
  border-radius: 28px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

/* Hover effect */
.btn-catalogue:hover {
  background-color: grey;
  color: #fff;
}

/* Mobile responsiveness */
@media (max-width: 991px) {
  .btn-catalogue {
    font-size: 13px;      /* smaller font on mobile */
    padding: 5px 18px;    /* reduce height and width */
    display: block;       /* make it block to allow centering */
    margin: 10px auto 0;  /* center horizontally and add top spacing */
    text-align: center;   /* text centered */
  }
}


/* Responsive image height */
@media (max-width: 768px) {
  .product-card .card-img-top {
    height: 150px;
  }
}

/* Card body styling */
.product-card .card-body {
  padding: 25px;
  margin :10px;
  text-align: center;
  border:#555;
  border:30px;
}

.product-card .card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card .card-text {
  font-size: 0.9rem;
  color: #555;
}
.explore-btn {
    display: inline-block;
    background: linear-gradient(45deg, #007bff, #00c6ff);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 35px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 10px rgba(0, 123, 255, 0.3);
}

.explore-btn:hover {
    background: linear-gradient(45deg, #0056b3, #0099cc);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 123, 255, 0.5);
}




/*** Quote ***/
@media (min-width: 992px) {
    .container.quote {
        max-width: 100% !important;
    }

    .quote-text  {
        padding-right: calc(((100% - 960px) / 2) + .75rem);
    }
}
/* CSS */
.banner-text {
  color: #654321;       /* Text color */
  text-align: justify;  /* Align text neatly */
  line-height: 1.6;     /* Optional: improves readability */
  font-size: 16px;      /* Adjust size as needed */
}


@media (min-width: 1200px) {
    .quote-text  {
        padding-right: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .quote-text  {
        padding-right: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Team ***/
.team-item {
    box-shadow: 0 0 45px rgba(0, 0, 0, .08);
}

.team-item img {
    transition: .5s;
}

.team-item:hover img {
    transform: scale(1.1);
}

.team-item .team-social {
    position: absolute;
    width: 0;
    height: 0;
    top: 50%;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 22, .7);
    opacity: 0;
    transition: .5s;
}

.team-item:hover .team-social {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
}

.team-item .team-social .btn {
    opacity: 0;
}

.team-item:hover .team-social .btn {
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    border-radius: 60px;
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Contact ***/
@media (min-width: 992px) {
    .container.contact {
        max-width: 100% !important;
    }

    .contact-text  {
        padding-left: calc(((100% - 960px) / 2) + .75rem);
    }
}

@media (min-width: 1200px) {
    .contact-text  {
        padding-left: calc(((100% - 1140px) / 2) + .75rem);
    }
}

@media (min-width: 1400px) {
    .contact-text  {
        padding-left: calc(((100% - 1320px) / 2) + .75rem);
    }
}


/*** Footer ***/
/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 2px 2px 5px rgba(0,0,0,0.3);
    transition: background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #20b358;
    text-decoration: none;
}

/* Footer - Minimal Top Padding */
.footer {
    padding-top: 0.25rem !important;
    padding-bottom: 1.5rem !important;
    font-size: 1rem;
}

.footer .container {
    padding-top: 0.25rem !important;
    padding-bottom: 1.5rem !important;
}

/* Logo column - vertically centered */
.footer .row.align-items-center {
    align-items: center !important;
}

.footer .col-md-2 {
    min-height: 380px;
    display: flex;
    align-items: center;
    padding-top: 60px;
}

/* Move Quick Links slightly to the right */
.quick-links-column {
    padding-left: 10rem; /* increase from 8rem to 10rem */
    /* or you can use margin-left instead: */
    /* margin-left: 2rem; */
}

.category-column {
    padding-left: 15rem; /* Category column moves even more to the right */
}

@media (max-width: 991px) {
    .quick-links-column,
    .category-column {
        padding-left: 1rem; /* reset on smaller screens */
    }
}

/* Footer columns moved down */
.footer-columns-down {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}


/* Footer text sizes - Increased */
.footer h5, .footer h6 {
    font-size: 1.3rem;
}

/* Follow Us heading - smaller font */
.footer .col-md-2 h6 {
    font-size: 1.1rem;
}

.footer .btn.btn-link {
    font-size: 1rem;
}

.footer p {
    font-size: 1rem;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--secondary);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

/* Social buttons */
.btn-social {
    width: 40px;
    height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4a4a4a;
    border-radius: 50%;
    color: #b0b0b0;
    transition: all 0.3s ease;
}

.btn-social:hover {
    background-color: darkred;
    border-color: darkred;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer sections styling */
.footer-section,
.footer-section .footer-bottom,
.footer-section .container-fluid {
    background-color: #000 !important;
    color: #b0b0b0;
    padding: 20px 15px;
    padding-top: 10px;
    margin: 0;
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    margin-bottom: 1.5rem !important;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, darkred, #20c997);
    border-radius: 2px;
}

.footer-contact p {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

.footer-contact i {
    color: darkred;
    font-size: 1.1rem;
}

.social-links {
    margin-top: 1rem;
}

.footer-links {
    margin-top: 1rem;
}

.footer-link {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1rem;
    line-height: 1.8;
    transition: all 0.3s ease;
    padding: 0.2rem 0;
}

.footer-link:hover {
    color: darkred;
    padding-left: 0.5rem;
}

.footer-link i {
    color: #666666;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover i {
    color: darkred;
}

.footer-link.text-success {
    color: darkred !important;
}

.footer-link.text-success i {
    color: darkred !important;
}

.footer-text {
    color: #b0b0b0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Copyright Section */
.footer-bottom {
    background-color: #1a1a1a;
    border-top: 1px solid #3a3a3a;
}

.copyright-text {
    color: #888888;
    font-size: 0.95rem;
}

.designer-text {
    color: #888888;
    font-size: 0.95rem;
}

.designer-text a {
    color: darkred !important;
    font-weight: 500;
}

.designer-text a:hover {
    color: darkred !important;
}

.quick-links a {
    font-size: 1rem;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus states for accessibility */
.footer-link:focus,
.btn-social:focus,
.newsletter-input:focus,
.newsletter-btn:focus {
    outline: 2px solid darkred;
    outline-offset: 2px;
}

/* CSS Variables */
:root {
    --bg: #ffffff;
    --card-bg: #f8f9fa;
    --muted: #6c757d;
    --primary: darkred;
    --secondary: #b0b0b0;
    --highlight: darkred;
}

/* Responsive: left-align address on mobile */
@media (max-width: 767px) {
    .footer-address {
        text-align: left !important;
    }

    .footer {
        padding-top: 0.25rem !important;
    }

    .footer .container {
        padding-top: 0.25rem !important;
    }

    .footer .col-md-2 {
        min-height: auto;
        margin-bottom: 20px;
        padding-top: 0;
        padding-right: 20px;
    }

    .footer-columns-down {
        margin-top: 20px;
        padding-right: 20px;;
    }

   .quick-links-column,
.category-column {
    padding-left: 1rem; /* moves content slightly to the right */
    padding-right: 4rem; /* keeps some space on right */
}

/* Optional: more shift on larger screens */
@media (min-width: 768px) {
    .quick-links-column,
    .category-column {
        padding-left: 2rem; /* more space from left on tablets/desktop */
        padding-right: 4rem;
    }
}

@media (min-width: 1200px) {
    .quick-links-column,
    .category-column {
        padding-left: 3rem; /* desktop spacing */
        padding-right: 1rem;
    }
}
}

/* Three columns alignment */
@media (max-width: 991px) {
    .footer .row.g-5 {
        text-align: left;
        gap: 40px;
    }

    .footer .col-md-4 {
        width: 100%;
    }

    .footer .btn-social {
        margin-bottom: 8px;
    }

    .footer .container.pt-2 {
        padding: 15px 15px;
    }

    .container-fluid.py-4 .col-md-6 {
        text-align: center !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 768px) {
    .footer-section .col-lg-3 {
        margin-bottom: 2rem;
    }

    .footer-bottom .col-md-6 {
        text-align: center !important;
        margin-bottom: 1rem;
    }

    .footer-bottom .col-md-6:last-child {
        margin-bottom: 0;
    }
}

/* Stats Grid for 3 cards in a row */
h1 {
  font-size: 6.5rem;       /* bigger than default */
  font-weight: 900;        /* bold */
  color: #1a1a1a;          /* dark color for contrast */
  margin-bottom: 0.5rem;   /* spacing below the heading */
  font-family: 'Poppins', 'Segoe UI', sans-serif; /* modern clean font */
}

/* Stats Grid Layout */
.stats-grid {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 30px; /* space between cards */
  margin-top: 40px;
  flex-wrap: wrap; /* responsive for smaller screens */
}


/* Hover Effect */
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

/* Icon */
.stat-icon img {
  width: 60px;
  height: 60px;
}

/* Stat Body */
.stat-body {
  text-align: left;
}

/* Number */
.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: darkred;
  margin-bottom: 6px;
}

/* Label */
.stat-label {
  font-size: 1rem;
  font-weight: 500;
  color: #333;
}

/* Responsive: Stack on small screens */
@media (max-width: 992px) {
  .stat-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 32px;                             /* spacing between cards */
  justify-items: stretch;                 /* cards stretch to fill column */
}

/* Horizontal Cards */
.stat-card {
  display: flex;
  flex-direction: row;         /* icon + text in a row */
  align-items: center;
  gap: 32px;
  background: var(--card-bg, #fff);
  padding: 32px 48px;          /* extra horizontal padding */
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  border: 1px solid transparent;
  width: 100%;                 /* take full width of parent */
  min-width: 0;
  flex: 1 1 33%;               /* allow 3 cards in one row */
  max-width: 380px;            /* control how wide each card grows */
}

/* Hover effect */
.stat-card:hover {
  transform: translateY(-6px);
  border-color: var(--highlight, red);
  box-shadow: 0 12px 35px red(13,110,253,0.2);
}

/* Icon styling */
.stat-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(13,110,253,0.12);
}

.stat-icon img,
.stat-icon svg {
  width: 36px;
  height: 36px;
}

/* Text content */
.stat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #212529;
}

.stat-suffix {
  margin-left: 6px;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary, #0d6efd);
}

.stat-label {
  font-size: 18px;
  margin-top: 6px;
  font-weight: 500;
  color: var(--muted, #6c757d);
}
.stats-header {
  text-align: center;   /* centers all text inside the header */
  margin-bottom: 45px;  /* space below header */
}
.stats-header h1 {
  margin: 0 0 2px; /* reduced bottom margin further */
  font-size: 45px;
  color: #6c757d; /* lighter color */
  line-height: 1.1; /* tighter line spacing */
}


.stats-header p {
  margin: 0;
  font-size: 16px;
  color: var(--muted, #6c757d);
}
/* ===== Stats Section Base ===== */
#stats-section {
  text-align: center;
  padding: 50px 20px;
}

.stats-header h1 {
  font-size: 2rem;
  color: #333;
}

.stats-header p {
  font-size: 1rem;
  color: #555;
}

.stats-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.stat-card {
  background: #fff;
  padding: 30px;          /* increased from 20px */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15); /* slightly stronger shadow */
  flex: 1;
  max-width: 350px;       /* increased from 280px */
}


.stat-icon img {
  width: 50px;
  margin-bottom: 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: darkred;
}

.stat-label {
  font-size: 1rem;
  color: #555;
}

/* ===== Mobile Responsiveness ===== */
@media (max-width: 991px) {
  .stats-grid {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-card {
    flex: 1 1 45%;   /* 2 cards per row on tablets */
    max-width: 100%;
  }
}

@media (max-width: 576px) {
  .stat-card {
    flex: 1 1 100%;  /* full width on mobile */
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .stat-label {
    font-size: 0.9rem;
  }
}


/* Responsive */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 560px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { gap:16px; padding:14px; }
  .stat-number { font-size:30px; }
  .stat-suffix { font-size:22px; }
  .stat-label { font-size:15px; }
  .stat-icon { width:60px; height:60px; }
  .stat-icon svg { width:30px; height:30px; }
}
/* ✅ WhatsApp Floating Button Style */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;       /* Distance from bottom */
  right: 20px;        /* Distance from right */
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  background-color: #20ba5a;
  transform: scale(1.1);
}

/*logs*/
/* =======================
   LOGO STRIP (Two Rows)
======================= */
/* ------------------------------
   LOGO STRIP SECTION
/* ============================================
   LOGO STRIP SECTION - ENHANCED VISUAL DESIGN
============================================ */
.logo-strip {
  width: 100%;
  padding: 70px 0;
  display: flex;
  flex-direction: column;
  gap: 40px; /* space between rows */
  overflow: hidden;
  background: linear-gradient(to bottom, #ffffff, #f9f9f9);
  position: relative;
}

/* Subtle ambient light behind section */
.logo-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.05), transparent 70%);
  z-index: 0;
}

/* ============================================
   MARQUEE WRAPPER
============================================ */
.marquee {
  overflow: hidden;
  width: 100%;
  padding: 25px 0;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  backdrop-filter: blur(4px);
}

/* Gradient variations for depth */
.marquee:nth-child(1) { background: linear-gradient(to right, #ffffff, #f8f8f8); transform: translateY(0px);}
.marquee:nth-child(2) { background: linear-gradient(to right, #f9f9f9, #ffffff); transform: translateY(5px);}
.marquee:nth-child(3) { background: linear-gradient(to right, #ffffff, #f7f7f7); transform: translateY(10px);}

/* Soft glowing border line on hover */
.marquee:hover {
  box-shadow: 0 0 25px rgba(0, 150, 255, 0.1);
  transition: box-shadow 0.5s ease;
}

/* ============================================
   SCROLLING CONTENT
============================================ */
.marquee-content {
  display: flex;
  gap: 100px;
  animation: marquee 28s linear infinite;
  position: relative;
  z-index: 1;
}

/* Reverse scroll for alternate rows */
.marquee.reverse .marquee-content {
  animation: marqueeReverse 32s linear infinite;
}

/* ============================================
   LOGO STYLING
============================================ */
.marquee-content .logo {
  width: 140px;
  height: auto;
  transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
  filter: grayscale(40%) brightness(0.95);
  border-radius: 14px;
  cursor: pointer;
  animation: float 5s ease-in-out infinite;
  background: white;
  padding: 8px;
}

/* Hover effect: gentle glow and lift */
.marquee-content .logo:hover {
  transform: scale(1.15) translateY(-6px);
  filter: grayscale(0%) brightness(1.05);
  box-shadow: 0 12px 30px green;
  background: linear-gradient(to bottom, #ffffff, #f0faff);
}

/* ============================================
   FLOAT ANIMATION (soft up-down motion)
============================================ */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ============================================
   SCROLLING ANIMATIONS
============================================ */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeReverse {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ============================================
   EDGE FADE EFFECT (for realistic fade edges)
============================================ */
.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(to right, #ffffff, rgba(255,255,255,0)); }
.marquee::after { right: 0; background: linear-gradient(to left, #ffffff, rgba(255,255,255,0)); }

/* ============================================
   RESPONSIVE OPTIMIZATION
============================================ */
@media (max-width: 992px) {
  .marquee-content { gap: 70px; }
  .marquee-content .logo { width: 110px; }
}

@media (max-width: 576px) {
  .marquee-content { gap: 50px; }
  .marquee-content .logo { width: 90px; }
}

/* ============================================
   INTERACTIVE BEHAVIOR
============================================ */
/* =============================
  /* ==============================
   WHY SECTION - Red & White Theme
============================== */
.why-section {
 background:  rgba(0, 255, 0, 0.02);  /* light transparent green */
  /* light transparent green */
  /* very light transparent blue */
  text-align: center;
  padding: clamp(50px, 6vw, 90px) 20px;
  font-family: 'Poppins', sans-serif;
  border-radius: 16px;                  /* soft edges */
  backdrop-filter: blur(1px); 
  margin-top:25px;          /* subtle glass effect */
}

/* Decorative tag above title */
.section-tag {
  display: inline-block;
 background: rgba(173, 216, 230, 0.5); /* light blue with 50% transparency */
                  /* dark red background */
  color: black;                            /* white text */
  font-weight: 600;                        /* semi-bold text */
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;                       /* reduced font size */
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.08);
}


/* Main title */
.section-title {
font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: black;                        /* red title */
}

/* Subtitle under title */
.section-subtitle {
font-size: clamp(1.2rem, 2vw, 1.6rem);
 color: #444;
  margin-bottom: 30px;
}

/* Description paragraph */
.section-description {
  max-width: 800px;
  margin: 0 auto 60px;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.75;
  padding: 0 12px;
}

/* ==============================
 .feature-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-top: 18px;
  padding: 0 10px;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}

/* ✨ On hover: light white + subtle glow */
.feature-card p {
  font-size: 1.05rem;
  color: #555;
  line-height: 1.7;
  margin-top: 18px;
  padding: 0 10px;
  transition: color 0.4s ease, text-shadow 0.4s ease;
}



/* ==============================
   RESPONSIVE STYLING
============================== */
@media (max-width: 992px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 25px 25px;
  }
}

@media (max-width: 480px) {
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 20px 20px;
  }

  .section-title {
    font-size: 1.7rem;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  .feature-card {
    padding: 22px 18px;
  }
}

/* =============================
/* ======== Section Base ======== */


.market-section {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.04), rgba(0, 0, 0, 0.03));
  padding: 90px 60px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

.market-container {
  display: flex;
  align-items: flex-start;          /* align both sides from top */
  justify-content: space-between;   /* keep left & right separate */
  flex-wrap: nowrap;                /* ❗ prevents breaking into multiple lines */
  max-width: 1200px;                /* enough width for side-by-side layout */
  margin: 0 auto;
  gap: 80px;                        /* space between left & right */
}
/* ======== Left Side ======== */
.market-left {
  flex: 1;
  min-width: 320px;
  animation: fadeInLeft 1s ease forwards;
}

.market-left h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  border-left: 5px solid #e63946;
  padding-left: 15px;
}

.market-left p {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  max-width: 520px;
  text-align: justify;
}

/* ======== Right Side ======== */
/* ======== RIGHT SIDE ======== */
.market-right {
  flex: 1;
  min-width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;      /* cards start from top */
  align-items: flex-end;            /* ✅ keep cards perfectly right-aligned */
  gap: 25px;                        /* space between cards */
  animation: fadeInRight 1s ease forwards;
}

/* ======== Card Style ======== */
.stat-card {
  width: 90%;
  max-width: 500px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  padding: 30px 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 25px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(230, 57, 70, 0.1), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

/* ======== Logo and Text ======== */
.platform-logo {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.stat-info h2 {
  font-size: 2.2rem;
  color: #e63946;
  font-weight: 700;
  margin-bottom: 6px;
}

.stat-info p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

/* ======== Responsive ======== */
@media (max-width: 992px) {
  .market-container {
    flex-direction: column;
    text-align: center;
  }

  .market-left h1 {
    font-size: 2.3rem;
    text-align: center;
    border-left: none;
    padding-left: 0;
  }

  .market-left p {
    margin: 0 auto;
    text-align: center;
  }

  .market-right {
    width: 100%;
  }

  .stat-card {
    width: 100%;
    max-width: 600px;
    justify-content: center;
    text-align: left;
  }

  .stat-info p {
    font-size: 0.95rem;
  }
}

/* ======== Animations ======== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ======== MARKET PRESENCE SECTION ======== */
.market-section {
  background: linear-gradient(135deg, rgba(255, 0, 0, 0.03), rgba(0, 0, 0, 0.02));
  padding: 90px 60px;
  font-family: 'Poppins', sans-serif;
  overflow: hidden;
}

/* Main container */
.market-container {
  display: flex;
  align-items: flex-start;          /* aligns left & right from top */
  justify-content: space-between;   /* left on left, right on right */
  flex-wrap: wrap;
  max-width: 1200px;                
  margin: 0 auto;
  gap: 60px;
}

/* ======== LEFT CONTENT ======== */
.market-left {
  flex: 1;
  min-width: 420px;
  animation: fadeInLeft 1s ease forwards;
  text-align: left;
}

/* ======== RIGHT SIDE ======== */
.market-right {
  flex: 1;
  min-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  animation: fadeInRight 1s ease forwards;
  align-items: flex-end;            
}

/* ======== CARD STYLE ======== */
.stat-link {
  text-decoration: none;
  color: inherit;
  display: block;
  width: 100%;
  position: relative;
}

/* Card Base Styling */
.stat-card {
  width: 95%;
  max-width: 850px;
  min-height: 40px;
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  min-width: 250px; /* prevent shrinking too much on small screens */
}

/* Sweep glow effect */
.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, rgba(230, 57, 70, 0.15), rgba(255, 255, 255, 0));
  transition: all 0.6s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(230, 57, 70, 0.2);
}

/* ======== LOGO INSIDE CARD ======== */
.platform-logo {
  width: 90px;
  height: auto;
  flex-shrink: 0;
  align-self: center;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
  transition: transform 0.3s ease;
}

.stat-card:hover .platform-logo {
  transform: scale(1.08);
}

/* ======== CARD TEXT ======== */
.stat-info h2 {
  font-size: 2.4rem;
  color: #e63946;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
}

.stat-info p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* ===== RESPONSIVE ADJUSTMENTS ===== */

/* Tablet devices */
@media (max-width: 992px) {
  .stat-info h2 {
    font-size: 2rem;
  }
  .stat-info p {
    font-size: 1rem;
  }
  .stat-card {
    width: 100%;
    max-width: 600px;
    justify-content: flex-start;
  }
}

/* Mobile devices - stack & center everything */
@media (max-width: 767px) {
  .market-container {
    flex-direction: column; /* stack left & right */
    gap: 1.5rem;
    align-items: center;    /* center left & right sections horizontally */
  }

  .market-left, .market-right {
    width: 100%; 
    display: flex;
    flex-direction: column;
    align-items: center;    /* center children inside each section */
    text-align: center;     /* center heading, paragraph, list */
  }

  .stat-card {
    flex-direction: column; /* stack logo above text */
    align-items: center;
    text-align: center;
    padding: 1rem 0.5rem;
  }

  .platform-logo {
    width: 50px;
    height: 50px;
    margin-bottom: 0.5rem;
  }

  .stat-info h2 {
    font-size: 1.3rem;
  }

  .stat-info p {
    font-size: 0.85rem;
  }
}

/* Very small mobile devices */
@media (max-width: 480px) {
  .stat-card {
    padding: 0.8rem 0.5rem;
  }

  .platform-logo {
    width: 40px;
    height: 40px;
  }

  .stat-info h2 {
    font-size: 1.1rem;
  }

  .stat-info p {
    font-size: 0.8rem;
  }
}
}