/* Reset & base styles */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
a{
    text-decoration: none !important; 
        color: inherit; /* Optional: Removes the default blue color */

}
html,
body {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background-color: #201F1F !important;
}

body {
  background: #282727;
  font-family: 'Satoshi', sans-serif;
}

.playfair-medium-italic {
  font-family: 'Playfair Display', sans-serif;
  font-weight: 100;   /* Medium */
  font-style: italic;
}

/* Satoshi font family */
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.ttf') format('truetype');
  font-weight: 900;
}


 
 
 h1,h2,h3,h4,h5,h6,a,p{
    font-family: 'Satoshi';
 }
 
 
 .main-header{
   position: absolute;
    width: 100%;
    right: 0;
    left: 0;
    margin-top: 40px;
   z-index: 9999;
   padding:0 100px;
   top: 0;
 }
 .header-btn{
    font-size: 18px;
    font-weight: 400;
    border-radius: 30px 30px 30px 30px;
    padding: 14px 35px 14px 35px;
    background: rgba(255, 255, 255, 0.07) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px) !important;
    border: 1px solid rgba(255, 255, 255, 0.97) !important;
    text-decoration: none;
    color: #fff;
}

/* Menu Toggle Button */
.menu-toggle-btn {
    background: transparent;
    border: none;
    border-radius: 30px;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    position: relative;
}

.menu-toggle-btn:hover {
    opacity: 0.8;
    transform: scale(1.05);
}

.menu-toggle-btn.active {
    opacity: 0.6;
}

.hamburger-icon-img {
    width: 30px;
    height: 30px;
    display: block;
    transition: all 0.3s ease;
}

.mobile-menu-icon {
    cursor: pointer;
}

/* Mega Dropdown Menu */
.mega-dropdown-menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow: hidden;
    padding: 80px;
    box-sizing: border-box;
    transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                visibility 0s 0.6s, 
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    visibility: hidden;
    opacity: 0;
}

.mega-dropdown-menu.active {
    top: 0;
    visibility: visible;
    opacity: 1;
    transition: top 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                visibility 0s, 
                opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}


/* Close Button */
.menu-close-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: rgba(206, 245, 1, 0.1);
    border: 1px solid #CEF501;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: all 0.3s ease;
}

.menu-close-btn:hover {
    background: rgba(206, 245, 1, 0.2);
    border-color: #CEF501;
    transform: rotate(90deg);
}

.close-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    position: relative;
}

.close-line {
    position: absolute;
    width: 20px;
    height: 2px;
    background-color: #CEF501;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

.menu-close-btn:hover .close-line {
    background-color: #fff;
}

.mega-menu-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    height: calc(100vh - 160px);
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mega-menu-container::-webkit-scrollbar {
    width: 6px;
}

.mega-menu-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
}

.mega-menu-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.mega-menu-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.3);
}

.mega-menu-grid {
    width: 60%;
    max-width: 1400px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    background-color: #000;
    border-radius: 20px;
    gap: 0;
    margin: 0 auto;
    min-height: calc(100vh - 160px);
    box-sizing: border-box;
}

















.mega-menu {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0; /* no spacing for perfect alignment */
}

/* Base box */
.mega-menu-section {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  margin: 0;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mega-menu-section.bottom-grid
{
    padding: 30px;
}


.mega-menu-section.top-grid
{
    padding: 30px;
}


/* Shared pseudo-elements */
.mega-menu-section::before,
.mega-menu-section::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
}

