 @import url('https://fonts.googleapis.com/css?family=Poppins:400,400i,500,500i,600,600i,700,800,900|Open+Sans:400,400i,600,600i,700,700i,800');

 :root {
     --primary-color: #03964a;
     --primary-dark: #026638;
     --primary-light: #04b85a;
     --secondary-color: #f8f9fa;
     --text-dark: #333;
     --text-light: #666;
    --primary-green: #198754;
            --light-green: rgba(25, 135, 84, 0.1);
            --dark-green: #146c43;
     --bs-navbar-toggler-transition: all 0.3s ease-in-out;
  
            --accent-color: #10b981; 
            --border-color: #e2e8f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
            --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 html {
     overflow-x: hidden;
 }

 body {
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
     /* font-family: 'Poppins', sans-serif; */
     line-height: 1.6;
     color: var(--text-dark);
     overflow-x: hidden;
 }

 .bg-primary-custom {
     background-color: var(--primary-color) !important;
 }

 .text-primary-custom {
     color: var(--primary-color) !important;
 }

 .btn-primary-custom {
     background-color: var(--primary-color);
     border-color: var(--primary-color);
     color: white;
     padding: 12px 30px;
     border-radius: 6px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-primary-custom:hover {
     background-color: var(--primary-dark);
     border-color: var(--primary-dark);
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(3, 150, 74, 0.3);
 }

 .btn-outline-primary-custom {
     border: 2px solid var(--primary-color);
     color: var(--primary-color);
     background: transparent;
     padding: 12px 30px;
     border-radius: 6px;
     font-weight: 600;
     transition: all 0.3s ease;
 }

 .btn-outline-primary-custom:hover {
     background-color: var(--primary-color);
     color: white;
     transform: translateY(-2px);
 }

 /* .hamburger-btn span {
     display: block;
     width: 25px;
     height: 2px;
     background: #03964a;
     margin: 8px 0;
 } */



 /* Header Styles */
 .tp-header-area-2 {
     transition: all 0.3s ease;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
 }


 @keyframes slideDown {
     from {
         transform: translateY(-100%);
     }

     to {
         transform: translateY(0);
     }
 }

 .tp-header-space-2 {
     padding: 15px 0;
 }

 .tp-header-sticky .tp-header-space-2 {
     padding: 15px 0;
 }

 /* Logo Styles */
 .tp-header-logo-2 img {
     max-height: 40px !IMPORTANT;
     width: auto;
 }

 /* Main Menu Styles */
 .tp-main-menu ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
     align-items: center;
 }

 .tp-main-menu ul li {
     position: relative;
     margin: 0 12px;
 }

 .tp-main-menu ul li a {
     text-decoration: none;
     color: #333;
     font-weight: 500;
     font-size: 16px;
     padding: 10px 0;
     display: block;
     transition: color 0.3s ease;
 }

 .tp-main-menu ul li a:hover {
     color: #03964a;
 }

 /* Dropdown Styles */
 .tp-main-menu .has-dropdown {
     position: relative;
 }

 .tp-main-menu .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     min-width: 200px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 1000;
     list-style: none;
     padding: 10px 0;
     margin: 0;
     display: block;
 }

 .tp-main-menu .has-dropdown:hover .submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .tp-main-menu .submenu li {
     margin: 0;
 }

 .tp-main-menu .submenu li a {
     padding: 10px 20px;
     color: #666;
     font-size: 14px;
 }

 .tp-main-menu .submenu li a:hover {
     color: #03964a;
     background: #f8f9fa;
 }


 /* All submenus are hidden by default */
 .tp-main-menu .submenu,
 .tp-main-menu .submenu .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     background: white;
     min-width: 200px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transform: translateY(10px);
     transition: all 0.3s ease;
     z-index: 1000;
     list-style: none;
     padding: 10px 0;
     margin: 0;
 }

 /* Show only on hover for first-level */
 .tp-main-menu .has-dropdown:hover>.submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 /* Position nested submenu to the right */
 .tp-main-menu .submenu .has-dropdown {
     position: relative;
 }

 .tp-main-menu .submenu .has-dropdown>.submenu {
     top: 0;
     left: 100%;
     transform: translateX(10px);
     opacity: 0;
     visibility: hidden;
 }

 /* Show nested submenu on hover */
 .tp-main-menu .submenu .has-dropdown:hover>.submenu {
     opacity: 1;
     visibility: visible;
     transform: translateX(0);
 }

 /* CTA Button */
 .btn-cta-primary {
     background: #03964a;
     color: white;
     padding: 12px 24px;
     border-radius: 25px;
     text-decoration: none;
     font-weight: 600;
     transition: all 0.3s ease;
     border: none;
 }

 .btn-cta-primary:hover {
     background: #027a3d;
     color: white;
     transform: translateY(-2px);
 }




 /* Offcanvas Styles */
 .offcanvas-custom {
     width: 320px;
 }

 .offcanvas-header-custom {
     background: #03964a;
     color: white;
     padding: 20px;
 }

 .offcanvas-header-custom .offcanvas-title {
     font-weight: bold;
     font-size: 18px;
 }

 .btn-close-custom {
     background: none;
     border: none;
     color: white;
     font-size: 20px;
 }

 .mobile-menu {
     padding: 20px;
 }

 .mobile-menu ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mobile-menu ul li {
     border-bottom: 1px solid #eee;
 }

 .mobile-menu ul li:last-child {
     border-bottom: none;
 }

 .mobile-menu ul li a {
     display: block;
     padding: 15px 0;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .mobile-menu ul li a:hover {
     color: #03964a;
 }

 /* Mobile dropdown */
 .mobile-dropdown {
     padding-left: 20px;
     display: none;
 }

 .mobile-dropdown.show {
     display: block;
     background-color: #00800026;
     padding: 0 5px;
     border: none;
     border-left: 3px solid green;
 }

 /* 
 .mobile-dropdown li a {
   padding: 10px 0;
   font-size: 14px;
   color: #666;
 }

 .dropdown-toggle-mobile {
   background: none;
   border: none;
   float: right;
   margin-top: -40px;
   color: #666;
 } */
 .mobile-dropdown {
     display: none;
     padding-left: 20px;
     list-style: none;
     transition: max-height 0.4s ease;
 }

 .mobile-dropdown.show {
     display: block;
 }

 .dropdown-toggle-mobile {
     background: none;
     border: none;
     float: right;
     margin-top: -40px;
     color: #666;
 }

 .dropdown-toggle-mobile.open {
     transform: rotate(90deg);
 }

 /* Contact info in mobile menu */
 .mobile-contact {
     padding: 20px;
     border-top: 1px solid #eee;
     background: #f8f9fa;
 }

 .mobile-contact h6 {
     color: #03964a;
     margin-bottom: 15px;
 }

 .mobile-contact p {
     margin: 8px 0;
     color: #666;
     font-size: 14px;
 }

 .mobile-contact i {
     color: #03964a;
     width: 20px;
 }

 /* Responsive adjustments */
 @media (max-width: 1199.98px) {
     .tp-main-menu {
         display: none;
     }
 }

 @media (min-width: 1200px) {
     .tp-header-main-right-hamburger-btn {
         display: none;
     }
 }

 /*----------------------------------------*/
 /*  2.4 Animations
/*----------------------------------------*/

 @-moz-keyframes headerSlideDown {
     0% {
         margin-top: -150px;
     }

     100% {
         margin-top: 0;
     }
 }

 @-ms-keyframes headerSlideDown {
     0% {
         margin-top: -150px;
     }

     100% {
         margin-top: 0;
     }
 }

 @-webkit-keyframes headerSlideDown {
     0% {
         margin-top: -150px;
     }

     100% {
         margin-top: 0;
     }
 }

 @keyframes headerSlideDown {
     0% {
         margin-top: -150px;
     }

     100% {
         margin-top: 0;
     }
 }

 .tp-header-transparent {
     position: absolute;
     left: 0;
     top: 0;
     right: 0;
     z-index: 10;
 }

 @media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
     .tp-header-height {
         height: inherit !important;
     }
 }

 .tp-header-sticky {
     position: fixed;
     /* top: 0; */
     top: 30px;
     left: 0;
     right: 0;
     width: 100%;
     box-shadow: 0px 4px 10px 4px rgb(0 0 0 / 76%);
     background: var(--tp-common-white);
     animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
     transition: 0.3s ease;
     z-index: 10;
 }

 .tp-header-sticky.tp-header-bottom {
     background: var(--tp-gradient-primary);
 }

 .tp-header-main-sticky {
     display: none;
 }

 .tp-header-main-sticky.tp-header-sticky {
     display: inline-block;
 }

 .tp-header-box {
     display: flex;
     justify-content: space-between;
 }

 .tp-header-logo {
     width: 342px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex: 0 0 auto;
 }

 @media only screen and (min-width: 1600px) and (max-width: 1700px) {
     .tp-header-logo {
         width: 310px;
     }
 }

 @media only screen and (min-width: 1400px) and (max-width: 1599px) {
     .tp-header-logo {
         width: 235px;
     }
 }

 @media only screen and (min-width: 1200px) and (max-width: 1399px) {
     .tp-header-logo {
         width: 180px;
     }
 }

 @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
     .tp-header-logo {
         width: 200px;
     }
 }

 @media (max-width: 575px) {
     .tp-header-logo {
         width: 160px;
     }
 }

 .tp-header-logo a {
     z-index: 2;
 }

 .tp-header-logo-bg {
     position: absolute;
     top: 0;
     left: 0;
     width: 130%;
     height: 100%;
     background: var(--tp-gradient-primary);
     clip-path: polygon(0px 0px, 100% 0px, 76.57% 100.79%, 0% 100%);
     z-index: 1;
 }

 .tp-header-btn {
     width: 395px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex: 0 0 auto;
     background: var(--tp-common-gray);
 }

 @media only screen and (min-width: 1600px) and (max-width: 1700px) {
     .tp-header-btn {
         width: 330px;
     }
 }

 @media only screen and (min-width: 1400px) and (max-width: 1599px) {
     .tp-header-btn {
         width: 270px;
     }
 }

 @media only screen and (min-width: 1200px) and (max-width: 1399px) {
     .tp-header-btn {
         width: 230px;
     }
 }

 @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
     .tp-header-btn {
         width: 100px;
     }
 }

 @media (max-width: 575px) {
     .tp-header-btn {
         width: 80px;
         cursor: pointer;
     }
 }

 .tp-header-sticky-hamburger {
     height: 80px;
     line-height: 80px;
     opacity: 0;
     visibility: hidden;
 }

 .tp-header-wrapper-inner {
     width: 100%;
 }

 .tp-header-sticky .tp-main-menu ul li a {
     padding: 34px 0 34px 0;
 }

 .tp-header-main-menu {
     padding-left: 90px;
 }

 @media only screen and (min-width: 1200px) and (max-width: 1399px) {
     .tp-header-main-menu {
         padding-left: 35px;
     }
 }

 @media (max-width: 575px) {
     .tp-header-main-menu {
         padding-left: 0;
     }
 }

 .tp-header-main-right {
     padding-right: 30px;
 }

 @media only screen and (min-width: 1200px) and (max-width: 1399px) {
     .tp-header-main-right {
         padding-left: 30px;
     }
 }

 @media only screen and (min-width: 1400px) and (max-width: 1599px) {
     .tp-header-main-right {
         padding-right: 15px;
     }
 }

 @media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
     .tp-header-main-right {
         padding-right: 0;
     }
 }
