body {
    font-family: 'Archivo', sans-serif;
    font-size: 18px;
    color: #333333;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
	-webkit-font-smoothing: antialiased; /* Smooth font rendering */
    -moz-osx-font-smoothing: grayscale; /* Smooth font rendering */
	
}
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: #f4f4f5;
}
/* 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: 40px 40px; /* Desktop padding */
        overflow: hidden;
        position: relative;
        z-index: 1000; /* Keep this lower than sub-menu */
    }
    
    .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 {
        
        height: 100%;
        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-top: 20px;
    }
    
    .mainslider-indicator {
        width: 12px;
        height: 4px;
        border-radius: 0%;
        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: 100%;
            background-image: url('assets/img/Prices.gif');
            background-size: cover;
            background-position: center;
            border-radius: 8px;
        }
        
        @media (max-width: 768px) {
            .custom-container {
                padding: 40px 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;
            }
        }

/* data-page-row-1 */
.data-page-row-1 {
            background-color: #fff;
            padding: 50px 50px 40px 50px;
			overflow: hidden;
			font-size: 18px;
			margin-top: -60px;
			font-size: 18px;
			font-weight: normal;
        }
.data-page-row-1 a{
            color: #024ca1;
			font-weight: 700;
        }		
	.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;
            margin-top: 0;
			
        }
		.data-page-row-1 .data-row-content h4{
            font-size: 20px; 
			font-weight: 700;
			
        }
        
        .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: 0;
        }
        
        .data-page-row-1 img {
            max-width: 100%;
            height: auto;
            border-radius: 0px;
			border: 0px solid #eee;
			
            /*box-shadow: 0 4px 8px rgba(0,0,0,.1);*/
        }
		
		.mobile-stack{
			align-items: center;
		}
        
        @media (max-width: 768px) {
            .data-page-row-1 {
                padding: 60px 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: #f4f4f5;
            padding: 60px 50px 80px 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;
			margin-left: 2px;
        }
        
        .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: 18px;
                margin-bottom: 1rem;
            }
            
            .universal-content {
                font-size: 1rem;
            }
        }
		


/* IOSCO Compliance Section */
.iosco-compliance-section {
    background-color: #000032;
    padding: 3.75rem 3.125rem;
    opacity: 0;
    transform: translateY(1.875rem);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.iosco-compliance-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Content Container */
.iosco-content-container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Logo and Text Row */
.iosco-logo-text-row {
    display: flex;
    margin-bottom: 1.5625rem;
    align-items: center;
}

.iosco-logo-col {
    flex: 0 0 16.6667%;
    padding-right: 15px;
}

.iosco-text-col {
    flex: 1;
}

.iosco-logo {
    width: 80%;
    max-width: 150px;
    height: auto;
    filter: brightness(0) invert(1);
}

.iosco-description {
    color: white;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

/* Button Row */
.iosco-button-row {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5625rem;
}

.iosco-button {
    background-color: #EE3634;
    color: white;
    font-size: 1rem;
    font-weight: 400;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.iosco-button:hover {
    background-color: #ff4c4c;
    transform: translateY(-0.125rem);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .iosco-compliance-section {
        padding: 1.875rem;
    }
    
    .iosco-logo-text-row {
        flex-direction: column;
        text-align: center;
    }
    
    .iosco-logo-col {
        flex: 0 0 auto;
        margin-bottom: 1.25rem;
        padding-right: 0;
    }
    
    .iosco-logo {
        width: 60%;
        margin: 0 auto;
    }
    
    .iosco-description {
        font-size: 1rem;
        text-align: center;
    }
    
    .iosco-button-row {
        justify-content: center;
    }
    
    .iosco-button {
        width: 100%;
        max-width: 280px;
    }
}


		
/* sensex row */
.sixth-row {
    background-color: #f4f4f5;
    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 */
}

/* Mobile responsive padding */
@media (max-width: 768px) {
    .sixth-row {
        padding: 20px 30px; /* Adjusted padding for mobile */
        width: 100%; /* Ensure full width */
        box-sizing: border-box; /* Include padding in width calculation */
    }
}

.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);
}







/* 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;
}

/* 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: 50px 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%;
    }
}
		


/* Market Data Section */
.market-data {
    background-color: white;
    padding: 80px 50px 60px 50px;
    position: relative;
}

/* Heading */
.market-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;
}

.market-explore-heading img {
    vertical-align: middle;
    margin-left: 0px;
}

/* Content */
.market-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;
}

/* Grid Container */
.market-images-grid {
    margin-bottom: 40px;
}

/* Images Row - Grid on desktop, scrollable on mobile */
.market-images-row {
    display: flex;
    margin: 0 -4px;
    padding: 0;
}

