/* ==================== */
/* === GLOBAL STYLES === */
/* ==================== */
:root {
  --primary-blue: #024ca1;
  --secondary-blue: #076bdd;
  --accent-red: #ed3733;
  --light-blue: #105cb4;
  --text-dark: #000;
  --text-medium: #444;
  --text-light: #666;
  --white: #fff;
  --gray-light: #eee;
  --gray-medium: #ededed;
  --gray-border: #ddd;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

*, *:before, *:after {
  box-sizing: inherit;
}

body {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  width: 100vw;
  position: relative;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo', sans-serif;
  margin-top: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--white);
  text-decoration: none;
}

/* ================= */
/* === HEADER CSS === */
/* ================= */
/* Header and Row Fixes */
header {
    background-color: #024ca1;
    padding: 8px 50px 0px 50px;
    font-size: 18px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1002;
    box-shadow: 0 2px 10px rgba(4, 40, 83, 0.5);
    border-bottom: 1px solid #c6cbe6;
    transition: all 0.3s ease;
}

header a {
    color: white;
    text-decoration: none;
    font-size: 15px;
}

header a:hover {
    text-decoration: none;
}

header .logo {
    height: 24px;
}

/* Search Box Styles */
.search-container {
    position: relative;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 5px 12px 5px 12px;
    border: none;
    border-radius: 24px;
    font-size: 16px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.search-input:focus {
    background-color: white;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    font-size: 16px;
}

/* Updated Primary Menu Styles */

.primary-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.primary-menu ul li {
    position: relative;
	z-index: 9999;
}

.primary-menu ul li a {
    padding: 4px 10px;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.primary-menu ul li a img {
    margin-left: 5px;
}

/* Updated Sub-menu Styles */
.primary-menu ul li ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    padding: 10px;
    z-index: 1004;
    min-width: 200px;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.primary-menu ul li:hover > ul {
    display: block;
}

.primary-menu ul li ul li {
    white-space: nowrap;
    margin: 5px 0;
}

.primary-menu ul li ul li a {
    color: #024ca1;
    font-size: 14px;
    padding: 5px 10px;
    display: block;
}

.primary-menu ul li ul li a:hover {
    background-color: #f5f5f5;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .primary-menu ul {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        padding: 10px 0;
        gap: 5px;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }
    
    
    .primary-menu ul::-webkit-scrollbar {
        display: none;
    }
    
    .primary-menu ul li {
        display: inline-block;
    }
    
    .primary-menu ul li a {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .primary-menu ul li a i {
        font-size: 10px;
    }
    
    
    .primary-menu ul li ul {
        position: fixed;
        min-width: 150px;
        max-height: 200px;
        overflow-y: auto;
        display: block !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease;
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }
    

    .primary-menu ul li ul::-webkit-scrollbar {
        display: none;
    }
    
    .primary-menu ul li ul li {
        display: block;
        margin: 5px 0;
        white-space: normal;
    }
    
    .primary-menu ul li:hover ul,
    .primary-menu ul li:focus-within ul,
    .primary-menu ul li.active ul {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

.primary-menu ul li:hover ul,
.primary-menu ul li:focus-within ul {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Login/Demo Styles */
header .demo {
    background-color: #ee3733;
    padding: 4px 12px;
    margin-left: 14px;
    border-radius: 2px;
    font-size: 16px;
}
header .career {
    background-color: transparent;
    padding: 4px 0px;
    margin-left: 14px;
    border-radius: 2px;
    font-size: 16px;
}
.menu-icon {
    cursor: pointer;
    font-size: 20px;
}

.second-row {
    background-color: #024ca1;
    transition: all 0.1s ease;
    max-height: 50px;
    overflow: hidden;
    transform: translateY(0);
    opacity: 1;
}

.second-row.hidden {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
    transition: all 0.3s ease;
    pointer-events: none;
}

/* Mobile Menu Styles */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: white;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease-in-out;
    z-index: 1003;
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-menu nav ul li {
    margin-bottom: 15px;
    position: relative;
	
}

.mobile-menu nav ul li a {
    color: #024ca1;
    text-decoration: none;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
	
}

.mobile-menu nav ul li i {
    color: #b3d6fe;
}

.mobile-menu .sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 0px;
    transition: max-height 0.3s ease-in-out;
   
	
}
.mobile-menu ul li ul li {
    border-bottom: 1px solid #ededed;
	Padding: 0 0 5px 0;
	
	
}



.mobile-menu .sub-menu.active {
    max-height: 500px; /* Adjust based on your content */
	
	
}

.mobile-menu nav ul li.has-submenu > a:after {
    content: '+';
    margin-left: 10px;
    font-size: 16px;
	
}

.mobile-menu nav ul li.has-submenu > a.submenu-toggle.active:after {
    content: '-';
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1002;
    display: none;
    transition: opacity 0.3s ease-in-out;
	
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
	
}

.mobile-menu nav ul li a span {
    background-color: #ee3733;
    width: auto;
    color: white;
    padding: 2px 12px;
    border-radius: 2px;
}

@media (max-width: 767px) {
    header .logo {
        width: 100px !important;
        height: auto !important;
        max-width: none !important;
    }
    
    .d-md-none .row.align-items-center:first-child {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .col-2 {
        width: auto !important;
        flex: 0 0 auto !important;
        padding-right: 10px;
    }
    
    .col-10 {
        width: auto !important;
        flex: 1 1 auto !important;
        max-width: none !important;
    }
    
    .search-container {
        width: 80%;
        margin-left: auto;
        text-align: right;
        margin-bottom: 4px;
    }
    
    .search-input {
        width: 100%;
        max-width: 300px; 
        margin-left: auto; 
    }
    
    .d-md-none .row.align-items-center:last-child {
        padding-top: 10px;
    }
}

/* Responsive Styles */
@media (max-width: 767px) {
    header {
        padding: 10px;
    }
    
    .login, .demo {
        font-size: 14px;
        padding: 3px 8px;
    }
    
    .demo {
        margin-left: 8px;
    }
}





/* ==================== */
        /* === ABOUT US CSS === */
        /* ==================== */
        #aboutus {
            background-color: white;
            padding: 0px;
            position: relative;
			scroll-margin-top: 120px; /* Adjust based on your header height */
			
        }
        
        .section-title {
            font-size: 19px;
            font-weight: bold;
            margin-bottom: 30px;
            color: #ed3733;
        }
        .content-section {
		padding: 0px;
		scroll-margin-top: 120px; /* Adjust this value based on your header + menu height */
}
        .section-content {
            font-size: 1.1rem;
            
            color: var(--text-medium);
        }
        .section-content .discover-link{
			color:#024ca1;
			font-weight: 600;
		}
		.section-content .discover-link:hover{
			color:#ed3733;
			font-weight: 600;
		}
        /* Fixed Horizontal Menu */
        .horizontal-menu {
            position: sticky;
            top: 0; /* Adjusted for header height */
            background: white;
            z-index: 1001; /* Below header z-index */
            border-bottom: 2px solid #ddd;
            padding: 5px 0;
			
            transition: top 0.3s ease;
        }
        
        .menu-container {
            display: flex;
            overflow-x: auto;
            padding-bottom: 5px;
            scrollbar-width: none; /* Firefox */
        }
        
        .menu-container::-webkit-scrollbar {
            display: none; /* Chrome, Safari, Opera */
        }
        
        .menu-item {
            padding: 8px 35px;
            white-space: nowrap;
            cursor: pointer;
            transition: all 0.3s;
            font-weight: normal;
			font-size: 14px;
	
            color: var(--text-light);
            
        }
        
        .menu-item.active {
            color: #111;
            font-weight: bold;
        }
	    .menu-item:hover {
            color: #ed3733;
			font-weight: normal;
            
        }
		
        
        /* Tab 1 - About Us */
        .about-image {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            margin-bottom: 25px;
            height: 400px;
            object-fit: cover;
        }
        
        /* Tab 2 - Vision */
        .vision-image {
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            height: 300px;
            object-fit: cover;
        }
        
        .vision-point {
            padding: 0px;
            background: #fff;
            border-radius: 8px;
            height: 100%;
            transition: all 0.3s ease;
        }
        
        .vision-point:hover {
            transform: translateY(-5px);
           
        }
        
        .vision-title {
            font-size: 19px;
            font-weight: 600;
            color: #111;
            margin-bottom: 15px;
        }
        
        /* Tab 4 - Our Presence */
        .presence-circle {
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: white;
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .presence-circle:hover {
            transform: scale(1.05);
        }
        
        .circle-large {
            width: 120px;
            height: 120px;
            background-color: #ed3733;
            font-size: 16px;
			font-weight: normal;
			
        }
        
        .circle-medium {
            width: 120px;
            height: 120px;
            background-color: #CFE1F6;
            font-size: 16px;
			font-weight: normal;
			color: #254263;
        }
        
        .circle-small {
            width: 100px;
            height: 100px;
            background-color: #254263;
            font-size: 12px;
			font-weight: normal;
			color: #CFE1F6;
        }
        
        .circles-row {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 30px 0;
        }
        
        .presence-logo {
            max-width: 150px;
            margin: 0 auto;
        }
        
        /* Tab 5 - BigMint in Brief */
        .brief-box {
            height: 180px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #EEF1F6;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(202,217,239,0.1);
            transition: all 0.3s;
            text-align: center;
			border: 2px solid #CAD8E8;
            padding: 20px;
            font-weight: normal;
            color: #000;
			font-size: 20px;
        }
        
        .brief-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.15);
        }
        
         .carousel-container {
		  overflow: hidden;
		  width: 100%;
		  height: 500px;
		  position: relative;
		  
		}

		.carousel-track {
		  display: flex;
		  width: 100%; /* because we duplicate the image */
		  animation: scroll 20s linear infinite;
		}

		.carousel-track img {
		  width: 100%;
		  height: 400px;
		  object-fit: cover;
		}

		@keyframes scroll {
		  0%   { transform: translateX(0); }
		  100% { transform: translateX(-50%); }
		}
        
        /* Tab 8 - Client Stories */
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
			
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }
        
        .explore-btn {
            background: var(--accent-red);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 500;
            transition: all 0.3s;
            border: none;
			float: right;
			font-size: 16px;
			margin-top:30px;
        }
        
        .explore-btn:hover {
            background: #c0392b;
            transform: translateY(-3px);
        }
        
        /* Tab 9 - BigMint in the News */
        .news-logo {
            max-height: 80px;
            margin-bottom: 0px;
            
            
        }
        
        .news-logo:hover {
            filter: grayscale(0);
           
        }
        
        /* Tab 10 - Awards & Recognitions */
        .awards-container {
            overflow: hidden;
            position: relative;
            height: 90px;
            margin: 5px 0;
        }
        
        .awards-track {
            display: flex;
            position: absolute;
            left: 0;
            top: 0;
            align-items: center;
            height: 100%;
            gap: 20px;
            animation: scroll 20s linear infinite;
        }
        
        .award-logo {
			width: 160px;
            height: 70px;
            object-fit: contain;
            cursor: pointer;
            transition: all 0.3s;
			 box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .award-logo:hover {
            transform: scale(1.1);
        }
        
        @keyframes scroll {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        
        /* Animations */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive styles */
        @media (max-width: 992px) {
            #aboutus {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .about-image {
                height: 300px;
            }
            
            .carousel-img {
                height: 350px;
            }
            
            .horizontal-menu {
                top: 80px; /* Adjusted for smaller header */
            }
        }
        
        @media (max-width: 768px) {
            .presence-circle {
                margin: 10px;
            }
            
            .circle-large {
                width: 140px;
                height: 140px;
            }
            
            .circle-medium {
                width: 100px;
                height: 100px;
            }
            
            .carousel-img {
                height: 250px;
            }
            
            .horizontal-menu {
                top: 60px; /* Adjusted for mobile header */
            }
        }




.custom-container {
            background-color: #024CA1;
            padding: 20px 40px;
            color: white;
        }
        
        .content-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        
        .heading-row h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .buttons-row {
            margin-top: 30px;
            display: flex;
            gap: 15px;
        }
        
        .btn-custom {
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 8px;
            white-space: nowrap;
        }
        
        .btn-primary-custom {
            background-color: #076bdd;
            border: 1px solid #076bdd;
            color: #fff;
        }
        
        .btn-outline-custom {
            background-color: transparent;
            border: 1px solid #076bdd;
            color: white;
        }
        
        .btn-primary-custom:hover {
            background-color: #055bbd;
            color: #fff;
        }
        
        .btn-outline-custom:hover {
            background-color: #076bdd;
            color: #fff;
        }
        
        .image-column {
            display: flex;
            justify-content: center;
            align-items: center;
        }
        
        .square-image {
            width: 100%;
            height: 100%;
            background-image: url('assets/img/Prices.gif');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }
        
@media (max-width: 768px) {
            .custom-container {
                padding: 20px 10px;
            }
            
            .heading-row h2 {
                font-size: 24px;
            }
            
            .square-image {
                height: auto;
                margin-top: 30px;
            }
            
            .buttons-row {
                gap: 10px;
            }
            
            .btn-custom {
                padding: 10px 20px;
                font-size: 14px;
            }
        }
        
        @media (max-width: 480px) {
            .buttons-row {
                flex-wrap: nowrap;
            }
            
            .btn-custom {
                padding: 8px 15px;
                font-size: 13px;
            }
        }


 @media (max-width: 767.98px) {
    .container-fluid.bg-white {
      padding: 20px 0px;
	  font-weight: 700;
    }
  }
  


       /* Custom CSS */
        .main-row {
            background-color: white;
            padding: 40px 20px;
            width: 100%;
        }
        
        .column {
            border: 1px solid #ededed;
            padding: 15px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            border-radius: 8px;
			background: #fff;
        }
        
        .column-title {
            font-weight: bold;
            margin-bottom: 15px;
            transition: all 0.3s ease;
			font-size: 16px;
        }
        
        .column:hover {
			border:1px solid #c4dbf5;
            background-color: #c4dbf5;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .column-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        .column.animated .column-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive padding */
        @media (max-width: 768px) {
            .main-row {
				margin: 0 auto;
                padding: 20px 0px;
            }
        }
        
        /* Smooth scrolling behavior */
        html {
            scroll-behavior: smooth;
        }

   /* Custom CSS scoped to map-row only */
        .map-row {
            background-color: white;
            padding: 40px 20px;
            width: 100%;
			margin: 0 auto;
        }
        
        .map-row .map-column {
            border: 1px solid #dee2e6;
            padding: 0;
            transition: all 0.3s ease;
            height: 100%;
            overflow: hidden;
            border-radius: 8px;
			
        }
        
        .map-row .map-column:hover {
            background-color: #f8f9fa;
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        
        .map-row .map-subcolumn {
            padding: 25px;
        }
        
        .map-row .map-text-content {
            text-align: left;
			font-size: 14px;
			color: #999
        }
		 .map-row .map-text-content b{
            
			font-size: 16px;
			color: #333
        }
		 .map-row .map-text-content p{
            
			font-size: 14px;
			color: #777
        }
        
        .map-row .map-container {
            height: 100%;
            min-height: auto;
        }
        
        .map-row .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .map-row .map-animated-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.6s ease;
        }
        
        .map-row .map-animated .map-animated-content {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive padding */
        @media (max-width: 768px) {
            .map-row {
                padding: 20px 0px;
            }
            
            .map-row .map-column {
                margin-bottom: 20px;
            }
            
            .map-row .map-subcolumn {
                padding: 20px;
            }
        }
		
		
		 /* Scoped styles only for bookademo-row */
        .bookademo-row {
            background-color: white;
            padding: 40px 20px;
            width: 100%;
            overflow: hidden;
        }

        .bookademo-content-wrapper {
            max-width: 1200px;
            margin: 0 auto;
        }

        .bookademo-image-wrapper {
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: box-shadow 0.3s ease;
        }

        .bookademo-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .bookademo-image-wrapper:hover .bookademo-image {
            transform: scale(1.05);
        }

        .bookademo-image-wrapper:hover {
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
        }

        .bookademo-text-content {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .bookademo-animated .bookademo-text-content {
            opacity: 1;
            transform: translateY(0);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .bookademo-row {
                padding: 20px 0px;
            }
        }


  /* Scoped styles only for globalmap row */
        .globalmap {
            background-color: white;
            padding: 40px 20px;
            width: 100%;
			overflow: hidden;
        }
        
        .globalmap .map-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            transition: all 0.4s ease;
        }
        
        .globalmap .map-image {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
            transform-origin: center center;
        }
        
        .globalmap .map-wrapper:hover .map-image {
            transform: scale(1.05);
        }
        
        .globalmap .map-wrapper:hover {
            box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        }
        
        /* Scroll animation */
        .globalmap .map-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .globalmap .map-animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .globalmap {
                padding: 20px 0px;
            }
            
            .globalmap .map-wrapper:hover .map-image {
                transform: scale(1.03);
            }
        }





  /* Scoped styles only for enquiry row */
        .enquiry {
            background-color: white;
            padding: 20px 0px;
            width: 100%;
        }
        
        .enquiry .enquiry-column {
            
            min-height: auto;
            padding: 20px;
            transition: all 0.4s ease;
        }
        
        .enquiry .button-container {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .enquiry .enquiry-btn {
            padding: 10px 25px;
            border-radius: 6px;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .enquiry .btn-primary {
            background-color: #0d6efd;
            border-color: #0d6efd;
        }
        
        .enquiry .btn-outline-secondary {
            color: #6c757d;
            border-color: #6c757d;
        }
        
        .enquiry .enquiry-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        /* Scroll animation */
        .enquiry .enquiry-animate {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
        }
        
        .enquiry .enquiry-animated {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive adjustments */
        @media (max-width: 768px) {
            .enquiry {
                padding: 20px 0px;
            }
            
            .enquiry .enquiry-column {
                min-height: auto;
                margin-bottom: 20px;
            }
            
            .enquiry .button-container {
                justify-content: center;
            }
        }
		
		
	/* Business Needs Row Styles */
        .businessneed-row {
            background-color: #024ca1;
            padding: 60px 50px;
            color: #fff; /* Changed text color to dark for white background */
            text-align: center;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: auto;
			overflow-x: hidden; /* Prevent horizontal scrolling */
			box-sizing: border-box; /* Include padding in width calculation */
        }

        .businessneed-discuss-heading {
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .businessneed-discuss-content {
            font-size: 18px;
            font-weight: normal;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
        }

        .businessneed-button-container {
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
        }

        .businessneed-demo-button,
        .businessneed-brochure-button {
            padding: 10px 30px;
            border-radius: 4px;
            font-size: 18px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            margin: 0 5px;
        }

        .businessneed-demo-button {
            background-color: #ed3733;
            color: white;
        }
		.businessneed-demo-button:hover {
            background-color: white;
            color: #ed3733;
        }

        .businessneed-brochure-button {
            background-color: #076bdd;
            color: white;
        }
		.businessneed-brochure-button:hover {
            background-color: #fff;
            color: #076bdd;
        }



        .businessneed-contact-info {
            font-size: 18px;
            font-weight: normal;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
        }
		.businessneed-contact-info a{
            color: #fff;
        }

        /* Fade-in Animation */
        .businessneed-row.animate .businessneed-discuss-heading,
        .businessneed-row.animate .businessneed-discuss-content,
        .businessneed-row.animate .businessneed-button-container,
        .businessneed-row.animate .businessneed-contact-info {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobile Responsiveness */
        @media (max-width: 576px) {
            .businessneed-row {
                padding: 40px 30px;
            }
            
            .businessneed-demo-button,
            .businessneed-brochure-button {
                width: 45%;
				padding: 5px 10px;
                margin-bottom: 10px;
				font-size: 14px;
            }
            
            .businessneed-discuss-heading {
                font-size: 28px;
            }
            
            .businessneed-discuss-content {
                font-size: 16px;
            }
        }

	
		


        /* ================== */
        /* === FOOTER CSS === */
        /* ================== */
        .footer {
          background-color: var(--white);
          color: var(--text-dark);
          width: 100%;
          padding: 60px 45px 0;
        }
        
        .footer-section {
          opacity: 1;
          transform: translateY(20px);
          transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .footer-section.visible {
          opacity: 1;
          transform: translateY(0);
        }
        
        /* Footer Links */
        .footer-links h5 {
          font-size: 18px;
          font-weight: 600;
          margin-bottom: 15px;
          color: var(--accent-red);
        }
        
        .footer-links ul {
          list-style: none;
          padding-left: 0;
        }
        
        .footer-links li {
          margin-bottom: 8px;
        }
        
        .footer-links a {
          color: var(--text-medium);
          transition: color 0.3s;
          font-size: 15px;
        }
        
        .footer-links a:hover {
          color: var(--text-dark);
          text-decoration: underline;
        }
        
        /* Footer Social Icons */
        .social-icons-container {
          display: flex;
          justify-content: flex-end;
        }
        
		
		
        .social-icon {
          width: 30px;
          height: 30px;
          border-radius: 50%;
          background-color: var(--gray-medium);
          color: var(--text-dark);
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 5px;
          transition: all 0.3s;
          float: left;
        }
        
        .social-icon:hover {
          background-color: var(--gray-light);
          transform: translateY(-2px);
        }
        
        .social-icon i {
          font-size: 12px;
        }
        
        /* Footer App Download */
        .app-download {
          display: flex;
          align-items: center;
          margin-right: 30px;
        }
        
        .app-heading {
          font-size: 16px;
          font-weight: 600;
          margin-right: 15px;
          white-space: nowrap;
        }
        
        .app-icons {
          display: flex;
          gap: 10px;
		 
        }
        
        .app-icon {
          width: 30px;
          height: 30px;
          background-color: var(--gray-medium);
          border-radius: 50%;
          display: flex;
          align-items: center;
          justify-content: center;
          color: var(--text-dark);
          font-size: 10px;
          transition: all 0.3s;
		  float:left;
		  margin-right: 5px;
		  
        }
        
        .app-icon:hover {
          background-color: var(--gray-light);
          transform: translateY(-2px);
        }
        
        .app-icon i {
          margin-right: 5px;
          font-size: 12px;
        }
        
        /* Footer Info */
        .footer-info {
          font-size: 14px;
          border-top: 1px solid var(--gray-border);
          padding-top: 20px;
          margin-top: 20px;
          text-align: left;
          color: var(--text-light);
        }
        
        .footer-copyright {
          margin-top: 20px;
          font-size: 14px;
          color: var(--text-dark);
          text-align: center;
          padding: 15px;
          border-top: 1px solid var(--gray-border);
          display: block !important;
        }
        
        /* ======================== */
        /* === RESPONSIVE STYLES === */
        /* ======================== */
        @media (max-width: 767px) {
          /* Header Adjustments */
          header {
            padding: 10px;
          }
          
          .logo {
            width: 100px !important;
            height: auto !important;
          }
          
          .search-container {
            width: 80%;
            margin-left: auto;
          }
          
          .demo, .career {
            font-size: 14px;
            padding: 3px 8px;
          }
          
          .demo {
            margin-left: 8px;
          }
          
          /* Footer Adjustments */
          .footer {
            padding: 20px 30px 0 !important;
          }
          
          .footer-links-column {
            margin-bottom: 15px;
          }
          
          .footer-links-heading {
            cursor: pointer;
            padding: 10px 0;
            border-bottom: 1px solid var(--gray-border);
            position: relative;
            font-size: 16px;
            font-weight: 500;
          }
          
          .footer-links-heading:after {
            content: '+';
            position: absolute;
            right: 10px;
            font-size: 14px;
            color: var(--accent-red);
          }
          
          .footer-links-heading.active:after {
            content: '-';
            color: var(--secondary-blue);
          }
          
          .footer-links-list {
            display: none;
            padding: 10px 0;
          }
          
          .footer-links-list.show {
            display: block;
          }
          
          .social-icons-container {
            justify-content: flex-start;
            margin-top: 20px;
          }
          .app-icon {
            margin: 0 8px 0 0;
          }
          .social-icon {
            margin: 0 8px 0 0;
          }
          
          .footer-copyright {
            text-align: left;
          }
        }
        
        @media (min-width: 768px) {
          /* Hide mobile-specific elements on desktop */
          .mobile-app-section,
          .mobile-social-icons {
            display: none !important;
          }
          
          /* Desktop-specific adjustments */
          .social-app-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;
          }
          
          .footer-links-column {
            flex: 1;
            min-width: 0;
          }
        }
		


/* Custom CSS with unique class names to avoid conflicts */
 /*       .sensex-commodity-container {
            background-color: #f5f5f5;
            background-image: linear-gradient(#e8e8e8 1px, transparent 1px),
                              linear-gradient(90deg, #e8e8e8 1px, transparent 1px);
            background-size: 20px 20px;
            padding: 10px 30px;
            overflow: hidden;
        }
        
        @media (max-width: 768px) {
            .sensex-commodity-container {
                padding: 10px 10px;
            }
        }
        
        .sensex-commodity-heading {
            font-size: 12px;
            font-weight: bold;
            margin-bottom: 8px;
            color: #333;
			text-transform: uppercase;
			margin-top: 20px;
			text-align: center;
        }
        
        .sensex-view-all {
            color: #ee3733;
			font-size: 12px;
            text-decoration: none;
            font-weight: bold;
            transition: color 0.3s;
			
        }
        
        .sensex-view-all:hover {
            color: #004499;
            text-decoration: underline;
        }
        
        .sensex-commodity-track {
            width: 100%;
            overflow: hidden;
        }
        
        .sensex-commodity-slider {
            display: flex;
            gap: 15px;
            
            animation: sensex-scroll 7s linear infinite;
        }
        
        .sensex-commodity-slider:hover {
            animation-play-state: paused;
        }
        
        @keyframes sensex-scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
        
        .sensex-commodity-card {
            flex: 0 0 auto;
            width: auto;
            background: white;
            border-radius: 8px;
            padding: 8px 24px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            transition: transform 0.2s, box-shadow 0.3s;
        }
        
        .sensex-commodity-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .sensex-commodity-title {
            font-size: 16px;
            font-weight: 600;
            color: #333;
        }
        
        .sensex-commodity-value {
            font-size: 14px;
            font-weight: normal;
            color: #666;
        }
        
        .sensex-metric-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            gap: 10px;
        }
        
        .sensex-metric-label {
            font-size: 0.8rem;
            color: #666;
            white-space: nowrap;
        }
        
        .sensex-metric-value {
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
        }
        
        .sensex-positive {
            color: #28a745;
        }
        
        .sensex-negative {
            color: #dc3545;
        }
        
        /* Initial animation for first 4 cards */
    /*    .sensex-commodity-card:nth-child(-n+4) {
            opacity: 0;
            transform: translateX(20px);
            animation: sensex-fadeIn 0.5s forwards;
        }
        
        @keyframes sensex-fadeIn {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .sensex-commodity-card:nth-child(1) { animation-delay: 0.1s; }
        .sensex-commodity-card:nth-child(2) { animation-delay: 0.2s; }
        .sensex-commodity-card:nth-child(3) { animation-delay: 0.3s; }
        .sensex-commodity-card:nth-child(4) { animation-delay: 0.4s; }
		
*/



/* Custom CSS with unique class names to avoid conflicts */
.sensex-commodity-container {
    background-color: #f5f5f5;
    background-image: linear-gradient(#e8e8e8 1px, transparent 1px),
                      linear-gradient(90deg, #e8e8e8 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 10px 30px;
    overflow: hidden;
}
 
@media (max-width: 768px) {
    .sensex-commodity-container {
        padding: 10px 10px;
    }
}
 
.sensex-commodity-heading {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    text-transform: uppercase;
    margin-top: 20px;
    text-align: center;
}
 
.sensex-view-all {
    color: #ee3733;
    font-size: 12px;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}
 
.sensex-view-all:hover {
    color: #004499;
    text-decoration: underline;
}
 
.sensex-commodity-track {
    width: 100%;
    overflow: hidden;
}
 
.sensex-commodity-slider {
    display: flex;
    gap: 15px;
    animation: sensex-scroll 30s linear infinite;
}
 
.sensex-commodity-slider:hover {
    animation-play-state: paused;
}
 
@keyframes sensex-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
 
.sensex-commodity-card {
    flex: 0 0 auto;
    width: auto;
    background: white;
    border-radius: 8px;
    padding: 8px 24px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: transform 0.2s, box-shadow 0.3s;
}
 
.sensex-commodity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
 
.sensex-commodity-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
 
.sensex-commodity-value {
    font-size: 14px;
    font-weight: normal;
    color: #666;
}
 
.sensex-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    gap: 10px;
}
 
.sensex-metric-label {
    font-size: 0.8rem;
    color: #666;
    white-space: nowrap;
}
 
.sensex-metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}
 
.sensex-positive {
    color: #28a745;
}
 
.sensex-negative {
    color: #dc3545;
}
 
/* Initial animation for first 4 cards */
.sensex-commodity-card:nth-child(-n+4) {
    opacity: 0;
    transform: translateX(20px);
    animation: sensex-fadeIn 0.5s forwards;
}
 
@keyframes sensex-fadeIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
 
.sensex-commodity-card:nth-child(1) { animation-delay: 0.1s; }
.sensex-commodity-card:nth-child(2) { animation-delay: 0.2s; }
.sensex-commodity-card:nth-child(3) { animation-delay: 0.3s; }
.sensex-commodity-card:nth-child(4) { animation-delay: 0.4s; }
 
/* Mobile-specific faster scrolling for cards */
@media (max-width: 768px) {
    .sensex-commodity-slider {
        animation: sensex-scroll 5s linear infinite;
        gap: 10px;
    }
    .sensex-commodity-card {
        padding: 6px 18px;
        animation: sensex-scroll-mobile 5s linear infinite;
    }
    @keyframes sensex-scroll-mobile {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}