/* Mobile right header wrapper */
.tp-header-main-right-hamburger-btn {
    display: flex;              /* flex container */
    align-items: center;        /* vertical center everything */
    justify-content: flex-end;  /* icons on the right */
    gap: 12px;                  /* space between search and hamburger */
    height: 50px;               /* mobile height */
    padding-right: 10px;        /* optional right padding */
}

/* Search button */
.search-toggle-btn-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

/* Hamburger button */
.hamburger-btn {
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* space between bars */
    width: 34px;
    height: 26px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
}

/* Hamburger bars */
.hamburger-btn span {
    display: block;
    height: 2px;
    /* width: 100%; */
    /* background-color: #000; */
    border-radius: 2px;

       /* display: block; */
     width: 25px;
     /* height: 2px; */
     background-color: #03964a;
     /* margin: 8px 0; */
}


 .hamburger-btn span:nth-child(1) {
     top: 0;
 }

 .hamburger-btn span:nth-child(2) {
     top: 10px;
     width: 20px;
     left: 50%;
     -webkit-transform: translateX(-20%);
     -moz-transform: translateX(-20%);
     -ms-transform: translateX(-20%);
     -o-transform: translateX(-20%);
     transform: translateX(-20%);
 }

 .hamburger-btn span:nth-child(3) {
     top: 20px;
     right: 0;
     left: auto;
 }

 .hamburger-btn:hover span:nth-child(1) {
     left: 10px;
 }

 .hamburger-btn:hover span:nth-child(3) {
     right: 10px;
 }


 .tp-main-menu ul li .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     width: 200px;
     z-index: 99;
     opacity: 0;
     visibility: hidden;
     padding: 10px 0 20px 0;
     background: white;
     box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
     border-radius: 0 0 5px 5px;
     -webkit-transition: all 0.3s 0s ease-out;
     -moz-transition: all 0.3s 0s ease-out;
     -ms-transition: all 0.3s 0s ease-out;
     -o-transition: all 0.3s 0s ease-out;
     transition: all 0.3s 0s ease-out;
 }

 .tp-main-menu ul li .submenu li {
     display: block;
     width: 100%;
     margin: 0;
     padding: 0 10px;
     /* padding: 0 25px; */
     transform: translateY(5px);
     transition: all 0.2s cubic-bezier(0.4, 0.28, 0.31, 1.28) 0s;
 }

 .tp-main-menu ul li .submenu li:not(:last-of-type) {
     margin-bottom: 9px;
 }

 .tp-main-menu ul li .submenu li.has-dropdown>a::after {
     position: absolute;
     top: 50%;
     right: 25px;
     -webkit-transform: translateY(-50%) rotate(-90deg);
     -moz-transform: translateY(-50%) rotate(-90deg);
     -ms-transform: translateY(-50%) rotate(-90deg);
     -o-transform: translateY(-50%) rotate(-90deg);
     transform: translateY(-50%) rotate(-90deg);
 }

 .tp-main-menu ul li .submenu li:last-child a {
     border-bottom: 0;
 }

 .tp-main-menu ul li .submenu li a {
     position: relative;
     padding: 0;
     font-size: 14px;
     color: var(--tp-common-black);
     width: 100%;
     z-index: 1;
 }

 .tp-main-menu ul li .submenu li a span {
     transition: all 0.3s ease-in-out;
 }

 .tp-main-menu ul li .submenu li a span::after {
     display: none;
 }

 .tp-main-menu ul li .submenu li a::before {
     position: absolute;
     content: "";
     top: 12PX;
     left: 0px;
     height: 2px;
     width: 0;
     background: red;
     /* background: var(--tp-theme-primary); */
     transition: all 0.3s ease-in-out;
 }

 .tp-main-menu ul li .submenu li .submenu {
     left: 120%;
     top: 0;
     visibility: hidden;
     opacity: 0;
 }

 /* .tp-main-menu ul li .submenu li:hover > a {
  color: var(--tp-theme-primary);
} */
 .tp-main-menu ul li .submenu li:hover>a {
     color: red;
     padding-left: 20px;
 }

 .tp-main-menu ul li .submenu li:hover>a span {
     margin-left: 14px;
 }

 .tp-main-menu ul li .submenu li:hover>a::after {
     color: var(--tp-common-white);
 }

 .tp-main-menu ul li .submenu li:hover>a::before {
     width: 10px;
 }

 .tp-main-menu ul li .submenu li:hover>.submenu {
     left: 100%;
     visibility: visible;
     opacity: 1;
 }

 /* Hero Section */
 .hero-section {
     /* background-image: url(../images/slider/slider_new_1.jpg); */
     /* background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%); */
     /* color: white;
            padding: 180px 0;
            position: relative;
            overflow: hidden;
                background-size: cover;
                    background-position: bottom; */
 }

 /* .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100" fill="rgba(255,255,255,0.1)"><polygon points="0,100 1000,0 1000,100"/></svg>');
            background-size: cover;
            background-position: bottom;
        }
         */
 .hero-content {
     position: relative;
     z-index: 2;
 }

 .hero-title {
     font-size: 3.5rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
     line-height: 1.2;
 }

 .hero-subtitle {
     font-size: 1.25rem;
     margin-bottom: 2rem;
     opacity: 0.9;
 }

 /* Features Section */
 .features-section {
     padding: 100px 0;
     background: #ffffff;
 }

 .feature-card {
     background: white;
     border-radius: 12px;
     padding: 2.5rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
 }

 .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .feature-icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1.5rem;
     color: white;
     font-size: 2rem;
 }

 .feature-title {
     font-size: 1.5rem;
     font-weight: 600;
     margin-bottom: 1rem;
     color: var(--text-dark);
 }

 .feature-description {
     color: var(--text-light);
     line-height: 1.7;
 }

 /* Services Section */

 .services-section {
     padding: 100px 0;
 }

 .section-subtitle {
     font-size: 1.2rem;
     color: var(--text-light);
     margin-bottom: 3rem;
 }

 .service-item {
     background: white;
     border-radius: 12px;
     padding: 2rem;
     margin-bottom: 2rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     border-left: 4px solid var(--primary-color);
     height: calc(100%);
 }

 .service-item:hover {
     transform: translateX(10px);
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
 }

 .service-icon {
     color: var(--primary-color);
     font-size: 2.5rem;
     margin-bottom: 1rem;
 }

 .service-title {
     font-size: 1.3rem;
     font-weight: 600;
     margin-bottom: 0.8rem;
     color: var(--text-dark);
 }

 /* Stats Section */
 .stats-section {
     background: var(--primary-color);
     color: white;
     padding: 80px 0;
 }

 .stat-item {
     text-align: center;
     padding: 1rem;
 }

 .stat-number {
     font-size: 3rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

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

 /* About Section */
 .about-section {
     padding: 40px 0;
     /* background: var(--secondary-color); */
 }

 .about-image {
    border-radius: 12px;
     /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15); */
    /* width: 100%; */
    height: 400px;
    object-fit: cover;
    margin-bottom: 20px;
 }

 /* Contact Section */
 .contact-section {
     padding: 100px 0;
 }

 /* Blog Section */
 .blog-card {
     background: white !important;
     border-radius: 12px !important;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     height: 100%;
     overflow: hidden;
 }

 .blog-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .equal-height-card {
     display: flex;
     flex-direction: column;
     height: 100%;
 }

 .card-description {
     min-height: 100px;
     /* adjust based on typical text length */
     overflow: hidden;
 }

 .blog-image {
     position: relative;
     height: 200px;
     overflow: hidden;
 }

 .blog-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .blog-card:hover .blog-image img {
     transform: scale(1.05);
 }

 .blog-content {
     padding: 1.5rem;
 }

 .blog-meta {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 1rem;
     font-size: 0.9rem;
 }

 .blog-date {
     color: var(--text-light);
 }

 .blog-category {
     background: var(--primary-color);
     color: white;
     padding: 0.3rem 0.8rem;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 500;
 }

 .blog-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 0.8rem;
     color: var(--text-dark);
     line-height: 1.4;
 }

 .blog-excerpt {
     color: var(--text-light);
     margin-bottom: 1rem;
     line-height: 1.6;
 }

 .blog-link {
     color: var(--primary-color);
     text-decoration: none;
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .blog-link:hover {
     color: var(--primary-dark);
 }

 /* Join Our Team Section */
 .team-content {
     padding: 2rem 0;
 }

 .benefit-item {
     display: flex;
     align-items: flex-start;
     margin-bottom: 1.5rem;
 }

 .benefit-icon {
     width: 50px;
     height: 50px;
     background: rgba(3, 150, 74, 0.1);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 1rem;
     flex-shrink: 0;
 }

 .benefit-icon i {
     font-size: 1.5rem;
 }

 .benefit-content h5 {
     font-size: 1.1rem;
     font-weight: 600;
     margin-bottom: 0.5rem;
     color: var(--text-dark);
 }

 .benefit-content p {
     color: var(--text-light);
     margin-bottom: 0;
     line-height: 1.5;
 }

 .team-actions {
     margin-top: 2rem;
 }
 


 .contact-form {
     background: white;
     border-radius: 12px;
     padding: 2.5rem;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 }

 .form-control {
     border: 2px solid #e9ecef;
     padding: 12px 16px;
     border-radius: 6px;
     transition: border-color 0.3s ease;
 }

 .form-control:focus {
     border-color: var(--primary-color);
     box-shadow: 0 0 0 0.2rem rgba(3, 150, 74, 0.25);
 }

 /* Footer */
 .footer {
     background: #212529;
     color: white;
     padding: 60px 0 30px;
 }

 .footer-title {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .footer-links {
     list-style: none;
     padding: 0;
 }

 .footer-links li {
     margin-bottom: 0.5rem;
 }

 .footer-links a {
     color: #adb5bd;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .footer-links a:hover {
     color: var(--primary-color);
 }

 .footer-bottom {
     border-top: 1px solid #495057;
     padding-top: 2rem;
     margin-top: 2rem;
     text-align: center;
     color: #adb5bd;
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

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

     .feature-card {
         padding: 2rem;
     }
 }

 /* Animations */
 .fade-in {
     opacity: 0;
     transform: translateY(30px);
     transition: all 0.8s ease;
 }

 .fade-in.visible {
     opacity: 1;
     transform: translateY(0);
 }

 /* Scroll to top button */
 .scroll-top {
     position: fixed;
     bottom: 30px;
     right: 3%;
     background: var(--primary-color);
     color: white;
     border: none;
     border-radius: 50%;
     width: 50px;
     height: 50px;
     font-size: 1.2rem;
     cursor: pointer;
     transition: all 0.3s ease;
     z-index: 1000;
     display: none;
     box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2),
         inset -2px -2px 5px rgba(255, 255, 255, 0.3),
         0 5px 10px rgba(0, 0, 0, 0.15);
 }

 .scroll-top:hover {
     background: var(--primary-dark);
     transform: translateY(-3px);
 }

 .stats-section-1 {
     background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
     padding: 80px 0;
     position: relative;
 }

 .stats-section-1::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23f1f1f1" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.5;
 }

 .stat-item-1 {
     background: white;
     border-radius: 15px;
     padding: 40px 20px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
         height: calc(100%);
 }

 .stat-item-1::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: var(--primary-color);
     transform: scaleX(0);
     transition: transform 0.3s ease;
 }

 .stat-item-1:hover::before {
     transform: scaleX(1);
 }

 .stat-item-1:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
 }

 .stat-number-1 {
     font-size: 2.4rem;
     /* font-size: 3rem; */
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 10px;
 }

 .stat-label-1 {
     font-size: 1.1rem;
     color: var(--text-light);
     font-weight: 500;
 }

 .stat-icon {
     font-size: 2.5rem;
     color: var(--primary-dark);
     margin-bottom: 20px;
 }

 /* Market Highlights Section */
 .market-highlights {
     background: white;
     padding: 80px 0;
     border-top: 1px solid #e9ecef;
 }




 /* Stock Ticker */
 .stock-ticker {
     background: var(--text-dark);
     color: white;
     padding: 15px 0;
     overflow: hidden;
     white-space: nowrap;
     position: relative;
 }

 .ticker-content {
     display: inline-block;
     animation: scroll-left 60s linear infinite;
 }

 .ticker-item {
     display: inline-block;
     margin-right: 50px;
     font-weight: 500;
 }

 .ticker-symbol {
     color: var(--secondary-color);
     font-weight: bold;
     margin-right: 10px;
 }

 .ticker-price {
     margin-right: 10px;
 }

 .ticker-change.positive {
     color: var(--success-color);
 }

 .ticker-change.negative {
     color: var(--accent-color);
 }

 @keyframes scroll-left {
     0% {
         transform: translateX(100%);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 /* Market Cards */
 .market-card {
     background: white;
     border-radius: 15px;
     padding: 30px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
     margin-bottom: 30px;
     transition: all 0.3s ease;
     border: 1px solid #e9ecef;
 }

 .market-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
 }

 .market-card h4 {
     color: var(--text-dark);
     font-weight: bold;
     margin-bottom: 15px;
 }

 .market-stat {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 10px 0;
     border-bottom: 1px solid #f1f1f1;
 }

 .market-stat:last-child {
     border-bottom: none;
 }

 .market-stat-label {
     color: var(--text-light);
     font-size: 0.9rem;
 }

 .market-stat-value {
     font-weight: bold;
     color: var(--text-dark);
 }

 .market-stat-value.positive {
     color: var(--success-color);
 }

 .market-stat-value.negative {
     color: var(--accent-color);
 }

 /* CTA Section */
 .cta-section {
     background: whitesmoke;
     padding: 60px 0;
     border-radius: 0px;
     margin: 50px 0;
 }

 .cta-content {
     text-align: center;
 }

 .cta-title {
     font-size: 2.2rem;
     font-weight: bold;
     color: var(--text-dark);
     margin-bottom: 20px;
 }

 .cta-subtitle {
     font-size: 1.2rem;
     color: var(--text-light);
     margin-bottom: 40px;
 }

 .cta-buttons {
     display: flex;
     gap: 20px;
     justify-content: center;
     flex-wrap: wrap;
 }

 .btn-cta-primary {
     background: var(--primary-color);
     color: white;
     border: none;
     padding: 13px 20px;
     /* padding: 13px 35px; */
     border-radius: 30px;
     font-weight: 400;
     font-size: 1rem;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-cta-primary:hover {
     background: #65665d;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
     color: white;
 }

 .btn-cta-secondary {
     /* background: transparent;
            color: var(--secondary-color); */
     border: 2px solid var(--secondary-color);

     background: #9393933d;
     color: #040404;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);


     padding: 13px 35px;
     border-radius: 30px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 .btn-cta-secondary:hover {
     background: var(--secondary-color);
     color: #000000;
     transform: translateY(-2px);
     box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
 }

 /* Responsive Design */
 @media (max-width: 768px) {
     .stat-number-1, .stat-number-2 {
         font-size: 2.5rem;
     }

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

     .cta-title {
         font-size: 1.8rem;
     }

     .cta-buttons {
         flex-direction: column;
         align-items: center;
     }

     .btn-cta-primary, .btn-cta-secondary {
         width: 100%;
         max-width: 300px;
     }
 }

 .social-links a, .footer-bottom a {
     color: white !important;
 }

 /* new designs  */
 /* Header Customization */
 .tp-header-area-2 {
     background: var(--senfin-white);
     box-shadow: rgb(0 0 0 / 21%) 0px 4px 10px 4px;
 }

 .tp-main-menu-content ul li a {
     color: var(--senfin-dark-gray);
     font-weight: 600;
     transition: color 0.3s ease;
 }

 .tp-main-menu-content ul li a:hover {
     color: var(--senfin-primary-green);
 }

 /* Hero Section */
 .tp-hero-area-2 {
     background: linear-gradient(135deg, var(--senfin-light-gray) 0%, #E8F5E8 100%);
 }

 .tp-hero-title-2 {
     color: var(--senfin-dark-gray);
     font-size: 3.5rem;
     font-weight: 700;
     line-height: 1.2;
 }

 .tp-hero-subtitle-2 {
     color: var(--senfin-primary-green);
     font-weight: 600;
     font-size: 1.1rem;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Market Ticker */
 .market-ticker {
     background: #000000;
     color: #fff;
     padding: 0px;
     /* padding: 10px 0; */
     overflow: hidden;
     position: relative;
 }

 .ticker-content {
     display: flex;
     animation: scroll 30s linear infinite;
     white-space: nowrap;
 }

 .ticker-item {
     margin-right: 50px;
     font-size: 14px;
     font-weight: 500;
 }

 .ticker-positive {
     color: var(--senfin-light-green);
 }

 .ticker-negative {
     color: #FF6B6B;
 }

 @keyframes scroll {
     0% {
         transform: translateX(100%);
     }

     100% {
         transform: translateX(-100%);
     }
 }

 /* Dropdown Arrow Styles */
 .has-dropdown>a::after {
     content: "\f107";
     /* FontAwesome down arrow */
     font-family: "FontAwesome";
     font-size: 12px;
     margin-left: 8px;
     transition: transform 0.3s ease;
 }

 /* Alternative if you prefer a CSS-only arrow */
 .has-dropdown>a::after {
     content: "";
     display: inline-block;
     width: 0;
     height: 0;
     border-left: 4px solid transparent;
     border-right: 4px solid transparent;
     border-top: 4px solid rgb(234 55 57);
     /* border-top: 4px solid currentColor; */
     margin-left: 8px;
     vertical-align: middle;
     transition: transform 0.3s ease;
 }

 /* Rotate arrow when dropdown is active/hovered */
 .has-dropdown:hover>a::after,
 .has-dropdown.active>a::after {
     transform: rotate(180deg);
 }

 /* Dropdown menu positioning */
 .has-dropdown {
     position: relative;
 }

 .has-dropdown .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     background: var(--senfin-white);
     min-width: 200px;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
     border-radius: 8px;
     padding: 10px 0;
     opacity: 0;
     visibility: hidden;
     transform: translateY(-10px);
     transition: all 0.3s ease;
     z-index: 1000;
 }

 .has-dropdown:hover .submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .has-dropdown .submenu li {
     list-style: none;
 }

 .has-dropdown .submenu li a {
     display: block;
     padding: 8px 20px;
     color: var(--senfin-dark-gray);
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .has-dropdown .submenu li a:hover {
     background: var(--senfin-light-gray);
     color: var(--senfin-primary-green);
     padding-left: 25px;
 }

 .tp-footer-widget-content span {
     font-family: var(--tp-ff-p);
     font-weight: 400;
     font-size: 16px;
 }

 /* Trading Platform Preview */
 .platform-section {
     padding: 100px 0;
     background: #0a0a0a;
     color: white;
     position: relative;
     overflow: hidden;
 }

 .platform-mockup {
     background: rgba(255, 255, 255, 0.05);
     backdrop-filter: blur(10px);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 20px;
     padding: 20px;
     overflow: hidden;
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
 }

 .mockup-header {
     display: flex;
     align-items: center;
     gap: 10px;
     margin-bottom: 20px;
 }

 .mockup-dot {
     width: 12px;
     height: 12px;
     border-radius: 50%;
     background: #ff5f57;
 }

 .mockup-dot:nth-child(2) {
     background: #ffbd2e;
 }

 .mockup-dot:nth-child(3) {
     background: #28ca42;
 }

 .platform-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
 }

 .platform-widget {
     background: rgba(255, 255, 255, 0.05);
     border: 1px solid rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     padding: 20px;
     transition: all 0.3s ease;
 }

 .platform-widget:hover {
     background: rgba(255, 255, 255, 0.08);
     transform: translateY(-3px);
 }

 /* Features Grid */
 #services .features-section {
     padding: 100px 0;
     background: var(--light-bg);
     position: relative;
 }

 #services .feature-card {
     background: white;
     border-radius: 20px;
     padding: 40px;
     height: 100%;
     position: relative;
     overflow: hidden;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
 }

 #services .feature-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 5px;
     background: #03964a;
     transform: scaleX(0);
     transform-origin: left;
     transition: transform 0.4s ease;
 }

 #services .feature-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
 }

 #services .feature-card:hover::before {
     transform: scaleX(1);
 }

 #services .feature-icon {
     width: 80px;
     height: 80px;
     background: #03964a;
     border-radius: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 36px;
     color: white;
     margin-bottom: 25px;
     transition: all 0.4s ease;
     /* }
.feature-icon { */
     box-shadow:
         inset 2px 2px 5px rgba(0, 0, 0, 0.2),
         inset -2px -2px 5px rgba(255, 255, 255, 0.3),
         0 5px 10px rgba(0, 0, 0, 0.15);
     /* outer shadow for depth */
 }

 #services .feature-card:hover .feature-icon {
     transform: rotateY(180deg);
 }

 #services .feature-icon i {
     opacity: 0.9;
     transition: all 0.4s ease-in-out;
 }

 #services .feature-card:hover .feature-icon i {
     opacity: 1;
     transform: scale(1.1);
 }

 .features-section .feature-icon {
     width: 80px;
     height: 80px;
     background: #03964a;
     border-radius: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 36px;
     color: white;
     margin-bottom: 25px;
     transition: all 0.4s ease;
     box-shadow: inset 2px 2px 5px rgba(0, 0, 0, 0.2), inset -2px -2px 5px rgba(255, 255, 255, 0.3), 0 5px 10px rgba(0, 0, 0, 0.15);
 }

 .ticker-positive {
     color: green;
 }

 .ticker-negative {
     color: red;
 }

 /* OUR SERVICES PAGE  */
