body {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #333333;
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevents horizontal scrolling */
    overflow-y: auto; /* Allows vertical scrolling when needed */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 100vw; /* Uses viewport width */
    max-width: 100%; /* Prevents exceeding viewport width */
    position: relative; /* Helps contain absolutely positioned elements */
    box-sizing: border-box; /* Ensures padding doesn't affect width */
}

/* Optional: Add this to ensure all elements inherit the box-sizing */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
/*a:hover
{
	text-decoration: none; 
	color: #fff
}*/
h1,h2,h3,h4,h5,h6
{ 
font-family: 'Archivo', sans-serif;
}

/* 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;
}

/* Primary Menu Styles */
/* Updated Primary Menu Styles */
.primary-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 15px;
}

.primary-menu ul li {
    position: relative;
}

.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 i {
    color: white !important; 
    font-size: 12px;
    margin-left: 5px;
}

.primary-menu ul li i {
    color: #024ca1;
    font-weight: 500;
}

/* 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);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.primary-menu ul li:hover ul {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.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;
}
/* 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;
}

.mobile-menu nav ul li a {
    color: #024ca1;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mobile-menu nav ul li i {
    color: #b3d6fe;
}

.mobile-menu .sub-menu {
    display: none;
    padding-left: 20px;
}

.mobile-menu .sub-menu.active {
    display: block;
}

.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;
    }
}



    /* Your existing CSS with adjustments */
    .mainslider-container {
        background-color: #024CA1;
        padding: 10px 40px; /* Desktop padding */
        overflow: hidden;
        position: relative;
        z-index: 1000; /* Keep this lower than sub-menu */
    }
	
	/* Add this for touch sliding */
    .mainslider-track {
        touch-action: pan-y;
    }
    
    .mainslider {
        position: relative;
        overflow: hidden;
        border-radius: 8px;
    }
    
    .mainslider-track {
        display: flex;
        transition: transform 0.5s ease;
    }
    
    .mainslider-slide {
        min-width: 100%;
        padding: 60px 0px 0px 0px;
    }
    
    .mainslider-content {
        color: white;
        padding: 0;
    }
    
    .mainslider-image {
        background-size: cover;
        background-position: center;
        /*min-height: 100%;*/
        height: auto;
        width: 100%;
        border-radius: 8px;
    }
    
    .mainslider-heading {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
    }
    
    .description {
        margin-bottom: 20px;
    }
    
    /* Timer styles - only for slide 3 */
    .schedule-container {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .timer-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        min-width: 40px;
        padding: 10px;
        background: #105cb4;
        border-radius: 4px;
    }
    
    .timer-value {
        font-size: 28px;
        font-weight: 700;
        color: #fff;
    }
    
    .timer-label {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .btn-container {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    /* Rest of your existing CSS remains the same */
    .btn-custom {
        padding: 12px 30px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .btn-primary-custom {
        background-color: #076bdd;
        border: 1px solid #076bdd;
        border-radius: 8px;
        color: #fff;
    }
    
    .btn-outline-custom {
        background-color: transparent;
        border: 1px solid #076bdd;
        color: white;
        border-radius: 8px;
    }
    
    .btn-primary-custom:hover {
        background-color: #055bbd;
        color: #fff;
    }
    
    .btn-outline-custom:hover {
        background-color: #076bdd;
        color: #fff;
    }
    
    .mainslider-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin: 10px auto;
    }
    
    .mainslider-indicator {
       /* width: 12px;
        height: 4px;
		border-radius: 0%;*/
		
		width: 23px !important;
		height: 9px  !important;
		border-radius: 17% !important;
        background-color: rgba(255, 255, 255, 0.5);
        cursor: pointer;
        transition: all 0.3s ease;
		
    }
    
    .mainslider-indicator.active {
        background-color: white;
    }
    
    /* Responsive adjustments */
    @media (max-width: 992px) {
        .mainslider-container {
            padding: 15px 5px;
        }
        
        .mainslider-content {
            padding: 20px 5px;
        }
        
        .mainslider-heading {
            font-size: 1.8rem;
        }
        
        .schedule-container {
            gap: 10px;
            margin-bottom: 15px;
        }
        
        .timer-item {
            min-width: 50px;
        }
        
        .timer-value {
            font-size: 24px;
        }
        
        .timer-label {
            font-size: 12px;
        }
        
        .btn-container {
            flex-direction: row;
            gap: 10px;
        }
        
        .btn-custom {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .mainslider-image {
            display: none;
        }
    }
    
    @media (max-width: 576px) {
    .mainslider-heading {
        font-size: 1.5rem;
    }
    
    .schedule-container {
        gap: 8px;
    }
    
    .timer-item {
        min-width: 45px;
    }
    
    .timer-value {
        font-size: 20px;
    }
    
    /* Modified button container for mobile */
    .btn-container {
        flex-direction: row; /* Changed from column to row */
        gap: 10px; /* Added gap between buttons */
    }
    
    /* Adjusted button width for mobile */
    .btn-custom {
        width: auto; /* Changed from 100% to auto */
        flex: 1; /* This will make both buttons equal width */
    }
}


		
		
.notification-container {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1001; /* Above mainslider but below header */
    background-color: #014593;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-out;
    display: none;
}

.notification-container.show {
    height: 50px; /* Adjust based on your content */
}

.notification-row {
    width: 100%;
    padding: 10px 60px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #014593;
    position: absolute;
    top: 0;
    left: 0;
}

.notification-content {
    text-align: center;
    flex: 1;
    color: #fff;
    font-size: 18px;
    font-weight: 200;
}

.notification-content a {
    color: #00b9f2;
    font-size: 16px;
    padding-left: 20px;
    font-weight: bold;
    text-decoration: none;
}

.close-notification {
    cursor: pointer;
    color: #286ebe;
    transition: color 0.3s ease;
    padding-left: 20px;
}

.close-notification:hover {
    color: #dc3545;
}

@media (max-width: 768px) {
    .notification-row {
        padding: 10px 20px;
    }
    
    .notification-content {
        font-size: 16px;
    }
    
    .notification-content a {
        font-size: 14px;
        padding-left: 10px;
    }
    
    .notification-container.show {
        height: 40px; /* Smaller height for mobile */
    }
}    
        
		
.custom-container {
            background-color: #024CA1;
            padding: 30px 50px;
            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: 350px;
            background-image: url('assets/img/Prices.gif');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .custom-container {
                padding: 30px 20px;
            }
            
            .heading-row h2 {
                font-size: 24px;
            }
            
            .square-image {
                height: 250px;
                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;
            }
        }

/* data-page-row-1 */
.data-page-row-1 {
            background-color: #fff;
            padding: 0px 50px 60px 50px;
			overflow: hidden;
			font-size: 18px;
        }
.data-page-row-1 a{
            color: #ee3733;
			font-weight: 400;
        }		
	.data-page-row-1 .data-row-heading{
            font-size: 20px;
			font-weight: bold;
			margin-bottom: 10px;
			color: #ee3733; /* Changed to dark color for white background */
			padding: 8px 0;
			}
        
        .data-page-row-1 .data-row-content {
            opacity: 0;
            transform: translateY(20px);
            transition: all .6s ease-out;
			
        }
		.data-page-row-1 .data-row-content h4{
            font-size: 24px; 
			font-weight: 600;
			
        }
        
        .data-page-row-1 .data-row-content.visible {
            opacity: 1;
            transform: none;
        }
        
        .data-page-row-1 .data-bullet-list {
            padding-left: 0;
            list-style: none;
			list-style-position: inside;
			
        }
        
        .data-page-row-1 .data-bullet-list li {
            position: relative;
            padding-left: 1.5rem;
            margin-bottom: .5rem;
			
        }
        
        .data-page-row-1 .data-bullet-list li::before {
            content: "Ã¢â‚¬Â¢";
            color: #007bff;
            font-size: 1.5em;
            position: absolute;
            left: 0;
            top: -3px;
        }
        
        .data-page-row-1 img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,.1);
        }
        
        @media (max-width: 768px) {
            .data-page-row-1 {
                padding: 20px 30px !important;
            }
            
            .mobile-stack {
                flex-direction: column;
            }
            
            .mobile-stack > div {
                width: 100% !important;
                margin-bottom: 20px;
            }
        }



     /* Universal Row Styles - Scoped to prevent conflicts */
        .universal-row {
            background-color: #ffffff;
            padding: 60px 50px 60px 50px;
            overflow: hidden;
			text-align: left;
        }
        
        .universal-row .row-content {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }
        
        .universal-row .animate-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .universal-heading {
            font-size: 20px;
			font-weight: bold;
			color: #ee3733;
            margin-bottom: 1.5rem;
            text-align: left;
        }
        
        .universal-content {
            font-size: 1.125rem;
            line-height: 1.6;
            color: #495057;
            max-width: 100%;
            margin: 0 auto;
			text-align: left;
        }
        
        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .universal-row {
                padding: 40px 30px !important;
            }
            
            .universal-heading {
                font-size: 1.75rem;
                margin-bottom: 1rem;
            }
            
            .universal-content {
                font-size: 1rem;
            }
        }
		



		