.market-image-col {
    padding: 0 4px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.market-image-container {
    position: relative;
    margin-bottom: 8px;
}

.market-market-image {
    width: 100%;
    height: auto;
    border-radius: 0px;
    display: block;
}

.market-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;
}

.market-dropdown-trigger {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
}

.market-arrow-icon {
    font-size: 16px;
    color: #ee3733;
    text-decoration: none;
}

/* Dropdown Menu */
.market-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;
}

.market-dropdown-menu a {
    display: block;
    font-size: 14px;
    color: #fff;
    text-decoration: none;
    margin-bottom: 8px;
}

.market-dropdown-menu a:hover {
    color: #ee3733;
}

.market-image-container:hover .market-dropdown-menu {
    display: block;
}

/* Explore Button */
.market-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;
}

.market-explore-button:hover {
    background-color: #d62e2a;
}

/* Fade-in Animation */
.market-data.animate .market-explore-heading,
.market-data.animate .market-content,
.market-data.animate .market-image-col,
.market-data.animate .market-explore-button {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Layout */
@media (max-width: 767px) {
    .market-data {
        padding: 40px 20px;
    }
    
    .market-images-row {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 10px;
    }
    
    .market-images-row::-webkit-scrollbar {
        display: none;
    }
    
    .market-image-col {
        flex: 0 0 80%;
        max-width: 80%;
    }
}

/* Desktop Layout */
@media (min-width: 768px) {
    .market-image-col {
        flex: 0 0 25%;
        max-width: 25%;
    }
}




/* Our Commitment Section - Base Styles */
.our-commitment-section {
  padding: 3.75rem 0;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.our-commitment-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Theme Variations */
.our-commitment-section[data-section-theme="light"] {
  background-color: #f4f4f5;
}

.our-commitment-section[data-section-theme="dark"] {
  background-color: #000032;
  color: white;
}

/* Container */
.our-commitment-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Heading */
.our-commitment-heading-wrapper {
  text-align: center;
  margin-bottom: 3rem;
}

.our-commitment-heading {
  color: #EE3A29;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

.our-commitment-heading-decoration {
  display: block;
  margin: 0 auto;
  max-width: 100px;
}

/* Commitment Grid */
.our-commitment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.875rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Commitment Item */
.our-commitment-item {
  background: white;
  padding: 2.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: center;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.our-commitment-section[data-section-theme="dark"] .our-commitment-item {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.our-commitment-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

.our-commitment-section[data-section-theme="dark"] .our-commitment-title {
  color: white;
}

.our-commitment-description {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.our-commitment-section[data-section-theme="dark"] .our-commitment-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Responsive Styles */
@media (max-width: 992px) {
  .our-commitment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .our-commitment-section {
    padding: 30px 30px ;
  }
  
  .our-commitment-item {
    padding: 1.875rem;
  }
}

@media (max-width: 576px) {
  .our-commitment-grid {
    grid-template-columns: 1fr;
  }
  
  .our-commitment-heading {
    font-size: 1.5rem;
  }
}




/* Useful Contact Section - Base Styles */
.useful-contact-section {
  background-color: white;
  padding: 3.125rem 2.5rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.8s ease, transform 0.8s ease;
  box-sizing: border-box;
  width: 100%;
}

.useful-contact-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Container */
.useful-contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

/* Heading */
.useful-contact-heading {
  color: #ee3733;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  margin-bottom: 2.5rem;
}

/* Contact Columns */
.useful-contact-columns {
  display: flex;
  gap: 1.25rem;
  width: 100%;
}

/* Contact Column */
.useful-contact-column {
  flex: 1;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 0.25rem;
  opacity: 0;
  transform: translateY(1.25rem);
  transition: all 0.6s ease;
  box-sizing: border-box;
}

.useful-contact-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
  line-height: 1.4;
}

.useful-contact-title a{
  color:#ffffff;
}

.useful-contact-email {
  font-size: 1rem;
  color: white;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.useful-contact-email:hover {
  opacity: 0.8;
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991.98px) {
  .useful-contact-column {
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 767.98px) {
  .useful-contact-section {
    padding: 20px 30px !important; /* Full width mobile padding */
  }
  
  .useful-contact-columns {
    flex-direction: column;
    gap: 1rem;
  }
  
  .useful-contact-column {
    padding: 2rem 1rem;
    width: 100%;
    max-width: 100%;
  }
  
  .useful-contact-heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .useful-contact-heading {
    font-size: 1.125rem;
  }
  
  .useful-contact-title {
    font-size: 1rem;
  }
  
  .useful-contact-email {
    font-size: 0.875rem;
  }
  
  /* Ensure full width on smallest devices */
  .useful-contact-section {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
}


 .whatsapp-cta-section {
    background-color: #fff;
    padding: 60px 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .whatsapp-cta-section.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .whatsapp-cta-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: left;
  }
  
  .whatsapp-cta-heading {
    color: #333;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  
  .whatsapp-cta-text {
    color: #555;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .whatsapp-cta-button {
    display: inline-block;
    background-color: #16b578;
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  .whatsapp-cta-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
  }
  
  .whatsapp-cta-button i {
    margin-right: 8px;
  }
  
  /* Mobile Responsive */
  @media (max-width: 767px) {
    .whatsapp-cta-section {
      padding: 20px 30px;
    }
    
    .whatsapp-cta-heading {
      font-size: 22px;
    }
    
    .whatsapp-cta-text {
      font-size: 16px;
      margin-bottom: 20px;
    }
    
    .whatsapp-cta-button {
      padding: 10px 20px;
      font-size: 16px;
    }
  }
  
  
  
/* Focus CSS - Only applies to this component */
.focus-section {
    background-color: white;
    padding: 60px 50px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.focus-section.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.focus-heading {
    text-align: left;
    
    font-size: 20px;
    color: #ee3733;
    font-weight: bold;
}
.focus-section p{
    font-size: 18px;
  color: #333;
  margin: 0;
  line-height: 1.6;
}
/* Desktop Layout */
.focus-row {
    display: flex;
    justify-content: left;
    position: relative;
    width: 100%;
    overflow-x: visible;
}

.focus-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    padding: 0 10px;
}

/* Mobile Layout - Show 3 columns with horizontal scroll */
@media (max-width: 767px) {
    .focus-section {
        padding: 40px 30px;
        overflow: hidden;
    }
    
    .focus-row {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        padding-bottom: 20px;
        justify-content: flex-start;
        gap: 15px;
    }
    
    .focus-row::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .focus-column {
        flex: 0 0 calc(33.33% - 10px); /* Show 3 columns */
        scroll-snap-align: start;
        min-width: auto;
        margin-right: 0;
    }
    
    .focus-connector {
        display: none; /* Hide connector on mobile */
    }
    
    .focus-heading {
        margin-bottom: 30px;
        font-size: 18px;
    }
    
    .focus-circle {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }
    
    .focus-title {
        font-size: 14px;
        white-space: normal; /* Allow text wrapping */
        text-align: center;
    }
}

.focus-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: white;
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.focus-circle:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.focus-circle img {
    width: 30%;
    height: auto;
    object-fit: contain;
}

.focus-title {
    font-weight: bold;
    font-size: 16px;
    color: #333;
    text-align: center;
    margin-top: 10px;
    white-space: nowrap;
}

.focus-connector {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #ddd;
    z-index: 0;
}

/* Animation classes */
.focus-fade-in {
    animation: focusFadeIn 0.8s ease forwards;
}

@keyframes focusFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.focus-delay-1 {
    animation-delay: 0.2s;
}

.focus-delay-2 {
    animation-delay: 0.4s;
}

.focus-delay-3 {
    animation-delay: 0.6s;
}

.focus-delay-4 {
    animation-delay: 0.8s;
}



  
  
  
      /* Ques Section Styles */
        .ques-section {
            background-color: #000;
            padding: 40px 50px;
            color: white;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .ques-section.fade-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        .ques-row {
            display: flex;
            width: 100%;
        }
        
        .col-sm-2 {
            width: 16.666%;
            padding: 0 15px;
        }
        
        .col-sm-8 {
            width: 66.666%;
            padding: 0 15px;
        }
        
        /* Content styling */
        .ques-column {
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            border-radius: 8px;
            transition: all 0.3s ease;
        }
        
        .ques-column h3 {
            font-size: 18px;
            text-align: left;
            margin-bottom: 15px;
        }
        
        .ques-column h4 {
            font-size: 24px;
            text-align: left;
        }
        
        /* Consultation Content */
        .consult-content {
            font-size: 18px;
            margin: 10px 0;
            color: #888;
            text-align: left;
            line-height: 1.4;
        }
        
        .consult-btn {
            background: #ee3733;
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            text-decoration: none;
            display: inline-block;
            margin-top: 15px;
            transition: all 0.3s ease;
            font-size: 14px;
            border: none;
            cursor: pointer;
			
        }
        
        .consult-btn:hover {
            background: #0056b3;
            transform: translateY(-2px);
        }
        
        /* Animations */
        @keyframes quesFadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .ques-fade-in {
            animation: quesFadeIn 1s ease forwards;
            opacity: 0;
        }
        
        .ques-delay-1 {
            animation-delay: 0.3s;
        }
        
        .ques-delay-2 {
            animation-delay: 0.6s;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            .ques-section {
                padding: 30px 20px;
            }
            
            .ques-row {
                flex-direction: column;
            }
            
            .col-sm-2,
            .col-sm-8 {
                width: 100%;
                padding: 15px 0;
            }
            
            .ques-column {
                align-items: flex-start;
            }
            
            .ques-column h3 {
                text-align: left;
                font-size: 16px;
            }
            
            .ques-column h4 {
                font-size: 20px;
            }
            
            .consult-content {
                text-align: left;
            }
            
            .consult-btn {
                align-self: flex-start;
            }
        }

       
 

 




/* Main Container Styles */
.main-row {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}


.main-row .tab-heading
{
	color: #EE3A29;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
}

/* Tab Container */
.tab-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Tab Headers */
.tab-headers {
  display: flex;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.tab-header {
  padding: 15px 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #495057;
  transition: all 0.3s ease;
  position: relative;
  text-transform: capitalize;
}

.tab-header:hover {
  color: #024ca1;
  background-color: #e9ecef;
}

.tab-header.active {
  color: #024ca1;
  background-color: white;
  border-bottom: 3px solid #024ca1;
}

/* Tab Content */
.tab-content {
  display: none;
  padding: 30px;
  background-color: white;
  animation: fadeIn 0.5s ease;
}

.tab-content.active {
  display: block;
}

/* Content Rows and Columns */
.content-row {
  display: flex;
  margin-bottom: 30px;
  gap: 30px;
}

.column {
  flex: 1;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.column.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.column.delay-1 {
  transition-delay: 0.2s;
}

.column.delay-2 {
  transition-delay: 0.4s;
}

.column.delay-3 {
  transition-delay: 0.6s;
}

/* Nested Columns */
.nested-columns {
  display: flex;
  gap: 20px;
  height: 100%;
}

.nested-column {
  flex: 1;
  padding: 20px;
  border-radius: 6px;
  background-color: #f8f9fa;
  transition: transform 0.3s ease;
}

.nested-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.nested-column img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
}

.nested-column h3 {
  color: #024ca1;
  font-size: 18px;
  margin-bottom: 10px;
}

.nested-column p {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Nested Column 1 (Right Side) */
.nested-column1 {
  flex: 1;
  padding: 20px;
  background-color: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
}

.nested-column1 h4 {
  color: #024ca1;
  font-size: 18px;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #dee2e6;
}

.nested-column1 h5 {
  color: #212529;
  font-size: 16px;
  margin-bottom: 15px;
}

.nested-column1 p {
  color: #495057;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.nested-column1 p b {
  color: #212529;
}

/* Read More Link */
.read-more {
  color: #024ca1;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.3s ease;
}

.read-more:hover {
  color: #ee3733;
  transform: translateX(5px);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive Styles */
@media (max-width: 992px) {
  .content-row {
    flex-direction: column;
    gap: 20px;
  }
  
  .nested-columns {
    flex-direction: column;
  }
  
  .tab-header {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  .tab-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .tab-headers {
    flex-wrap: wrap;
  }
  
  .tab-header {
    flex: 1 0 50%;
    text-align: center;
  }
  
  .nested-column img {
    height: 150px;
  }
}

@media (max-width: 576px) {
  .main-row {
    padding: 10px;
  }
  
  .tab-header {
    flex: 1 0 100%;
    padding: 10px;
  }
  
  .nested-column, .nested-column1 {
    padding: 15px;
  }
}


  
  
  
  


/* 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-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: #f4f4f5;
  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;
}

.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;
  }
}










		

/* ===== 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: 45px;
    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;
    }
}
/* Modified Mobile Layout */
@media (max-width: 767px) {
    .video-col {
        order: 3 !important; /* Moves video to bottom on mobile */
        margin-bottom: 0;
    }
    
    .content-col {
        order: 2 !important; /* Keeps content above video */
    }

    .video-description {
        margin-bottom: 30px; /* Adds space below video */
    }
}




/* Premium container styling */
.premium-tabs-container {
    background: white;
    width: 100%;
    padding: 60px 5%;
    position: relative;
    overflow: hidden;
}
@media (max-width: 767.98px) {
    .premium-tabs-container {
        padding: 40px 5%;
    }
}

/* Floating tab navigation */
.premium-tabs-nav {
    display: flex;
    position: relative;
    padding-left: 0;
    margin-bottom: 40px;
    list-style: none;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.premium-tabs-nav::-webkit-scrollbar {
    display: none;
}
.premium-tabs-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: var(--indicator-width, 100px);
    background: #ee3733;
    transform: translateX(var(--indicator-position, 0));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

/* Tab Links */
.premium-tab-link {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    margin-right: 4px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px 8px 0 0;
    z-index: 2;
}
.premium-tab-link:hover {
    color: #ee3733;
    background: rgba(238, 55, 51, 0.05);
}
.premium-tab-link.active {
    color: #ee3733;
}

/* Tab Content */
.premium-tab-content {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}
.premium-tab-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: cardAppear 0.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes cardAppear {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

/* Article Cards */
.premium-article-card {
    display: flex;
    flex-direction: column;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 25px;
    height: 100%;
}
@media (min-width: 768px) {
    .premium-article-card {
        flex-direction: row;
        min-height: 200px;
    }
}
.premium-article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Image Styles */
.premium-featured-image {
    position: relative;
    overflow: hidden;
    flex: 0 0 30%;
    max-height: 200px;
}
@media (max-width: 767.98px) {
    .premium-featured-image {
        flex: 0 0 100%;
        height: 180px;
    }
}
.premium-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-article-card:hover .premium-featured-image img {
    transform: scale(1.05);
}

/* Overlay */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 15px;
}

/* Badge */
.content-type-badge {
    background: #ee3733;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Article Content */
.article-content {
    flex: 1;
    padding: 25px;
    display: flex;
    flex-direction: column;
}
@media (max-width: 767.98px) {
    .article-content {
        padding: 20px;
    }
}
.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.premium-article-card:hover .article-title {
    color: #ee3733;
}
.article-excerpt {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

/* Metadata */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    margin-top: 10px;
    font-size: 0.85rem;
}
.meta-item {
    display: flex;
    align-items: center;
    color: #718096;
}
.meta-item i {
    margin-right: 6px;
    font-size: 0.9rem;
}

/* Read More Link */
.read-more {
    display: inline-flex;
    align-items: center;
    color: #ee3733;
    font-weight: 600;
    text-decoration: none;
    margin-top: 10px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.read-more i {
    margin-left: 6px;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.read-more:hover {
    color: #d62f2b;
}
.read-more:hover i {
    transform: translateX(3px);
}

/* Scroll Animation */
.premium-animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.premium-animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* Mobile Tweaks */
@media (max-width: 767.98px) {
    .premium-tab-link {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    .article-title {
        font-size: 1.1rem;
    }
    .article-meta {
        gap: 10px;
        font-size: 0.8rem;
    }
}

 



 .multimedia-section {
            background-color: #f4f4f5;
            padding: 60px 50px;
			overflow-x: hidden; /* Prevent horizontal scrolling */
        }
        
        @media (max-width: 768px) {
            .multimedia-section {
                padding: 20px 30px;
            }
        }
        
        .section-heading {
            font-size: 20px;
			color: #ed3733;
			font-weight: bold;
            margin-bottom: 30px;
        }
        
        .video-container {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
            overflow: hidden;
            margin-bottom: 15px;
            background: #000;
        }
        
        .video-container iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }
        
        .video-title {
            font-weight: 600;
            margin-top: 10px;
        }
        
        .video-item {
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .video-item.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .pagination {
            justify-content: right;
            margin-top: 30px;
			
			
        }
        
        .page-item.active .page-link {
            background-color: #ed3733;
            border-color: #ed3733;
        }
        
        .page-link {
            color: #ed3733;
        }
        
        .loading-spinner {
            display: flex;
            justify-content: center;
            padding: 40px;
        }
		
		
		
		
		


 




 
		
		
		


/* 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;
            }
        }










/* Custom CSS */
.footer {
    background-color: #fff;
    color: #333;
    overflow: hidden;
    width: 100%;
    /* Desktop padding */
    padding: 60px 50px;
}

/* 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: 16px;
    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: 15px;
}

.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: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #999;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
    transition: all 0.3s;
	font-size: 12px;
}

.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: 30px;
    height: 30px;
    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: 30px;
    height: 30px;
    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;
    }
}


/*region*/

 .region {
  background-color: #fff;
  padding: 40px 40px;
  overflow: hidden;
}

.region h3 {
  font-size: 20px;
  font-weight: bold;
  color: #ee3733;
  
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* SLIDER STYLING */
.slider-wrapper {
  position: relative;
  overflow: hidden;
}

.slider-container {
  display: flex;
  transition: transform 0.5s ease;
  gap: 20px;
}

.slider-item {
  min-width: calc(20% - 16px);
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  
}
.slider-item p{
 font-size: 16px; font-weight: bold;
 padding: 4px 0px;
}
.slider-item img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  
  border-bottom: 2px solid #eee;
}

.slider-arrow {
  position: absolute;
  top: 30%;
  background: rgba(255, 255, 255, 0.5);
  color: #353131;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.arrow-left {
  left: 0;
}

.arrow-right {
  right: 0;
}

.explore-btn {
  float: right;
  margin-top: 20px;
  padding: 10px 30px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  background: #ee3733;
}

/* MOBILE SETTINGS */
@media (max-width: 767px) {
  .region {
    padding: 20px 20px;
  }

  .region h3 {
    font-size: 18px;
    margin-bottom: 15px;
    text-align: left;
  }

  .slider-container {
    gap: 10px;
  }

  .slider-item {
    min-width: calc(33.33% - 10px);
	font-size: 16px;
	
  }

  .slider-arrow {
    top: 20%;
    padding: 8px;
  }

  .explore-btn {
    float: right;
    display: block;
    width: auto;
    text-align: center;
    margin-top: -20px;
    font-size: 17px;
    padding: 10px 20px;
  }
}



	
 
 
 /* Custom CSS for Announcement Row */
.announcement-row {
    padding: 40px 20px;
    background: #f9fbfd;
    margin: 30px 0;
}

.announcement-row .section-heading {
    color: #ee3733;;
    font-size: 18px;
    margin-bottom: 20px;
    text-align: leftr;
}

.announcement-row .table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.announcement-row .custom-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.announcement-row .custom-table th {
    background: #024CA1;
    color: white;
    padding: 15px;
    text-align: left;
    position: sticky;
    top: 0;
}

.announcement-row .custom-table td {
    padding: 12px 15px;
    border-bottom: 1px solid #e3e8ee;
    color: #4a5568;
}

.announcement-row .custom-table tr:last-child td {
    border-bottom: none;
}

.announcement-row .download-link i {
    font-size: 20px;
    color: #024CA1;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.announcement-row .download-link i:hover {
    color: #e53e3e;
    transform: translateY(-2px);
}

/* Animation Styles */
.announcement-row .animate-row {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.announcement-row .animate-row.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .announcement-row {
        padding: 25px 10px;
    }
    
    .announcement-row .section-heading {
        font-size: 22px;
    }
    
    .announcement-row .custom-table th,
    .announcement-row .custom-table td {
        padding: 10px;
        font-size: 14px;
    }
    
    .announcement-row .download-link i {
        font-size: 18px;
    }
}


/* 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 70%;
    max-width: 70%;
    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 30%;
    max-width: 30%;
    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: 50%;
    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: 12px;
    height: 4px;
    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: 600px;
    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%;
    height: auto;
    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;
    }
}


     /* Main Container */
        /* Main Container */
.dashboard-container {
    background: #f4f4f4;
    padding: 30px 30px;
    width: 100%;
    position: relative;
    overflow: hidden;
}
 
@media (max-width: 767.98px) {
    .dashboard-container {
        padding: 30px 20px;
    }
}
 
/* Primary Tabs - Modern Design */
.primary-tabs {
    display: flex;
    gap: 1px;
    margin-bottom: 30px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 10px;
}
 
.primary-tabs::-webkit-scrollbar {
    display: none;
}
 
.primary-tab {
    padding: 12px 24px;
    background: #f4f4f4;
    border-radius: 0px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none;
    font-size: 16px;
    position: relative;
    overflow: hidden;
}
 
.primary-tab:hover {
    background: #fff;
    transform: translateY(-2px);
}
 
.primary-tab.active {
    background: #f4f4f4;
    color: #333;
    border-bottom: 2px solid #ee3733;
}
 
.primary-tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: #ee3733;
    border-radius: 3px;
}
 
/* Mobile adjustments for primary tabs */
@media (max-width: 767.98px) {
    .primary-tab {
        font-size: 13px;
        padding: 10px 8px;
    }
    .primary-tab.active::after {
        bottom: -8px;
        height: 2px;
    }
}
 
/* Article Grid Layout */
.article-grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
 
@media (max-width: 991.98px) {
    .article-grid-container {
        grid-template-columns: 1fr;
    }
}
 
/* Article Card */
.article-card {
    display: grid;
    grid-template-areas: 
        "image content"
        "footer footer";
    grid-template-columns: 45% 55%;
    grid-template-rows: auto 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    height: 100%;
	Padding: 10px;
}
 
@media (max-width: 767.98px) {
    .article-card {
        grid-template-areas: 
            "image"
            "content"
            "footer";
        grid-template-columns: 1fr;
        grid-template-rows: 200px auto 60px;
    }
}
 
.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}
 
/* Image Column */
.article-image {
    grid-area: image;
    position: relative;
    overflow: hidden;
}
 
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: 100%;
    transition: transform 0.5s ease;
}
 
.article-card:hover .article-image img {
    transform: scale(1.05);
}
 
.image-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ee3733;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}
 
/* Content Column */
.article-content {
    grid-area: content;
    padding: 25px;
    display: flex;
    flex-direction: column;
}
 
.article-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.article-card:hover .article-title {
    color: #ee3733;
}
 
.article-excerpt {
    color: #4a5568;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}
 
/* Mobile adjustments for article content */
@media (max-width: 767.98px) {
    .article-content {
        padding: 20px;
    }
    .article-title {
        font-size: 1.1rem;
    }
    .article-excerpt {
        font-size: 0.9rem;
    }
}
 
/* Meta Information */
.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: auto;
    font-size: 0.85rem;
}
 
.meta-item {
    display: flex;
    align-items: center;
    color: #718096;
}
 
.meta-item i {
    margin-right: 6px;
    font-size: 0.9rem;
}
 
/* Continue Reading Footer */
.article-footer {
    grid-area: footer;
    display: flex;
    align-items: center;
    justify-content: flex-end; /* Changed to align right */
    padding: 0 25px;
    background: #fff; /* Changed to white */
}
 
.read-more {
    display: inline-flex;
    align-items: center;
    color: #ee3733;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.read-more i {
    margin-left: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
 
.read-more:hover {
    color: #d62f2b;
}
 
.read-more:hover i {
    transform: translateX(3px);
}
 
/* Mobile adjustments for footer */
@media (max-width: 767.98px) {
    .article-footer {
        padding: 0 20px;
    }
}
 
/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}
 
.tab-content {
    animation: fadeIn 0.4s ease;
}


        


/* 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;
    }
}


.infographics {
  background: white;
  padding: 40px 25px;
  overflow: hidden;
  width:100%;
}

.infographics .heading{
	 font-size: 20px;
    font-weight: bold;
    color: #ed3733;
}
.infographics .main-row > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.infographics .main-row > *.active {
  opacity: 1;
  transform: translateY(0);
}

.infographics .scroll-container {
  overflow-x: auto;
  padding-bottom: 15px;
}

.infographics .category {
  
  font-weight: 600;
  font-size: 16px;
  margin: 10px 0;
  color: #ed3733;
}

.infographics .title {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.infographics .date {
  color: #999;
  font-size: 0.85rem;
}

.infographics .explore-btn {
  margin-top: 30px;
  padding: 12px 35px;
}

@media (max-width: 768px) {
  .infographics {
    padding: 20px 20px;
  }
  
  .infographics .scroll-container .col-md-3 {
    min-width: 280px;
  }
}

/* Features */
.circle-gallery-container {
    background-color: white;
    padding: 60px 40px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .circle-gallery-container {
        padding: 30px 10px;
    }
	
	.seventh-slider-arrow-left{display:none !important;}
	.seventh-slider-arrow-right{display:none !important;}
}


.services-header {
    margin-bottom: 40px;
    overflow: hidden;
}

.services-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ee3733;
    margin-bottom: 15px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}


.services-content {
    font-size: 18px;
    color: #333;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease-out 0.2s;
}

.services-header.animated .services-heading,
.services-header.animated .services-content {
    opacity: 1;
    transform: translateY(0);
}

.circle-gallery-row {
    display: flex;
    align-items: center;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-top: -20px;
    padding: 20px 0; /* Added padding for better spacing */
}

.circle-gallery-row::-webkit-scrollbar {
    display: none;
}

.circle-col {
    flex: 0 0 auto;
    width: calc(100% / 7);
    min-width: 80px;
    scroll-snap-align: start;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px;
    opacity: 1;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

.circle-gallery-row.animated .circle-col {
    opacity: 1;
    transform: translateY(0);
}

.circle-col:nth-child(1) { transition-delay: 0.3s; }
.circle-col:nth-child(2) { transition-delay: 0.4s; }
.circle-col:nth-child(3) { transition-delay: 0.5s; }
.circle-col:nth-child(4) { transition-delay: 0.6s; }
.circle-col:nth-child(5) { transition-delay: 0.7s; }
.circle-col:nth-child(6) { transition-delay: 0.8s; }
.circle-col:nth-child(7) { transition-delay: 0.9s; }

.circle-col p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 20px;
    text-align: center;
    color: #333;
}

/* Fixed circle image container for Firefox */
.circle-image-container {
    position: relative;
    width: 100%;
    padding-bottom: 100%; /* Creates a square aspect ratio */
    border-radius: 50%;
    background-color: #024ca1;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.circle-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 25%;
    transition: transform 0.3s;
}

.circle-col:hover .circle-image {
    transform: scale(1.1);
}

.circle-connector {
    position: absolute;
    top: 35%;
    left: -20px;
    width: 60px;
    height: 2px;
    background-color: #024ca1;
}

.circle-col:first-child .circle-connector {
    display: none;
}


.scroll-arrow {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    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;
}

.scroll-arrow-left {
    left: 10px;
}

.scroll-arrow-right {
    right: 10px;
}

.circle-gallery-container:hover .scroll-arrow {
    opacity: 1;
}

.scroll-arrow svg {
    width: 20px;
    height: 20px;
    fill: #333;
}

.scroll-arrow-left {
    display: none;
}

/* Tablets */
@media (max-width: 992px) {
    .circle-col {
        width: calc(100% / 4);
    }
    .circle-col p {
        font-size: 12px;
    }
    .services-heading {
        font-size: 20px;
    }
    .services-content {
        font-size: 18px;
    }
}

/* Mobile landscape and below */
@media (max-width: 768px) {
    .circle-gallery-row {
        flex-wrap: wrap;
        overflow-x: hidden;
        margin-top: -40px;
    }

    .circle-col {
        width: calc(100% / 4);
        min-width: auto;
    }

    .services-heading {
        font-size: 1.6rem;
    }
}

/* Mobile portrait */
@media (max-width: 576px) {
    .circle-col {
        width: calc(100% / 3);
    }

    .services-heading {
        font-size: 1.4rem;
    }

    .services-content {
        font-size: 0.9rem;
    }
}

.item{
    padding: 15px 0;
    border-bottom: 1px solid #dddddd;
    margin-bottom: 15px;
}


/* 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: 15px;
  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: 3px 6px;
  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: 1;
  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;
}

.explore-button a{
	color:#ffffff;
}


/* Explore Button */
.service-explore-button {
  background-color: #ee3733;
  color: white;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  opacity: 1;
  transform: translateY(20px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
  display: inline-block;
  float:right;
  margin-top:-30px;
}

.service-explore-button:hover {
  background-color: #d62e2a;
}

.service-explore-button a{
	color:#ffffff !important;
}

.paddingtop0{
	padding-top:0 !important;
}

.paddingbottom0{
	padding-bottom:0 !important;
}

/* 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);
  }
}



/* 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;
    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;
    }
}



/* 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;
}







/* data-page-row-1 */
 .data-page-row-1 {
        padding: 20px 40px;
    }
 
	
	
    .data-row-content {
        margin-left: 0;
        margin-right: 0;
        border-radius: 8px;
        overflow: hidden;
    }
    
    .bg-light {
        background-color: #f8f9fa;
    }
    
    h4 {
        font-size: 20px;
        font-weight: 700;
        color: #ee3733;
    }
    
    .subtitle {
        font-size: 18px;
        color: #777;
        margin-bottom: 15px;
    }
    
    .description {
        font-size: 16px;
        color: #555;
        line-height: 1.6;
    }
    
    .explore-button {
        display: inline-block;
        padding: 12px 30px;
        background-color: #024CA1;
        color: white;
        text-decoration: none;
        border-radius: 8px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .explore-button:hover {
        background-color: #076bdd;
        color: white;
    }
    
    .img-fluid {
        border-radius: 8px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }
    
    /* Mobile specific styles */
    @media (max-width: 768px) {
        .data-page-row-1 {
            padding: 15px 0;
        }
        
        .data-row-content {
            margin-bottom: 30px !important;
            padding: 20px 15px !important;
        }
        
        h4 {
            font-size: 20px;
        }
        
        .subtitle {
            font-size: 16px;
        }
        
        .description {
            font-size: 15px;
        }
        
        .explore-button {
            padding: 10px 20px;
            font-size: 14px;
        }
        
        .order-1 {
            order: 1;
        }
        
        .order-2 {
            order: 2;
        }
        
        .mb-3 {
            margin-bottom: 1rem !important;
        }
    }



    /* Client Section */
    .clientdetails {
      background-color: #fff;
      padding: 50px;
      overflow: hidden;
    }
	 .clientdetails h3{
		 font-size: 18px;
  font-weight: bold;
  color: #ee3733;
	 }
	
	

    @media (max-width: 768px) {
      .clientdetails {
        padding: 20px 30px;
      }
    }

    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      
    }

    .fade-in.visible {
      opacity: 1;
    
    }
	

/* Carousel Container */
    .client-carousel1 {
      display: flex;
      gap: 30px;
      overflow: hidden;
      white-space: nowrap;
      position: relative;
    }

    .client-carousel1 img {
      width: 100%;
      height: 60px;
      object-fit: cover;
      filter: grayscale(100%);
      
	  Padding:5px 0px;
    }

    .client-carousel1 img:hover {
      filter: grayscale(0%);
      
    }

    /* Hide scrollbar */
    .client-carousel1::-webkit-scrollbar {
      display: none;
    }

    .client-carousel1 {
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    /* Animation */
    @keyframes scroll-left {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    @keyframes scroll-right {
      0% { transform: translateX(0); }
      100% { transform: translateX(-20%); }
    }
	

    .scrolling-wrapper1 {
      display: flex;
      animation: scroll-left 30s linear infinite;
    }

    .scrolling-wrapper1.reverse {
		  display: flex;
      animation: scroll-right 30s linear infinite;
    }