/*
 .service-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
     transition: transform 0.2s ease, box-shadow 0.2s ease;
     margin-bottom: 20px;
 }

 .service-card:hover {
     transform: translateY(-2px);
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
 }

 .service-image {
     width: 200px;
     height: 160px;
     object-fit: cover;
 }  

 .service-title {
     color: #03964a;
     font-weight: 600;
     font-size: 1.4rem;
     margin-bottom: 8px;
 }



 .service-description {
     color: #666;
     font-size: 0.95rem;
     line-height: 1.5;
     margin-bottom: 16px;
 }
*/

 .duration-tag {
     background-color: #f8f9fa;
     /* color: #666; */
     padding: 4px 12px;
     border-radius: 20px;
     /* font-size: 0.85rem; */
     border: 1px solid #e9ecef;
 }

 .container-custom {
     max-width: 1200px;
     margin: 0 auto;
     padding: 20px;
 }

 .hero-banner {
     background: linear-gradient(135deg, rgb(0 0 0), rgb(0 0 0 / 50%)), url(https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1200&h=400&fit=crop) center / cover;
     height: 250px;
     display: flex;
     align-items: center;
     position: relative;
     margin-bottom: 40px;
 }

 .hero-overlay {
     width: 100%;
     color: white;
 }

 .hero-title {
     font-size: 2.5rem;
     font-weight: 400;
     margin-bottom: 1rem;
     text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
 }

 .hero-subtitle {
     font-size: 1.3rem;
     margin-bottom: 2.5rem;
     opacity: 0.95;
     line-height: 1.6;
 }

 .hero-stats .stat-item {
     padding: 1rem;
 }

 .hero-stats h3 {
     font-size: 2.5rem;
     font-weight: 700;
     margin-bottom: 0.5rem;
     color: #ffd700;
 }

 .hero-stats p {
     font-size: 1rem;
     margin: 0;
     opacity: 0.9;
 }

 /*         
        .section-title {
            color: #424242;
            font-weight: 600;
            position: relative;
            padding-bottom: 15px;
        } */
 .section-title {
     text-align: left;
     font-size: 2.5rem;
     font-weight: bold;
     color: var(--text-dark);
     margin: 10px 2px 15px 0;
     position: relative;
 }

 .section-title::after {
     content: '';
     position: absolute;
     bottom: -10px;
     left: 50%;
     transform: translateX(-50%);
     width: 80px;
     height: 2px;
     background: #ea3739;
     border-radius: 2px;
     /* content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, #000000, #4caf50);
            border-radius: 2px; */
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .hero-banner {
         height: auto;
         /* height: 200px; */
     }

     .hero-stats h3 {
         font-size: 2rem;
     }
 }

 /* OUR TEAM PAGE  */

 .team-card {
     background: white;
     border: none !important;
     border-radius: 20px !important;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     margin-bottom: 30px;
     position: relative !important;
     height: calc(100%) !important;
 }

 .team-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
 }

 .team-image {
     width: 100%;
     height: 280px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

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

 .team-info {
     padding: 25px;
     text-align: center;
 }

 .team-name {
     font-size: 1.4rem;
     font-weight: 600;
     color: #03964a;
     margin-bottom: 5px;
 }

 .team-position {
     color: #ea393a;
     font-weight: 500;
     font-size: 1rem;
     margin-bottom: 15px;
 }

 .team-description {
     color: #666;
     font-size: 0.95rem;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .social-link {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     text-decoration: none;
     transition: all 0.3s ease;
     font-size: 1.1rem;
 }

 .social-link.linkedin {
     background-color: #0077b5;
     color: white;
 }

 .social-link.twitter {
     background-color: #1da1f2;
     color: white;
 }

 .social-link.email {
     background-color: #ea4335;
     color: white;
 }

 .social-link.github {
     background-color: #333;
     color: white;
 }

 .social-link:hover {
     transform: translateY(-3px);
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
     color: white;
 }


 .specialty-tag {
     background-color: #e3f2fd;
     color: #000000;
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 500;
     display: inline-block;
     margin: 2px;
 }

 .experience-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: rgba(76, 175, 80, 0.9);
     color: white;
     padding: 5px 12px;
     border-radius: 15px;
     font-size: 0.8rem;
     font-weight: 500;
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.2rem;
     }

     .hero-subtitle {
         font-size: 1.1rem;
     }

     .team-card {
         margin-bottom: 20px;
     }
 }

 /* COMPANY PROFILE PAGE  */


 /* CAREERS PAGE  */
  .job-card {
                border: none !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border-radius: 12px !important;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    min-height: 230px;
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }
        
        .job-card .card-header {
            background: var(--light-green);
            border: none;
            border-radius: 12px 12px 0 0;
            padding: 20px;
        }
        
        .btn-view-more {
            background: var(--primary-green);
            border: var(--primary-green);
            border-radius: 25px;
            padding: 8px 20px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .btn-view-more:hover {
            background: var(--dark-green);
            border: var(--dark-green);
            transform: scale(1.05);
        }
        
        .job-type-badge {
            background: var(--primary-green);
            color: white;
            font-size: 0.8rem;
            padding: 4px 12px;
            border-radius: 15px;
        }
        
        .salary-range {
            color: var(--primary-green);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .company-stats {
            background: var(--light-green);
            border-radius: 12px;
            padding: 30px;
            margin-bottom: 40px;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--primary-green);
        }
        
        .filter-section {
            background: #f8f9fa;
            padding: 20px;
            border-radius: 12px;
            margin-bottom: 30px;
        }
        
        .offcanvas-header {
            background: var(--primary-green);
            color: white;
        }
        
        .offcanvas-title {
            font-weight: 600;
        }
  .custom-offcanvas {
  width: 90vw; /* Default for small screens */
}

@media (min-width: 576px) {
  .custom-offcanvas {
    width: 80vw;
  }
}

@media (min-width: 768px) {
  .custom-offcanvas {
    width: 70vw;
  }
}

@media (min-width: 992px) {
  .custom-offcanvas {
    width: 50vw;
  }
}

@media (min-width: 1200px) {
  .custom-offcanvas {
    width: 40vw;
  }
}

 .cta-title {
     font-size: 2.2rem;
     font-weight: 600;
     margin-bottom: 1rem;
 }

 .cta-text {
     font-size: 1.1rem;
     opacity: 0.9;
     margin-bottom: 2rem;
 }

 .cta-btn {
     background: white;
     color: var(--primary-color);
     border: none;
     padding: 15px 35px;
     border-radius: 8px;
     font-weight: 600;
     font-size: 1.1rem;
     transition: transform 0.3s ease;
 }

 .cta-btn:hover {
     transform: translateY(-3px);
     color: var(--primary-color);
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.5rem;
     }

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

     .section {
         padding: 50px 0;
     }

     .job-meta {
         flex-direction: column;
         gap: 8px;
     }
 }


 /* NEWS AND UPDATES AND SINGLE NEWS VIEW  */

 .main-content {
     padding: 60px 0;
 }

 .featured-news {
     background: white;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(3, 150, 74, 0.1);
     margin-bottom: 3rem;
     /* border: 2px solid transparent; */
     transition: all 0.3s ease;
 }

 .featured-news:hover {
     border-color: var(--primary-color);
     transform: translateY(-5px);
     box-shadow: 0 15px 40px rgba(3, 150, 74, 0.15);
 }

 .featured-image {
     width: 100%;
     height: 300px;
     object-fit: cover;
 }

 .featured-content {
     padding: 1rem;
 }

 .featured-badge {
     background: var(--primary-color);
     color: white;
     padding: 6px 15px;
     border-radius: 20px;
     font-size: 0.8rem;
     font-weight: 500;
     display: inline-block;
     margin-bottom: 1rem;
 }

 .featured-title {
     font-size: 2rem;
     font-weight: 600;
     color: var(--primary-dark);
     margin-bottom: 1rem;
     line-height: 1.3;
 }

 .featured-excerpt {
     color: #666;
     font-size: 1.1rem;
     margin-bottom: 1.5rem;
     line-height: 1.6;
 }

 .featured-meta {
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 15px;
     margin-bottom: 1.5rem;
 }

 .meta-item {
     display: flex;
     align-items: center;
     color: #666;
     font-size: 0.9rem;
 }

 .meta-item i {
     color: var(--primary-color);
     margin-right: 8px;
 }

 /* Recent Posts */
 .recent-post {
     background: white;
     border-radius: 12px;
     padding: 1rem;
     margin-bottom: 1rem;
     transition: all 0.3s ease;
     border: 1px solid #e9ecef;
     text-decoration: none;
     color: inherit;
     display: block;
 }

 .recent-post:hover {
     transform: translateY(-3px);
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     color: inherit;
     text-decoration: none;
 }

 .recent-post-image {
     width: 70px;
     height: 50px;
     border-radius: 8px;
     object-fit: cover;
     margin-right: 1rem;
 }

 .recent-post-content {
     flex: 1;
 }

 .recent-post-title {
     font-weight: 600;
     font-size: 0.9rem;
     color: #2c3e50;
     margin-bottom: 0.3rem;
     line-height: 1.3;
 }

 .recent-post-date {
     font-size: 0.8rem;
     color: #6c757d;
 }

 .read-more-btn {
     background: var(--primary-color);
     color: white;
     border: none;
     padding: 12px 25px;
     border-radius: 8px;
     font-weight: 500;
     text-decoration: none;
     display: inline-block;
     transition: all 0.3s ease;
 }

 .read-more-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
     color: white;
 }

 .news-card {
     background: white;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     margin-bottom: 2rem;
     border: 1px solid #e9ecef;
     transition: all 0.3s ease;
 }

 .news-card:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 30px rgba(3, 150, 74, 0.12);
     border-color: var(--primary-color);
 }

 .news-image {
     width: 100%;
     height: 200px;
     object-fit: cover;
 }

 .news-content {
     padding: 1.5rem;
 }

 .news-category {
     background: #e8f5e8;
     color: var(--primary-color);
     padding: 4px 12px;
     border-radius: 15px;
     font-size: 0.75rem;
     font-weight: 500;
     display: inline-block;
     margin-bottom: 1rem;
 }

 .news-title {
     font-size: 1.2rem;
     font-weight: 600;
     color: var(--primary-dark);
     margin-bottom: 0.8rem;
     line-height: 1.4;
 }

 .news-title a {
     color: inherit;
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .news-title a:hover {
     color: var(--primary-color);
 }

 .news-excerpt {
     color: #666;
     font-size: 0.95rem;
     margin-bottom: 1rem;
     line-height: 1.5;
 }

 .news-meta {
     display: flex;
     align-items: center;
     justify-content: space-between;
     color: #999;
     font-size: 0.85rem;
 }

 .sidebar {
     background: white;
     border-radius: 12px;
     padding: 2rem;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
     margin-bottom: 2rem;
     border: 1px solid #e9ecef;
 }

 .sidebar-title {
     font-size: 1.3rem;
     font-weight: 600;
     color: var(--primary-dark);
     margin-bottom: 1.5rem;
     padding-bottom: 10px;
     border-bottom: 2px solid var(--primary-color);
 }

 .category-list {
     list-style: none;
     padding: 0;
 }

 .category-item {
     margin-bottom: 0.8rem;
 }

 .category-item a {
     color: #666;
     text-decoration: none;
     padding: 8px 0;
     display: flex;
     align-items: center;
     justify-content: space-between;
     transition: color 0.3s ease;
 }

 .category-item a:hover {
     color: var(--primary-color);
 }

 .category-count {
     background: #f8f9fa;
     color: #666;
     padding: 2px 8px;
     border-radius: 12px;
     font-size: 0.8rem;
 }

 .recent-post {
     display: flex;
     gap: 15px;
     margin-bottom: 1rem;
     padding-bottom: 1rem;
     border-bottom: 4px solid #eee !important
 }

 

 .recent-image {
     width: 80px;
     height: 60px;
     border-radius: 8px;
     object-fit: cover;
     flex-shrink: 0;
 }

 .recent-content h6 {
     font-size: 0.9rem;
     font-weight: 500;
     margin-bottom: 0.5rem;
     line-height: 1.3;
 }

 .recent-content h6 a {
     color: var(--primary-dark);
     text-decoration: none;
     transition: color 0.3s ease;
 }

 .recent-content h6 a:hover {
     color: var(--primary-color);
 }

 .recent-date {
     color: #999;
     font-size: 0.8rem;
 }

 .pagination {
     justify-content: center;
     margin-top: 3rem;
 }

 .page-link {
     color: var(--primary-color);
     border-color: #e9ecef;
 }

 .page-link:hover {
     color: var(--primary-dark);
     background-color: #e8f5e8;
     border-color: var(--primary-color);
 }

 .page-item.active .page-link {
     background-color: var(--primary-color);
     border-color: var(--primary-color);
 }

 @media (max-width: 768px) {
     .hero-title {
         font-size: 2.2rem;
     }

     .featured-content {
         padding: 1.5rem;
     }

     .featured-title {
         font-size: 1.5rem;
     }

     .featured-meta {
         flex-direction: column;
         align-items: flex-start;
         gap: 10px;
     }
 }


 /* blogs  */
 .featured-card {
     background: linear-gradient(135deg, #fff, #f8f9fa);
     border: none;
     border-radius: 20px;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     overflow: hidden;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
 }

 .featured-card:hover {
     transform: translateY(-10px) scale(1.02);
     box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
 }

 .featured-card .card-img-top {
     height: 280px;
     object-fit: cover;
     transition: transform 0.4s ease;
 }

 .featured-card:hover .card-img-top {
     transform: scale(1.1);
 }

 .blog-card {
     background: white;
     border: none;
     border-radius: 15px;
     transition: all 0.3s ease;
     overflow: hidden;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
 }

 .blog-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 15px 45px rgba(0, 0, 0, 0.12);
 }

 .blog-card .card-img-top {
     height: 220px;
     object-fit: cover;
     transition: transform 0.3s ease;
 }

 .blog-card:hover .card-img-top {
     transform: scale(1.05);
 }

 .category-badge {
     background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
     color: white;
     font-size: 0.75rem;
     font-weight: 600;
     padding: 6px 12px;
     border-radius: 20px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .blog-meta {
     font-size: 0.9rem;
     color: var(--text-muted);
     font-weight: 500;
 }

 .blog-meta i {
     margin-right: 0.4rem;
     color: var(--primary-color);
 }

 .sidebar-widget {
     background: linear-gradient(135deg, #fff, #f8f9fa);
     border-radius: 15px;
     padding: 2rem;
     margin-bottom: 2rem;
     border: 1px solid rgba(3, 150, 74, 0.1);
     transition: all 0.3s ease;
 }

 .sidebar-widget:hover {
     transform: translateY(-2px);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
 }

 .sidebar-widget h5 {
     color: var(--primary-color);
     font-weight: 700;
     margin-bottom: 1.5rem;
     position: relative;
     padding-bottom: 0.5rem;
 }

 .sidebar-widget h5::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 0;
     width: 30px;
     height: 3px;
     background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
     border-radius: 2px;
 }

 .single-post-hero {
     background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1611974789855-9c2a0a7236a3?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
     background-size: cover;
     background-position: center;
     color: white;
     padding: 8rem 0;
     position: relative;
 }

 .single-post-content {
     font-size: 1.1rem;
     line-height: 1.8;
 }

 .single-post-content h2, .single-post-content h3 {
     color: var(--primary-dark);
     font-weight: 700;
     margin-top: 2.5rem;
     margin-bottom: 1.5rem;
 }

 .single-post-content blockquote {
     background: linear-gradient(135deg, #f8f9fa, #e9ecef);
     border-left: 5px solid var(--primary-color);
     padding: 2rem;
     border-radius: 10px;
     font-style: italic;
     font-size: 1.2rem;
     margin: 2rem 0;
 }

 .author-card {
     background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
     color: white;
     border-radius: 20px;
     padding: 2rem;
     margin: 3rem 0;
 }

 .stats-highlight {
     background: linear-gradient(135deg, var(--gold-accent), #ffed4e);
     color: #2c3e50;
     padding: 1rem 1.5rem;
     border-radius: 10px;
     font-weight: 600;
     text-align: center;
     margin: 1.5rem 0;
 }

 .investment-tip {
     background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
     border: 1px solid var(--primary-light);
     padding: 1.5rem;
     border-radius: 10px;
     margin: 1.5rem 0;
 }

 .investment-tip::before {
     content: '💡';
     font-size: 1.5rem;
     margin-right: 0.5rem;
 }

 .page-section {
     display: none;
 }

 .page-section.active {
     display: block;
 }

 .nav-pills .nav-link.active {
     background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
 }

 .floating-cta {
     position: fixed;
     bottom: 30px;
     right: 30px;
     z-index: 1000;
     animation: pulse 2s infinite;
 }

 @keyframes pulse {
     0% {
         transform: scale(1);
     }

     50% {
         transform: scale(1.05);
     }

     100% {
         transform: scale(1);
     }
 }

 .trending-badge {
     position: absolute;
     top: 15px;
     right: 15px;
     background: linear-gradient(135deg, #ff6b6b, #ee5a24);
     color: white;
     padding: 5px 10px;
     border-radius: 15px;
     font-size: 0.7rem;
     font-weight: 600;
     animation: bounce 1s infinite alternate;
 }

 @keyframes bounce {
     from {
         transform: translateY(0px);
     }

     to {
         transform: translateY(-5px);
     }
 }

 .performance-chart {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 2rem;
     border-radius: 15px;
     margin: 2rem 0;
 }

 /* PAGINATION  */
 .paginator {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-top: 3rem;
     margin-bottom: 2rem;
 }

 /* Pagination list styling */
 .paginator .pagination {
     background: transparent;
     box-shadow: none;
     padding: 0;
     margin-bottom: 1rem;
     border: none;
     display: flex;
     list-style: none;
     border-radius: 0;
 }

 /* Individual pagination items */
 .paginator .pagination li {
     margin: 0 2px;
     display: inline-block;
 }

 /* All pagination links */
 .paginator .pagination li a,
 .paginator .pagination li span {
     border: none !important;
     background: transparent;
     color: #6c757d;
     padding: 8px 12px;
     border-radius: 4px;
     font-weight: 500;
     transition: all 0.3s ease;
     text-decoration: none;
     display: inline-block;
 }

 /* Hover effects for active links */
 .paginator .pagination li a:hover {
     background: rgba(3, 150, 74, 0.1) !important;
     color: #03964a !important;
     transform: translateY(-1px);
     text-decoration: none;
 }

 /* Current/Active page styling */
 .paginator .pagination li.current a,
 .paginator .pagination li.current span {
     background: #03964a !important;
     color: white !important;
     box-shadow: 0 2px 8px rgba(3, 150, 74, 0.3);
 }

 /* Disabled links (first/previous when on first page) */
 .paginator .pagination li.disabled a,
 .paginator .pagination li.disabled span,
 .paginator .pagination li a.disabled,
 .paginator .pagination li span.disabled {
     background: transparent !important;
     color: #dee2e6 !important;
     cursor: not-allowed;
 }

 .paginator .pagination li.disabled a:hover,
 .paginator .pagination li.disabled span:hover {
     background: transparent !important;
     color: #dee2e6 !important;
     transform: none;
 }

 /* Pagination counter/info styling */
 .paginator p {
     color: #6c757d;
     font-size: 0.9rem;
     font-weight: 500;
     margin: 0;
     text-align: center;
 }

 /* Style the numbers in the counter */
 .paginator p {
     position: relative;
 }

 /* Add some visual enhancement to counter */
 .paginator p::before {
     content: '';
     position: absolute;
     bottom: -2px;
     left: 50%;
     transform: translateX(-50%);
     width: 30px;
     height: 2px;
     background: linear-gradient(90deg, transparent, #03964a, transparent);
     border-radius: 1px;
 }

 /* Mobile responsiveness */
 @media (max-width: 768px) {
     .paginator .pagination {
         flex-wrap: wrap;
         justify-content: center;
     }

     .paginator .pagination li a,
     .paginator .pagination li span {
         padding: 6px 10px;
         font-size: 0.9rem;
     }

     .paginator {
         margin-top: 2rem;
     }
 }

 /* Enhanced counter with highlighted numbers - JavaScript version */
 .paginator .highlight-number {
     color: #03964a;
     font-weight: 600;
 }

 /* Alternative: Pure CSS approach for better counter styling */
 .paginator-enhanced p {
     background: rgba(3, 150, 74, 0.05);
     padding: 8px 16px;
     border-radius: 20px;
     border: 1px solid rgba(3, 150, 74, 0.1);
     font-size: 0.85rem;
 }

 /* Ellipsis styling for page numbers */
 .paginator .pagination li.ellipsis span {
     color: #6c757d;
     cursor: default;
 }

 .paginator .pagination li.ellipsis span:hover {
     background: transparent !important;
     transform: none;
 }

 .paginator .pagination li.active a {
     background: linear-gradient(135deg, #03964a, #28a745);
     color: white;
     box-shadow: 0 4px 12px rgba(3, 150, 74, 0.4);
     transform: translateY(-1px);
 }

 /* GALLERY  */
   .gallery-title {
            font-size: 3.5rem;
            font-weight: 300;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }

        .gallery-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            margin-bottom: 2rem;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            background: white;
        }

        .gallery-item:hover {
            transform: translateY(-10px) scale(1.02);
            /* box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2); */
        }

        .gallery-item img {
            width: 100%;
           
            height: 100%;
            /* height: 300px; */
            
            object-fit: cover;
            transition: all 0.4s ease;
            border-radius: 15px;
        }

        .gallery-item:hover img {
            /* transform: scale(1.1);
            filter: brightness(0.8); */
        }

        .gallery-overlay {
              position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
             background:linear-gradient(45deg, rgb(0 0 0 / 8%), rgb(0 0 0 / 80%));  
            opacity: 0;
            transition: all 0.4s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 15px;  
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-overlay i {
            font-size: 2rem;
            color: white;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }
 
        .fade-in {
            animation: fadeIn 0.6s ease-out forwards;
            opacity: 0;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Custom Fancybox styling */
        .fancybox-bg {
            background: rgba(0, 0, 0, 0.95) !important;
        }

        .fancybox-slide--image .fancybox-content {
            border-radius: 10px;
            overflow: hidden;
        }

        @media (max-width: 768px) {
            .gallery-title {
                font-size: 2.5rem;
            }
        }

        /* OUR SERVICES PAGE  */
          .services-header {
            text-align: center;
            margin-bottom: 4rem;
            padding: 3rem 0;
        }

        .services-header h1 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
        }

        .services-header h1::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            border-radius: 2px;
        }

        .services-header p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 600px;
            margin: 0 auto;
        }

        .service-card {
            background: white;
            border-radius: 16px;
            box-shadow: var(--shadow);
            margin-bottom: 2rem;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid var(--border-color);
            position: relative;
              scroll-margin-top: 100px; /* Adjust based on your header height */
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color)) !important;
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .service-card:hover::before {
            transform: scaleX(1) !important;
        }

        .service-image {
            position: relative;
            overflow: hidden;
            height: 100%;
            min-height: 200px;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .service-card .row {
            min-height: 250px;
        }

        .service-card .col-lg-4 {
            display: flex;
        }

        .service-card:hover .service-image img {
            transform: scale(1.05);
        }

        .service-image::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(16, 185, 129, 0.1));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-image::after {
            opacity: 1;
        }

        .service-content {
            padding: 2rem;
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-dark);
            margin-bottom: 1rem;
            position: relative;
        }

        .service-description {
            color: var(--text-light);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

      
 
        .service-number {
            position: absolute;
            top: 1rem;
            right: 1rem;
            background: rgba(37, 99, 235, 0.1);
            color: var(--primary-color);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        @media (max-width: 768px) {
            .services-header h1 {
                font-size: 2rem;
            }
            
            .service-card .row {
                flex-direction: column;
            }
            
            .service-content {
                padding: 1.5rem;
            }
            
            .service-actions {
                flex-direction: column;
            }
        }

        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }
 .tp-main-menu-content li.active > a {
    color: #28a745;
    font-weight: bold;
}
.tp-main-menu-content .submenu a.active {
    text-decoration: underline;
}
 
.spin {
    animation: spin 1s linear infinite;
}
@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}
.dot-animate {
    animation: blink 1.4s infinite;
    opacity: 0;
}
.dot-animate:nth-child(2) {
    animation-delay: 0.2s;
}
.dot-animate:nth-child(3) {
    animation-delay: 0.4s;
}
.dot-animate:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes blink {
    0% { opacity: 0; }
    20% { opacity: 1; }
    100% { opacity: 0; }
}


   /* Original button styles and hover effects */
        .tp-header-contact-inner {
            display: flex;
            align-items: center;
            justify-content: center;
           
        }

        /* Start Investing button with overlay effect */
        .tp-header-contact-inner a[href="#contact"] {
            background-color: #ffed29;
            border-color: #ffed29;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            z-index: 1;
            color: black !important;
        }

        .tp-header-contact-inner a[href="#contact"]::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            transition: left 0.4s ease;
            z-index: -1;
        }

        .tp-header-contact-inner a[href="#contact"]:hover::before {
            left: 0;
        }

        .tp-header-contact-inner a[href="#contact"]:hover {
            transform: translateY(-3px);
            box-shadow: 0 4px 14px rgba(255, 77, 0, 0.4);
            /* box-shadow: 0 12px 30px rgba(255, 77, 0, 0.4); */
            
            text-decoration: none;
        }

        .tp-header-contact-inner a[href="#contact"]:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(255, 77, 0, 0.3);
        }

        /* Trade Online button with overlay effect */
        .tp-header-contact-inner .btn-success {
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            z-index: 1;
        }

        .tp-header-contact-inner .btn-success::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
            transition: left 0.4s ease;
            z-index: -1;
        }

        .tp-header-contact-inner .btn-success:hover::before {
            left: 0;
        }

        .tp-header-contact-inner .btn-success:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(25, 135, 84, 0.4);
            text-decoration: none;
        }

        .tp-header-contact-inner .btn-success:active {
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(25, 135, 84, 0.3);
        }

        /* Focus states for accessibility */
        .tp-header-contact-inner a:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 77, 0, 0.25);
        }

        .tp-header-contact-inner .btn-success:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(25, 135, 84, 0.25);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .tp-header-contact-inner {
                flex-direction: column;
            }
            
            .tp-header-contact-inner .mx-2 {
                margin: 0.5rem 0 !important;
            }
        }

        /* header and search bar design
         
        */
        