/* sensex row */
.sixth-row {
    background-color: #f5f5f5;
    padding: 15px 50px;
    background-image: linear-gradient(to right, #ededed 1px, transparent 1px),
                      linear-gradient(to bottom, #ededed 1px, transparent 1px);
    background-size: 20px 20px; /* Grid size */
}

.sixth-row .sixth-explore-heading {
    text-align: center;
}

.sixth-row .sixth-explore-heading p{
    font-size: 13px;
    font-weight: 600;
    color: #121212;
    margin-top: 10px;
	text-align: center;
	line-height: 18px; 
}

.sixth-row .sixth-explore-heading .sixth-view-all-link {
    font-size: 12px;
    color: #ed3733;
    text-decoration: none;
    font-weight: 600;
	
}

.sixth-row .ticker-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.sixth-row .ticker {
    display: flex;
    gap: 20px;
    animation: ticker-scroll 10s linear infinite;
}

.sixth-row .ticker-container:hover .ticker {
    animation-play-state: paused; /* Pause the animation on hover */
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Move by 50% to create the loop */
    }
}

.sixth-row .ticker-column {
    flex: 0 0 25%; /* Each column takes 25% width (4 columns visible at a time) */
    display: inline-block;
}

.sixth-row .ticker-item {
    background-color: #fff;
    padding: 10px 20px;
	border: 1px solid #ededed;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.sixth-row .ticker-heading {
    font-size: 14px;
    font-weight: bold;
    color: #121212;
    margin-bottom: 5px;
}

.sixth-row .ticker-subheading {
    font-size: 12px;
    color: #444;
    margin-bottom: 5px;
}

.sixth-row .ticker-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sixth-row .sixth-price .sixth-value {
    font-size: 14px;
    font-weight: bold;
    color: #444;
}

.sixth-row .sixth-price .sixth-unit {
    font-size: 14px;
    color: #444;
}

.sixth-row .sixth-change {
    display: flex;
    align-items: center;
    gap: 5px;
}

.sixth-row .sixth-change .sixth-value {
    font-size: 14px;
    font-weight: bold;
    color: #019849;
}

.sixth-row .sixth-change .sixth-unit {
    font-size: 14px;
    color: #666;
}

.sixth-row .sixth-change i {
    font-size: 14px;
    color: #019849;
}

/* Animation on Scroll */
.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}



/* ===== Base Styles ===== */
.video-content-section {
    background-color: #f4f4f4;
    padding: 30px 20px;
    overflow: hidden;
}

/* ===== Common Elements ===== */
.video-col,
.content-col {
    opacity: 0;
    transform: translateY(20px);
}

.video-col {
    position: relative;
    transition: all 0.8s ease;
}

.content-col {
    transition: all 0.8s ease 0.2s;
}