/* ===== TOP ROW ===== */
/* BOX 1: no left, right 80%, bottom 80% from start */
.mega-menu-section:nth-child(1)::before {
  top: 20%;
  right: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(1)::after {
  bottom: 0;
  left: 20%;
  width: 80%;
  height: 1px;
}

/* BOX 2: left/right 80% height, bottom full */
.mega-menu-section:nth-child(2)::before {
  top: 20%;
  left: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(2)::after {
  top: 20%;
  right: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(2) {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BOX 3: left/right 80% height, bottom full */
.mega-menu-section:nth-child(3)::before {
  top: 20%;
  left: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(3)::after {
  top: 20%;
  right: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(3) {
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* BOX 4: left 80% height, no right, bottom 80% from end */
.mega-menu-section:nth-child(4)::before {
  top: 20%;
  left: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(4)::after {
  bottom: 0;
  right: 20%;
  width: 80%;
  height: 1px;
}

/* ===== BOTTOM ROW ===== */
/* BOX 5: right 80% height, no left, top 80% from start */
.mega-menu-section:nth-child(5)::before {
  top: 0;
  right: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(5)::after {
  top: 0;
  left: 20%;
  width: 80%;
  height: 1px;
}

/* BOX 6: left/right 80% height, top full */
.mega-menu-section:nth-child(6)::before {
  top: 0;
  left: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(6)::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(6) {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* BOX 7: left/right 80% height, top full */
.mega-menu-section:nth-child(7)::before {
  top: 0;
  left: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(7)::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(7) {
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* BOX 8: left 80% height, no right, top 80% from end */
.mega-menu-section:nth-child(8)::before {
  top: 0;
  left: 0;
  width: 1px;
  height: 80%;
}
.mega-menu-section:nth-child(8)::after {
  top: 0;
  left: 0;
  width: 80%;     /* visible part */
  right: 0;       /* leaves empty space from end */
  height: 1px;
}










.mega-menu-section:first-child,
.mega-menu-grid .mega-menu-section:nth-child(4n-3) {
    margin-left: 0;
}

.mega-menu-grid .mega-menu-section:nth-child(-n+4) {
    margin-top: 0;
}

.mega-menu-section:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.mega-menu-section.highlighted-section {
    border: 2px solid #CEF501;
    box-shadow: 0 0 20px rgba(206, 245, 1, 0.3);
}

.mega-menu-title {
    font-size: 12px;
    font-weight: 600;
    color: #797D86;
    margin: 10px 0px 0px 0px;
    padding: 20px 0px 0px 20px;
    /* margin-bottom: 20px; */
    /* padding-bottom: 15px; */
    /* border-bottom: 1px solid rgba(255, 255, 255, 0.1); */
}

.mega-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0px;
}

.mega-menu-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.mega-menu-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(8px);
}

.menu-item-icon {
    font-size: 18px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.menu-item-icon i {
    font-size: 18px;
}

.mega-menu-item:hover .menu-item-icon {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
    color: rgba(255, 255, 255, 1);
    transform: scale(1.05);
}

.menu-item-content a{
    text-decoration: none;
    color: inherit; /* Optional: Removes the default blue color */


}
.menu-item-content h4 {
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.menu-item-content p {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.3;
}

/* Neon Promo Section */
/* .mega-menu-section.neon-promo {
    background: linear-gradient(135deg, rgba(206, 245, 1, 0.1), rgba(206, 245, 1, 0.05));
    border: 1px solid rgba(206, 245, 1, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
} */
.mega-menu-section.text-area {
    /* background: linear-gradient(135deg, rgba(206, 245, 1, 0.1), rgba(206, 245, 1, 0.05)); */
    /* border: 1px solid rgba(206, 245, 1, 0.3); */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.neon-logo {
    font-size: 80px;
    font-weight: 900;
    color: #CEF501;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 20px rgba(206, 245, 1, 0.5)); 
    font-family: 'Satoshi', sans-serif;
}

.neon-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    margin: 5px 0 0 0;
}

/* Responsive Design */
@media (max-width: 1400px) {
    .mega-menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    /* .mega-menu-section.neon-promo {
        grid-column: span 3;
    } */

    .mega-menu-section.text-area {
        grid-column: span 3;
    }
    
    .mega-menu-section {
        margin-left: -1px;
        margin-top: -1px;
    }
    
    .mega-menu-section:first-child,
    .mega-menu-grid .mega-menu-section:nth-child(3n-2) {
        margin-left: 0;
    }
    
    .mega-menu-grid .mega-menu-section:nth-child(-n+3) {
        margin-top: 0;
    }
}

@media (max-width: 1200px) {
    .mega-dropdown-menu {
        height: 100vh;
        max-height: 100vh;
        padding: 60px;
    }
    
    .mega-menu-container {
        height: calc(100vh - 120px);
    }
    
    .menu-close-btn {
        top: 25px;
        right: 25px;
        width: 45px;
        height: 45px;
    }
    
    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* .mega-menu-section.neon-promo {
        grid-column: span 2;
    } */

    .mega-menu-section.text-area {
        grid-column: span 2;
    }
    
    .mega-menu-section.top-grid,
    .mega-menu-section.bottom-grid {
        padding: 25px;
    }
    
    .mega-menu-section {
        margin-left: -1px;
        margin-top: -1px;
    }
    
    .mega-menu-section:first-child,
    .mega-menu-grid .mega-menu-section:nth-child(2n-1) {
        margin-left: 0;
    }
    
    .mega-menu-grid .mega-menu-section:nth-child(-n+2) {
        margin-top: 0;
    }
}

@media (min-width: 769px) and (max-width: 991px) {
    .mega-dropdown-menu {
        padding: 40px;
        height: 100vh;
        max-height: 100vh;
    }
    
    .mega-menu-container {
        height: calc(100vh - 80px);
    }
    
    .menu-close-btn {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .close-icon {
        width: 20px;
        height: 20px;
    }
    
    .close-line {
        width: 16px;
    }
    
    .mega-menu-grid {
        grid-template-columns: 1fr;
        width: 100%;
        border-radius: 0px;
        min-height: calc(100vh - 80px);
    }
    
    /* .mega-menu-section.neon-promo {
        grid-column: span 1;
        min-height: 200px;
    } */

    .mega-menu-section.text-area {
        grid-column: span 1;
        min-height: 200px;
    }
    
    .neon-logo {
        font-size: 60px;
    }
    
    .mega-menu-section {
        margin-left: 0 !important;
        margin-top: -1px !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-right: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
        padding: 20px;
    }
    
    .mega-menu-section.top-grid,
    .mega-menu-section.bottom-grid {
        padding: 20px;
    }
    
    .mega-menu-section:first-child {
        margin-top: 0 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
}

@media (max-width: 767px) {
    .mega-dropdown-menu {
        padding: 30px;
        height: 100vh;
        max-height: 100vh;
    }
    
    .mega-menu-container {
        padding: 0;
        height: calc(100vh - 60px);
        overflow-y: scroll;
    }
    
    .mega-menu-section {
        padding: 20px;
    }
    
    .mega-menu-section.top-grid,
    .mega-menu-section.bottom-grid {
        padding: 20px;
    }
    
    /* .mega-menu-section.neon-promo {
        min-height: 180px;
    } */
    
     .mega-menu-section.text-area {
        min-height: 180px;
    }
    
    .mega-menu-title {
        font-size: 14px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }
    
    .mega-menu-items {
        gap: 10px;
    }
    
    .mega-menu-item {
        padding: 6px;
        gap: 10px;
    }
    
    .menu-item-icon {
        font-size: 16px;
        width: 40px;
        height: 40px;
    }
    
    .menu-item-icon i {
        font-size: 16px;
    }
    
    .menu-item-content h4 {
        font-size: 7px;
    }
    
    .menu-item-content p {
        font-size: 11px;
    }
    
    .neon-logo {
        font-size: 50px;
        margin-bottom: 10px;
    }
    
    .neon-subtitle {
        font-size: 11px;
    }
    
    .hamburger-icon-img {
        width: 45px;
        height: 45px;
    }
    
    .menu-close-btn {
        top: 15px;
        right: 15px;
        width: 38px;
        height: 38px;
    }
    
    .close-icon {
        width: 18px;
        height: 18px;
    }
    
    .close-line {
        width: 14px;
        height: 1.5px;
    }
}

/* Mobile & Tablet */
@media (min-width: 769px) and (max-width: 991px) {
    .main-header {
        padding: 0 20px; /* smaller padding */
        margin-top: 20px;
    }

    .main-header .row {
        justify-content: space-between;
        align-items: center;
    }

   


    /* Add hamburger back manually on right */
    .mobile-hamburger {
        display: block;
        width: 30px;
        height: 30px;
        background: url('../images/hamburger.png') no-repeat center;
        background-size: contain;
    }
}

@media (max-width: 720px) {
    .mega-menu-grid{
    width: 100% !important;
    }
 
}


/* ================= COMMON HERO SECTION ================= */
.her-bg-section {
    position: relative;
    overflow: hidden;
    background-color: #171717;
    background-image: url('../images/herosection-bg.png');
    padding: 200px 50px 50px; /* adjusted for smaller screens */
    z-index: 1;
    min-height: 100vh;
}

/* Smooth gradient transition at bottom of hero section */
.her-bg-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        transparent 0%, 
        rgba(23, 23, 23, 0.3) 30%,
        rgba(32, 31, 31, 0.6) 70%,
        rgba(32, 31, 31, 0.95) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.her-bg-section > .container-fluid {
    position: relative;
    z-index: 2;
}

.her-bg-section > .container-fluid > .row {
    position: relative;
    z-index: 3;
}

/* ================= BUTTONS ================= */
.her-bg-section .a1{ background-color: #486D1459; font-size: 18px; font-weight: 400; border-style: solid; border-width: 1px 1px 1px 1px; border-color: #486D14; border-radius: 50px 50px 50px 50px; display: flex; width: fit-content; text-decoration: none; color: #fff; padding: 10px 30px; align-items: center; gap: 10px; }
.her-bg-section .a2{ background-color: #202020; font-size: 18px; font-weight: 400; border-style: solid; border-width: 2px 2px 2px 2px; border-color: #486D14; border-radius: 50px 50px 50px 50px; display: flex; width: fit-content; text-decoration: none; color: #fff; padding: 10px 30px; align-items: center; gap: 10px; }
/* ================= HEADINGS & TEXT ================= */
.her-bg-section h1 {
    font-size: 84px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    padding-top: 25px;
}

.her-bg-section h1 span {
    font-family: 'Playfair Display', Sans-serif;
    font-style: italic;
}

.her-bg-section p {
    font-size: 20px;
    font-weight: 400;
    color: #FFFFFF80;
    padding-bottom: 15px;
}

/* ================= VIDEO ================= */
.her-bg-section .text-end video {
    max-width: 100%; /* responsive */
    height: auto;
    border: 5px solid #486d1459;
    border-radius: 5px;
    transition: all 0.5s ease;
}

/* ================= BACKGROUND CIRCLES ================= */
.bg-circle {
 position: absolute; width: 750px; height: 750px; background-repeat: no-repeat; background-size: contain; filter: blur(80px); opacity: 0.9;
}

.bgGradient {
width: 650px; height:650px; border-radius: 50%; opacity: 1; filter: blur(70px); border: solid 1px #FFF; position: absolute; animation-name: blur-animation; animation-duration: 20s; animation-iteration-count: infinite;
}

/* ================= GREEN CIRCLES ================= */
.green {
    top: 15%;
    right: -10%;
    background-image: url('../images/vectors/hero-bg-circle.svg');
    animation: green-move 20s ease-in-out infinite;
}

.green-2 {
    top: 25%;
    right: -15%;
    animation-duration: 26s;
    opacity: 0.7;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ================= YELLOW CIRCLES ================= */
.yellow {
    top: -20%;
    left: 5%;
    background-image: url('../images/vectors/hero-bg-circle4.png');
    animation: yellow-vertical 18s ease-in-out infinite;
    background-repeat: no-repeat;
    background-size: cover;
}

.yellow-diagonal {
    top: -25%;
    right: -15%;
    left: auto;
    background-image: url('../images/vectors/hero-bg-circle4.png');
    animation: yellow-diagonal-move 22s ease-in-out infinite;
    opacity: 0.75;
}

/* ================= KEYFRAMES ================= */
@keyframes green-move {
    0% { right: -10%; }
    50% { right: 75%; }
    100% { right: -10%; }
}

@keyframes yellow-vertical {
    0% { top: -20%; }
    50% { top: 70%; }
    100% { top: -20%; }
}

@keyframes yellow-diagonal-move {
    0% { top: -25%; right: -15%; }
    50% { top: 70%; right: 70%; }
    100% { top: -25%; right: -15%; }
}

/* ================= MEDIA QUERIES ================= */
@media (max-width: 1200px) {
    .her-bg-section h1 {
        font-size: 54px;
    }
    .her-bg-section p {
        font-size: 16px;
    }
    .her-bg-section .a1, .her-bg-section .a2 {
        font-size: 15px;
        padding: 8px 20px;
    }
}

@media (max-width: 992px) {
    .her-bg-section {
        padding: 180px 40px 50px;
    }
    .her-bg-section h1 {
        font-size: 48px;
    }
    .her-bg-section p {
        font-size: 15px;
    }
    .her-bg-section .text-end video {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .her-bg-section {
        padding: 150px 25px 40px;
    }
    .her-bg-section h1 {
        font-size: 38px;
    }
    .her-bg-section p {
        font-size: 14px;
    }
    .her-bg-section .text-end video {
        max-width: 200px;
    }
     .bg-circle, .bgGradient {
           width: 100vw;
        height: 100vw;
    }
}

@media (max-width: 576px) {
    .her-bg-section {
        padding: 120px 15px 30px;
        text-align: center;
    }
    .her-bg-section h1 {
        font-size: 32px;
    }
    .her-bg-section p {
        font-size: 13px;
    }
    .her-bg-section .a1, .her-bg-section .a2 {
        font-size: 14px;
        padding: 6px 15px;
    }
    .her-bg-section .text-end video {
        max-width: 150px;
        margin: 20px auto 0;
    }
      .bg-circle, .bgGradient {
              width: 100vw;
        height: 100vw;
    }
}






.counter-section {
    background-image: url('../images/star-gif.gif');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 100px;
    position: relative;
    overflow: hidden; /* ensures pseudo-elements stay inside */
}

/* Smooth gradient transition at top of counter section */
.counter-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px; /* increased for smoother transition */
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Smooth gradient transition at bottom of counter section */
.counter-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

.overlay-star {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(186deg, rgba(32, 31, 31, 1) 100%, rgba(0, 0, 0, 1) 0%) no-repeat;
    z-index: 1;
    opacity: 0.9;
    overflow: hidden; /* ensures fades stay inside */
}

/* Top dark fade - removed to allow smooth transition from hero section */
/* Transition is now handled by .counter-section::before */

/* Bottom dark fade */
.overlay-star::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px; /* adjust height for fade */
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    pointer-events: none;
    z-index: 2; /* above overlay */
}

.counter-section .container-fluid,
.counter-section .contentbox,
.counter-section .counterbox {
    position: relative;
    z-index: 2;        /* Bring text above overlay */
}
.counter-section  h2{
    font-family: "Satoshi", Sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #FFFFFF;
        padding: 50px 0;
}
.counter-section .contentbox p{
    color: white;
    font-size: 45px;
    text-align: right;
    width: 70%;
    margin-right: 0;
    margin-left: auto;
    line-height: 55px;
        padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 2px solid #d7d7d752;
    font-weight: bold;
}
.counterbox .counter-innerbox{
   display: inline-flex;
   flex-direction: column;
}
.counter-number{
    color: #FFFFFF;
    font-family: "Satoshi", Sans-serif;
    font-size: 68px;
    font-weight: 500;
    line-height: 100px;
}
.counter-text{
   color: #FFFFFF;
    font-family: "Satoshi", Sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 19px;
}

/* Tablet (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .counter-section {
        padding:50px;
        background-size: cover;
    }

    .counter-section .contentbox p {
        font-size: 32px;
        line-height: 40px;
        width: 80%;
        text-align: center;
        margin: 0 auto 40px auto;
        border-bottom: 1px solid #d7d7d752;
        padding-bottom: 30px;
    }

    .counter-section h2 {
        font-size: 24px;
        padding: 30px 0;
        text-align: center;
    }

    .counterbox .counter-innerbox {
        margin-bottom: 30px;
        text-align: center;
    }

    .counter-number {
        font-size: 35px;
        line-height: 60px;
    }

    .counter-text {
        font-size: 13px;
        line-height: 18px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .counter-section {
        padding: 80px 20px;
    }

    .counter-section .contentbox p {
        font-size: 20px;
        line-height: 32px;
        width: 100%;
        text-align: center;
        margin-bottom: 30px;
        padding-bottom: 20px;
        border-bottom: 1px solid #d7d7d752;
    }

    .counter-section h2 {
        font-size: 20px;
        padding: 20px 0;
        text-align: center;
    }

    .counterbox .row {
        display: flex;
        flex-direction: column; /* Stack vertically */
        flex-wrap: nowrap;
        align-items: center; /* Center horizontally */
        margin: 0;
    }

    .counterbox .col-lg-2,
    .counterbox .col-lg-5 {
        flex: 0 0 100%; /* Full width */
        max-width: 100%;
        margin-bottom: 20px;
        justify-content: center;
        display: flex;
    }

    .counterbox .counter-innerbox {
        text-align: center;
        margin-bottom: 10px;
    }

    .counter-number {
        font-size: 40px;
        line-height: 50px;
    }

    .counter-text {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Tablet (768px - 1024px) - optional: still two per row */
@media (min-width: 768px) and (max-width: 1024px)  {
  
  
}

.services-section{
   background-image: url(../images/star-gif.gif);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 100px;
    position: relative;
    overflow: hidden;
}

/* Smooth gradient transition at top of services section */
.services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of services section */
.services-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}


.services-section .container-fluid{
     position: relative;
    z-index: 2;        /* Bring text above overlay */
}
.services-section h2{
   
    font-size: 45px;
    font-weight: 600;
    line-height: 55px;
    color: #FFFFFF;
}
.services-section .a1{
background-color: #486D1459;
    font-size: 18px;
    font-weight: 400;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #486D14;
    border-radius: 50px 50px 50px 50px;
    display: flex;
    width: fit-content;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    align-items: center;
    gap: 10px;
}
.services-section ul {
    list-style: none; 
    padding-left: 0;
}

.services-section ul li {
    font-family: "Satoshi", sans-serif;
    font-size: 27px;
    font-weight: 300;
    color: #fff;
    position: relative;
    padding-left: 40px; 
    line-height: 60px;
}

.services-section ul li::before {
    content: "";
    position: absolute;
    left: 0;
       top: 24px;
    width: 22px; 
    height: 22px;
    background-image: url('../images/vectors/tick.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.services-section .a2{
background-color: #202020;
    font-family: "Satoshi", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    border-style: solid;
    border-width: 2px 2px 2px 2px;
    border-color: #486D14;
    border-radius: 50px 50px 50px 50px;
    padding: 10px 30px;
    text-decoration: none;
    color: #fff;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}
.services-section .a3{
background-color: #CEF501;
    font-family: "Satoshi", Sans-serif;
    font-size: 18px;
    font-weight: 400;
    fill: #1C1C1C;
    color: #1C1C1C;
    border-style: none;
    border-radius: 50px 50px 50px 50px;
    text-decoration: none;
    padding: 12px 30px;
    display: inline-flex;
    gap: 10px;
}
/* Tablet (768px - 1024px) */
@media (min-width: 769px) and (max-width: 991px) {
    .services-section {
        padding: 100px 50px;
        background-size: cover;
    }

    .services-section h2 {
        font-size: 36px;
        line-height: 45px;
        text-align: center;
    }

    .services-section ul li {
        font-size: 22px;
        line-height: 45px;
        padding-left: 35px;
    }

    .services-section ul li::before {
        width: 18px;
        height: 18px;
        top: 20px;
    }

    .services-section .a1,
    .services-section .a2,
    .services-section .a3 {
        font-size: 16px;
        padding: 8px 25px;
    }

    .services-section .a1 {
        gap: 8px;
    }

    .services-section .a2,
    .services-section .a3 {
        gap: 8px;
    }
}

/* Mobile (up to 767px) */
/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .services-section {
        padding: 60px 20px;
    }

    .services-section h2 {
        font-size: 28px;
        line-height: 35px;
        text-align: center;
        padding: 20px 0;
    }

    .services-section ul li {
        font-size: 18px;
        line-height: 35px;
        padding-left: 30px;
        text-align: left;
    }

    .services-section ul li::before {
        width: 16px;
        height: 16px;
        top: 18px;
    }

    /* Keep buttons in a single row on mobile */
    .services-section .button-box {
        flex-direction: row;      /* Horizontal row */
        justify-content: center;  /* Center the row */
        flex-wrap: wrap;          /* Allow wrapping if too small */
        gap: 10px;
        margin-top: 20px;
    }

    .services-section .a1,
    .services-section .a2,
    .services-section .a3 {
     font-size: 14px;
        padding: 14px 35px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .services-section .a2,
    .services-section .a3 {
        width: auto; /* Prevent full-width stacking */
    }
}





.digital-growth{
    background-image: url('../images/Services-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 100px;
}
.digital-growth .a1{
   background-color: #bfea4430;
    font-size: 18px;
    font-weight: 400;
    border-style: solid;
    border-radius: 50px 50px 50px 50px;
    display: flex;
    width: fit-content;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    align-items: center;
    gap: 10px;
    border: 1px solid #BFEA44;
}



   /* Content Slider Styles */
    .content-slider-wrapper {
        position: relative;
        overflow: hidden;
        height: 220px;
    }
    
    .contentSwiper {
        width: 100%;
        height: 100%;
    }
    
    .content-slide {
        padding: 10px 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }
    
    /* Swiper container styling */
    .services-slider .swiper {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        right: 0;
    }
    
    /* Slide styling */
    .services-slider .swiper-slide {
        width: 33.33% !important;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        transform-origin: center center;
        position: relative;
        z-index: 1;
    }
    
    /* Center slide (active) - focused */
    .services-slider .swiper-slide-active {
        opacity: 1 !important;
        filter: blur(0) !important;
        transform: scale(1) translateX(0) !important;
        z-index: 10 !important;
    }
    
    /* Left slide */
    .services-slider .swiper-slide-prev {
        opacity: 0.8 !important;
        filter: blur(2px) !important;
        transform: scale(0.9) translateX(30%) !important;
        z-index: 5 !important;
    }
    
    /* Right slide */
    .services-slider .swiper-slide-next {
        opacity: 0.8 !important;
        filter: blur(1px) !important;
        transform: scale(0.9) translateX(-30%) !important;
        z-index: 5 !important;
    }
    
    /* Other slides */
    .services-slider .swiper-slide:not(.swiper-slide-active):not(.swiper-slide-prev):not(.swiper-slide-next) {
        opacity: 0.6 !important;
        filter: blur(2px) !important;
        transform: scale(0.85) !important;
        z-index: 1 !important;
    }
    
    /* Images styling - 70% width */
    .services-slider img {
        width: 70% !important;
        height: auto;
        max-height: 300px;
        object-fit: contain;
        transition: all 0.5s ease;
        display: block;
        margin: 0 auto;
    }
    
    /* Active image - slightly larger */
    .services-slider .swiper-slide-active img {
        width: 75% !important;
    }
    
    /* Custom arrow buttons styling */
    .swiper-arrow-prev,
    .swiper-arrow-next {
      width: 75px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #ffffff73 !important;
    border-radius: 21px !important;
    }
    
    .swiper-arrow-prev:hover,
    .swiper-arrow-next:hover {
        background-color: rgba(191, 234, 68, 0.2) !important;
        transform: scale(1.1);
    }
    
    /* Custom pagination dots */
    .swiper-pagination-custom {
        position: relative;
        margin-bottom: 30px;
    }
    
    .swiper-pagination-custom .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: rgba(255, 255, 255, 0.3);
        opacity: 1;
        margin: 0 4px;
        transition: all 0.3s ease;
    }
    
    .swiper-pagination-custom .swiper-pagination-bullet-active {
      box-shadow: 0 0 8px rgba(191, 234, 68, 0.4);
    width: 28px;
    border-radius: 8px;
    background: #fff;
    }
    
    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .services-slider .swiper-slide {
            width: 40% !important;
        }
    }
    
    @media (max-width: 992px) {
        .services-slider .swiper-slide {
            width: 50% !important;
        }
        
        .content-slider-wrapper {
            height: 200px;
        }
        
        h1.display-4 {
            font-size: 2.2rem;
        }
        
        .services-slider img {
            width: 65% !important;
        }
        
        .services-slider .swiper-slide-active img {
            width: 70% !important;
        }
    }
    
    @media (max-width: 768px) {
        .services-slider .swiper-slide {
            width: 80% !important;
        }
        
        .services-slider {
            height: 350px;
        }
        
        .content-slider-wrapper {
            height: 180px;
        }
        
        .digital-growth {
            padding: 30px 20px;
        }
        
        .swiper-arrow-prev,
        .swiper-arrow-next {
            width: 45px;
            height: 45px;
        }
        
        h1.display-4 {
            font-size: 1.8rem;
        }
        
        .services-slider img {
            width: 60% !important;
        }
        
        .services-slider .swiper-slide-active img {
            width: 65% !important;
        }
    }
    
    @media (max-width: 576px) {
        .services-slider .swiper-slide {
            width: 85% !important;
        }
        
        .services-slider {
            height: 300px;
        }
        
        .content-slider-wrapper {
            height: 160px;
        }
        
        h1.display-4 {
            font-size: 1.6rem;
        }
        
        p.fs-5 {
            font-size: 1rem !important;
        }
        
        .swiper-arrow-prev,
        .swiper-arrow-next {
            width: 40px;
            height: 40px;
        }
        
        .services-slider img {
            width: 55% !important;
        }
        
        .services-slider .swiper-slide-active img {
            width: 60% !important;
        }
    }



.marquee {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.marquee-content {
  display: inline-flex;
  gap: 30px;
  animation: marquee-right 15s linear infinite;
}

.marquee-left .marquee-content {
  animation: marquee-left 15s linear infinite;
}

/* Your brand item styles */
.brand-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  width: 180px;
  height: 70px;
  border-radius: 50px;
  border: 1px solid #ffffff59;
}

.brand-item img {
  width: 100%;
  height: auto;
}

/* Smooth infinite movement */
@keyframes marquee-right {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes marquee-left {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
.brand-section h2{
    text-align: center;
    color: #CEF501;
    font-size: 24px;
    font-weight: bold;
    padding-bottom: 40px;
}
.brand-section{
   position: relative;
    background: linear-gradient(186deg, rgba(32, 31, 31, 1) 80%, rgba(0, 0, 0, 0.2) 0%);
    overflow: hidden;
}

/* Smooth gradient transition at top of brand section */
.brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of brand section */
.brand-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}
.custom-overlay{
background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(23, 23, 23, 0.13) 8%, rgba(23, 23, 23, 0.26) 16%, rgba(23, 23, 23, 0.52) 32%, rgba(23, 23, 23, 0.77) 48%, rgba(23, 23, 23, 1) 65%, rgba(23, 23, 23, 1) 100%);
    position: absolute;
    top: -30%;
    left: 0;
    width: 100%;
    height: 45%;
    z-index: 1;
    opacity: 1;
}












.nav-pills{
    border-bottom: 1px solid #ffffff10; padding-bottom: 22px;
}

/* Tabs container */
.nav-pills .nav-link {
display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #BFEA44;
    padding: 10px 24px;
    margin: 15px;
    border-radius: 4px;
    background-color: transparent;
    color: #fff;
    transition: all 0.3s ease;
    width: 100px;
    text-align: center;
}
.nav-pills .nav-link .img-box {
    padding: 18px;
    background: #BFEA4420;
    border-radius: 4px;
    border: 1px solid #000;
}
/* Image container */
.nav-pills .nav-link img {
    width: 40px;
    height:40px;
    object-fit: cover;
    filter: none; 
    transition: all 0.3s ease;
    border-radius: 4px;
}

/* Active tab */
.nav-pills .nav-link.active {
    background-color: transparent;
    border-color: #BFEA44;
    color: #BFEA44;
}
.nav-pills .nav-link.active span{
    color:#55BB07;
}
/* Active tab image overlay effect */
.nav-pills .nav-link.active img {
    filter: grayscale(100%) brightness(6); 
}
.nav-pills .nav-link.active .img-box {
   
   background: #BFEA44;
    padding: 18px;
    border-radius: 4px;
}
/* Title text styling */
.nav-item span {
    font-weight: 500;
    font-size: 14px;
    color: #999;
    text-align: center;
    font-family: 'Satoshi';
}
.nav-item{
    text-align: center;
}
/* Optional: Hover effect */
.nav-pills .nav-link:hover {
    border-color: #BFEA44;
    color: #BFEA44;
}
.nav-pills .nav-link.active + span{
    background: linear-gradient(to right, #55BB07, #BFEA44);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 500;
}





.tabs-section{
   background: url('../images/star-gif.gif');
   position: relative;
   overflow: hidden;
}

/* Smooth gradient transition at top of tabs section */
.tabs-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* Smooth gradient transition at bottom of tabs section */
.tabs-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}
.tabs-section h1{
    color: #fff;
    font-size: 45px;
    text-align: center;
    font-weight: bold;
}
.tabs-section p {
    color: #fff;
    text-align: center;
    font-size: 20px;
    opacity: 0.8;
    margin: 15px 0 35px;
}
.tabs-section-overlay{
background: linear-gradient(to bottom, #111111 0%, #1b1b1b 20%, #2d2d2d 50%, #3d3d3d 75%, #4a4a4a 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* z-index: 1; */
    opacity: 0.8;

}
.tabs-section .container{ 
    z-index: 1;
    position: relative;
}




.info-section{
    background: url('../images/star-gif.gif') center/cover no-repeat;
    position: relative;
    padding: 100px 80px;
    overflow: hidden;
}

/* Smooth gradient transition at top of info section */
.info-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of info section */
.info-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Background Image Layer */
.info-section .background-container{
    background: url('../images/cta-background.png') right center no-repeat;
      background-size: cover;
    background-position: unset;
height: 865px;
}
.info-section .container-fluid {
    position: relative;
    z-index: 2;
}
.info-section .content-row {
     max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 50px 0;
}
/* Typography */
.info-section h2,
.info-section h3{
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.info-section p{
    color: #fff;
    font-size: 16px;
    line-height: 1.6;
}

/* Badge */
.info-section .a1{
    background-color: rgba(206,245,1,0.12);
    font-size: 12px;
    border: 1px solid #CEF501;
    border-radius: 50px;
    display: inline-flex;
    color: #fff;
    padding: 6px 28px;
    gap: 10px;
    text-decoration: none;
    margin-bottom: 20px;
}

/* CTA Button */
.info-section .a2{
    display: inline-block;
    background: #BFEA44;
    color: #000;
    font-size: 20px;
    padding: 14px 45px;
    font-weight: 700;
    text-decoration: none;
    margin-bottom: 30px;
}

/* Dashboard Image */
.info-section img{
width: 92% !important;
    position: absolute;
    right: 0;
    left: 8%;
    height: 612px;
    object-position: top;
    object-fit: cover;
}

/* List Section */


.list-div ul{
    list-style: decimal;
    color: #BFEA44;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 60px;
    padding-left: 20px;
    position: relative;
}

.list-div ul::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 38%;
    transform: translateX(-50%);
    width: 1px;
    background: #BFEA44;
    opacity: 0.4;
}

.list-div li{
    font-size: 16px;
    font-weight: 600;
    line-height: 38px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .info-section {
        padding: 80px 20px 0;
    }

    .info-section .background-container {
        height: auto;
        background-position: unset;
        background-size: cover;
              padding: 20px 0 0;
    }

    .info-section .content-row {
        padding: 0;
        text-align: left;
    }

    .info-section h2,
    .info-section h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .info-section p {
        font-size: 12px;
    }
.revirews-section .gap-4 img{
    width: 5%;
    margin-top: 20px;
}
.revirews-section .testimonial-text{
        font-size: 25px;
    line-height: 35px;
}
    /* Dashboard image */
    .info-section img {
        position: relative;
        width: 100% !important;
        height: auto;
        left: 0;
        right: 0;
        margin-top: 40px;
    }

    /* List layout */
    .list-div ul {
        
        row-gap: 0px;
        padding-left: 20px;
    }

    .list-div ul::after {
        display: none;
    }

    .list-div li {
 font-size: 12px;
        line-height: 32px;
    }

    /* CTA Button */
    .info-section .a2 {
        font-size: 18px;
        padding: 12px 36px;
    }
}
@media (max-width: 767px) {
    .info-section {
        padding: 60px 20px 0;
    }

    .info-section .background-container {
        background-size: cover !important;
        background-position: center center;
        background: url(../images/cta-background-mobile.png);
        background-repeat: no-repeat;
        height: 360.6px;
    }

    .info-section .content-row {
        padding: 40px 0px 0;
        text-align: left;
    }

    .info-section h2,
    .info-section h3 {
        font-size: 20px;
        line-height: 1.3;
        text-align: left;
    }

    .info-section p {
        font-size: 12px;
        line-height: 1.5;
    }
.ctaheading{
    padding-top: 60px;
}
    /* Badge */
    .info-section .a1 {
        font-size: 11px;
        padding: 5px 22px;
        justify-content: center;
    }

    /* CTA Button */
    .info-section .a2 {
        font-size: 16px;
        padding: 12px 30px;
        width: 100%;
        text-align: center;
    }

    /* Dashboard Image */
    .info-section img {
        position: relative;
        width: 100% !important;
        height: auto;
        left: 0;
        right: 0;
        margin-top: 0px;
    }

    /* List */
    .list-div ul {
        grid-template-columns: 1fr;
        row-gap: 1px;
        padding-left: 18px;
    }

    .list-div ul::after {
        display: none;
    }

    .list-div li {
        font-size: 14px;
        line-height: 28px;
    }
}







.power-platform {
  position: relative;
  padding-bottom: 150px;
  overflow: hidden;

  background: url('../images/star-gif.gif');

  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}


/* Smooth gradient transition at top of power-platform section */
.power-platform::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of power-platform section */
.power-platform::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* .power-platform .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 1;
} */

/* ===== Power Platform Section ===== */

.power-platform .container-fluid {
  position: relative;
  z-index: 2;
}

.power-platform-container {
  padding: 80px 150px;
}

/* Headings & Text */

.power-platform h2 {
  color: #fff;
  font-weight: bold;
  font-size: 45px;
  text-align: center;
}

.power-platform h3 {
  font-weight: bold;
  font-size: 45px;
  color: #fff;
}

.power-platform .p1 {
  color: #ffffff80;
  text-align: center;
  font-size: 20px;
  width: 42%;
  margin: 0 auto;
}

.power-platform .p2 {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}

/* ===== Infinite Logo Slider ===== */

.power-platform .image-slider {
  position: relative;
  overflow: visible;
  background: #000;
  padding: 0px 0;
  z-index: 2;
  width: 100%;
  min-width: 100%;
}

/* Track */
.power-platform .slider-track {
  display: flex;
  width: max-content;
  gap: 30px;
  animation: infinite-scroll-left 30s linear infinite;
}

/* Reverse direction */
.power-platform .slider-right .slider-track {
  animation: infinite-scroll-right 30s linear infinite;
}

/* Logo Box */
.power-platform .logo-box {
  background: #CEF501;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  flex-shrink: 0;
}

/* Logo Image */
.power-platform .logo-box img {
  width: 160px;
  height: 40px;
  object-fit: contain;
}


/* ===== Animations ===== */

@keyframes infinite-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes infinite-scroll-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

/* ===== Responsive ===== */

/* ===============================
   POWER PLATFORM – RESPONSIVE
================================ */
@media (min-width: 250px) and (max-width: 767px) {
.power-platform{
    padding: 50px 10px !important;
}
}
@media (min-width: 768px) and (max-width: 1024px) {
  .power-platform-container {
    padding: 20px 20px;
    text-align: center;
  }

  .power-platform-container h2 {
    font-size: 32px;
    line-height: 1.3;
  }

  .power-platform-container .p1 {
    font-size: 16px;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
  .power-platform-container .row:last-child{
    margin: 120px 0;
  }
  .power-platform-container .col-lg-6:first-child {
    margin-bottom: 40px;
    text-align: left;
  }

  .power-platform-container .p2 {
    font-size: 16px;
  }

  .power-platform-container h3 {
    font-size: 26px;
    line-height: 1.3;
    margin-top: 20px;
  }

  .power-platform-container .text-start {
    text-align: center !important;
  }

  .power-platform-container img {
    max-width: 90%;
  }
}

@media (max-width: 575px) {
  .power-platform-container {
    padding: 20px 15px;
  }

  .power-platform-container h2 {
    font-size: 24px;
    line-height: 1.35;
  }

  .power-platform-container .p1,
  .power-platform-container .p2 {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
    max-width: 100%;
 
  }

  .power-platform-container h3 {
    font-size: 20px;
    line-height: 1.4;
  }

  /* Prevent hard line breaks breaking mobile layout */
  .power-platform-container br {
    display: none;
  }

  .power-platform-container img {
    max-width: 100%;
    margin-top: 20px;
  }
  .power-platform .image-slider{
        padding: 10px 0 !important;
  }
  .power-platform .logo-box{
        padding: 10px !important;
  }
  .power-platform .logo-box img {
    width: 120px !important; 
    height: 26px !important;
}
}

@media (max-width: 380px) {
  .power-platform-container h2 {
    font-size: 22px;
  }

  .power-platform-container h3 {
    font-size: 18px;
  }
}





.footer {
    padding: 50px 100px 20px;
background: linear-gradient(186deg, rgba(32, 31, 31, 1) 80%, rgb(0, 0, 0) 80%) !important;

}

/* Shared footer column width */
.footer-col {
    width: 30%;
    padding: 0 30px;
}

/* Product column custom left padding */
.product-col {
    padding-left: 120px;
}

/* Resources column border */
.resources-col {
    border-left: 1px solid #ffffff26;
    border-right: 1px solid #ffffff26;
}

/* Social column with height fix */
.social-col {
    border-left: 1px solid #ffffff26;
    border-right: 1px solid #ffffff26;
    height: auto;
}

/* Contact column */
.contact-col {
    padding: 0 29px;
}

.footer-info {
    font-size: 22px;
    color: #ffffff;
}

.footer ul {
    padding: 0;
    line-height: 30px;
}

.footer ul li {
    list-style: none;
}

.footer ul li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: #CEF501;
}

.footer h6 {
    color: #CEF501;
    font-weight: 700;
}


/* Copyright */
.copyright-text {
    text-align: center;
    margin-top: 20px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
}

.privacy-link {
    color: #CEF501;
    text-decoration: underline;
}
/* Email Input */
.footer-subscribe {
    margin-top: 30px;
    width: 60%;
    position: relative;
}

.footer-email {
    width: 100%;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #ffffff60;
    padding: 10px 0;
    color: #fff;
    font-size: 18px;
    outline: none;
}

.footer-email::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

/* Arrow Button */
.footer-arrow {
    position: absolute;
    right: 0;
    bottom: 10px;
    background: none;
    color: #CEF501;
    border: none;
    font-size: 24px;
    cursor: pointer;
}

/* Checkbox Section */
.footer-check {
    display: flex;
    margin-top: 20px;
}

.footer-check input {
    margin-right: 10px;
    width: 18px;
    height: 18px;
}

.footer-check label {
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    line-height: 22px;
}

.footer-check span {
    color: #CEF501;
    text-decoration: underline;
}
@media (min-width: 768px) and (max-width: 1024px) {
    .footer {
        padding: 40px 50px 20px;
    }

    .footer-info {
        width: 100%;
        font-size: 16px;
        text-align: left;
        margin-bottom: 20px;
    }

    .footer-subscribe {
        width: 100%;
        margin: 20px auto;
    }

    .footer-col {
        width: 45%;
        padding: 0;
        margin-bottom: 20px;
    }
 .footer .flex-column{
    flex-direction: row !important;
 }
    .product-col {
        padding-left: 15px;
    }

    .resources-col,
    .social-col,
    .contact-col {
        border: none; /* remove side borders for tablet */
    }

    .footer h6 {
       text-align: left;
    }

    .footer ul {
       text-align: left;
        line-height: 28px;
    }
    .footer-logo{
        width: 100%;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .main-header{
        padding: 0 10px;
    }
    .footer {
       padding: 30px 15px 20px;
    }

    .footer-info {
        font-size: 16px;
        width: 100%;
        text-align: left;
        margin-bottom: 15px;
    }

    .footer-subscribe {
        width: 100%;
    }

    .footer-email {
        font-size: 16px;
        padding: 8px 0;
    }

    .footer-arrow {
        font-size: 20px;
        bottom: 5px;
    }

    .footer-check {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-check label {
               font-size: 14px;
        line-height: 20px;
        width: 90%;
        padding-bottom: 30px;
    }

    /* Stack all footer columns vertically */
    .footer > .container-fluid > .row {
        flex-direction: column !important;
    }

    .footer-col {
        width: 100%;
        padding: 0;
        text-align: left;
        border: none !important;
    }

    .footer ul {
        line-height: 25px;
        text-align: left;
    }
.footer ul li a {
    font-size: 14px;
}
    .copyright-text {
        font-size: 14px;
    }

    .privacy-link {
        display: block;
        margin-top: 5px;
    }
    .footer-logo{
           width: 70%;
        padding: 40px 0;
    }
    .footer-line{
       
    width: 100% !important;
   
    }
}
.footer-line{
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); 
    width: 50%; 
    margin: 10px auto;
}





.cta-section{
background: url('../images/star-gif.gif');
padding: 100px 150px;
position: relative;
overflow: hidden;
}

/* Smooth gradient transition at top of cta section */
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of cta section */
.cta-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

.cta-section .container-fluid{
    background: url('../images/cta-background.png');
background-repeat: no-repeat;
    background-size: cover;
    background-position: unset;
    position: relative;
    z-index: 2;
    height: 700px;
}
.cta-section h2{
    color: #fff;
    font-size: 45px;
    text-align: center;
    padding-top: 90px;
}
.cta-section p {
    padding-top: 10px;
    color: #fff;
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
}
.cta-section a {
    text-decoration: none;
    text-align: center;
    color: #fff;
    margin-bottom: 30px;
    margin-top: 30px;
    background: transparent;
    border: 1px solid;
    border-radius: 50px;
    padding: 12px 40px;
    display: inline-block;
    font-size: 18px;
}
.cta-section a {
    text-decoration: none;
    text-align: center;
    color: #fff;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.1); /* semi-transparent background */
    border: 1px solid rgba(255, 255, 255, 0.3); /* light border */
    border-radius: 50px;
    padding: 12px 40px;
    display: inline-block;
    font-size: 18px;
    backdrop-filter: blur(10px); /* blur effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    transition: all 0.3s ease;
}

/* Optional hover effect */
.cta-section a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    color: #fff;
}

@media (min-width: 992px) and (max-width: 1024px){
.main-header{
    padding: 0 10px !important;
}

}

/* Tablet (768px - 1024px) */
@media (min-width: 992px) and (max-width: 1024px) {
    .cta-section {
        padding: 80px 50px;
    }

    .cta-section .container-fluid {
      background-size: cover;
        height: 37vh;
    }
.ctadashboarddiv {
    position: absolute;
    bottom: -8%;
    left: 0;
    right: 0;
}
.power-platform{
    padding: 50px 0px !important;
}
    .cta-section h2 {
        font-size: 36px;
        padding-top: 60px;
        text-align: center;
    }

    .cta-section p {
        font-size: 16px;
        padding-top: 8px;
        text-align: center;
    }

    .cta-section a {
        font-size: 16px;
        padding: 10px 30px;
        margin: 25px 0;
    }
    .fan-card{
        width: 250px !important;
        height: 250px !important;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .cta-section {
        padding: 80px 50px;
    }

    .cta-section .container-fluid {
      background-size: cover;
        height: 35vh;
    }
.ctadashboarddiv {
    position: absolute;
    bottom: -8%;
    left: 0;
    right: 0;
}
.power-platform{
    padding: 50px 0px !important;
}
    .cta-section h2 {
        font-size: 36px;
        padding-top: 60px;
        text-align: center;
    }

    .cta-section p {
        font-size: 16px;
        padding-top: 8px;
        text-align: center;
    }

    .cta-section a {
        font-size: 16px;
        padding: 10px 30px;
        margin: 25px 0;
    }
}
.ctadashboarddiv{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.ctadashboard{
        width: 95%;
    padding: 0 50px;
}
 .cta-section hr{
    border-bottom: 1px solid #ffffff9c; margin: 90px auto 0; width: 80%;position: relative;z-index: 2;
 }
/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .cta-section {
              padding: 60px 20px 10px;
    }

    .cta-section .container-fluid {
    background-size: cover !important;
        background-position: center center;
     background: url('../images/cta-background-mobile.png');
     background-repeat: no-repeat;
        height: 344px;
    }
.ctadashboard{
    width: 100%;
    padding: 0 10px;
}
    .cta-section h2 {
        font-size: 28px;
        padding-top: 40px;
        text-align: center;
    }

    .cta-section p {
        font-size: 14px;
        padding-top: 6px;
        text-align: center;
    }

    .cta-section a {
        font-size: 14px;
        padding: 8px 25px;
        margin: 20px 0;
        width: 100%;        /* Make button full width on mobile */
        display: block;      /* Centered block button */
        text-align: center;
    }
    .ctadashboarddiv {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
 .cta-section hr{
    width: 100%;
    margin: 0 0 20px;
    padding: 40px 0 0px;
}
}




.revirews-section{
    padding: 100px 0;
    background: url('../images/star-gif.gif');
    position: relative;
    overflow: hidden;
}

/* Smooth gradient transition at top of revirews section */
.revirews-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of revirews section */
.revirews-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}
.revirews-section .container {
z-index: 2;
position: relative;
}
.client-name{
    font-size: 54px;
    color: #fff;
    font-weight: 300;
}
.designation{
    font-size: 14px;
    color: white;
    font-weight: 300;
    margin-bottom: 0;
    
}
 .testimonial-text{
    color: white;
    font-size: 35px;
    line-height: 45px;
    text-align: left;
    width: 80%;
        padding-top: 50px;
}
.revirews-section h2{
    color: #fff;
    padding-bottom: 60px;
}
.number-pagination{
    display: flex;
    align-items: end;
}
.active-number{
    font-size: 58px;
    color: white;
    font-family: 'Satoshi';
    font-weight: 300;
}
.not-active-number{
    font-size: 25px;
    color: white;
    font-family: 'Satoshi';
    font-weight: 300;
    padding-bottom: 10px;
}
.arrows-area span{
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}
.arrows-area span:hover{
    cursor: pointer;
}
.arrows-area span.active{
    color: #CEF501 !important;
}
.arrows-area{
    display: flex;
    flex-direction: column;
}
@media (min-width: 769px) and (max-width: 991px) {
    .revirews-section {
        padding: 80px 0;
    }

    .revirews-section h2 {
        font-size: 36px;
        padding-bottom: 40px;
        text-align: center;
    }

    .client-name {
        font-size: 40px;
        text-align: center;
    }

    .designation {
        text-align: center;
        font-size: 13px;
    }

    .testimonial-text {
        font-size: 26px;
        line-height: 36px;
        width: 100%;
        text-align: center;
        padding-top: 30px;
    }

    .number-pagination {
        justify-content: center;
    }

    .active-number {
        font-size: 45px;
    }

    .not-active-number {
        font-size: 20px;
        padding-bottom: 6px;
    }

    .arrows-area {
        flex-direction: row;
        gap: 20px;
        justify-content: center;
        margin-top: 20px;
    }
}
@media (max-width: 767px) {
    .revirews-section {
        padding: 60px 0;
    }

    .revirews-section h2 {
        font-size: 26px;
        padding-bottom: 30px;
        text-align: center;
    }

    .client-name {
        font-size: 28px;
        text-align: center;
    }

    .designation {
        font-size: 12px;
        text-align: center;
    }

    .testimonial-text {
        font-size: 18px;
        line-height: 28px;
        width: 100%;
        text-align: center;
        padding-top: 20px;
    }

    /* Pagination */
    .number-pagination {
        justify-content: center;
        margin-bottom: 15px;
    }

    .active-number {
        font-size: 34px;
    }

    .not-active-number {
        font-size: 16px;
        padding-bottom: 4px;
    }

    /* Arrows */
    .arrows-area {
        flex-direction: row;
        gap: 25px;
        justify-content: center;
    }

    .arrows-area span {
        font-size: 20px;
    }
     .quote-icon{
    width: 35px;
}
}




.slider-container {
    width: 100%;
    max-width: 100%;
    background-image: url('../images/cards-bg.png');
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 100px;
    position: relative;
    overflow: hidden;
}

/* Smooth gradient transition at top of slider-container section */
.slider-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background: linear-gradient(to bottom, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Smooth gradient transition at bottom of slider-container section */
.slider-container::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: fit-content;
    background: linear-gradient(to top, 
        rgba(32, 31, 31, 0.95) 0%,
        rgba(32, 31, 31, 0.6) 30%,
        rgba(23, 23, 23, 0.3) 70%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Header Section */
.slider-container .header-section {
    text-align: center;
    margin-bottom: 80px;
}

.slider-container .services-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    position: relative;
    gap: 30px;
}

.slider-container .services-box {
background-color: #bfea4430;
    font-size: 18px;
    font-weight: 400;
    border-style: solid;
    border-radius: 50px 50px 50px 50px;
    display: flex;
    width: fit-content;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    align-items: center;
    gap: 10px;
    border: 1px solid #BFEA44;
}

.slider-container .line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    position: absolute;
    width: 200px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-container .left-line {
    right: 100%;
    margin-right: 20px;
}

.slider-container .right-line {
    left: 100%;
    margin-left: 20px;
}

.slider-container .main-heading {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    /* background: linear-gradient(135deg, #ffffff 0%, #00ff88 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text; */
    line-height: 1.2;
}

.slider-container .description {
    font-size: 20px;
       color: white;
    max-width:860px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

/* Pagination */
.slider-container .pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.slider-container .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.slider-container .dot.active {
    transform: scale(1.2);
    box-shadow: 0 0 8px rgba(191, 234, 68, 0.4);
    width: 28px;
    border-radius: 8px;
    background: #fff;
}

/* Navigation Arrows */
.slider-container .nav-arrows {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-container .arrow-btn {
width: 75px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid #ffffff73 !important;
    border-radius: 21px !important;
    background: #343c20;
}

.slider-container .arrow-btn:hover {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

.slider-container .arrow-btn:active {
    transform: translateY(0);
}

/* Service Cards Slider */
.slider-container .cards-slider {
    position: relative;
    height: 400px;
    perspective: 1200px;
    overflow: hidden;
}

.slider-container .cards-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
}

.slider-container .service-card {
    position: absolute;
    width: 420px;
    height: 480px;
    /* background: linear-gradient(135deg, #0d2818 0%, #1a3a2a 100%);
    border: 1px solid rgba(0, 255, 136, 0.2); */
    border-radius: 24px;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    /* backdrop-filter: blur(10px); */
    /* box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); */
}

.slider-container .service-card::before {
    /* content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    background: linear-gradient(45deg, rgba(0, 255, 136, 0.3), transparent, rgba(0, 255, 136, 0.3));
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease; */
}

.slider-container .service-card.active::before {
    opacity: 1;
}

.slider-container .service-card.active {
    transform: translateZ(80px) scale(1);
    /* box-shadow: 0 20px 60px rgba(0, 255, 136, 0.3);
    border-color: rgba(0, 255, 136, 0.5);
    z-index: 10; */
}

.slider-container .service-card.prev {
    transform: translateX(280px) translateZ(-150px) rotate(10deg) scale(0.92);
    opacity: 0.6;
    z-index: 5;
}

.slider-container .service-card.next {
    transform: translateX(-280px) translateZ(-150px) rotate(-10deg) scale(0.92);
    opacity: 0.6;
    z-index: 5;
}

.slider-container .service-card.hidden {
    opacity: 0;
    transform: translateZ(-200px) scale(0.7);
    pointer-events: none;
}

.slider-container .card-icon {
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.slider-container .service-card.active .card-icon {
    opacity: 1;
    transform: scale(1.05);
}

.slider-container .service-card h3 {
    font-size: 1.8rem;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.services-header img {
        width: 10%;
    }
/* Responsive Design */

@media (min-width: 768px) and (max-width: 1024px) {
.slider-container{
        padding: 50px 10px !important;
}
}


@media (max-width: 720px) {
    .slider-container{
        padding: 25px 10px !important;
    }
    .slider-container .services-box{
        padding: 10px 22px;
        font-size: 12px;
    }
    .services-header img {
        width: 25%;
    }
   .slider-container .main-heading {
        font-size: 2rem;
    }
    
   .slider-container .description {
        font-size: 1rem;
    }
    .service-card img{
width:100%
    }
   .slider-container .service-card {
        width: 240px;
        height: 300px;
    }
    
   .slider-container .service-card.active {
        transform: translateZ(50px) scale(1.05);
    }
    
   .slider-container .service-card.prev {
        transform: translateX(-250px) translateZ(-30px) rotateY(20deg) scale(0.85);
    }
    
   .slider-container .service-card.next {
        transform: translateX(250px) translateZ(-30px) rotateY(-20deg) scale(0.85);
    }
    
   .slider-container .service-card.far-prev {
        transform: translateX(-400px) translateZ(-60px) rotateY(30deg) scale(0.75);
    }
    
   .slider-container .service-card.far-next {
        transform: translateX(400px) translateZ(-60px) rotateY(-30deg) scale(0.75);
    }
}

@media (max-width: 480px) {
   .slider-container .slider-container {
        padding: 20px 15px;
    }
    
   .slider-container .main-heading {
        font-size: 1.5rem;
    }
    
   .slider-container .service-card {
        width: 300px;
        height: 300px;
        padding: 0;
    }
    
   .slider-container .card-icon svg {
        width: 40px;
        height: 40px;
    }
    
   .slider-container .service-card h3 {
        font-size: 1.2rem;
    }
}


/* @media (min-width: 1024px) and (max-width: 1700px) {
  .product-col{
   padding-left: 50px;
  }
 .footer {
            padding: 50px 100px 20px;
  }
  .footer-subscribe {
    width: 80% !important;
}
.footer-arrow {
    bottom: -10px !important;
}
.info-section img {
width: 94% !important;
        position: absolute;
        right: 0;
        left: 6%;
        bottom: 40px;
        height: auto;
}
.ctadashboarddiv{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 40px;
}
.ctadashboard {
    width: 100%;
}
.cta-section .container-fluid {
background-size: cover;
        position: relative;
        z-index: 2;
        height: 645px;
        background-position: center;
}
} */
.brands-slider{
    background: linear-gradient(186deg, rgba(32, 31, 31, 1) 80%, rgba(0, 0, 0, 0.2) 0%);
    padding: 100px 150px;
    opacity: 1 !important; /* Ensure section is visible by default */
    visibility: visible !important;
    display: block !important;
    position: relative;
    z-index: 10;
    min-height: 300px;
    width: 100%;
}
.brands-slider .d-flex span {
    color: white;font-weight: bold;font-size: 23px; font-family: 'Satoshi';
}
.brands-slider .d-flex img{
    width: 2%;
}
.brands-slider h2 {
    color: white;
    font-size: 65px;
    font-weight: bold;
}
.brands-slider p{
    color: white;
    font-size: 18px;
    padding-top: 30px;
}