@charset "UTF-8";

/* Fonts */
/* :root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow", sans-serif;
  --nav-font: "Inter", sans-serif;
} */
/* Import Beautiful Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');


/* Montserrat Variations - Premium Styling */
.montserrat-thin {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
}

.montserrat-regular {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.montserrat-medium {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

.montserrat-semibold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}

.montserrat-bold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.montserrat-extrabold {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
}

.montserrat-black {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
}

:root {
  /* Beautiful Font Families - Montserrat as Star */
  --default-font: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --heading-font: "Montserrat", "Poppins", sans-serif;
  --nav-font: "Montserrat", "Inter", sans-serif;
  --display-font: "Montserrat", "Barlow", sans-serif;
  --alt-font: "Open Sans", "Raleway", sans-serif;
  --accent-font: "Cormorant Garamond", "Playfair Display", serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #14201c;
  --heading-color: #000;
  --accent-color: #cf2128;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

:root {
  --nav-color: #ffffff;
  --nav-hover-color: #cf2128;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #14201c;
  --nav-dropdown-hover-color: #14201c;
}


.light-background {
  --background-color: #f4f9f7;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #000704;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #28323a;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  /* color: var(--accent-color); */
  color: #ef4123;
  text-decoration: none;
  transition: 0.3s;
}

/* a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
} */

a {
  transition: color 0.3s ease;
}

a:hover {
  color: #ff6501;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #fa360a;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #732ff9;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/

.header {
  --background-color: rgba(0, 0, 0, 0);
  --heading-color: #ffffff;
  --surface-color: rgba(255, 255, 255, 0.085);
  color: var(--default-color);
  transition: all 0.5s;
  z-index: 997;
  background-color: #fefaf7;
  border-radius: 8px;
  max-width: 1140px;
  margin: auto;
  min-height: 65px;
  color: #000;
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header .topbar {
  background-color: var(--background-color);
  height: 40px;
  padding: 0;
  font-size: 14px;
  transition: all 0.5s;
}

.header .topbar .contact-info i {
  font-style: normal;
  color: var(--contrast-color);
}

.header .topbar .contact-info i a,
.header .topbar .contact-info i span {
  padding-left: 5px;
  color: var(--contrast-color);
}

@media (max-width: 575px) {

  .header .topbar .contact-info i a,
  .header .topbar .contact-info i span {
    font-size: 13px;
  }
}

.header .topbar .contact-info i a {
  line-height: 0;
  transition: 0.3s;
}

.header .topbar .contact-info i a:hover {
  color: var(--contrast-color);
  text-decoration: underline;
}

.header .topbar .social-links a {
  color: color-mix(in srgb, var(--contrast-color), transparent 40%);
  line-height: 0;
  transition: 0.3s;
  margin-left: 20px;
}

.header .topbar .social-links a:hover {
  color: var(--contrast-color);
}

.header .branding {
  min-height: 60px;
  padding: 0px 0;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.scrolled .header .topbar {
  height: 0;
  visibility: hidden;
  overflow: hidden;
}

/* Global Header on Scroll
------------------------------*/

/* Glass effect when page scroll */
.scrolled .header {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  /* border: 1px solid rgba(255, 255, 255, 0.3); */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

/*New css add start*/

body.mobile-nav-active .navmenu {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99999;
  background: rgba(33, 37, 41, 0.9);
}

/*New css add end */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu>ul>li {
    white-space: nowrap;
    padding: 15px 14px;
  }

  .navmenu>ul>li:last-child {
    padding-right: 0;
  }

  .navmenu a,
  .navmenu a:focus {
    color: #000;
    font-size: 14px;
    padding: 0 2px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu>ul>li>a:before {
    content: "";
    position: absolute;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: #000;
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navmenu a:hover:before,
  .navmenu li:hover>a:before,
  .navmenu .active:before {
    visibility: visible;
    width: 100%;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: #000;
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: #000;
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    max-height:400px; // new add css
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: #ef4123;
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: #ef4123;
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 10px;
    background-color: var(--nav-dropdown-background-color);
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}







/*New menu css Start*/


/* Ensure mobile menus don't show on desktop */
@media (min-width: 992px) {
    .mobile-megamenu {
        display: none !important;
    }
}

/* Ensure desktop menus don't show on mobile */
@media (max-width: 991px) {
    .desktop-megamenu {
        display: none !important;
    }
    
    /* Style mobile menus */
    .mobile-megamenu {
        display: none;
        list-style: none;
        padding-left: 1rem;
    }
    
    .megamenu-2.active .mobile-megamenu {
        display: block;
    }
}


/*New menu css End*/









/* Megamenu 2 - Desktop */
@media (min-width: 1200px) {
  .navmenu .megamenu-2 {
    position: static;
    /* Hide Mobile Megamenu in Desktop */
    /* Tab Navigation */
    /* Tab Content */
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .desktop-megamenu {
    background-color: var(--nav-dropdown-background-color);
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    /* left: 0;
    right: 0; */
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    border-radius: 6px;
    z-index: 99;
    padding: 0;
    display: flex;
    max-height: 80vh;
    overflow: hidden;
  }

  .navmenu .megamenu-2:hover>.desktop-megamenu {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .megamenu-2 .tab-navigation {
    width: 250px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding: 25px 0;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs {
    border: none;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item {
    width: 100%;
    padding-left: 10px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    border: none;
    width: 100%;
    background: transparent;
    transition: all 0.3s;
    border-left: 3px solid transparent;
    border-radius: 0;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    padding-left: 30px;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 94%);
    border-left-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active i {
    color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link.active span {
    color: var(--accent-color);
    font-weight: 600;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link i {
    font-size: 20px;
    transition: 0.3s;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-navigation .nav-tabs .nav-item .nav-link span {
    font-size: 15px;
    font-weight: 500;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content {
    flex: 1;
    padding: 30px;
    overflow-y: auto;
  }

  .navmenu .megamenu-2 .tab-content .content-grid {
    display: grid;
    /* grid-template-columns: repeat(3, 1fr); */
    grid-template-columns: repeat(2, 1fr);
    /* grid-template-columns: 1fr; */
    /* old model */
    gap: 40px;
    /*margin-bottom: 30px;*/
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section h4 {
    color: var(--default-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    transform: translateX(8px);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link:hover i {
    color: #ff6501;
    transform: scale(1.1);
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link i {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 20%);
    font-size: 18px;
    transition: all 0.3s;
    min-width: 18px;
    flex-shrink: 0;
    margin-top: 1px;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .content-grid .product-section .product-list .product-link div small {
    color: color-mix(in srgb, var(--nav-dropdown-color), transparent 40%);
    font-size: 12px;
    line-height: 1.3;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner {
    background: linear-gradient(135deg,
        var(--surface-color) 0%,
        color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
    border-radius: 10px;
    padding: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info {
    flex: 1;
    min-width: 0;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info h5 {
    color: var(--default-color);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn {
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn:hover i {
    transform: translateX(4px);
  }

  .navmenu .megamenu-2 .tab-content .featured-banner .banner-content .banner-info .cta-btn i {
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    align-items: start;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 10px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    border-color: var(--accent-color);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category i {
    color: var(--accent-color);
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category h5 {
    color: var(--default-color);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category p {
    color: var(--nav-dropdown-color);
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link {
    color: var(--accent-color);
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: 0.3s;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    margin: 0;
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover {
    color: color-mix(in srgb, var(--accent-color), black 15%);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link:hover i {
    transform: translateX(3px);
  }

  .navmenu .megamenu-2 .tab-content .resources-layout .resource-categories .resource-category .resource-link i {
    transition: 0.3s;
  }
}

/* Megamenu 2 - Mobile */
@media (max-width: 1199px) {
  /* .navmenu .megamenu-2 {
  } */

  .navmenu .megamenu-2 .desktop-megamenu {
    display: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu {
    position: static;
    display: none;
    z-index: 99;
    padding: 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
    border-radius: 6px;
    overflow: hidden;
  }

  .navmenu .megamenu-2 .mobile-megamenu li {
    position: relative;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li:last-child {
    border-bottom: none;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a {
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--nav-dropdown-color);
    font-size: 15px;
    transition: 0.3s;
    font-weight: 500;
  }

  .navmenu .megamenu-2 .mobile-megamenu li a:hover {
    color: var(--nav-dropdown-hover-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul {
    padding: 0;
    background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  }

  .navmenu .megamenu-2 .mobile-megamenu li ul li a {
    padding-left: 10px;
    font-size: 12px;
    font-weight: 400;
  }

  .navmenu .megamenu-2 .mobile-megamenu.dropdown-active {
    display: block;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background-color: #1a1a2e;
  font-size: 14px;
  /*padding-bottom: 50px;*/
  position: relative;
}

.footer .footer-top {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 50px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: #ffffff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: #ffffff;
  border-color: #ff6501;
  background-color: #ff6501;
}

.footer .social-links .custom-social-link.active {
  background-color: #ff6501;
  border-color: #ff6501;
  color: #ffffff;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: left;
}

.footer h4.animated-border::after {
  content: '';
  position: absolute;
  left: 0px;
  bottom: 0;
  width: 50px;
  height: 3px;
  background: #ff6501;
  transition: width 0.3s ease;
}

.footer h4.animated-border:hover::after {
  width: 80px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 5px 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: rgba(255, 255, 255, 0.7);
  display: inline-block;
  line-height: 1;
  text-decoration: none;
  transition: 0.3s;
}

.footer .footer-links ul a:hover {
  color: #ff6501;
  transform: translateX(5px);
}

.footer .footer-links.nav-underline li a {
  position: relative;
}

.footer .footer-links.nav-underline li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ef4123;
  transition: width 0.3s ease;
}

.footer .footer-links.nav-underline li a:hover::after {
  width: 100%;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
}

.footer .footer-contact p strong {
  color: #ff6501;
  font-weight: 600;
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  background-color: rgba(0, 0, 0, 0.3);
  border-top: 1px solid rgba(255, 101, 1, 0.2);
}

.footer .copyright p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

.footer .copyright p strong {
  color: #ff6501;
}

.footer .copyright .sitename {
  color: #ef4123;
  font-weight: 600;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.footer .credits a {
  color: #ff6501;
  text-decoration: none;
  transition: 0.3s;
}

.footer .credits a:hover {
  color: #ef4123;
  text-decoration: none;
}

/* Additional styling for footer links with icons if needed */
.footer .footer-links ul li::before {
  content: "›";
  color: #ff6501;
  font-weight: bold;
  margin-right: 8px;
  font-size: 18px;
  line-height: 1;
}

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

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact {
    text-align: left;
  }

  .footer h4.animated-border::after {
    left: 25px;
    transform: translateX(-50%);
  }

  .footer .footer-links ul li {
    justify-content: left;
  }

  .footer .social-links {
    justify-content: center;
  }
}

/* new css add for images */

.footer-images {
  display: flex;
  gap: 10px;
  /* space between images */
  margin-top: 10px;
}

.footer-images img {
  width: 80px;
  /* adjust size as needed */
  height: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .footer-images {
    justify-content: left;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#preloader div {
  width: 4px;
  height: 40px;
  /* background-color: var(--accent-color); */
  background: #ff6501;
  margin: 0 4px;
}

#preloader div:nth-child(1) {
  animation: animate-preloader 1s ease-in-out -0.45s infinite;
}

#preloader div:nth-child(2) {
  animation: animate-preloader 1s ease-in-out -0.3s infinite;
}

#preloader div:nth-child(3) {
  animation: animate-preloader 1s ease-in-out -0.15s infinite;
}

#preloader div:nth-child(4) {
  animation: animate-preloader 1s infinite;
}

@keyframes animate-preloader {

  0%,
  100% {
    transform: scaleY(0.3);
  }

  50% {
    transform: scaleY(1);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: #ef4123;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: #ff6501;
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 160px 0 80px 0;
  text-align: center;
  position: relative;
}

@media(max-width: 768px){
    .page-title {
      padding: 120px 0 40px 0;
    }
}

.page-title:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 30%);
  position: absolute;
  inset: 0;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

@media(max-width: 768px){
    .page-title h1 {
      font-size: 24px;
      font-weight: 700;
      margin-bottom: 10px;
    }
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 30px 0;
  scroll-margin-top: 72px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 60px;
  }
}

@media(max-width:768px) {

  section,
  .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 40px 0;
    scroll-margin-top: 72px;
    overflow: clip;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
/* .section-title {
  text-align: center;
  padding-bottom: 23px;
  position: relative;
} */

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  position: relative;
}

@media(max-width:768px) {
  .section-title h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    padding-bottom: 10px;
    position: relative;
  }
}

.section-title h2:before {
  content: "";
  position: absolute;
  display: block;
  width: 160px;
  height: 1px;
  /* background: color-mix(in srgb, var(--default-color), transparent 60%); */
  background: #9fb0aa;
  left: 0;
  right: 0;
  bottom: 1px;
  margin: auto;
}

.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  /* background: var(--accent-color); */
  background-color: red;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 60px 0 0px 0;
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--background-color), transparent 25%) 0%,
      color-mix(in srgb, var(--background-color), transparent 10%) 500%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 30px 15px;
}

.hero .hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ef4123;
  background: rgba(239, 65, 35, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 65, 35, 0.3);
  backdrop-filter: blur(5px);
}

.hero h1 {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000;
}

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: left;
  /* margin-bottom: 60px; */
  flex-wrap: wrap;
}

@media(max-width:768px) {
  .hero .hero-actions .btn-primary {
    background-color: #ef4123;
    color: var(--contrast-color);
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .hero .container {
    position: relative;
    z-index: 2;
    padding: 60px 15px 30px;
  }
}

.hero .hero-actions .btn-primary:hover {
  background-color: #ff6501;
  transform: translateY(-2px);

  color: var(--contrast-color);
}

.hero .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  /* color: var(--accent-color); */
  color: #c13b3f;
}

.hero .hero-actions .btn-secondary:hover {
  /* color: var(--accent-color); */
  color: #cc4c52;
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero .hero-visual {
  position: relative;
}

.hero .feature-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-bottom: 20px;
  height: calc(50% - 10px);
}

.hero .feature-card:hover {
  transform: translateY(-5px);
}

.hero .feature-card i {
  font-size: 32px;
  color: var(--accent-color);
  margin-bottom: 12px;
}

.hero .feature-card span {
  font-size: 14px;
  font-weight: 600;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.hero .feature-card:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .hero .hero-visual {
    margin-top: 60px;
  }

  .hero .feature-card {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero .hero-stats {
    gap: 24px;
  }

  .hero .feature-card {
    padding: 16px;
  }

  .hero .feature-card i {
    font-size: 24px;
  }

  .hero .feature-card span {
    font-size: 12px;
  }

  .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px 0;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 28px;
  }

  .hero {
    position: relative;
    /* min-height: 100vh; */
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 60px 0 60px 0;
  }

  .hero .hero-visual {
    margin-top: 40px;
  }

  .hero .feature-card {
    padding: 12px;
    margin-bottom: 12px;
  }

  .hero .feature-card i {
    font-size: 20px;
    margin-bottom: 8px;
  }

  .hero .feature-card span {
    font-size: 11px;
  }
}

/* New Css Add for slider */
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  /* min-height: 82vh; */
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0 0px 0;
}

@media(max-width:768px) {
  .hero {
    padding: 80px 0 0px 0;
  }
}

.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero .hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .hero-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--background-color), transparent 25%) 0%,
      color-mix(in srgb, var(--background-color), transparent 10%) 500%);
}

.hero .container {
  position: relative;
  z-index: 2;
  padding: 30px 15px;
}

.hero .hero-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #ef4123;
  background: rgba(239, 65, 35, 0.1);
  padding: 8px 16px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 65, 35, 0.3);
  backdrop-filter: blur(5px);
}

/* .hero h1 {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #000;
} */

.hero p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #000;
  max-width: 500px;
}

.hero .hero-actions {
  display: flex;
  gap: 24px;
  align-items: left;
  /* margin-bottom: 60px; */
  flex-wrap: wrap;
}

.hero .hero-actions .btn-primary {
  background-color: #ef4123;
  color: var(--contrast-color);
  padding: 12px 25px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media(max-width:768px) {
  .hero .hero-actions .btn-primary {
    background-color: #ef4123;
    color: var(--contrast-color);
    padding: 12px 20px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
  }

  .hero .container {
    position: relative;
    z-index: 2;
    padding: 30px 15px 20px;
  }
}

.hero .hero-actions .btn-primary:hover {
  background-color: #ff6501;
  transform: translateY(-2px);
  color: var(--contrast-color);
}

.hero .hero-actions .btn-secondary {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.hero .hero-actions .btn-secondary i {
  font-size: 24px;
  color: #c13b3f;
}

.hero .hero-actions .btn-secondary:hover {
  color: #cc4c52;
  transform: translateX(5px);
}

.hero .hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero .hero-stats .stat-item {
  text-align: left;
}

.hero .hero-stats .stat-item .stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 4px;
}

.hero .hero-stats .stat-item .stat-label {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/*--------------------------------------------------------------
# Hero Slider CSS
--------------------------------------------------------------*/
.hero-slider-container {
  position: relative;
  width: 100%;
}

.slides-wrapper {
  position: relative;
  width: 100%;
  /* min-height: 550px; */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

/* Slider Buttons */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ef4123;
  color: #ef4123;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: #ef4123;
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: -60px;
}

.next-btn {
  right: -60px;
}

/* Navigation Dots */
.slider-dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  /* margin-top: 30px; */
  position: relative;
  z-index: 10;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.slider-dots .dot:hover {
  background: #ef4123;
  opacity: 0.7;
}

.slider-dots .dot.active {
  background: #ef4123;
  transform: scale(1.2);
}

/*--------------------------------------------------------------
# Hero Visuals Images Positioning
--------------------------------------------------------------*/
.hero-visuals {
  position: relative;
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visuals img {
  position: relative;
  /* absolute हटाया */
  max-width: 100%;
  width: 450px;
  height: auto;
  object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-visuals img {
    width: 250px;
  }
}

/* New Css Add for slider */
/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-top: 60px;
  /* padding-bottom: 60px; */
}

.about1 {
  padding-top: 60px;
  padding-bottom: 15px !important;
}

.about .content {
  padding-right: 20px;
}

.about .content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .about .content h2 {
    font-size: 18px;
  }
}

.about .content .lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.about .content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 992px) {
  .about .content {
    padding-right: 0;
    margin-bottom: 3rem;
  }
}

.about .stats-container {
  margin: 3rem 0;
  padding: 2rem 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .stat-item {
  text-align: center;
  margin-bottom: 1.5rem;
}

.about .stat-item .number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.about .stat-item .label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .about .stat-item {
    margin-bottom: 2rem;
  }

  .about .stat-item .number {
    font-size: 2rem;
  }
}

.about .cta-wrapper {
  display: flex;
  gap: 1rem;
  align-items: center;
}

@media (max-width: 576px) {
  .about .cta-wrapper {
    flex-direction: column;
    align-items: stretch;
  }
}

.about .btn {
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about .btn.btn-primary {
  background-color: #ef4123;
  color: var(--contrast-color);
  border-color: #ef4123;
}

.about .btn.btn-primary:hover {
  background-color: #ff6501;
  transform: translateY(-2px);
}

.about .btn.btn-outline {
  background-color: transparent;
  color: #fff;
  background-color: #ef4123;
}

.about .btn.btn-outline:hover {
  background-color: #ff6501;
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.about .image-wrapper {
  position: relative;
  padding-left: 20px;
}

@media (max-width: 992px) {
  .about .image-wrapper {
    padding-left: 0;
    margin-top: 2rem;
  }
}

/* .about .image-wrapper .main-image {
  border-radius: 20px;
  box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
} */

.about .image-wrapper .floating-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background-color: var(--surface-color);
  border-radius: 15px;
  padding: 1.5rem;
  box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 80%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
  .about .image-wrapper .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  .about .image-wrapper .floating-card {
    position: static;
    margin-top: 2rem;
  }
}

.about .image-wrapper .floating-card .card-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.about .image-wrapper .floating-card .card-content i {
  font-size: 2rem;
  color: var(--accent-color);
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about .image-wrapper .floating-card .card-content .text h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.about .image-wrapper .floating-card .card-content .text span {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding-top: 0px;
  padding-bottom: 20px;
}

.clients .clients-slider {
  overflow: hidden;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-wrapper {
  height: auto !important;
  align-items: stretch;
  transition-timing-function: linear;
}

.clients .swiper-slide {
  height: auto;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.clients .swiper-slide:last-child {
  border-right: none;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 20px;
  height: 100%;
}

.clients .client-logo img {
  max-width: 100%;
  transition: 0.3s;
  /* opacity: 0.5;
  filter: grayscale(100); */
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  position: relative;
}

.featured-services .services-content .subtitle {
  display: inline-block;
  background-color: rgba(239, 65, 35, 0.1);
  border: 1px solid rgba(239, 65, 35, 0.3);
  color: #ef4123;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.featured-services .services-content h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 5px;
}

@media (max-width: 992px) {
  .featured-services .services-content h2 {
    font-size: 20px;
  }
}

@media (max-width: 768px) {
  .featured-services .services-content h2 {
    font-size: 20px;
  }
}

.featured-services .services-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
}

.featured-services .services-content .btn-consultation {
  display: inline-flex;
  align-items: center;
  background-color: #ef4123;
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.featured-services .services-content .btn-consultation span {
  margin-right: 8px;
}

.featured-services .services-content .btn-consultation i {
  transition: transform 0.3s ease;
}

.featured-services .services-content .btn-consultation:hover {
  background-color: #ff6501;
  transform: translateY(-2px);
}

.featured-services .services-content .btn-consultation:hover i {
  transform: translateX(5px);
}

.featured-services .services-image {
  position: relative;
  height: 380px;
  display: flex;
  justify-content: flex-end;
}

.featured-services .services-image img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  object-fit: cover;
}

.featured-services .services-image .shape-circle {
  position: absolute;
  right: -30px;
  top: -30px;
  height: 180px;
  width: 180px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  z-index: 1;
}

.featured-services .services-image .shape-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 100px;
  width: 100px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  z-index: 1;
  animation: float 5s infinite ease-in-out;
}

@media (max-width: 992px) {
  .featured-services .services-image {
    margin-top: 30px;
    height: 300px;
    justify-content: center;
  }
}

.featured-services .services-slider {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.featured-services .services-slider .swiper-wrapper {
  height: auto !important;
}

.featured-services .service-card {
  background-color: var(--surface-color);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  transition: all 0.4s;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-services .service-card .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.featured-services .service-card .icon-box i {
  font-size: 30px;
  color: var(--contrast-color);
  transition: all 0.4s;
}

.featured-services .service-card .arrow-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  color: var(--accent-color);
  background-color: var(--surface-color);
  border-radius: 50%;
  transform: rotate(-45deg);
  position: absolute;
  right: -50px;
  top: -50px;
  transition: all 0.4s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.featured-services .service-card .content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

.featured-services .service-card .content h4 a {
  color: var(--heading-color);
  transition: all 0.4s;
}

.featured-services .service-card .content p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  transition: all 0.4s;
}

.featured-services .service-card .content .service-number {
  position: relative;
  padding-left: 76px;
  color: #ef4123;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.4s;
}

.featured-services .service-card .content .service-number::after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 1px;
  width: 70px;
  background-color: #ef4123;
  transition: all 0.4s;
}

.featured-services .service-card:hover {
  /* background-color: var(--accent-color); */
  transform: translateY(-5px);
}

.featured-services .service-card:hover .icon-box {
  background-color: var(--contrast-color);
}

.featured-services .service-card:hover .icon-box i {
  color: var(--accent-color);
}

.featured-services .service-card:hover .arrow-link {
  top: 16px;
  right: 16px;
  background-color: var(--contrast-color);
}

.featured-services .service-card:hover .content h4 a {
  color: #000;
}

.featured-services .service-card:hover .content p {
  color: #000;
}

.featured-services .service-card:hover .content .service-number {
  color: var(--contrast-color);
  padding-left: 0;
}

.featured-services .service-card:hover .content .service-number::after {
  background-color: var(--contrast-color);
  left: 30px;
}

.featured-services .swiper-navigation {
  display: flex;
  justify-content: flex-end;
  margin-top: 30px;
}

.featured-services .swiper-navigation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 50%;
  height: 56px;
  width: 56px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-size: 20px;
  transition: all 0.4s;
  margin-right: 10px;
}

.featured-services .swiper-navigation button:last-child {
  margin-right: 0;
}

.featured-services .swiper-navigation button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

.btn-3d-red {
  background: #ef4123;
  color: #fff !important;
  font-weight: 600;
  padding: 7px 20px;
  border: none;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.btn-3d-red:hover {
  background: #ff6501;
  transform: translateY(-2px);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: none;
  background: color-mix(in srgb, var(--surface-color), transparent 50%);
  border-radius: 16px;
  backdrop-filter: blur(8px);
}

.features .nav-tabs .nav-item {
  margin-bottom: 15px;
}

.features .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-tabs .nav-link {
  padding: 20px;
  border: none;
  border-radius: 12px;
  background: var(--surface-color);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.features .nav-tabs .nav-link .d-flex {
  position: relative;
  z-index: 1;
}

.features .nav-tabs .nav-link .icon-box {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link .icon-box i {
  font-size: 24px;
  color: var(--accent-color) !important;
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 5px 0;
  color: var(--heading-color);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: all 0.4s ease;
}

.features .nav-tabs .nav-link:hover {
  transform: translateY(-2px);
}

.features .nav-tabs .nav-link:hover::before {
  opacity: 1;
}

.features .nav-tabs .nav-link:hover .icon-box {
  background: var(--accent-color);
}

.features .nav-tabs .nav-link:hover .icon-box i {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link:hover h4 {
  color: var(--accent-color);
}

.features .nav-tabs .nav-link:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .nav-tabs .nav-link.active {
  background: var(--accent-color);
}

.features .nav-tabs .nav-link.active::before {
  opacity: 0;
}

.features .nav-tabs .nav-link.active .icon-box {
  background: color-mix(in srgb, var(--contrast-color), transparent 85%);
}

.features .nav-tabs .nav-link.active .icon-box i {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active h4 {
  color: var(--contrast-color);
}

.features .nav-tabs .nav-link.active p {
  color: color-mix(in srgb, var(--contrast-color), transparent 20%);
}

.features .tab-content .content-box {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.features .tab-content .content-box h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.features .tab-content .content-box h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 3px;
}

.features .tab-content .content-box p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1.6;
}

.features .tab-content .content-box p.highlight {
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 92%),
      color-mix(in srgb, var(--accent-color), transparent 95%));
  padding: 20px;
  border-radius: 12px;
  position: relative;
}

.highlight {
  color: #ef4123;
  position: relative;
  display: inline-block;
}

.features .tab-content .content-box .features-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0 0;
}

.features .tab-content .content-box .features-list li {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding-left: 8px;
  transition: all 0.3s ease;
}

.features .tab-content .content-box .features-list li:last-child {
  margin-bottom: 0;
}

.features .tab-content .content-box .features-list li i {
  font-size: 20px;
  color: var(--accent-color);
  margin-right: 12px;
}

.features .tab-content .content-box .features-list li span {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.features .tab-content .content-box .features-list li:hover {
  transform: translateX(5px);
}

.features .tab-content .content-box .features-list li:hover span {
  color: var(--default-color);
}

.features .tab-content .content-box .image-box {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.features .tab-content .content-box .image-box img {
  transition: all 0.6s ease;
}

.features .tab-content .content-box .image-box:hover img {
  transform: scale(1.05);
}

.features .tab-content .content-box .image-box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
  pointer-events: none;
}

.features .tab-pane {
  transition: all 0.4s ease;
}

.features .tab-pane.fade {
  transform: translateY(10px);
  opacity: 0;
}

.features .tab-pane.show {
  transform: translateY(0);
  opacity: 1;
}

@media (max-width: 991px) {
  .features .nav-tabs {
    margin-bottom: 30px;
  }

  .features .nav-tabs .nav-link {
    padding: 15px;
  }

  .features .nav-tabs .nav-link .icon-box {
    width: 40px;
    height: 40px;
  }

  .features .nav-tabs .nav-link .icon-box i {
    font-size: 20px;
  }

  .features .tab-content .content-box {
    padding: 30px;
  }

  .features .tab-content .content-box h3 {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .features .nav-tabs .nav-item {
    margin-bottom: 10px;
  }

  .features .nav-tabs .nav-link h4 {
    font-size: 15px;
  }

  .features .nav-tabs .nav-link p {
    font-size: 13px;
  }

  .features .tab-content .content-box {
    padding: 25px;
  }

  .features .tab-content .content-box h3 {
    font-size: 22px;
  }

  .features .tab-content .content-box p {
    font-size: 15px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.faq .section-header .lead {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 25%);
  line-height: 1.6;
}

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

.faq .faq-item {
  border-left: 4px solid transparent;
  border-radius: 10px;
  background: var(--surface-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
  overflow: hidden;
}

.faq .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-left-color: color-mix(in srgb, var(--accent-color), transparent 50%);
}

.faq .faq-item.faq-active {
  border-left-color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-icon {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header h4 {
  color: var(--accent-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-plus {
  display: none;
}

.faq .faq-item.faq-active .faq-header .faq-toggle i.bi-dash {
  display: block;
}

.faq .faq-item.faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-plus {
  display: block;
}

.faq .faq-item:not(.faq-active) .faq-header .faq-toggle i.bi-dash {
  display: none;
}

.faq .faq-item .faq-header {
  display: flex;
  align-items: center;
  padding: 25px;
  cursor: pointer;
  gap: 20px;
}

.faq .faq-item .faq-header .faq-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header h4 {
  flex: 1;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  transition: color 0.3s ease;
  line-height: 1.4;
}

.faq .faq-item .faq-header .faq-toggle {
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--default-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--default-color);
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
}

.faq .faq-item .faq-header .faq-toggle i {
  position: absolute;
  transition: all 0.3s ease;
}

.faq .faq-item .faq-header .faq-toggle:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

.faq .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-item .faq-content .content-inner {
  padding: 0 25px 25px 25px;
  overflow: hidden;
}

.faq .faq-item .faq-content .content-inner p {
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  font-size: 0.95rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .faq .faq-item .faq-header {
    padding: 20px;
    gap: 15px;
  }

  .faq .faq-item .faq-header .faq-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .faq .faq-item .faq-header h4 {
    font-size: 1rem;
  }

  .faq .faq-item .faq-header .faq-toggle {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }

  .faq .faq-item .faq-content .content-inner {
    padding: 0 20px;
  }

  .faq .faq-item.faq-active .faq-content .content-inner {
    padding-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  text-align: center;
  min-height: 320px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: color-mix(in srgb, var(--accent-color), transparent 40%);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 15px 15px 15px;
  padding: 20px;
  background: color-mix(in srgb, var(--default-color), transparent 97%);
  position: relative;
  margin-bottom: 35px;
  border-radius: 6px;
}

.testimonials .testimonial-item p::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 20px solid color-mix(in srgb, var(--default-color), transparent 97%);
  border-right: 20px solid transparent;
  border-left: 20px solid transparent;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 20px);
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 40px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid #ff6501;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #ef4123;
}

/*--------------------------------------------------------------
# Portfolio Section
--------------------------------------------------------------*/
.portfolio .portfolio-container {
  position: relative;
}

.portfolio .portfolio-filters {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.portfolio .portfolio-filters li {
  cursor: pointer;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: var(--heading-color);
  transition: all 0.3s ease-in-out;
  border-radius: 50px;
  background: color-mix(in srgb, var(--surface-color), var(--heading-color) 5%);
}

.portfolio .portfolio-filters li:hover {
  color: var(--accent-color);
}

.portfolio .portfolio-filters li.filter-active {
  color: var(--contrast-color);
  background: var(--accent-color);
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 30px;
  right: 30px;
  top: 30px;
  bottom: 30px;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap img {
  transition: 0.3s;
  width: 100%;
}

.portfolio .portfolio-wrap .portfolio-info {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.portfolio .portfolio-wrap .portfolio-info h4 {
  font-size: 20px;
  color: var(--contrast-color);
  font-weight: 600;
  margin-bottom: 5px;
}

.portfolio .portfolio-wrap .portfolio-info p {
  color: var(--contrast-color);
  font-size: 14px;
  margin: 0 0 15px 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links {
  display: flex;
  gap: 15px;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a {
  color: var(--contrast-color);
  font-size: 20px;
  transition: 0.3s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  line-height: 0;
}

.portfolio .portfolio-wrap .portfolio-info .portfolio-links a:hover {
  background: var(--accent-color);
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover img {
  transform: scale(1.1);
}

.portfolio .portfolio-wrap:hover .portfolio-info {
  opacity: 1;
}

/*--------------------------------------------------------------
# Team Section
--------------------------------------------------------------*/
.team .swiper-wrapper {
  height: auto !important;
}

.team .team-slider {
  position: relative;
  padding: 20px 0 60px;
}

.team .team-slider .swiper-pagination {
  bottom: 0;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 70%);
  opacity: 1;
  margin: 0 5px;
  transition: 0.3s;
}

.team .team-slider .swiper-pagination .swiper-pagination-bullet-active {
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.team .team-slider .swiper-button-prev,
.team .team-slider .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  border-radius: 50%;
  color: var(--contrast-color);
  transition: 0.3s;
}

.team .team-slider .swiper-button-prev:after,
.team .team-slider .swiper-button-next:after {
  font-size: 16px;
}

.team .team-slider .swiper-button-prev:hover,
.team .team-slider .swiper-button-next:hover {
  background-color: var(--accent-color);
}

.team .team-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  background-color: var(--surface-color);
  height: 100%;
}

.team .team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.team .team-card:hover .team-overlay {
  opacity: 1;
  visibility: visible;
}

.team .team-card:hover .team-image img {
  transform: scale(1.08);
}

.team .team-image {
  position: relative;
  overflow: hidden;
}

.team .team-image img {
  transition: transform 0.6s ease;
}

.team .team-image .team-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}

.team .team-image .social-links {
  display: flex;
  gap: 15px;
}

.team .team-image .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: var(--accent-color);
  border-radius: 50%;
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
}

.team .team-image .social-links a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: translateY(-5px);
}

.team .team-content {
  padding: 20px;
  text-align: center;
}

.team .team-content h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.team .team-content span {
  display: block;
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.team .team-content p {
  font-size: 14px;
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

@media (max-width: 991px) {
  .team .team-card {
    margin-bottom: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-main-wrapper {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 992px) {
  .contact .contact-main-wrapper {
    grid-template-columns: 45% 55%;
    min-height: 600px;
  }
}

.contact .map-wrapper {
  height: 300px;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .contact .map-wrapper {
    height: 100%;
    position: sticky;
    top: 100px;
  }
}

.contact .contact-content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact .contact-cards-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
}

@media (min-width: 576px) {
  .contact .contact-cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contact .contact-card {
  background-color: var(--surface-color);
  padding: 20px;
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact .contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.contact .contact-card .icon-box {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact .contact-card .icon-box i {
  font-size: 22px;
  /* color: var(--accent-color); */
  color: #fff;
}

.contact .contact-card .contact-text h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--heading-color);
}

.contact .contact-card .contact-text p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
  margin-bottom: 0;
}

.contact .contact-form-container {
  background-color: var(--surface-color);
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.contact .contact-form-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  padding-left: 15px;
}

.contact .contact-form-container h3:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.contact .contact-form-container>p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 25px;
  color: var(--default-color);
}

.contact .contact-form-container .php-email-form .form-control {
  height: auto;
  padding: 14px 20px;
  border-radius: 10px;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 30%);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .form-control:focus {
  background-color: var(--surface-color);
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 85%);
}

.contact .contact-form-container .php-email-form .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.contact .contact-form-container .php-email-form textarea.form-control {
  min-height: 140px;
}

.contact .contact-form-container .php-email-form .form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 10px;
}

@media (max-width: 576px) {
  .contact .contact-form-container .php-email-form .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }
}

.contact .contact-form-container .php-email-form button {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form button:hover {
  background-color: color-mix(in srgb, var(--accent-color), #000 15%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px color-mix(in srgb, var(--accent-color), transparent 75%);
}

.contact .contact-form-container .php-email-form .social-links {
  display: flex;
  gap: 12px;
}

.contact .contact-form-container .php-email-form .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--background-color), #f5f8fd 20%);
  color: var(--heading-color);
  font-size: 16px;
  transition: all 0.3s ease;
}

.contact .contact-form-container .php-email-form .social-links a:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .contact .contact-form-container {
    padding: 25px 20px;
  }

  .contact .contact-form-container h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details {
  --card-border-radius: 12px;
  --content-spacing: 4rem;
}

.portfolio-details .project-header {
  margin-bottom: 2.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
}

.portfolio-details .project-header .project-title:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  border-radius: 2px;
}

.portfolio-details .project-header .project-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-meta .meta-item {
  display: flex;
  align-items: center;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.portfolio-details .project-header .project-meta .meta-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-right: 8px;
}

.portfolio-details .project-header .project-meta .meta-item a {
  color: inherit;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-meta .meta-item a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

.portfolio-details .project-header .project-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.portfolio-details .project-header .project-tags .tag {
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .project-tags .tag:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 75%);
  transform: translateY(-3px);
}

.portfolio-details .project-header .technologies .tech-title {
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--heading-color);
  text-align: right;
}

.portfolio-details .project-header .technologies .tech-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.portfolio-details .project-header .technologies .tech-badges span {
  background-color: color-mix(in srgb, var(--heading-color), transparent 90%);
  color: var(--heading-color);
  padding: 5px 12px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s;
}

.portfolio-details .project-header .technologies .tech-badges span:hover {
  background-color: color-mix(in srgb, var(--heading-color), transparent 80%);
  transform: scale(1.05);
}

.portfolio-details .media-showcase {
  margin-bottom: var(--content-spacing);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .media-showcase .swiper-wrapper {
  height: auto !important;
}

.portfolio-details .media-showcase .swiper-slide img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.portfolio-details .media-showcase .swiper-pagination {
  position: absolute;
  bottom: 20px;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: var(--contrast-color);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.portfolio-details .media-showcase .swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 30px;
  border-radius: 5px;
  background-color: var(--accent-color);
}

.portfolio-details .project-content .description-box {
  margin-bottom: 2rem;
}

.portfolio-details .project-content .description-box h3 {
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .description-box h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: #ef4123;
  border-radius: 2px;
}

.portfolio-details .project-content .description-box .lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 10%);
  font-weight: 500;
}

.portfolio-details .project-content .description-box p {
  margin-bottom: 1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
}

.portfolio-details .project-content .project-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.portfolio-details .project-content .project-stats .stat-item {
  background-color: var(--surface-color);
  padding: 1.5rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .project-stats .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}

.portfolio-details .project-content .project-stats .stat-item .stat-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.portfolio-details .project-content .project-stats .stat-item .stat-label {
  font-size: 0.9rem;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.portfolio-details .project-content .info-card {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .info-card:hover .card-icon {
  background-color: var(--accent-color);
}

.portfolio-details .project-content .info-card:hover .card-icon i {
  color: var(--contrast-color);
}

.portfolio-details .project-content .info-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: color-mix(in srgb, var(--accent-color), transparent 85%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card .card-icon i {
  font-size: 1.8rem;
  color: var(--accent-color);
  transition: all 0.3s;
}

.portfolio-details .project-content .info-card h4 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

.portfolio-details .project-content .info-card p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
  margin-bottom: 0;
}

/* .portfolio-details .project-content .project-gallery {
  margin: 3rem 0;
} */

.portfolio-details .project-content .project-gallery h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .project-gallery h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: #ef4123;
  border-radius: 2px;
}

.portfolio-details .project-content .project-gallery .gallery-item {
  border-radius: var(--card-border-radius);
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item img {
  aspect-ratio: 1/1;
  object-fit: cover;
  transition: all 0.5s ease;
}

.portfolio-details .project-content .project-gallery .gallery-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .project-content .project-gallery .gallery-item:hover img {
  transform: scale(1.05);
}

.portfolio-details .project-content .key-features {
  margin-bottom: 3rem;
}

.portfolio-details .project-content .key-features h3 {
  margin-bottom: 1.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.portfolio-details .project-content .key-features h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 3px;
  background-color: #ef4123;
  border-radius: 2px;
}

.portfolio-details .project-content .key-features .feature-item {
  background-color: var(--surface-color);
  padding: 2rem;
  border-radius: var(--card-border-radius);
  text-align: center;
  height: 100%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item:hover {
  transform: translateY(-7px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.portfolio-details .project-content .key-features .feature-item:hover i {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.portfolio-details .project-content .key-features .feature-item i {
  font-size: 2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 50%;
  transition: all 0.3s;
}

.portfolio-details .project-content .key-features .feature-item h5 {
  margin-bottom: 1rem;
  font-weight: 600;
}

.portfolio-details .project-content .key-features .feature-item p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.portfolio-details .project-content .project-navigation {
  display: flex;
  justify-content: space-between;
  padding-top: 2.5rem;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.portfolio-details .project-content .project-navigation a {
  display: flex;
  align-items: center;
  color: var(--heading-color);
  font-weight: 600;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a i {
  font-size: 1.2rem;
  transition: all 0.3s;
}

.portfolio-details .project-content .project-navigation a.prev-project i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.prev-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.prev-project:hover i {
  transform: translateX(-5px);
}

.portfolio-details .project-content .project-navigation a.all-projects {
  border: 2px solid color-mix(in srgb, var(--heading-color), transparent 80%);
  padding: 8px 16px;
  border-radius: 30px;
}

.portfolio-details .project-content .project-navigation a.all-projects i {
  margin-right: 8px;
}

.portfolio-details .project-content .project-navigation a.all-projects:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.all-projects:hover i {
  transform: scale(1.1);
}

.portfolio-details .project-content .project-navigation a.next-project i {
  margin-left: 8px;
}

.portfolio-details .project-content .project-navigation a.next-project:hover {
  color: var(--accent-color);
}

.portfolio-details .project-content .project-navigation a.next-project:hover i {
  transform: translateX(5px);
}

@media (max-width: 991px) {
  .portfolio-details .project-header .technologies {
    margin-top: 2rem;
  }

  .portfolio-details .project-header .technologies .tech-title,
  .portfolio-details .project-header .technologies .tech-badges {
    text-align: left;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .portfolio-details .project-header .project-title {
    font-size: 2.2rem;
  }

  .portfolio-details .project-navigation {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .portfolio-details .project-navigation a.all-projects {
    order: -1;
    margin-bottom: 1rem;
  }
}

@media (max-width: 576px) {
  .portfolio-details .project-stats {
    grid-template-columns: 1fr !important;
  }
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-hero {
  position: relative;
  margin-bottom: 40px;
  border-radius: 12px;
  overflow: hidden;
}

.service-details .service-hero img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.service-details .service-hero .service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
}

.service-details .service-content .service-header {
  margin-bottom: 40px;
}

.service-details .service-content .service-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.service-details .service-content .service-header .service-intro {
  font-size: 18px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-content h4 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  color: #000;
}

.service-details .service-features {
  margin-bottom: 50px;
}

.service-details .service-features .feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  transition: all 0.3s ease;
}

.service-details .service-features .feature-item:hover {
  box-shadow: 0 8px 25px color-mix(in srgb, var(--default-color), transparent 90%);
  transform: translateY(-2px);
}

.service-details .service-features .feature-item .feature-icon {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

.service-details .service-features .feature-item .feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.service-details .service-features .feature-item .feature-content h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #000;
}

.service-details .service-features .feature-item .feature-content p {
  font-size: 14px;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.service-details .service-process {
  margin-bottom: 50px;
}

.service-details .service-process .process-steps .process-step {
  display: flex;
  margin-bottom: 30px;
  position: relative;
}

.service-details .service-process .process-steps .process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 25px;
  top: 50px;
  width: 2px;
  height: 40px;
  /* background: color-mix(in srgb, var(--accent-color), transparent 70%); */
  background-color: #fff;
}

.service-details .service-process .process-steps .process-step .step-number {
  /* background: var(--accent-color); */
  background: linear-gradient(145deg, #e12b32, #cf2128);
  color: var(--contrast-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-right: 25px;
  flex-shrink: 0;
  font-size: 16px;

  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3),
    inset -2px -2px 6px rgba(255, 255, 255, 0.2),
    inset 2px 2px 6px rgba(0, 0, 0, 0.3);
}

.service-details .service-process .process-steps .process-step .step-content h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--heading-color);
}

.service-details .service-process .process-steps .process-step .step-content p {
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.service-details .service-gallery {
  margin-bottom: 30px;
}

.service-details .service-gallery img {
  transition: transform 0.3s ease;
}

.service-details .service-gallery img:hover {
  transform: scale(1.05);
}

.service-details .service-sidebar .service-menu {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-menu h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item {
  display: flex;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active {
  color: var(--accent-color);
  padding-left: 10px;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item:hover i,
.service-details .service-sidebar .service-menu .menu-list .menu-item.active i {
  color: var(--accent-color);
}

.service-details .service-sidebar .service-menu .menu-list .menu-item i {
  margin-right: 12px;
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: color 0.3s ease;
}

.service-details .service-sidebar .service-menu .menu-list .menu-item span {
  font-weight: 500;
}

.service-details .service-sidebar .service-info {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
  color: var(--heading-color);
}

.service-details .service-sidebar .service-info .info-list .info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .service-sidebar .service-info .info-list .info-item:last-child {
  border-bottom: none;
}

.service-details .service-sidebar .service-info .info-list .info-item .info-label {
  font-weight: 500;
  color: var(--default-color);
}

.service-details .service-sidebar .service-info .info-list .info-item .info-value {
  font-weight: 600;
  color: var(--accent-color);
}

.service-details .service-sidebar .contact-card {
  background: linear-gradient(135deg,
      var(--accent-color),
      color-mix(in srgb, var(--accent-color), #000 20%));
  padding: 30px;
  border-radius: 10px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.service-details .service-sidebar .contact-card .contact-content p {
  margin-bottom: 20px;
  opacity: 0.9;
  font-size: 14px;
  line-height: 1.6;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info {
  margin-bottom: 25px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item i {
  margin-right: 10px;
  opacity: 0.8;
}

.service-details .service-sidebar .contact-card .contact-content .contact-info .contact-item span {
  font-size: 14px;
}

.service-details .service-sidebar .contact-card .contact-content .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.service-details .service-sidebar .contact-card .contact-content .btn:hover {
  background: color-mix(in srgb, var(--contrast-color), transparent 10%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .service-details .service-hero img {
    height: 250px;
  }

  .service-details .service-hero .service-badge {
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    font-size: 12px;
  }

  .service-details .service-content .service-header h2 {
    font-size: 22px;
  }

  .service-details .feature-item {
    padding: 15px !important;
  }

  .service-details .feature-item .feature-icon {
    width: 50px !important;
    height: 50px !important;
    margin-right: 15px !important;
  }

  .service-details .feature-item .feature-icon i {
    font-size: 20px !important;
  }

  .service-details .service-sidebar {
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
  margin-bottom: 60px;
}

.terms-of-service .tos-header .last-updated {
  display: inline-block;
  padding: 8px 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 30px;
  color: var(--accent-color);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.terms-of-service .tos-header h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.terms-of-service .tos-header p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.terms-of-service .tos-content .content-section {
  margin-bottom: 50px;
  scroll-margin-top: 100px;
}

.terms-of-service .tos-content .content-section:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.terms-of-service .tos-content .content-section p {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-of-service .tos-content .content-section p:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .info-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .info-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .info-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .list-items {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.terms-of-service .tos-content .content-section .list-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .list-items li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .list-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .alert-box {
  display: flex;
  gap: 20px;
  padding: 25px;
  background-color: var(--surface-color);
  border-radius: 15px;
  border-left: 4px solid var(--accent-color);
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .alert-box i {
  font-size: 2rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-content .content-section .alert-box .alert-content p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .prohibited-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-content .content-section .prohibited-list {
    grid-template-columns: 1fr;
  }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background-color: var(--surface-color);
  border-radius: 12px;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
  color: #dc3545;
  font-size: 1.2rem;
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.terms-of-service .tos-content .content-section .disclaimer-box {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .disclaimer-box p {
  margin-bottom: 15px;
  font-weight: 500;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  font-size: 0.95rem;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
  margin-bottom: 0;
}

.terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.terms-of-service .tos-content .content-section .notice-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  border-radius: 15px;
  margin-top: 20px;
}

.terms-of-service .tos-content .content-section .notice-box i {
  font-size: 1.5rem;
  color: var(--accent-color);
  flex-shrink: 0;
}

.terms-of-service .tos-content .content-section .notice-box p {
  margin: 0;
  font-size: 0.95rem;
}

.terms-of-service .tos-contact {
  margin-top: 60px;
}

.terms-of-service .tos-contact .contact-box {
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--accent-color), transparent 95%) 0%,
      color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 576px) {
  .terms-of-service .tos-contact .contact-box {
    flex-direction: column;
    text-align: center;
  }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
  width: 60px;
  height: 60px;
  background-color: var(--accent-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.terms-of-service .tos-contact .contact-box .contact-icon i {
  font-size: 1.8rem;
  color: var(--contrast-color);
}

.terms-of-service .tos-contact .contact-box .contact-content {
  flex: 1;
}

.terms-of-service .tos-contact .contact-box .contact-content h4 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.terms-of-service .tos-contact .contact-box .contact-content p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-bottom: 15px;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s;
}

.terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

@media print {
  .terms-of-service .tos-contact {
    display: none;
  }

  .terms-of-service .content-section {
    page-break-inside: avoid;
  }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
  font-size: 1rem;
  line-height: 1.7;
}

.privacy .privacy-header {
  margin-bottom: 60px;
  text-align: center;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding-bottom: 40px;
}

.privacy .privacy-header .header-content {
  max-width: 800px;
  margin: 0 auto;
}

.privacy .privacy-header .header-content .last-updated {
  font-size: 0.95rem;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin-bottom: 20px;
}

.privacy .privacy-header .header-content h1 {
  font-size: 2.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-header .header-content .intro-text {
  font-size: 1.2rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.6;
}

.privacy .privacy-content {
  max-width: 800px;
  margin: 0 auto 60px;
}

.privacy .privacy-content .content-section {
  margin-bottom: 50px;
}

.privacy .privacy-content .content-section:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 25px;
  font-weight: 600;
}

.privacy .privacy-content .content-section h3 {
  font-size: 1.4rem;
  color: var(--heading-color);
  margin: 30px 0 20px;
  font-weight: 500;
}

.privacy .privacy-content .content-section p {
  margin-bottom: 20px;
}

.privacy .privacy-content .content-section p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.privacy .privacy-content .content-section ul li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
}

.privacy .privacy-content .content-section ul li:last-child {
  margin-bottom: 0;
}

.privacy .privacy-content .content-section ul li::before {
  content: "•";
  position: absolute;
  left: 8px;
  color: var(--accent-color);
}

.privacy .privacy-contact {
  max-width: 800px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.privacy .privacy-contact h2 {
  font-size: 1.8rem;
  color: var(--heading-color);
  margin-bottom: 20px;
  font-weight: 600;
}

.privacy .privacy-contact p {
  margin-bottom: 20px;
}

.privacy .privacy-contact .contact-details {
  background-color: var(--surface-color);
  padding: 25px;
  border-radius: 10px;
}

.privacy .privacy-contact .contact-details p {
  margin-bottom: 10px;
}

.privacy .privacy-contact .contact-details p:last-child {
  margin-bottom: 0;
}

.privacy .privacy-contact .contact-details p strong {
  color: var(--heading-color);
  font-weight: 600;
}

@media print {
  .privacy {
    font-size: 12pt;
    line-height: 1.5;
  }

  .privacy .privacy-header {
    text-align: left;
    border-bottom: 1pt solid #000;
    padding-bottom: 20pt;
    margin-bottom: 30pt;
  }

  .privacy h1 {
    font-size: 24pt;
  }

  .privacy h2 {
    font-size: 18pt;
    page-break-after: avoid;
  }

  .privacy h3 {
    font-size: 14pt;
    page-break-after: avoid;
  }

  .privacy p,
  .privacy ul {
    page-break-inside: avoid;
  }

  .privacy .contact-details {
    border: 1pt solid #000;
    padding: 15pt;
  }
}

@media (max-width: 767px) {
  .privacy .privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
  }

  .privacy .privacy-header .header-content h1 {
    font-size: 2.2rem;
  }

  .privacy .privacy-header .header-content .intro-text {
    font-size: 1.1rem;
  }

  .privacy .privacy-content .content-section {
    margin-bottom: 40px;
  }

  .privacy .privacy-content .content-section h2 {
    font-size: 1.6rem;
  }

  .privacy .privacy-content .content-section h3 {
    font-size: 1.3rem;
  }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
  padding: 80px 0;
  margin: 0 auto;
}

.error-404 .error-icon {
  font-size: 5rem;
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-code {
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 800;
  color: color-mix(in srgb, var(--heading-color), transparent 10%);
  font-family: var(--heading-font);
  line-height: 1;
}

.error-404 .error-title {
  font-size: 2rem;
  color: var(--heading-color);
  font-weight: 600;
}

.error-404 .error-text {
  font-size: 1.1rem;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  max-width: 600px;
  margin: 0 auto;
}

.error-404 .search-box {
  max-width: 500px;
  margin: 0 auto;
}

.error-404 .search-box .input-group {
  border-radius: 50px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.error-404 .search-box .form-control {
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-radius: 50px;
}

.error-404 .search-box .form-control:focus {
  box-shadow: none;
  border-color: var(--accent-color);
}

.error-404 .search-box .form-control::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.error-404 .search-box .search-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
}

.error-404 .search-box .search-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.error-404 .error-action .btn-primary {
  padding: 0.75rem 2rem;
  font-size: 1.1rem;
  background-color: var(--accent-color);
  border: none;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.error-404 .error-action .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .error-404 {
    padding: 60px 0;
  }

  .error-404 .error-code {
    font-size: clamp(4rem, 12vw, 8rem);
  }

  .error-404 .error-title {
    font-size: 1.5rem;
  }

  .error-404 .error-text {
    font-size: 1rem;
    padding: 0 20px;
  }

  .error-404 .search-box {
    margin: 0 20px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
/* .starter-section { */
/* Add your styles here */
/* } */

.auth-buttons .btn-primary {
  background-color: black;
  border-color: black;
  border-radius: 8px;
  width: 95px;
  height: 45px;
  padding: 10px;
}

.auth-buttons .btn-primary:hover,
.auth-buttons .btn-outline-primary:hover {
  background-color: #322d2d;
  border-color: black;
  color: #fff;
}

.auth-buttons .btn-outline-primary {
  color: #fff;
  border-color: black;
  border-radius: 8px;
  width: 110px;
  height: 45px;
  padding: 10px;
  font-weight: 500;
  font-size: 14px;
}

.auth-buttons .btn-outline-primary:hover {
  background-color: black;
}

.auth-buttons .btn {
  transition: all 0.3s ease;
}

.typewriter {
  display: inline-block;
  border-right: 2px solid #ef4123;
  white-space: nowrap;
  color: #ef4123;
}

.hero-fixed-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Optional: floating animation */
@keyframes floatImage {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .hero-fixed-img {
    width: 80%;
    margin: 0 auto;
  }

  .navmenu {
    margin-left: auto !important;
  }
}

.custom-social-links {
  display: flex;
  margin-top: 1rem;
  gap: 20px;
}

.custom-social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  z-index: 1;
  transition: color 0.3s ease;
}

.custom-social-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid #ff6501;
  border-radius: 50%;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.3s ease;
  z-index: -1;
}

.custom-social-link:hover::after {
  transform: scaleY(1);
}

.animated-border {
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}

.animated-border::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg,
      red 0px,
      red 30px,
      white 20px,
      white 40px,
      #732ff9 30px,
      #732ff9 40px);
  background-size: 300% 100%;
  animation: animate-dashes 4s linear infinite;
}

@keyframes animate-dashes {
  0% {
    background-position: 0% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

.nav-underline li a {
  position: relative;
  display: inline-block;
  color: #fff;
  text-decoration: none;
  padding-bottom: 5px;
}

.nav-underline li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background-color: #ff6501;
  transition: all 0.4s ease;
  transform: translateX(-50%);
}

.nav-underline li a:hover::after {
  width: 100%;
}

/* Full width content */
.content-grid {
  width: 100%;
  margin: 0;
  padding: 0;
}

/* Global Heading */

@media(max-width:768px) {
  .hero-title-mobile {
    font-size: 22px !important;
  }
}

/* Stack section start */
.stack-section {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* min-height: 100vh; */
  width: 100%;
  /* background: #f8fafc; */
  padding: 30px 0 0;
}

.phone-frame {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* background: transparent; */
  border-radius: 100px;
  overflow: visible;
  position: relative;
}

.parallax-stack {
  position: relative;
  width: 100%;
  /* background: transparent; */
}

.stack-card {
  /* min-height: 100vh; */
  width: 100%;
  padding: 35px 45px;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  background: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 -20px 10px -20px rgba(0, 20, 60, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.02);
  z-index: 1;
  border-radius: 20px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: box-shadow 0.3s ease;
  margin-bottom: 10px;
}

/* Card 1 - Offline Payments */
.stack-card:nth-child(1) {
  z-index: 10;
  background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
}

.stack-card:nth-child(1) .section-label {
  color: #0066cc;
}

.stack-card:nth-child(1) .section-label::before {
  background: #0066cc;
}

/* Card 2 - Payment Gateways */
.stack-card:nth-child(2) {
  z-index: 20;
  background: linear-gradient(180deg, #ffffff 0%, #fff1e6 100%);
  margin-top: -20px;
  /* Creates slight overlap for visual effect */
}

.stack-card:nth-child(2) .section-label {
  color: #ea580c;
}

.stack-card:nth-child(2) .section-label::before {
  background: #ea580c;
}

/* Card 3 - Payment Links */
.stack-card:nth-child(3) {
  z-index: 30;
  background: linear-gradient(180deg, #ffffff 0%, #f0eaff 100%);
  margin-top: -20px;
}

.stack-card:nth-child(3) .section-label {
  color: #7c3aed;
}

.stack-card:nth-child(3) .section-label::before {
  background: #7c3aed;
}

/* Card 4 - Merchant Lending */
.stack-card:nth-child(4) {
  z-index: 40;
  background: linear-gradient(180deg, #ffffff 0%, #e6f7f0 100%);
  margin-top: -20px;
}

.stack-card:nth-child(4) .section-label {
  color: #059669;
}

.stack-card:nth-child(4) .section-label::before {
  background: #059669;
}

/* Card 5 - OrbitPay Ads */
.stack-card:nth-child(5) {
  z-index: 50;
  background: linear-gradient(180deg, #ffffff 0%, #ede7ff 100%);
  margin-top: -20px;
}

.stack-card:nth-child(5) .section-label {
  color: #4f46e5;
}

.stack-card:nth-child(5) .section-label::before {
  background: #4f46e5;
}

/* Card 5 - OrbitPay Ads */
.stack-card:nth-child(6) {
  z-index: 50;
  background: linear-gradient(180deg, #ffffff 0%, #ede7ff 100%);
  margin-top: -20px;
}

.stack-card:nth-child(6) .section-label {
  color: #4f46e5;
}

.stack-card:nth-child(6) .section-label::before {
  background: #4f46e5;
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.content-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 11px !important;
  width: 100%;
  margin-bottom: 30px;
}

.content-text {
  flex: 1;
  max-width: 550px;
}

.main-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 5px;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.subtitle {
  /* font-size: 17px; */
  color: var(--text-gray);
  line-height: 1.5;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media(max-width:768px) {
  .subtitle {
    margin-bottom: 20px;
  }
}

.premium-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #000;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 5px 20px;
  /* background: rgba(255, 255, 255, 0.8); */
  background: #ef4123;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
  width: fit-content;
}

.premium-link:hover {
  gap: 20px;
  background: white;
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #000;
}

.arrow {
  font-size: 1.4rem;
  transition: transform 0.3s ease;
}

.premium-link:hover .arrow {
  transform: translateX(6px);
}

.image-container {
  flex-shrink: 0;
  width: 500px;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  box-shadow: none;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
}

.image-container::before {
  display: none;
}

.illustration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transform: translateZ(0) scale(1);
  backface-visibility: hidden;
  image-rendering: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.05));
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.stack-card:hover .illustration {
  transform: translateZ(0) scale(1.02);
}

.image-bg {
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle at 30% 30%, rgba(224, 242, 254, 0.8) 0%, rgba(224, 242, 254, 0.3) 50%, transparent 70%);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateZ(0);
  z-index: 1;
  backface-visibility: hidden;
  transition: all 0.5s ease;
}

.stack-card:hover .image-bg {
  transform: translate(-50%, -50%) scale(1.1);
  background: radial-gradient(circle at 30% 30%, rgba(200, 230, 255, 0.9) 0%, rgba(200, 230, 255, 0.4) 50%, transparent 70%);
}

.section-label {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 8px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #0066cc;
}

.section-label::before {
  content: '';
  width: 32px;
  height: 4px;
  background: #0066cc;
  border-radius: 4px;
  transition: width 0.3s ease;
}

.stack-card:hover .section-label::before {
  width: 48px;
}

.bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: auto;
  width: 100%;
}

.eng-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  background: transparent;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.time-display {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  background: transparent;
  padding: 8px 16px;
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
}

.globe-icon {
  font-size: 1.2rem;
}

.stack-hint {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(15, 23, 42, 0.9);
  color: white;
  padding: 16px 32px;
  border-radius: 60px;
  font-size: 1rem;
  z-index: 100;
  pointer-events: none;
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 500;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.stack-hint span {
  font-size: 1.2rem;
}

/* Card specific background patterns */
.stack-card:nth-child(1) .image-bg {
  background: radial-gradient(circle at 30% 30%, rgba(0, 102, 204, 0.1) 0%, rgba(0, 102, 204, 0.05) 50%, transparent 70%);
}

.stack-card:nth-child(2) .image-bg {
  background: radial-gradient(circle at 30% 30%, rgba(234, 88, 12, 0.1) 0%, rgba(234, 88, 12, 0.05) 50%, transparent 70%);
}

.stack-card:nth-child(3) .image-bg {
  background: radial-gradient(circle at 30% 30%, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0.05) 50%, transparent 70%);
}

.stack-card:nth-child(4) .image-bg {
  background: radial-gradient(circle at 30% 30%, rgba(5, 150, 105, 0.1) 0%, rgba(5, 150, 105, 0.05) 50%, transparent 70%);
}

.stack-card:nth-child(5) .image-bg {
  background: radial-gradient(circle at 30% 30%, rgba(79, 70, 229, 0.1) 0%, rgba(79, 70, 229, 0.05) 50%, transparent 70%);
}

.brand-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -1px;
}

.stats-display {
  font-size: 4.5rem;
  font-weight: 800;
  color: #0f172a;
  margin: 25px 0;
  letter-spacing: -2px;
  background: linear-gradient(135deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.received-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  color: #059669;
  padding: 18px 32px;
  border-radius: 60px;
  font-weight: 700;
  font-size: 1.2rem;
  border: 2px solid #a7f3d0;
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
  transition: all 0.3s ease;
}

.received-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 150, 105, 0.2);
}

.received-badge::before {
  content: '↑';
  font-size: 1.4rem;
  font-weight: 800;
}

/* Scroll progress indicator */
.scroll-progress {
  position: fixed;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.progress-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

.progress-dot.active {
  width: 30px;
  border-radius: 10px;
  background: #0066cc;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .stack-card {
    padding: 50px 60px;
  }

  .content-row {
    gap: 60px;
  }

  .main-title {
    font-size: 3rem;
  }

  .image-container {
    width: 400px;
    height: 360px;
  }

  .image-bg {
    width: 360px;
    height: 360px;
  }
}

@media (max-width: 968px) {
  /* .stack-section {
    padding: 30px 15px;
  } */

  .stack-card {
    padding: 40px 30px;
    min-height: auto;
    border-radius: 60px;
  }

  .content-row {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .content-text {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .main-title {
    font-size: 2.5rem;
    text-align: center;
  }

  .subtitle {
    font-size: 1.1rem;
    text-align: center;
    max-width: 500px;
  }

  .image-container {
    width: 320px;
    height: 280px;
  }

  .image-bg {
    width: 280px;
    height: 280px;
  }

  .premium-link {
    margin: 0 auto;
  }

  .section-label {
    justify-content: center;
    font-size: 0.85rem;
  }

  .section-label::before {
    width: 24px;
  }

  .stack-card:hover .section-label::before {
    width: 36px;
  }

  .bottom-bar {
    padding: 20px 0 0;
  }

  .stack-hint {
    display: none;
    /* Hide on mobile */
  }
}

@media (max-width: 576px) {
  .stack-card {
    padding: 30px 20px;
    border-radius: 40px;
  }

  .main-title {
    font-size: 22px;
  }

  .subtitle {
    font-size: 1rem;
  }

  .image-container {
    width: 260px;
    height: 220px;
  }

  .image-bg {
    width: 220px;
    height: 220px;
  }

  .bottom-bar {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
  }

  .eng-badge,
  .time-display {
    width: 100%;
    justify-content: center;
  }

  .stats-display {
    font-size: 3rem;
  }

  .received-badge {
    padding: 14px 24px;
    font-size: 1rem;
  }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
  .stack-card {
    background: #1e293b;
    color: #f1f5f9;
  }

  .main-title {
    color: #f8fafc;
  }

  .subtitle {
    color: #cbd5e1;
  }

  .premium-link {
    color: #f8fafc;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.1);
  }

  .bottom-bar {
    border-top-color: rgba(255, 255, 255, 0.1);
  }

  .eng-badge,
  .time-display {
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
  }
}

/* Animations */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.illustration {
  animation: float 6s ease-in-out infinite;
}

.stack-card:nth-child(2) .illustration {
  animation-delay: 0.2s;
}

.stack-card:nth-child(3) .illustration {
  animation-delay: 0.4s;
}

.stack-card:nth-child(4) .illustration {
  animation-delay: 0.6s;
}

.stack-card:nth-child(5) .illustration {
  animation-delay: 0.8s;
}

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

/* Hide scrollbar for cleaner look (optional) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Stack section end*/

/* Section */
.cb-section {
  width: 100%;
  padding: 60px 0px;
}

.cb-grid {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

/* Orbit Column */
.cb-orbit-col {
  flex: 1 1 50%;
  display: flex;
  justify-content: center;
  min-width: 300px;
}

.cb-orbit-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  height: 420px;
}

.cb-orbit-icon {
  position: absolute;
  width: 70px;
  height: 70px;
  transition: all 1.2s cubic-bezier(.65, 0, .35, 1);
}

/* Position classes for desktop */
.cb-pos-0 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cb-pos-1 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.cb-pos-2 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.cb-pos-3 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.cb-icon-box {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cb-icon-box:hover {
  transform: scale(1.1);
}

.cb-icon-box img {
  max-width: 40px;
  max-height: 40px;
  object-fit: contain;
}

/* Bank Card Popup */
.cb-bank-card {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
  width: 260px;
  background: white;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #ef4123;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  pointer-events: none;
  z-index: 10;
}

.cb-orbit-icon:hover .cb-bank-card {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

.cb-bank-card .bank-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.cb-bank-card .bank-header img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cb-bank-card .bank-header strong {
  font-size: 14px;
  color: #1a1a1a;
}

.cb-bank-card .balance-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

.cb-bank-card .balance-row div {
  font-size: 12px;
}

.cb-bank-card .balance-row p {
  margin: 0;
  color: #666;
  font-size: 11px;
}

.cb-bank-card .balance-row strong {
  color: #1a1a1a;
  font-size: 13px;
}

.cb-bank-card .balance-row span {
  color: #999;
  font-size: 11px;
}

.user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f5f5f5;
}

.user-row:last-of-type {
  border-bottom: none;
}

.user-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-left img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.user-left span {
  font-size: 12px;
  color: #333;
}

.user-left .success {
  background: #dcfce7;
  color: #166534;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 600;
}

.amount {
  text-align: right;
}

.amount strong {
  display: block;
  font-size: 13px;
  color: #1a1a1a;
}

.amount span {
  font-size: 11px;
  color: #999;
}

.settlement {
  display: block;
  text-align: center;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  color: #ef4123;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

/* Text Column */
.cb-text-col {
  flex: 1 1 40%;
  max-width: 480px;
  min-width: 300px;
}

.cb-title-main {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.cb-title-main span {
  color: #ef4123;
}

.cb-sub-head {
  font-size: 15px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.cb-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.cb-feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #333;
}

.cb-feature-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
}

.cb-btn-wrap {
  margin-top: 8px;
}

/* 
.cb-main-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: linear-gradient(135deg, #ef4123 0%, #ff6501 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(239, 65, 35, 0.3);
} */

.cb-main-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 65, 35, 0.4);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
  .cb-section {
    padding: 60px 30px 15px;
  }

  .cb-grid {
    flex-direction: column;
    gap: 70px;
  }

  .cb-orbit-col,
  .cb-text-col {
    flex: 1 1 100%;
    max-width: 100%;
    min-width: auto;
  }

  .cb-orbit-wrapper {
    max-width: 400px;
    height: 350px;
  }

  .cb-orbit-icon {
    width: 60px;
    height: 60px;
  }

  .cb-icon-box {
    width: 60px;
    height: 60px;
  }

  .cb-icon-box img {
    max-width: 32px;
    max-height: 32px;
  }

  .cb-title-main {
    font-size: 32px;
    text-align: left;
  }

  .cb-sub-head {
    text-align: left;
  }

  .cb-feature-list {
    display: flex;
    flex-direction: column;
    align-items: left;
  }

  .cb-btn-wrap {
    text-align: center;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  /* .cb-section {
    padding: 30px 16px;
  } */

  .cb-orbit-wrapper {
    max-width: 300px;
    height: 280px;
  }

  .cb-orbit-icon {
    width: 50px;
    height: 50px;
  }

  .cb-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
  }

  .cb-icon-box img {
    max-width: 28px;
    max-height: 28px;
  }

  /* Reposition for mobile diamond layout */
  .cb-pos-0 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .cb-pos-1 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .cb-pos-2 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .cb-pos-3 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .cb-bank-card {
    width: 220px;
    padding: 12px;
  }

  .cb-title-main {
    font-size: 26px;
  }

  .cb-sub-head {
    font-size: 14px;
  }

  .cb-feature-list li {
    font-size: 14px;
  }

  .cb-main-btn {
    width: 100%;
    justify-content: left;
    padding: 14px 24px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .cb-orbit-wrapper {
    max-width: 260px;
    height: 240px;
  }

  .cb-orbit-icon {
    width: 44px;
    height: 44px;
  }

  .cb-icon-box {
    width: 44px;
    height: 44px;
  }

  .cb-icon-box img {
    max-width: 24px;
    max-height: 24px;
  }
}

/* USERS */

.user-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.user-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.user-left img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
}

.user-left span {
  font-size: 12px;
  font-weight: 500;
}

.success {
  background: #e6f9ef;
  color: #1aa36f;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
}

.amount {
  text-align: right;
  font-size: 10px;
}

.amount strong {
  display: block;
  font-size: 11px;
}

.settlement {
  color: #ef4123;
  font-size: 12px;
  text-decoration: none;
}

/* CENTER */

.cb-orbit-icon.cb-center {
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) scale(1.1);
  z-index: 50;
}

.cb-orbit-icon.cb-center .cb-bank-card {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.cb-orbit-icon.cb-center .cb-icon-box {
  opacity: 0;
}

.cb-orbit-icon.cb-inactive {
  opacity: .35;
}

/* POSITIONS */

.cb-pos-0 {
  top: 5%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.cb-pos-1 {
  top: 50%;
  left: 95%;
  transform: translate(-50%, -50%)
}

.cb-pos-2 {
  top: 95%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.cb-pos-3 {
  top: 50%;
  left: 5%;
  transform: translate(-50%, -50%)
}

.cb-btn-wrap {
  margin-top: 25px;
}

.cb-main-btn {
  display: inline-block;
  background: #ef4123;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.cb-main-btn:hover {
  background: #ff6501;
  transform: translateY(-2px);
  color: #fff;
}

/* MOBILE */

@media(max-width:1000px) {

  .cb-grid {
    flex-direction: column;
    text-align: center;
  }

}

/* Rotate section end css add */

/* ===== PAYMENT PARTNERS CAROUSEL - WHITE BACKGROUND ===== */
/* All class names are prefixed with 'ppc-' to avoid conflicts */

.ppc-carousel-wrapper {
  overflow: hidden;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px 0 15px;
  position: relative;
  background: #ffffff;
  /* Pure white background */
}

/* Header */
.ppc-header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0 20px;
}

.ppc-main-title {
  font-size: 32px;
  font-weight: 700;
  color: #0f172a;
  /* Dark text */
  margin-bottom: 8px;
}

.ppc-highlight-text {
  color: #ff6501;
}

.ppc-subtitle-text {
  font-size: 16px;
  color: #64748b;
  /* Gray text */
}

/* Carousel Rows */
.ppc-row {
  display: flex;
  gap: 16px;
  width: max-content;
}

.ppc-track {
  display: flex;
  gap: 16px;
  transition: animation-play-state 0.3s ease;
}

/* Service Items */
.ppc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 15px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  /* Light border */
  background: #ffffff;
  /* White background */
  width: 182px;
  min-width: 182px;
  height: 60px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: #0f172a;
  /* Dark text */
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.ppc-item:hover {
  border-color: #ff6501;
  background: #ffffff;
  box-shadow: 0 8px 20px -5px rgba(255, 101, 1, 0.15);
  transform: scale(1.02);
}

.ppc-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff1e6;
  /* Light orange background */
  font-size: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.ppc-icon-box i {
  color: #ff6501;
  transition: all 0.3s ease;
}

/* Hover Effects */
.ppc-item:hover .ppc-icon-box {
  background: #ff6501;
  transform: rotate(360deg);
}

.ppc-item:hover .ppc-icon-box i {
  color: #ffffff;
  transform: scale(1.1);
}

/* Row Speed Variations */
.ppc-row-1 .ppc-track {
  animation: ppc-scroll-left 45s linear infinite;
}

.ppc-row-2 .ppc-track {
  animation: ppc-scroll-right 35s linear infinite;
}

.ppc-row-3 .ppc-track {
  animation: ppc-scroll-left 55s linear infinite;
}

/* Hover Pause */
.ppc-row:hover .ppc-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes ppc-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

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

  to {
    transform: translateX(0);
  }
}

/* Fade Effects - Updated for white background */
.ppc-carousel-wrapper::before,
.ppc-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 10;
  pointer-events: none;
}

.ppc-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(to right, #ffffff, transparent);
}

.ppc-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

/* ===== RESPONSIVE STYLES ===== */

/* Tablet */
@media (max-width: 991px) {
  .ppc-carousel-wrapper {
    gap: 16px;
    padding: 40px 0;
  }

  .ppc-main-title {
    font-size: 28px;
  }

  .ppc-subtitle-text {
    font-size: 15px;
  }

  .ppc-item {
    width: 200px;
    min-width: 200px;
    height: 68px;
    padding: 14px 20px;
    font-size: 14px;
  }

  .ppc-icon-box {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .ppc-carousel-wrapper::before,
  .ppc-carousel-wrapper::after {
    width: 120px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .ppc-carousel-wrapper {
    gap: 12px;
    padding: 30px 0;
  }

  .ppc-header {
    margin-bottom: 20px;
    padding: 0 15px;
  }

  .ppc-main-title {
    font-size: 24px;
  }

  .ppc-subtitle-text {
    font-size: 14px;
  }

  .ppc-item {
    width: 180px;
    min-width: 180px;
    height: 64px;
    padding: 12px 18px;
    font-size: 13px;
    gap: 10px;
  }

  .ppc-icon-box {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .ppc-carousel-wrapper::before,
  .ppc-carousel-wrapper::after {
    width: 80px;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .ppc-item {
    width: 160px;
    min-width: 160px;
    height: 60px;
    padding: 10px 16px;
    font-size: 12px;
  }

  .ppc-icon-box {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .ppc-carousel-wrapper::before,
  .ppc-carousel-wrapper::after {
    width: 50px;
  }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .ppc-track {
    animation: none !important;
  }
}

/* Touch Device */
@media (hover: none) and (pointer: coarse) {
  .ppc-item:hover {
    transform: none;
    box-shadow: none;
    border-color: #e2e8f0;
    background: #ffffff;
  }

  .ppc-item:hover .ppc-icon-box {
    transform: none;
    background: #fff1e6;
  }

  .ppc-item:hover .ppc-icon-box i {
    color: #ff6501;
    transform: none;
  }

  .ppc-item:active {
    border-color: #ff6501;
    background: #f8fafc;
    transform: scale(0.98);
  }
}

/* White-Label  section start add */
.wls-section {
  padding: 30px 15px;
}

.wls-container {
  max-width: 1140px;
  width: 100%;
  background: white;
  border-radius: 8px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  padding: 30px 40px;
  margin: 0 auto;
}

/* Header Section */
.wls-header {
  text-align: center;
  margin-bottom: 50px;
}

.wls-header h1 {
  font-size: 32px;
  color: #000 !important;
  /* margin-bottom: 20px; */
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: none;
}

.wls-header p {
  /* font-size: 1.3em; */
  color: #4a4a4a;
  max-width: 800px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 auto;
}

/* Tabs Navigation */
.wls-tabs-wrapper {
  overflow-x: auto;
  margin-bottom: 50px;
  padding-bottom: 10px;
}

.wls-tabs {
  display: flex;
  gap: 20px;
  min-width: min-content;
  padding: 5px;
  background: #f8fafc;
  border-radius: 8px;
}

.wls-tab-button {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #4a4a4a;
  border-radius: 8px;
  outline: none;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.wls-tab-button:hover {
  color: #ff6501;
  background: rgba(255, 101, 1, 0.05);
}

.wls-tab-button.active {
  background: linear-gradient(135deg, #ef4123 0%, #ef4123 100%);
  color: white;
  box-shadow: 0 -1px -1px rgba(255, 101, 1, 0.3);
}

/* Tab Content Layout */
.wls-tab-panel {
  display: none;
}

.wls-tab-panel.active {
  display: block;
}

/* Content Wrapper - Card and Image side by side */
.wls-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
}

/* Software Card Styles */
.wls-card {
  background: #ffffff;
  border: 1px solid #eef2f6;
  border-radius: 30px;
  padding: 40px 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.wls-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(255, 101, 1, 0.1);
  border-color: #ff6501;
}

.wls-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6501, #ef4123);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.wls-card:hover::before {
  opacity: 1;
}

.wls-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.wls-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 101, 1, 0.1) 0%, rgba(239, 65, 35, 0.1) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #ff6501;
}

.wls-card-header h3 {
  font-size: 1.6em;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.wls-card-description {
  color: #4a4a4a;
  font-size: 1.05em;
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 80px;
}

.wls-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}

.wls-view-link {
  color: #ff6501;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.wls-view-link:hover {
  gap: 12px;
}

/*.wls-view-link::after {*/
/*  content: '→';*/
/*  font-size: 14px;*/
/*}*/

.wls-badge {
  background: rgba(255, 101, 1, 0.1);
  color: #ff6501;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* Image Wrapper Styles - Standalone image without card */
.wls-image-wrapper {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: fit-content;
}

.wls-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px rgba(255, 101, 1, 0.15);
}

.wls-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 30px;
  transition: transform 0.5s ease;
}

.wls-image-wrapper:hover .wls-image {
  transform: scale(1.03);
}

/* Remove old card-grid styles */
.wls-card-grid {
  display: none;
}

/* Section Title for Each Tab (kept but hidden) */
.wls-tab-title {
  font-size: 2.2em;
  color: #1a1a1a;
  margin-bottom: 15px;
  font-weight: 700;
  display: none;
}

.wls-tab-desc {
  font-size: 1.2em;
  color: #4a4a4a;
  margin-bottom: 40px;
  max-width: 800px;
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .wls-container {
    padding: 50px 40px;
  }

  .wls-header h1 {
    font-size: 2.8em;
  }

  .wls-card {
    padding: 30px 25px;
  }

  .wls-card-header h3 {
    font-size: 1.4em;
  }
}

@media (max-width: 768px) {
  .wls-container {
    padding: 40px 30px;
    border-radius: 40px;
  }

  .wls-header h1 {
    font-size: 2.2em;
  }

  .wls-header p {
    font-size: 1.1em;
  }

  /* Stack card and image vertically on mobile */
  .wls-content-wrapper {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  /* Image appears above card on mobile */
  .wls-image-wrapper {
    order: -1;
    max-height: 300px;
  }

  .wls-image {
    object-fit: cover;
    height: 100%;
  }

  .wls-tabs-wrapper {
    margin-bottom: 40px;
  }

  .wls-tab-button {
    padding: 8px 18px;
    font-size: 13px;
  }

  .wls-card-description {
    font-size: 1em;
    min-height: auto;
  }
}

@media (max-width: 480px) {
  .wls-container {
    padding: 30px 10px;
  }

  .wls-header h1 {
    font-size: 24px;
  }

  .wls-card-header h3 {
    font-size: 1.3em;
  }

  .wls-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .wls-card {
    padding: 25px 10px;
  }

  .wls-image-wrapper {
    border-radius: 20px;
  }

  .wls-image {
    border-radius: 20px;
  }
}

/* Custom Scrollbar for Tabs */
.wls-tabs-wrapper::-webkit-scrollbar {
  height: 4px;
}

.wls-tabs-wrapper::-webkit-scrollbar-track {
  background: #eef2f6;
  border-radius: 10px;
}

.wls-tabs-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ff6501, #ef4123);
  border-radius: 10px;
}

/* Optional: Animation for tab transitions */
.wls-tab-panel.active .wls-content-wrapper {
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

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

/* White-Label  section end add */

/* Products section start */

/* Premium Products Section */
.premium-products-section {
  padding: 30px 0 0;
  background: linear-gradient(135deg, #ffffff 0%, #fafcff 100%);
  position: relative;
  overflow: hidden;
}

/* Optional subtle background pattern */
.premium-products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 0% 0%, rgba(255, 101, 1, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(239, 65, 35, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.premium-container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 0;
  position: relative;
  z-index: 2;
}

/* Premium Header */
.premium-header {
  text-align: center;
  margin-bottom: 40px;
}

.premium-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ff6501;
  background: rgba(255, 101, 1, 0.08);
  padding: 8px 20px;
  border-radius: 8px;
  margin-bottom: 25px;
}

.premium-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0a0a;
  /* margin-bottom: 20px; */
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.premium-subtitle {
  /* font-size: 22px; */
  color: #4a4a4a;
  font-weight: 400;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}

/* Premium Grid */
.premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

/* Premium Product Card */
.premium-product-card {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px 35px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 20px 35px -10px rgba(0, 0, 0, 0.05);
}

.premium-product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 50px -15px rgba(255, 101, 1, 0.2);
  border-color: rgba(255, 101, 1, 0.1);
}

/* Premium Icon */
.premium-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 30px;
}

.premium-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fff5ed 0%, #ffe8dc 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: #ff6501;
  position: relative;
  z-index: 2;
  box-shadow: 0 10px 20px -5px rgba(255, 101, 1, 0.2);
}

.premium-icon-glow {
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, #ff6501, #ef4123);
  border-radius: 28px;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.4s ease;
  z-index: 1;
}

.premium-product-card:hover .premium-icon-glow {
  opacity: 0.3;
}

/* Product Name */
.premium-product-name {
  font-size: 22px;
  font-weight: 600;
  color: #0a0a0a;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

/* Description */
.premium-product-description {
  /* font-size: 17px; */
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 25px;
  opacity: 0.9;
}

/* Features Tags */
.premium-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.premium-feature {
  background: #f5f7fa;
  color: #2d2d2d;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 40px;
  letter-spacing: -0.01em;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.premium-product-card:hover .premium-feature {
  background: #ffffff;
  border-color: rgba(255, 101, 1, 0.2);
  color: #ff6501;
}

/* Learn More Link */
.premium-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ff6501;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.premium-learn-more:hover {
  gap: 15px;
  border-bottom-color: #ff6501;
}

.premium-learn-more svg {
  transition: transform 0.3s ease;
}

.premium-learn-more:hover svg {
  transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .premium-title {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .premium-products-section {
    padding: 30px 0 0;
  }

  .premium-container {
    padding: 0 30px;
  }

  .premium-title {
    font-size: 22px;
  }

  .premium-subtitle {
    font-size: 18px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .premium-product-card {
    padding: 35px 30px;
  }

  .premium-button {
    padding: 14px 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .premium-products-section {
    padding: 30px 0 0;
  }

  .premium-container {
    padding: 0 20px;
  }

  .premium-title {
    font-size: 24px;
  }

  .premium-icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .premium-icon {
    width: 70px;
    height: 70px;
    font-size: 32px;
  }

  .premium-product-name {
    font-size: 20px;
  }
}


.aeps-section {
  padding: 60px 0;
  background: var(--bg-white);
  position: relative;
  overflow: hidden;
}

.aeps-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 0% 50%, rgba(239, 65, 35, 0.02) 0%, transparent 50%),
    radial-gradient(circle at 100% 50%, rgba(255, 101, 1, 0.02) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.section-badge {
  display: inline-block;
  background: rgba(239, 65, 35, 0.08);
  color: var(--primary-color);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid rgba(239, 65, 35, 0.15);
  backdrop-filter: blur(5px);
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
}

.section-title span {
  color: var(--primary-color);
  position: relative;
  display: inline-block;
}

.section-subtitle {
  max-width: 700px;
  margin: 0 auto;
  color: var(--text-gray);
  font-size: 18px;
  line-height: 1.7;
}


/* Premium Card */
.premium-card {
  background: #ffffffa1;
  border-radius: 40px;
  padding: 25px;
  max-width: 1140px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(239, 65, 35, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.premium-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(239, 65, 35, 0.2);
}

.card-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 5px;
  background: var(--gradient);
  border-radius: 0 0 10px 10px;
}

.definition-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 20px;
}

.title-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ef4123 0%, #ff6501 100%);
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 10px 20px -5px rgba(239, 65, 35, 0.3);
}

.definition-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 0;
}

/* Premium Timeline */
.premium-timeline {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
}

.premium-timeline::before {
  content: '';
  position: absolute;
  top: 85px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(239, 65, 35, 0.1) 0%,
      rgba(239, 65, 35, 0.5) 50%,
      rgba(239, 65, 35, 0.1) 100%);
  z-index: 1;
}

.timeline-step {
  flex: 1;
  position: relative;
  z-index: 2;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.timeline-step:nth-child(1) {
  animation-delay: 0.2s;
}

.timeline-step:nth-child(2) {
  animation-delay: 0.4s;
}

.timeline-step:nth-child(3) {
  animation-delay: 0.6s;
}

.step-wrapper {
  text-align: center;
}

.step-number {
  font-size: 14px;
  font-weight: 800;
  color: #ef4123;
  background: rgba(239, 65, 35, 0.1);
  display: inline-block;
  padding: 4px 12px;
  border-radius: 30px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.step-icon {
  width: 75px;
  height: 75px;
  background: white;
  border: 3px solid transparent;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  color: #ef4123;
  margin: 0 auto 25px;
  position: relative;
  box-shadow: 0 15px 30px -10px rgba(239, 65, 35, 0.2);
  transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
  transform: scale(1.1);
  border-color: var(--primary);
  box-shadow: 0 20px 40px -10px rgba(239, 65, 35, 0.3);
}

.step-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-content p {
  font-size: 15px;
  color: #000;
  line-height: 1.6;
  max-width: 202px;
  margin: 0 auto;
}

/* ===== RESPONSIVE STYLES ===== */

/* Desktop Large (1200px and above) */
@media (min-width: 1200px) {
  .premium-card {
    padding: 30px;
  }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) {
  .premium-card {
    max-width: 960px;
    padding: 25px;
  }

  .premium-timeline::before {
    left: 12%;
    right: 12%;
  }

  .step-content p {
    max-width: 180px;
  }
}

/* Tablet Landscape (768px to 991px) */
@media (max-width: 991px) {
  .premium-card {
    max-width: 720px;
    padding: 25px 20px;
    border-radius: 30px;
  }

  .definition-title {
    gap: 12px;
    margin-bottom: 25px;
  }

  .title-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 15px;
  }

  .definition-title h2 {
    font-size: 24px;
  }

  .premium-timeline {
    flex-direction: column;
    gap: 30px;
  }

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

  .timeline-step {
    width: 100%;
  }

  .step-wrapper {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 25px;
  }

  .step-number {
    margin-bottom: 0;
    position: absolute;
    top: -10px;
    left: 0;
  }

  .step-icon {
    width: 80px;
    height: 80px;
    margin: 0;
    flex-shrink: 0;
  }

  .step-content {
    flex: 1;
  }

  .step-content h3 {
    margin-bottom: 5px;
  }

  .step-content p {
    max-width: 100%;
    margin: 0;
  }
}

/* Tablet Portrait (576px to 767px) */
@media (max-width: 767px) {
  .premium-card {
    max-width: 540px;
    padding: 20px 15px;
    border-radius: 25px;
  }

  .card-accent {
    width: 120px;
    height: 4px;
  }

  .definition-title {
    gap: 10px;
    margin-bottom: 20px;
  }

  .title-icon {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 12px;
  }

  .definition-title h2 {
    font-size: 22px;
  }

  .step-wrapper {
    gap: 20px;
  }

  .step-icon {
    width: 70px;
    height: 70px;
    font-size: 22px;
  }

  .step-content h3 {
    font-size: 18px;
  }

  .step-content p {
    font-size: 14px;
  }
}

/* Mobile Large (425px to 575px) */
@media (max-width: 575px) {
  .card-accent {
    width: 100px;
    height: 4px;
  }

  .definition-title {
    gap: 8px;
    margin-bottom: 20px;
  }

  .title-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    border-radius: 10px;
  }

  .definition-title h2 {
    font-size: 20px;
  }

  .step-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    position: relative;
    padding-top: 30px;
  }

  .step-number {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .step-icon {
    width: 65px;
    height: 65px;
    font-size: 20px;
    margin: 0 auto;
  }

  .step-content h3 {
    font-size: 17px;
  }

  .step-content p {
    font-size: 13px;
    line-height: 1.5;
  }
}

/* Mobile Small (up to 374px) */
@media (max-width: 374px) {
  .card-accent {
    width: 80px;
    height: 3px;
  }

  .definition-title {
    gap: 6px;
  }

  .title-icon {
    width: 35px;
    height: 35px;
    font-size: 14px;
    border-radius: 8px;
  }

  .definition-title h2 {
    font-size: 18px;
  }

  .step-icon {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .step-content h3 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 16px;
  }
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Touch Device Optimization */
@media (hover: none) and (pointer: coarse) {
  .timeline-step:hover .step-icon {
    transform: none;
    border-color: transparent;
    box-shadow: 0 15px 30px -10px rgba(239, 65, 35, 0.2);
  }

  .timeline-step:active .step-icon {
    transform: scale(0.95);
  }
}

/* section2 end */

/* Products section end */

/* Users section start */
.ecosystem-section {
  padding: 30px 0 20px;
  background: #ffffff;
  position: relative;
}

.ecosystem-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 0px;
}

/* Header */
.ecosystem-header {
  text-align: center;
  margin-bottom: 40px;
}

.ecosystem-tag {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #ff6501;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.ecosystem-title {
  font-size: 32px;
  font-weight: 700;
  color: #0a0a0a;
  /* margin-bottom: 15px; */
  letter-spacing: -0.02em;
}

.ecosystem-subtitle {
  /* font-size: 20px; */
  color: #4a4a4a;
  font-weight: 400;
}

/* Visual Hub */
.ecosystem-visual {
  position: relative;
  /* margin-bottom: 30px; */
}

/* Connected Nodes - Grid Layout for 2x2 */
.ecosystem-nodes {
  position: relative;
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.node-item {
  position: relative;
  margin-bottom: 0;
}

.node-content {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #f8fafc;
  padding: 12px 30px;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
  height: 100%;
}

.node-content:hover {
  background: #ffffff;
  border-color: #ff6501;
  box-shadow: 0 10px 30px rgba(255, 101, 1, 0.1);
  transform: translateY(-5px);
}

.node-icon {
  font-size: 28px;
  width: 60px;
  height: 60px;
  background: white;
  color: #ff6501;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}

.node-info {
  flex: 1;
}

.node-info h3 {
  font-size: 20px;
  font-weight: 600;
  color: #0a0a0a;
  /* margin-bottom: 6px; */
  margin-top: 18px;
}

.node-info p {
  font-size: 15px;
  color: #4a4a4a;
  line-height: 1.5;
}

/* Footnote */
.ecosystem-footnote {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 60px;
  font-size: 18px;
  color: #1a1a1a;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  margin-right: auto;
  width: auto;
  padding: 15px 40px;
}

/* Responsive */
@media (max-width: 992px) {
  .ecosystem-nodes {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .ecosystem-container {
    padding: 0 15px;
  }

  .ecosystem-title {
    font-size: 36px;
  }

  .ecosystem-nodes {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .node-content {
    padding: 20px 25px;
  }

  .ecosystem-section {
    padding: 30px 0 20px;
    background: #ffffff;
    position: relative;
  }
}

@media (max-width: 480px) {
  .ecosystem-title {
    font-size: 24px;
  }

  .node-content {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
  }

  .node-icon {
    margin-bottom: 10px;
  }
}

/* Userss section end */

/* CTA section start */
/* ===== BBPS CTA SECTION ===== */
.bbps-cta-section {
  padding: 30px 0;
  background: #f3efec;
  /* light gray background like screenshot */
  text-align: center;
}

/* Title */
.bbps-cta-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  /* margin-bottom: 15px; */
}

/* Subtitle */
.bbps-cta-wrapper p {
  font-size: 18px;
  color: #000;
  /* margin-bottom: 35px; */
}

/* Buttons layout */
.bbps-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Primary button */
.bbps-btn-primary {
  background: #ff4a1c;
  color: #fff;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media(max-width:768px){
    .bbps-btn-primary {
      padding: 8px 20px;
      font-size:13px;
    }
    
    .bbps-btn-outline {
        padding: 6px 12px !important;
        font-size: 13px;
    }
}

/* Second primary (Pricing) */
.bbps-btn-primary.alt {
  background: #ff4a1c;
}

/* Outline button */
.bbps-btn-outline {
  background: transparent;
  border: 2px solid #ff4a1c;
  color: #ff4a1c;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effects */
.bbps-btn-primary:hover {
  background: #e63e14;
  color: #fff;
  transform: translateY(-2px);
}

.bbps-btn-outline:hover {
  background: #ff4a1c;
  color: #fff;
  transform: translateY(-2px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .bbps-cta-wrapper h2 {
    font-size: 24px;
  }

  .bbps-cta-wrapper p {
    font-size: 17px;
  }

  .bbps-cta-buttons {
    gap: 12px;
  }
}

/* CTA section end */
/* 2nd section background patterns */
.fintech-hero {
  position: relative;
  padding: 0px 0 20px;
  background: #ffffff;
  overflow: hidden;
}

.fintech-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23eaeaea' stroke-width='1'%3E%3Cpath d='M60 0H0V60H60V0Z'/%3E%3Cpath d='M0 0H60M0 30H60M0 60H60M0 0V60M30 0V60M60 0V60'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.fintech-hero {
  position: relative;
  background: #f9fafb;
  overflow: hidden;
}

/* TOP + BOTTOM FADE */
.fintech-hero::before,
.fintech-hero::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 120px;
  z-index: 1;
  pointer-events: none;
}

/* TOP FADE */
.fintech-hero::before {
  top: 0;
  background: linear-gradient(to bottom, #f9fafb 0%, rgba(249, 250, 251, 0) 100%);
}

/* BOTTOM FADE */
.fintech-hero::after {
  bottom: 0;
  background: linear-gradient(to top, #f9fafb 0%, rgba(249, 250, 251, 0) 100%);
}

/* CONTENT */
.fintech-hero-container {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: auto;
  text-align: center;
}

/* TITLE */
.fintech-hero-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

/* HIGHLIGHT */
.fintech-highlight {
  background: linear-gradient(90deg, #ef4123, #ef4123);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTITLE */
.fintech-hero-subtitle {
  margin: 20px auto 40px;
  font-size: 18px;
  color: #000;
  max-width: 1100px;
}

@media(max-width:768px) {
  .fintech-hero-subtitle {
    font-size: 15px;
  }

  .fintech-hero-title {
    font-size: 24px;
  }

  .fintech-hero {
    padding: 30px 20px;
  }
}

/* BUTTON */
.fintech-btn-primary {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ef4123, #ef4123);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(239, 65, 35, 0.3);
  transition: 0.3s;
}

.fintech-btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(90deg, #ff6501, #ff6501);
  color: #fff;
}

/* BADGE CONTAINER */
.fintech-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}

/* BADGE STYLE */
.fintech-badge {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  background: rgba(255, 101, 1, 0.1);
  color: #ef4123;
  border: 1px solid rgba(239, 65, 35, 0.2);
}

/* ---------- SECTION ONLY - NO BOILERPLATE ---------- */
.partner-carousel {
  padding: 30px 20px;
  background: #ffffff;
  overflow: hidden;
  text-align: center;
}

.partner-container {
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* HEADER */
.partner-header {
  margin-bottom: 20px;
}

.partner-title {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 8px 0;
  letter-spacing: -0.01em;
}

.partner-highlight {
  background: linear-gradient(90deg, #ef4123, #ef4123);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-subtitle {
  margin-top: 8px;
  color: #666;
  font-size: 16px;
  font-weight: 400;
}

/* SLIDER WRAPPER */
.partner-slider {
  margin-top: 32px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

/* FADE EFFECT (PREMIUM LOOK) - EDGES GRADIENT */
.partner-slider::before,
.partner-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.partner-slider::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.partner-slider::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

/* TRACK (INFINITE SCROLL) */
.partner-track {
  display: flex;
  gap: 5px;
  width: max-content;
  animation: partner-scroll 42s linear infinite;
  will-change: transform;
}

/* PAUSE ON HOVER */
.partner-slider:hover .partner-track {
  animation-play-state: paused;
}

/* ITEM CARD */
.partner-item {
  min-width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 0px;
  padding: 8px 8px;
  transition: all 0.25s ease;
  /*box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02), 0 1px 2px rgba(0, 0, 0, 0.03);*/
}

/* IMAGE STYLES */
.partner-item img {
  max-width: 170px;
  max-height: 75px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

/* HOVER EFFECT: full color + slight scale */
.partner-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.02);
}

.partner-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* ANIMATION */
@keyframes partner-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
  .partner-carousel {
    padding: 40px 16px;
  }

  .partner-title {
    font-size: 28px;
  }

  .partner-subtitle {
    font-size: 14px;
  }

  .partner-item {
    min-width: 110px;
    height: 70px;
    padding: 8px 14px;
  }

  .partner-item img {
    max-width: 100px;
    max-height: 45px;
  }

  .partner-slider::before,
  .partner-slider::after {
    width: 60px;
  }

  .partner-track {
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .partner-item {
    min-width: 95px;
    height: 64px;
    padding: 6px 10px;
  }

  .partner-item img {
    max-width: 110px;
    max-height: 60px;
  }

  .partner-track {
    gap: 2px;
  }

  .partner-slider::before,
  .partner-slider::after {
    width: 40px;
  }

  .partner-title {
    font-size: 24px;
  }
}

/* optional subtle container width */
@media (min-width: 1400px) {
  .partner-container {
    max-width: 1280px;
  }
}

.trust-badge {
  max-width: 1140px;
  margin: 40px auto 0;
  padding: 18px 30px;
  background: var(--primary-light);
  border-radius: 8px;
  border: 1px dashed rgba(239, 65, 35, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  text-align: center;
  box-shadow: var(--shadow-primary);
}

/* Icon */
.trust-badge i {
  font-size: 18px;
  color: var(--primary-color);
}

/* Text */
.trust-badge span {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}