.ticker-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #000;
  border-bottom: 1px solid #222;
}

#header-sticky {
  margin-top: 30px;
}

/* ======= SEARCH TOGGLE BUTTONS ======= */
.search-toggle-btn,
.search-toggle-btn-mobile {
  background: transparent;
  border: none;
  /* padding: 8px 12px; */
  padding: 0px 12px;
  cursor: pointer;
  color: #333;
  transition: all 0.3s ease;
}

/* .search-toggle-btn:hover,
.search-toggle-btn-mobile:hover {
  background: #f5f5f5;
  border-radius: 50%;
  color: #000;
} */

/* ======= DESKTOP SEARCH DROPDOWN ======= */
.search-dropdown {
  position: absolute;
  /* top: calc(100%); offset for the ticker height */
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #ffed29;
  z-index: 9998;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10000;
}
@supports (-webkit-touch-callout: none) {
  .search-dropdown {
    transform: translateZ(0); /* forces GPU repaint */
    will-change: transform;
  }
}
.search-dropdown.active {
  max-height: 400px;
  opacity: 1;
  padding: 25px 0;
}

.search-dropdown-content {
  animation: slideInSearch 0.4s ease;
}

@keyframes slideInSearch {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ======= SEARCH FORM ======= */
.search-form-desktop {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  flex-wrap: nowrap;
}

.search-input-wrapper {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 40px;
  border: 1px solid #e9ecef;
  transition: all 0.3s ease;
}

.search-input-wrapper:focus-within {
  background: #fff;
  border-color: #ffed29;
  box-shadow: 0 0 0 4px rgba(255, 237, 41, 0.15);
}

.search-icon {
  position: absolute;
  left: 18px;
  color: #6c757d;
  font-size: 18px;
  pointer-events: none;
}

.search-input-desktop {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 48px 10px 48px;
  font-size: 16px;
  outline: none;
  color: #333;
}

.search-input-desktop::placeholder {
  color: #adb5bd;
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  background: transparent;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 5px;
  transition: color 0.3s ease;
}

.search-clear-btn:hover {
  color: #dc3545;
}

/* ======= SEARCH BUTTON ======= */
.search-submit-desktop {
  background: #ffed29;
  border: none;
  padding: 13px 40px;
  border-radius: 50px;
  font-weight: 600;
  color: #000;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.search-submit-desktop:hover {
  background: #e6d526;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 237, 41, 0.4);
}

/* ======= SUGGESTIONS / TAGS ======= */
.search-suggestions {
  margin-top: 20px;
}

.search-suggestions-title {
  font-size: 13px;
  font-weight: 600;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.search-tag {
  display: inline-block;
  padding: 8px 16px;
  background: #f8f9fa;
  border-radius: 20px;
  color: #495057;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border: 1px solid #e9ecef;
}

.search-tag:hover {
  background: #ffed29;
  color: #000;
  border-color: #ffed29;
  transform: translateY(-2px);
}

/* ======= BACKDROP ======= */
body.search-open-desktop {
  overflow: hidden;
}

.search-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 9997;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.search-backdrop.active {
  display: block;
  opacity: 1;
}

/* ======= RESPONSIVE STYLES ======= */
@media (max-width: 992px) {
  .search-form-desktop {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .search-input-wrapper {
    flex: 1;
    border-radius: 35px;
  }

  .search-input-desktop {
    font-size: 15px;
    padding: 12px 46px 12px 46px;
  }

  .search-submit-desktop {
    padding: 12px 26px;
    font-size: 15px;
    border-radius: 40px;
    flex-shrink: 0;
  }
}

@media (max-width: 576px) {
  /* Make dropdown full-width for mobile */
  
  .search-dropdown.active {
    max-height: none;
    opacity: 1;
    padding: 15px 0;
  }

  /* Inline layout for search bar + button */
  .search-form-desktop {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .search-input-wrapper {
    flex: 1;
    border-radius: 35px;
    background: #f8f9fa;
  }

  .search-input-desktop {
    font-size: 14px;
    padding: 11px 42px 11px 42px;
  }

  .search-submit-desktop {
    background: #ffed29;
    border: none;
    padding:7px 13px;
    /* padding: 11px 20px; */
    border-radius: 35px;
    font-size: 14px;
    font-weight: 600;
    color: #000;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }

  .search-submit-desktop:hover {
    background: #e6d526;
    transform: translateY(-1px);
  }

  .search-input-wrapper:focus-within {
    background: #fff;
    border-color: #ffed29;
    box-shadow: 0 0 0 3px rgba(255, 237, 41, 0.15);
  }
}
/* */



.about-content {
  overflow: hidden; /* Ensures layout stays clean */
}

.about-image {
  float: left;
  width: 100%;           /* Adjust width of image */
  margin: 0 20px 10px 0; /* Space between image and text */
  border-radius: 8px;
}

@media (max-width: 768px) {
  .about-image {
    float: none;
    width: 100%;
    margin: 0 0 20px 0;
  }
}


.carousel-control-next, .carousel-control-prev {
     
    bottom: 30% !important;
}



/* home page find us section design  */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h1 {
    color: #1a1a1a;
    font-weight: 600;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.location-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    min-height:310px;
}

.location-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.location-header {
    margin-bottom: 0px;
}

.location-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.location-details {
    margin-bottom: 10px;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 18px;
    color: #495057;
    line-height: 1.6;
}

.detail-item i {
    color: var(--primary-color);
    margin-right: 14px;
    margin-top: 0;
    font-size: 18px;
    width: 8px;
    flex-shrink: 0;
}

.detail-text {
    flex: 1;
}

.detail-text strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 2px;
}

.map-link {
    display: inline-flex;
    align-items: center;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0px 0;
}

.map-link:hover {
    color: #ff4d00;
    gap: 0;
}

.map-link i {
    margin-right: 8px;
    font-size: 20px;
    color: #ff4d00;
}

.phone-link {
    color: #495057;
    text-decoration: none;
    transition: color 0.2s ease;
}

.phone-link:hover {
    color: var(--primary-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    height: 300px;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.head-office-badge {
    display: inline-block;
    background-color: #fff3cd;
    color: #856404;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .section-title h1 {
        font-size: 2rem;
    }

    .location-card {
        padding: 30px 20px;
    }

    .map-container {
        height: 250px;
    }
}

/* Branch Badge */
.branch-badge {
    display: inline-block;
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}