/* Video Thumbnail Styles */
.video-thumbnail-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.video-play-btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background-color: rgba(238, 55, 51, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-thumbnail-container:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-thumbnail-container:hover .video-play-btn {
    background-color: rgba(238, 55, 51, 1);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-description {
    font-size: 15px;
    color: #666;
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    line-height: 1.6;
}

/* Content Styles */
.content-heading {
    font-size: 22px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.content-text {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.content-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.content-list li {
    font-size: 15px;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: flex-start;
    font-weight: 500;
    line-height: 1.6;
}

.content-list li i {
    color: #333;
    font-size: 18px;
    margin-right: 10px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 15px;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255,255,255,0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 800px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ee3733;
    font-size: 30px;
    cursor: pointer;
}

.video-iframe {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.video-iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Active State */
.video-content-section.active .video-col,
.video-content-section.active .content-col {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Mobile Layout (Default) ===== */
.mobile-heading-col {
    margin-bottom: 20px;
    display: block;
    order: 1;
}

.video-col {
    order: 2;
    margin-bottom: 30px;
}

.content-col {
    order: 3;
}

.content-heading.d-none.d-lg-block {
    display: none;
}

/* ===== Desktop Layout ===== */
@media (min-width: 768px) {
    .video-content-section {
        padding: 60px 50px;
    }
    
    .mobile-heading-col {
        display: none;
    }
    
    .content-heading.d-none.d-lg-block {
        display: block;
    }
    
    .video-col {
        order: 1;
        margin-bottom: 0;
    }
    
    .content-col {
        order: 2;
    }
    
    .content-heading {
        font-size: 32px;
    }
    
    .content-text {
        font-size: 18px;
    }
    
    .content-list li {
        font-size: 16px;
    }
    
    .video-modal-content {
        width: 50%;
    }
}

/* ===== Responsive Typography ===== */
@media (min-width: 992px) {
    .content-heading {
        font-size: 28px;
    }
}

@media (min-width: 1200px) {
    .content-heading {
        font-size: 32px;
    }
}





/* Advantage Section - Base Styles */
.advantage-section {
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}

.advantage-section[data-section-theme="light"] {
  background-color: #fff;
  color: #333;
}

.advantage-section[data-section-theme="dark"] {
  background-color: #000032;
  color: #fff;
}

/* Container */
.advantage-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Heading */
.advantage-heading-wrapper {
  text-align: left;
  margin-bottom: 2.5rem;
}

.advantage-section-heading {
  font-size: 20px;
  font-weight: 700;
  color: #ee3733;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.advantage-section-heading a{
 color: #333;
}
.advantage-heading-decoration {
  display: block;
  margin: 0 auto;
  max-width: 100px;
}

/* Cards Grid */
.advantage-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

/* Card Styles */
.advantage-card {
  background: #f5f5f5;
  padding: 1.875rem;
  border-radius: 0.5rem;
  text-align: left;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
  display: flex;
  flex-direction: column;
  cursor:pointer;
}

.advantage-card a{
 color: #333;
}

.advantage-section[data-section-theme="dark"] .advantage-card {
  background: rgba(255, 255, 255, 0.1);
}

.advantage-card-icon {
  margin-bottom: 1.25rem;
  width: 70px;
  height: 70px;
}

.advantage-card-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: inherit;
}

.advantage-card-description {
  font-size: 1rem;
  margin: 0;
  color: inherit;
  opacity: 0.9;
}

/* Animation Classes */
.advantage-section.animate .advantage-section-heading {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

.advantage-section.animate .advantage-card {
  opacity: 1;
  transform: translateY(0);
}

/* Button Styles (if needed) */
.advantage-cta-button {
  display: inline-block;
  background-color: #ee3733;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 0.25rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: all 0.3s ease;
  margin-top: 1.5rem;
}

.advantage-cta-button:hover {
  background-color: #d62e2a;
  transform: translateY(-0.125rem);
}

.advantage-section.animate .advantage-cta-button {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Responsive Styles */
@media (max-width: 767px) {
  .advantage-section {
    padding: 2rem 20px;
  }
  
  .advantage-section-heading {
    font-size: 1.5rem;
  }
  
  .advantage-cards-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .advantage-card {
    padding: 1.25rem;
  }
  
  .advantage-card-title {
    font-size: 1rem;
  }
  
  .advantage-card-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 480px) {
  .advantage-cards-grid {
    grid-template-columns: 1fr;
  }
}




/* 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 15s 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; }
		




/* Circle Gallery Section */
.circle-gallery-section {
    background-color: #fff;
    padding: 50px 10px;
    position: relative;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

/* Services Header */
.services-header {
    text-align: left; /* Changed from center to left */
    margin-bottom: 30px;
    
    margin-left: auto;
    margin-right: auto;
    padding: 0 15px; /* Match container padding */
	
}

.services-heading {
  font-size: 20px;
    font-weight: 700;
    color: #ee3733;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-right: 15px;
    justify-content: flex-start; /* Added to align content to left */
    width: 100%; /* Ensure full width */
}

.heading-text {
    margin-right: 10px;
}


.redline {
    height: 2px;
    width: 50px;
    position: static;
    margin-left: 10px;
    transform: none;
    flex-shrink: 0;
}

.services-content {
    font-size: 16px;
    color: #333;
    max-width: 700px;
}

/* Circle Gallery Grid */
.circle-gallery-grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 1000px;
    margin: 0 auto;
}

.circle-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.circle-item {
    flex: 0 0 calc(25% - 10px);
    max-width: calc(20% - 10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
	margin-top: 25px;
    margin-bottom: 25px;
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

.circle-image-wrapper {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-color: #024ca1;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.circle-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.circle-label {
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
    text-align: center;
    color: #333;
    transition: color 0.3s ease;
}

/* Hover Effects */
.circle-item:hover {
    transform: translateY(-5px);
}

.circle-item:hover .circle-image-wrapper {
    transform: scale(1.05);
    background-color: #0368d9;
}

.circle-item:hover .circle-img {
    transform: scale(1.1);
}

.circle-item:hover .circle-label {
    color: #ee3733;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .circle-item {
        flex: 0 0 calc(33.333% - 10px);
        max-width: calc(33.333% - 10px);
    }
    
    .circle-image-wrapper {
        width: 110px;
        height: 110px;
    }
    
    .circle-img {
        width: 55px;
        height: 55px;
    }
}

@media (max-width: 768px) {
    .circle-gallery-section {
        padding: 40px 0;
    }
    
    .circle-item {
        flex: 0 0 calc(50% - 10px);
        max-width: calc(50% - 10px);
    }
    
    .circle-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .circle-img {
        width: 50px;
        height: 50px;
    }
    
    .services-heading {
        font-size: 22px;
    }
    
    .services-content {
        font-size: 15px;
    }
}

@media (max-width: 576px) {
    .circle-gallery-section {
        padding: 30px 0;
    }
    
    .circle-image-wrapper {
        width: 100px;
        height: 100px;
    }
    
    .circle-img {
        width: 60px;
        height: 60px;
    }
    
    .services-heading {
        font-size: 20px;
    }
    
    .services-content {
        font-size: 14px;
    }
    
    .circle-label {
        font-size: 14px;
        margin-top: 10px;
    }
}
		


/* 7th Row: Explore the Markets Section */
.seventh-row {
    background-color: white;
    padding: 20px 30px;
    position: relative;
}

/* Heading */
.seventh-explore-heading {
    font-size: 20px;
    font-weight: bold;
    color: #ee3733;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.seventh-explore-heading img {
    vertical-align: middle;
    margin-left: 10px;
}

/* Content */
.seventh-content {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Slider Container */
.seventh-images-slider {
    position: relative;
    margin-bottom: 40px;
}

/* Images Row - Now a Slider */
.seventh-images-row {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0 0;
    padding: 0 15px;
    scroll-behavior: smooth;
}

.seventh-images-row::-webkit-scrollbar {
    display: none;
}

.seventh-image-col {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 4px;
    scroll-snap-align: start;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.seventh-image-container {
    position: relative;
}

.seventh-market-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
    display: block;
}

.seventh-image-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
}

.seventh-dropdown-trigger {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.seventh-arrow-icon {
    font-size: 16px;
    color: #ee3733;
    text-decoration: none;
}

/* Dropdown Menu */
.seventh-dropdown-menu {
    display: none;
    position: absolute;
    bottom: 100%;
    left: 0;
    right: 0;
    background-color: #111;
    padding: 10px;
    border-radius: 0px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.seventh-dropdown-menu a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.seventh-dropdown-menu a:hover {
    color: #ee3733;
}

.seventh-image-container:hover .seventh-dropdown-menu {
    display: block;
}

/* Explore Button */
.seventh-explore-button {
    background-color: #ee3733;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
    display: inline-block;
    float: right;
    clear: both;
}

.seventh-explore-button:hover {
    background-color: #d62e2a;
	color:#ffffff !important;
	text-decoration:none !important;
}
.explore-button:hover{
	color:#ffffff !important;
	text-decoration:none !important;
}

.casestudy-explore-button:hover{
	color:#ffffff !important;
	text-decoration:none !important;
}

.explore-more-button:hover{
	color:#ffffff !important;
	text-decoration:none !important;
}

.consulting-button:hover{
	color:#ffffff !important;
	text-decoration:none !important;
}

.data-statistic-explore-button:hover{
	color:#ffffff !important;
	text-decoration:none !important;
}

.demo:hover{
	color:#ffffff !important;
	text-decoration:none !important;
}

/* Navigation Arrows */
.seventh-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.seventh-slider-arrow-left {
    left: 10px;
}

.seventh-slider-arrow-right {
    right: 10px;
}

.seventh-images-slider:hover .seventh-slider-arrow {
    opacity: 1;
}

.seventh-slider-arrow i {
    color: #333;
    font-size: 16px;
}

/* Hide left arrow initially */
.seventh-slider-arrow-left {
    display: none;
}

/* Fade-in Animation */
.seventh-row.animate .seventh-explore-heading,
.seventh-row.animate .seventh-content,
.seventh-row.animate .seventh-image-col,
.seventh-row.animate .seventh-explore-button {
    opacity: 1;
    transform: translateY(0);
}

/* Desktop Layout */
@media (min-width: 768px) {
    .seventh-row {
        padding: 0px 50px 60px 50px;
    }
    
    .seventh-image-col {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
    
    .seventh-slider-arrow {
        width: 50px;
        height: 50px;
    }
    
    .seventh-slider-arrow i {
        font-size: 20px;
    }
}

@media (min-width: 992px) {
    .seventh-image-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (min-width: 1200px) {
    .seventh-image-col {
        flex: 0 0 20%;
        max-width: 20%;
    }
}





/* News Row: Insights Section */
.news-row {
  background-color: white;
  padding: 30px;
  position: relative;
  overflow-x: hidden; /* Prevent horizontal scrolling on the page */
  width: 100%;
}

/* Title */
.news-title {
  font-size: 18px;
  font-weight: bold;
  color: #ee3733;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.news-title img {
  vertical-align: middle;
  margin-left: 10px;
}

/* Content */
.news-content {
  font-size: 18px;
  color: #333;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Slider Container */
.news-slider-container {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
}

.news-slider-wrapper {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  scroll-behavior: smooth;
  width: calc(100% + 30px); /* Compensate for negative margin */

  padding-left: 10px; /* Padding to compensate */
}

.news-slider-wrapper::-webkit-scrollbar {
  display: none;
}

.news-slider-item {
  flex: 0 0 calc(80% - 10px);
  scroll-snap-align: start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  min-width: 0;
}

/* News Card */
.news-card {
  background-color: #fff;
  border-radius: 0px;
  padding: 20px;
  border: 1px solid #ededed;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card-image {
  width: 100%;
  height: 160px;
  /*object-fit: cover;*/
  object-fit:contain;
  border-radius: 0px;
  margin-bottom: 16px;
}

.card-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 12px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.card-button {
  background-color: #ededed;
  color: #333;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  white-space: nowrap;
}

.card-tag {
  font-size: 12px;
  color: #ee3733;
  white-space: nowrap;
}

.card-date {
  font-size: 12px;
  color: #333;
  white-space: nowrap;
}

/* Explore Button */
.explore-button {
  background-color: #ee3733;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
  display: inline-block;
}

.explore-button:hover {
  background-color: #d62e2a;
}

/* Navigation Arrows - Hidden on mobile */
.slider-nav {
  display: none;
}

/* Active state for animations */
.news-row.active .news-title,
.news-row.active .news-content {
  opacity: 1;
  transform: translateY(0);
}

.news-row.active .news-slider-item {
  opacity: 1;
  transform: translateY(0);
}

.news-row.active .news-slider-item:nth-child(1) {
  transition-delay: 0.4s;
}

.news-row.active .news-slider-item:nth-child(2) {
  transition-delay: 0.5s;
}

.news-row.active .news-slider-item:nth-child(3) {
  transition-delay: 0.6s;
}

.news-row.active .news-slider-item:nth-child(4) {
  transition-delay: 0.7s;
}

.news-row.active .news-slider-item:nth-child(5) {
  transition-delay: 0.8s;
}

.news-row.active .explore-button {
  opacity: 1;
  transform: translateY(0);
}

/* Desktop Layout */
@media (min-width: 768px) {
  .news-row {
    padding: 60px 50px;
    overflow-x: visible;
  }
  
  .news-slider-wrapper {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    margin-left: 0;
    padding-left: 0;
    width: 100%;
  }
  
  .news-slider-item {
    flex: 0 0 calc(33.33% - 15px);
  }
  
  /* Show arrows only on desktop */
  .slider-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
  }
  
  .slider-nav button {
    pointer-events: all;
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s;
  }
  
  .slider-nav button:hover {
    opacity: 1;
  }
  
  .slider-nav button:first-child {
    margin-left: -20px;
  }
  
  .slider-nav button:last-child {
    margin-right: -20px;
  }
}

@media (min-width: 1024px) {
  .news-slider-item {
    flex: 0 0 calc(25% - 15px);
  }
}

	


	
	
	
/* Client Logo Slider Styles */
        .clients-row {
            padding: 40px 50px;
            background-color: #fff;
            overflow: hidden;
            position: relative;
            border-top: 1px solid #eee;
            border-bottom: 1px solid #eee;
        }
 
        /* Heading Row */
        .clients-heading-row {
            margin-bottom: 30px;
        }
 
        .clients-heading {
            font-size: 20px;
            font-weight: bold;
            color: #ee3733;
            margin-bottom: 10px;
        }
 
        .clients-heading img {
            vertical-align: middle;
            margin-left: 10px;
        }
 
        .clients-content {
            font-size: 18px;
            color: #333;
        }
 
        /* Slider Row */
        .clients-slider-row {
            display: flex;
            align-items: center;
            padding: 0px 10px;
        }
 
        /* View All Column */
        .view-all-col {
            padding-right: 20px;
        }
 
        .view-all-link {
            color: #ee3733;
            font-weight: bold;
            text-decoration: none;
            font-size: 12px;
            transition: all 0.3s ease;
            padding: 8px 16px;
            border: 1px solid #ee3733;
            border-radius: 4px;
            white-space: nowrap;
        }
 
        .view-all-link:hover {
            color: #004499;
            text-decoration: underline;
            background: #fff;
        }
 
        /* Slider Column */
        .slider-column {
            overflow: hidden;
            flex-grow: 1;
        }
 
        /* Slider Container */
        .twentyone-slider-container {
            width: 100%;
            overflow: hidden;
            position: relative;
            touch-action: pan-y;
        }
 
        /* Slider Track */
        .twentyone-slider-track {
            display: flex;
            gap: 20px;
            width: max-content;
            will-change: transform;
            backface-visibility: hidden;
            animation: scroll 120s linear infinite;
        }
 
        /* Client Card */
        .client-card {
            background: white;
            border-radius: 8px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            min-width: 120px;
        }
 
        .client-card:hover {
            transform: translateY(-5px);
        }
 
        /* Image Styles */
        .twentyone-grid-image {
            width: auto;
            height: 60px;
            object-fit: contain;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }
 
        .client-card:hover .twentyone-grid-image {
            filter: grayscale(0%);
        }
 
        /* Animation */
        @keyframes scroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }
 
        /* Pause animation on hover */
        .twentyone-slider-container:hover .twentyone-slider-track {
            animation-play-state: paused;
        }
 
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .clients-row {
                padding: 30px 40px;
            }
 
            .view-all-col {
                padding-right: 15px;
            }
 
            .view-all-link {
                font-size: 14px;
                padding: 6px 12px;
            }
 
            .twentyone-slider-track {
                animation-duration: 80s;
            }
        }
 
        @media (max-width: 768px) {
            .clients-row {
                padding: 20px 30px;
            }
 
            .clients-heading {
                font-size: 18px;
            }
 
            .clients-content {
                font-size: 16px;
            }
 
            .twentyone-grid-image {
                height: 70px;
            }
 
            .twentyone-slider-track {
                gap: 15px;
                animation-duration: 80s;
            }
 
            .view-all-col {
                padding-right: 10px;
            }
        }
 
        @media (max-width: 576px) {
            .clients-row {
                padding: 20px 15px;
            }
 
            .clients-heading-row {
                margin-bottom: 20px;
            }
 
            .view-all-link {
                font-size: 12px;
                padding: 4px 8px;
            }
 
            /* Mobile-specific adjustments */
            .twentyone-slider-container {
                width: 100vw;
                margin-left: -15px;
                padding-right: 15px;
            }
 
            .twentyone-grid-image {
                height: 60px;
            }
 
            .client-card {
                min-width: calc((100vw - 60px) / 3); /* Show exactly 3 logos */
            }
 
            .twentyone-slider-track {
                gap: 10px;
                animation-duration: 60s;
            }
 
            .clients-slider-row {
                flex-direction: column;
            }
 
            .view-all-col {
                padding-right: 0;
                margin-bottom: 15px;
                width: 100%;
                text-align: center;
            }
 
            .slider-column {
                width: 100%;
            }
        }
	
	
	
	

/* 10th Row: Multimedia Section */
.tenth-row {
  background-color: #f4f4f5;
  padding: 60px 50px;
}

/* Heading */
.multimedia-heading {
  font-size: 18px;
  font-weight: bold;
  color: #ee3733;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Content */
.multimedia-content {
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Video Section */
.multimedia-section {
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.multimedia-section iframe{
 width: 100%;
}

.multimedia-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 16px;
}

.multimedia-stats {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.multimedia-stats i {
  color: #024ca1;
}

.channel-name {
  font-size: 14px;
  color: #333;
}

.channel-name p {
  line-height: 1px;
}

.subscribe-button {
  background-color: #000;
  color: white;
  padding: 4px 16px;
  font-size: 12px;
  font-weight: bold;
  border: none;
  border-radius: 24px;
  cursor: pointer;
}

.subscribe-button:hover {
  background-color: #d62e2a;
}

.multimedia-actions {
  display: flex;
  gap: 8px;
}

.multimedia-actions i {
  font-size: 12px;
  color: #333;
  cursor: pointer;
  background: #fff;
  padding: 4px 16px;
  border-radius: 24px;
}

.multimedia-description {
  font-size: 16px;
  color: #333;
}

/* Multimedia Rows */
.multimedia-row {
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Apply different delays to each row */
.multimedia-row:nth-child(1) {
  transition-delay: 0.4s;
}
.multimedia-row:nth-child(2) {
  transition-delay: 0.6s;
}
.multimedia-row:nth-child(3) {
  transition-delay: 0.8s;
}

.multimedia-square-image {
  width: 100%;
  height: auto;
  border-radius: 0px;
}

.multimedia-subheading {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 8px;
}

.explainer-link {
  font-size: 16px;
  color: #ee3733;
  text-decoration: none;
}

.explainer-link:hover {
  text-decoration: underline;
}

/* Explore More Button */
.explore-more-button {
  background-color: #ee3733;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease 1s, transform 0.8s ease 1s;
}

.explore-more-button:hover {
  background-color: #d62e2a;
}

/* Animation Class - Applied when element is in view */
.tenth-row.in-view .multimedia-heading,
.tenth-row.in-view .multimedia-content,
.tenth-row.in-view .multimedia-section,
.tenth-row.in-view .multimedia-row,
.tenth-row.in-view .explore-more-button {
  opacity: 1;
  transform: translateY(0);
}
/* Desktop Layout */
@media (max-width: 768px) {
  .tenth-row {
    padding: 30px 30px; /* Desktop padding */
  }
  
  /* Adjust column layout for desktop */
  .col-sm-5 {
    padding-right: 15px;
  }
  
  .col-sm-7 {
    padding-left: 15px;
  }
}



/* Events Section */
.event-row {
    background-color: white;
    padding: 60px 50px;
    overflow: hidden;
}

/* Heading */
.events-heading {
    font-size: 20px;
    font-weight: bold;
    color: #ee3733;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Content */
.events-content {
    font-size: 18px;
    color: #333;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

/* Tabs */
.events-tabs {
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.events-tabs .nav-link {
    font-size: 16px;
    font-weight: bold;
    color: #666;
    padding: 10px 20px;
    border: none;
    background: none;
    position: relative;
}

.events-tabs .nav-link:hover {
    color: #ee3733;
}

.events-tabs .nav-link.active {
    color: #ee3733;
    background: none;
}

.events-tabs .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ee3733;
}

/* Event Card */
.event-card {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.event-image {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.event-title {
    font-size: 22px;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
    text-align: left;
}

.event-date,
.event-venue {
    font-size: 16px;
    color: #333;
    margin-bottom: 0px;
    text-align: left;
}
.date-color,
.venue-color{
    color:#333;

}

.event-description {
    font-size: 16px;
    color: #666;
    margin-top: 10px;
    text-align: left;
}

/* Events Scroll Container */
.events-scroll-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.event-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Explore More Button */
.explore-more-button {
    display: inline-block;
    background-color: #ee3733;
    color: white;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.explore-more-button:hover {
    background-color: #d62e2a;
}

/* Animation Classes */
.event-row.animate .events-heading,
.event-row.animate .events-content,
.event-row.animate .event-card,
.event-row.animate .explore-more-button,
.event-row.animate .event-item,
.event-row.animate .event-image {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animations */
.event-row.animate .event-item:nth-child(1) {
    transition-delay: 0.4s;
}
.event-row.animate .event-item:nth-child(2) {
    transition-delay: 0.5s;
}
.event-row.animate .event-item:nth-child(3) {
    transition-delay: 0.6s;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .event-row {
        padding: 20px 30px !important;
    }

    .events-scroll-container {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        gap: 15px;
        padding-bottom: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .event-item {
        width: 85%;
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .event-image {
        height: auto;
        width: 100%;
        object-fit: cover;
    }
    
    .events-tabs .nav-link {
        padding: 8px 12px;
        font-size: 14px;
    }
}



 .data-statistic-row {
            background-color: #f4f4f5;
            width: 100%;
            padding: 60px 50px;
            box-sizing: border-box;
            overflow: hidden;
        }

        .data-statistic-content {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .data-statistic-content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .data-statistic-heading {
            margin-bottom: 30px;
        }
         .data-statistic-heading h3{
        color: #ee3733;
        font-size: 20px;
        font-weight: bold;
        }
        .data-statistic-slider {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

        .data-statistic-slider-inner {
            display: flex;
            transition: transform 0.5s ease;
        }

        .data-statistic-slide {
            min-width: 100%;
            box-sizing: border-box;
        }

        .data-statistic-slide img {
            width: 100%;
            height: auto;
            display: block;
        }

        .data-statistic-slider-controls {
            text-align: center;
            margin-top: 15px;
        }

        .data-statistic-slider-dot {
            display: inline-block;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ccc;
            margin: 0 5px;
            cursor: pointer;
        }

        .data-statistic-slider-dot.active {
            background-color: #333;
        }

        @media (max-width: 767px) {
            .data-statistic-row {
                padding: 30px 30px;
            }
            
            .data-statistic-columns {
                flex-direction: column;
            }
            
            .data-statistic-col-7, 
            .data-statistic-col-5 {
                width: 100% !important;
            }
            
            .data-statistic-col-5 {
                margin-top: 30px;
				
            }
        }

        /* Base grid layout */
        .data-statistic-columns {
            display: flex;
            flex-wrap: wrap;
            width: 100%;
			align-items: center;
        }

        .data-statistic-col-7 {
            width: 58.3333%;
            padding-right: 15px;
            box-sizing: border-box;
        }

        .data-statistic-col-5 {
            width: 41.6667%;
            padding-left: 5px;
            box-sizing: border-box;
        }

.data-statistic-col-5 h4{
             color: #ee3733;
        font-size: 16px;
        font-weight: 700;
        }


	/* Add these new styles to your existing CSS */

.data-statistic-button-row {
display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.4s, transform 0.6s ease-out 0.4s;
}

.data-statistic-content.visible ~ .data-statistic-button-row {
    opacity: 1;
    transform: translateY(0);
}

.data-statistic-explore-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ee3733;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
	
}

.data-statistic-explore-button:hover {
    background-color: #d62e2a;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .data-statistic-button-row {
        text-align: center;
        margin-top: 20px;
    }
    
    .data-statistic-explore-button {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
        display: block;
    }
}





 /* Consulting Section - Scoped Styles */
        .consulting-section {
       
            padding: 60px 40px;
            overflow: hidden;
		    background-color: #024ca1;
			
			
        }
        
        .consulting-container {
            width: 100%;
            margin: 0 auto;
        }
        
        /* Logo */
        .consulting-logo {
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease;
        }
        
        .consulting-logo img {
            max-width: 200px;
            height: auto;
        }
        
        /* Heading */
        .consulting-heading {
            font-size: 20px;
            font-weight: bold;
            color: #fff;
            margin-bottom: 20px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.2s;
            text-align: left;
        }
        
        .consulting-heading img {
            vertical-align: middle;
            margin-left: 10px;
        }
        
        /* Content */
        .consulting-content {
            font-size: 18px;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: all 0.8s ease 0.4s;
            text-align: left;
            max-width: 100%;
		

        }
        
        /* Button Container */
        .consulting-button-container {
             display: grid;
    justify-content: end;
    width: 100%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.6s;
    margin-top: 30px;
    
        }
        
        .consulting-button {
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }
        
        .consulting-primary-btn {
            background-color: #ed3733;
            color: white;
            
        }
        
        .consulting-primary-btn:hover {
            background-color: #d62e2a;
            color: #fff;
        }
        
        /* Active State */
        .consulting-section.active .consulting-logo,
        .consulting-section.active .consulting-heading,
        .consulting-section.active .consulting-content,
        .consulting-section.active .consulting-button-container {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive Adjustments */
        @media (max-width: 1200px) {
            .consulting-section {
                padding: 70px 0px;
            }
        }
        
        @media (max-width: 992px) {
            .consulting-section {
                padding: 60px 0;
            }
            
            .consulting-heading {
                font-size: 26px;
            }
        }
        
        @media (max-width: 768px) {
            .consulting-section {
                padding: 50px 0;
            }
            
            .consulting-heading {
                font-size: 24px;
            }
            
            .consulting-content {
                font-size: 16px;
            }
            
            .consulting-button {
                padding: 10px 25px;
                font-size: 15px;
            }
        }
        
        @media (max-width: 576px) {
            .consulting-section {
                padding: 40px 20px;
            }
            
            .consulting-logo img {
                max-width: 200px;
            }
            
            .consulting-heading {
                font-size: 22px;
            }
            
            .consulting-content {
                font-size: 15px;
            }
            
            .consulting-button-container {
                text-align: center;
            }
            
            .consulting-button {
                width: 100%;
                max-width: 200px;
                margin: 0 auto;
                display: block;
            }
        }
		
		
	

/* Custom Styles - Scoped to this component only */
.delivery-mode-section {
    background-color: #fff;
    padding: 60px 45px;
    overflow: hidden;
}

/* Heading Section */
.delivery-heading-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
    margin-bottom: 40px;
    text-align: center;
}

.delivery-heading {
    font-size: 20px;
    font-weight: bold;
    color: #ed3733;
    margin-bottom: 15px;
	text-align: left;
}

.delivery-heading img {
    vertical-align: middle;
    margin-left: 2px;
}

.delivery-content {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
    max-width: 100%;
    margin: 0 auto;
	text-align: left;
}

/* Columns Section */
.delivery-columns-container {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.2s;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.delivery-columns-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.delivery-column {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f4f4f5;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.delivery-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255,255,255,0.1);
}

.delivery-column-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.delivery-column-title {
    font-size: 18px;
    font-weight: normal;
    color: #333;
    margin-bottom: 0;
}

/* Active State */
.delivery-mode-section.animate .delivery-heading-container,
.delivery-mode-section.animate .delivery-columns-container {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .delivery-mode-section {
        padding: 50px 40px;
    }
}

@media (max-width: 768px) {
    .delivery-mode-section {
        padding: 40px 30px;
    }
    
    .delivery-columns-row {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .delivery-heading {
        font-size: 22px;
    }
    
    .delivery-content {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .delivery-mode-section {
        padding: 30px 20px;
    }
    
    .delivery-column {
        padding: 15px;
    }
}
		
		


/* Awards Section */
.awards-row {
    padding: 0px 40px 60px 40px;
    background-color: #fff;
    overflow: hidden;
    position: relative;
	
}

/* Heading Section */
.awards-heading-row {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.awards-heading {
    font-size: 20px;
    font-weight: bold;
    color: #ed3733;
    margin-bottom: 15px;
}

.awards-heading img {
    vertical-align: middle;
    margin-left: 2px;
}

.awards-content {
    font-size: 18px;
    color: #333;
    line-height: 1.5;
}

/* Slider Container */
.awards-slider-container {
    width: 100%;
    display: flex;
    align-items: center;
	padding: 0px 40px;
	overflow-x: Hidden;
}

/* Slider Column */
.slider-column {
    overflow: hidden;
    position: relative;
}

/* View All Column */
.view-all-col {
    padding-right: 20px;
    text-align: center;
	
}

.view-all-link {
    color: #ed3733;
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border: 1px solid #fff;
	background: #fff;
    border-radius: 4px;
	text-transform: uppercase;
	
}

.view-all-link:hover {
    color: #004499;
            text-decoration: underline;
}

/* Slider Track */
.awards-slider-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
    padding: 5px 0;
}

/* Image Styles */
.awards-grid-image {
    width: 160px;
    height: auto;
    border-radius: 4px;
    flex-shrink: 0;
    object-fit: contain;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition-delay: calc(var(--index) * 0.1s);
}

/* Auto-scrolling Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50%)); } /* Adjusted to work within column */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .awards-row {
        padding: 30px 30px;
    }
    
    .awards-grid-image {
        width: 140px;
    }
    
    .view-all-col {
        padding-right: 15px;
    }
}

@media (max-width: 768px) {
    .awards-row {
        padding: 40px 30px;
    }
    
    .awards-heading {
        font-size: 22px;
    }
    
    .awards-content {
        font-size: 16px;
    }
    
    .awards-grid-image {
        width: 120px;
    }
    
    .view-all-link {
        font-size: 14px;
        padding: 6px 12px;
    }
}

@media (max-width: 576px) {
    .awards-row {
        padding: 30px 20px;
    }
    
    .awards-heading {
        font-size: 20px;
    }
    
    .awards-grid-image {
        width: 100px;
        gap: 15px;
    }
    
    .view-all-col {
        padding-right: 10px;
    }
    
    .view-all-link {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Animation Classes */
.animate-in .awards-heading-row {
    opacity: 1;
    transform: translateY(0);
}

.animate-in .awards-grid-image {
    opacity: 1;
    transform: translateX(0);
}
		
		


 /* Case Study Row Styles */
.casestudy-row {
    background-color: #f4f4f4; /* Changed to white */
    padding: 60px 50px;
    overflow: hidden;
}

/* Value Intro Row */
.value-intro-row {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    margin-bottom: 30px;
}

.value-intro-row.active {
    opacity: 1;
    transform: translateY(0);
}

/* Heading and Content */
.casestudy-value-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #ee3733; /* Changed to dark color for white background */
    padding: 8px 0;
}

.casestudy-value-content {
    font-size: 18px;
    margin-bottom: 0;
    color: #333; /* Changed to dark color for white background */
    padding: 8px 0;
}

/* Slider Row */
.casestudy-slider-row {
    background-color: #fff; /* Light gray background */
    padding: 30px 0 0;
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
    border-radius: 8px;
	border: 1px solid #ddd;
	
   
}

.casestudy-slider-row.active {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Container */
.casestudy-slider-container {
    overflow: hidden;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.casestudy-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.casestudy-slide {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 20px;
}

.casestudy-slide-content {
    display: flex;
    flex-wrap: wrap;
}

.casestudy-slide-text {
    flex: 0 0 60%;
    max-width: 60%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.casestudy-slide-text h3 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #333; /* Dark text for white background */
    font-weight: bold;
}

.casestudy-slide-text p {
    font-size: 18px;
    color: #333; /* Dark text for white background */
}

.casestudy-slide-video {
    flex: 0 0 40%;
    max-width: 40%;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

/* Active states */
.active .casestudy-slide-text,
.active .casestudy-slide-video {
    opacity: 1;
    transform: translateY(0);
}

/* Video Thumbnail */
.casestudy-video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
}

.casestudy-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.casestudy-play-icon {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20px;
    color: white;
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.casestudy-video-thumbnail:hover .casestudy-thumbnail {
    transform: scale(1.05);
}

.casestudy-video-thumbnail:hover .casestudy-play-icon {
    opacity: 1;
    background-color: rgba(238, 55, 51, 0.8); /* Brand red color */
}

/* Slider Bullets - Now visible by default */
.casestudy-slider-bullets {
    display: flex; /* Changed to flex to make visible */
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding-bottom: 20px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.active .casestudy-slider-bullets {
    opacity: 1;
    transform: translateY(0);
}

.casestudy-bullet {
    /*width: 21px;
    height: 8px;*/
	
	width: 23px !important;
	height: 9px  !important;
	border-radius: 17% !important;
		
    background-color: #ddd;
    border-radius: 0%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.casestudy-bullet.active {
    background-color: #333; /* Brand red color */
    transform: scale(1.2);
}

/* Video Popup Modal */
.casestudy-video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2500;
    justify-content: center;
    align-items: center;
}

.casestudy-modal-content {
    position: relative;
    background-color: #fff;
    padding: 20px;
	
    border-radius: 0px;
    max-width: 700px;
    width: 90%;
	
}

.casestudy-close-modal {
    position: absolute;
    top: -3px;
    right: 3px;
    font-size: 24px;
    color: #ed3733;
    cursor: pointer;
    background: none;
    border: none;
	
}

#casestudy-modal-video {
    width: 100%;
    max-height: 70vh;
    border-radius: 0px;
    display: block;
	
	
}

/* Explore More Button Row */
.casestudy-button-row {
    text-align: right;
    margin-top: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease 0.8s, transform 0.8s ease 0.8s;
}

.casestudy-button-row.active {
    opacity: 1;
    transform: translateY(0);
}

.casestudy-explore-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #ee3733;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.casestudy-explore-button:hover {
    background-color: #d62e2a;
}

/* Responsive Layout */
@media (max-width: 767px) {
    .casestudy-row {
        padding: 20px 30px !important;
    }
    
    .casestudy-slider-row {
        padding: 15px 0;
    }
    
    .casestudy-slide {
        padding: 0 15px;
    }
    
    .casestudy-slide-text,
    .casestudy-slide-video {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .casestudy-slide-text {
        order: 2;
        padding-top: 10px;
    }
    
    .casestudy-slide-video {
        order: 1;
        padding-bottom: 0;
    }
    
    .casestudy-slide-text h3 {
        font-size: 20px;
    }
    
    .casestudy-slide-text p {
        font-size: 14px;
    }
    
    .casestudy-slider-bullets {
        margin-top: 15px;
        padding-bottom: 15px;
    }
    
    .casestudy-play-icon {
        font-size: 30px;
        width: 50px;
        height: 50px;
    }
}




 
		
		
		


/* 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: 20px 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;
            }
        }



/* Custom CSS */
.footer {
    background-color: #fff;
    color: #333;
    overflow: hidden;
    width: 100%;
    /* Desktop padding */
    padding: 60px 50px 0;
}

/* Animation Styles */
.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);
}

/* First Row Styles */
.footer-links h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ed3733;
}

.footer-links ul {
    list-style: none;
    padding-left: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 16px;
}

.footer-links a:hover {
    color: #000;
    text-decoration: underline;
}

/* Second Row - Social Icons & App Download */
.social-icons {
    display: flex;
    justify-content: flex-end;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: #eee;
    transform: translateY(-2px);
    text-decoration: none;
}

/* Second Row - Social Icons & App Download */
.socials-icons {
    display: flex;
    justify-content: flex-end;
}

.socials-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s;
    text-align: left;
}

.socials-icon:hover {
    background-color: #eee;
    transform: translateY(-2px);
    text-decoration: none;
}

/* App Download Styles */
.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: 40px;
    height: 40px;
    background-color: #999;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s;
}

.app-icon:hover {
    background-color: #eee;
    transform: translateY(-2px);
}

.app-icon i {
    margin-right: 5px;
    font-size: 16px;
}

/* Third Row */
.footer-info {
    font-size: 14px;
    border-top: 1px solid #ddd;
    padding-top: 20px;
    margin-top: 20px;
    text-align: left;
    color: #666;
}

/* Fourth Row - Copyright Fix */
.footer-copyright {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
    padding: 15px 15px;
    border-top: 1px solid #ddd;
    display: block !important;
}

/* Mobile Styles */
@media (max-width: 767.98px) {
    .footer {
        padding: 20px 30px 0 !important;
    }
    
    .footer .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .footer-links-column {
        margin-bottom: 15px;
    }
    
    .socials-icons {
        display: none !important;
    }
    
    .footer-links-heading {
        cursor: pointer;
        padding: 10px 0;
        border-bottom: 1px solid #ddd;
        position: relative;
        font-size: 16px;
        font-weight: 500;
    }
    
    .footer-links-heading:after {
        content: '+';
        position: absolute;
        right: 10px;
        font-size: 14px;
        color: #ed3733;
    }
    
    .footer-links-heading.active:after {
        content: '-';
        color: #076bdd;
    }
    
    .footer-links-list {
        display: none;
        padding: 10px 0;
    }
    
    .footer-links-list.show {
        display: block;
    }
    
    .social-icons {
        display: flex;
        justify-content: flex-end;
        justify-content: left;
        margin-top: 20px;
        font-size: 12px;
    }
    
    .footer-copyright {
        text-align: left;
        padding-left: 15px;
    }
    
    .social-icon {
        margin-left: 0;
        margin-right: 10px;
        margin: 0 8px;
    }
    
    .mobile-app-section {
        margin-bottom: 20px;
    }
    
    /* Show mobile-specific social icons if needed */
    .mobile-social-icons {
        display: flex !important;
        justify-content: center;
        margin-top: 20px;
    }
    
    .mobile-app-heading {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .mobile-app-icons {
        display: flex;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .follow-heading {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 10px;
    }
    
    .app-download {
        display: none !important;
    }
}

/* Desktop Styles */
@media (min-width: 768px) {
    .mobile-app-section {
        display: none;
    }
    
    .socials-icons {
        justify-content: flex-end;
        padding-right: 30px;
    }
    
    .mobile-social-icons {
        display: none !important;
    }
    
    .social-app-container {
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }
    
    .social-icons {
        justify-content: flex-end;
    }
    
    .footer-copyright {
        text-align: left;
    }
    
    /* Equal width columns for desktop */
    .footer-links-column {
        flex: 1;
        min-width: 0;
    }
}


@media screen and (width: 1024px) {
  .news-card {
    padding: 10px;
  }
  .card-button {
    padding: 3px 6px;
    font-size: 11px;
  }
  .card-tag {
    font-size: 11px;
  }
  .card-date {
    font-size: 11px;
  }
}


/* Mobile Submenu Styles */
.mobile-menu .has-submenu {
    position: relative;
}
 
.mobile-menu .has-submenu::after {
    content: '+';
    position: absolute;
    right: 10px;
    font-size: 18px;
}
 
.mobile-menu .has-submenu.active::after {
    content: '-';
}
 
.mobile-menu .sub-menu {
    display: none;
    padding-left: 15px;
    margin-top: 5px;
}
 
.mobile-menu .sub-menu.active {
    display: block;
}
 
.mobile-menu .sub-menu li {
    margin-bottom: 8px;
}
 
.mobile-menu .sub-menu a {
    font-size: 14px;
    color: #666 !important;
}