/* Page Header Dark Overlay */
.page-header-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.99);
    z-index: 0;
}

/*************************/
/* Responsive Header Fixes */
@media (max-width: 992px) {
    /* Hide top header completely on mobile */
    .top-header {
        display: none !important;
    }
    
    /* Ensure main header is properly positioned */
    .main-header {
        position: relative !important;
        z-index: 1000 !important;
    }
    
    /* Fix header container layout */
    .main-header-wapper {
        grid-template-columns: auto 1fr !important;
        gap: 15px;
        align-items: center;
    }
    
    /* Adjust header menu wrapper */
    .header-menu-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
    }
    
    /* Ensure mobile menu icon is visible */
    .mobile-menu-icon {
        display: block !important;
    }
    
    /* Hide desktop navigation */
    .nav-menu {
        display: none !important;
    }
    
    /* Hide desktop CTA button */
    .default-btn.d-none.d-lg-block.d-md-block {
        display: none !important;
    }
    
    /* Fix container padding */
    .main-header .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        height: auto !important;
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }
}

@media (max-width: 768px) {
    /* Further mobile optimizations */
    .main-header-wapper {
        grid-template-columns: auto 1fr !important;
        gap: 10px;
    }
    
    .site-logo img {
        width: 120px !important;
        height: auto !important;
    }
    
    .header-menu-wrap {
        padding: 10px 0 !important;
    }
}

/* Tablet specific fixes */
@media (min-width: 768px) and (max-width: 992px) {
    .main-header .container {
        padding-left: 25px !important;
        padding-right: 25px !important;
    }
    
    .site-logo img {
        width: 150px !important;
    }
    
    .main-header-wapper {
        grid-template-columns: 150px 1fr !important;
        gap: 20px;
    }
}

/* Large desktop fixes */
@media (min-width: 1200px) {
    .main-header .container {
        padding-left: 70px !important;
        padding-right: 70px !important;
    }
}

/*************************/

/* Mission, Vision & Values Section */
.mvv-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.mvv-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(207, 55, 64, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mvv-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(207, 55, 64, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.mvv-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(207, 55, 64, 0.08);
}

.mvv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(207, 55, 64, 0.15);
}

.mvv-icon-wrap {
    margin-bottom: 24px;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(207, 55, 64, 0.3);
    transition: all 0.4s ease;
}

.mvv-card:hover .mvv-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(207, 55, 64, 0.4);
}

.mvv-icon i {
    font-size: 36px;
    color: #ffffff;
}

.mvv-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    text-align: center;
    font-family: var(--primary-font);
}

.mvv-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    text-align: center;
    margin: 0;
}

.mvv-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cf3740 0%, #ff6b6b 50%, #cf3740 100%);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.4s ease;
}

.mvv-card:hover .mvv-decoration {
    transform: scaleX(1);
}

.mvv-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mvv-values-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: #444;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mvv-values-list li:last-child {
    border-bottom: none;
}

.mvv-values-list li:hover {
    padding-left: 8px;
    color: #cf3740;
}

.mvv-values-list li i {
    font-size: 20px;
    color: #cf3740;
    flex-shrink: 0;
}

@media (max-width: 991px) {
    .mvv-card {
        padding: 30px 24px;
    }
    .mvv-icon {
        width: 70px;
        height: 70px;
        border-radius: 16px;
    }
    .mvv-icon i {
        font-size: 30px;
    }
    .mvv-title {
        font-size: 22px;
    }
}

@media (max-width: 767px) {
    .mvv-section {
        padding: 60px 0;
    }
    .mvv-card {
        padding: 28px 20px;
    }
    .mvv-icon {
        width: 64px;
        height: 64px;
        border-radius: 14px;
    }
    .mvv-icon i {
        font-size: 28px;
    }
    .mvv-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    .mvv-text {
        font-size: 14px;
    }
    .mvv-values-list li {
        font-size: 14px;
        padding: 8px 0;
        justify-content: flex-start;
    }
    .mvv-values .row {
        justify-content: center;
    }
    .mvv-values .col-lg-6 {
        display: flex;
        justify-content: center;
        width: auto;
        flex: none;
    }
    .mvv-values-list {
        display: inline-block;
        min-width: 200px;
    }
}

/* CSR Gallery Section */
.csr-gallery-section {
    background: #f8f9fa;
}

/* CSR Flip Card Styles */
.csr-flip-grid {
    display: flex;
    flex-wrap: wrap;
}

.csr-flip-card {
    perspective: 1000px;
    height: 350px;
    width: 100%;
}

.csr-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.csr-flip-card:hover .csr-card-inner {
    transform: rotateY(180deg);
}

.csr-card-front,
.csr-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

.csr-card-front {
    background: #fff;
}

.csr-card-front img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.csr-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    padding: 60px 20px 20px;
    text-align: center;
}

.csr-card-title {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px;
}

.csr-card-hint {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.csr-card-hint i {
    font-size: 16px;
    animation: rotateHint 2s ease-in-out infinite;
}

@keyframes rotateHint {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

.csr-card-back {
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    transform: rotateY(180deg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.csr-back-content {
    text-align: center;
    color: #fff;
}

.csr-back-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    backdrop-filter: blur(10px);
}

.csr-back-icon i {
    font-size: 32px;
    color: #fff;
}

.csr-back-content h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.csr-back-content p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.csr-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.2);
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.csr-view-btn:hover {
    background: #fff;
    color: #cf3740;
    transform: scale(1.05);
}

.csr-view-btn i {
    font-size: 16px;
}

@media (max-width: 991px) {
    .csr-flip-card {
        height: 320px;
    }
    .csr-card-title {
        font-size: 18px;
    }
    .csr-back-content h4 {
        font-size: 20px;
    }
    .csr-back-content p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .csr-flip-card {
        height: 300px;
    }
    .csr-card-back {
        padding: 20px;
    }
    .csr-back-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
    .csr-back-icon i {
        font-size: 26px;
    }
    .csr-back-content h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .csr-back-content p {
        font-size: 12px;
        line-height: 1.6;
        margin-bottom: 15px;
    }
    .csr-view-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Video Hero Section */
.video-hero-section {
    position: relative;
    width: 100%;
    height: 700px;
    overflow: hidden;
}

.video-hero-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.video-hero-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: grayscale(100%);
}

.video-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.video-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 0 10%;
}

.video-text-box {
    position: relative;
    padding: 40px 50px;
    border-left: 4px solid #cf3740;
}

.video-text-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 4px;
    background: #cf3740;
}

.video-text-box::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 150px;
    height: 4px;
    background: #cf3740;
}

.video-hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.video-hero-title .text-white {
    color: #ffffff;
}

.video-hero-title .text-highlight {
    color: #cf3740;
}

@media (max-width: 991px) {
    .video-hero-section {
        height: 400px;
    }
    .video-hero-title {
        font-size: 32px;
    }
    .video-text-box {
        padding: 30px 35px;
    }
}

@media (max-width: 767px) {
    .video-hero-section {
        height: 350px;
    }
    .video-hero-content {
        padding: 0 5%;
    }
    .video-hero-title {
        font-size: 24px;
    }
    .video-text-box {
        padding: 20px 25px;
    }
    .video-text-box::before {
        width: 120px;
    }
    .video-text-box::after {
        width: 80px;
    }
}

/* Industrial About Section */
.industrial-about-section {
    background: #fff;
}

.industrial-about-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}
.industrial-about-gebi-img {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.industrial-about-img img {
    width: 100%;
    aspect-ratio: 12 / 10;
    object-fit: cover;
    display: block;
}
.industrial-about-gebi-img img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    display: block;
}

.industrial-about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    color: #fff;
    padding: 20px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(207, 55, 64, 0.4);
}

.industrial-about-badge .badge-number {
    display: block;
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
}

.industrial-about-badge .badge-text {
    display: block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.industrial-about-content {
    padding-left: 30px;
}

.industrial-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.industrial-about-text:last-of-type {
    margin-bottom: 30px;
}

.industrial-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.industrial-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.industrial-feature-item:hover {
    background: #fff;
    border-color: rgba(207, 55, 64, 0.2);
    box-shadow: 0 5px 20px rgba(207, 55, 64, 0.1);
    transform: translateY(-3px);
}

.industrial-feature-item i {
    font-size: 28px;
    color: #cf3740;
}

.industrial-feature-item span {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

@media (max-width: 991px) {
    .industrial-about-content {
        padding-left: 0;
        padding-top: 30px;
    }
    .industrial-about-badge {
        padding: 15px 20px;
    }
    .industrial-about-badge .badge-number {
        font-size: 36px;
    }
}

@media (max-width: 767px) {
    .industrial-about-text {
        font-size: 15px;
    }
    .industrial-features-grid {
        grid-template-columns: 1fr;
    }
    .industrial-about-badge {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
    }
    .industrial-about-badge .badge-number {
        font-size: 30px;
    }
    .industrial-about-badge .badge-text {
        font-size: 14px;
    }
}

/* Business Segments Section - New Design */
.business-segments-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

/* Left Side Navigation Cards */
.segment-nav-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 600px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #cf3740 rgba(255,255,255,0.1);
}

.segment-nav-cards::-webkit-scrollbar {
    width: 6px;
}

.segment-nav-cards::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
}

.segment-nav-cards::-webkit-scrollbar-thumb {
    background: #cf3740;
    border-radius: 3px;
}

.segment-nav-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #404041;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.segment-nav-card:hover {
    background: rgba(0, 0, 0);
    border-color: rgba(207, 55, 64, 0.3);
}

.segment-nav-card.active {
    background: #cf3740;
    border-color: #cf3740;
}

.segment-nav-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.segment-nav-card.active .segment-nav-icon {
    background: rgba(255, 255, 255, 0.2);
}

.segment-nav-icon i {
    font-size: 24px;
    color: #cf3740;
}

.segment-nav-card.active .segment-nav-icon i {
    color: #fff;
}

.segment-nav-info {
    flex: 1;
}

.segment-nav-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 0 4px;
}

.segment-nav-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.segment-nav-card.active .segment-nav-info span {
    color: rgba(255, 255, 255, 0.8);
}

.segment-nav-arrow {
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.segment-nav-arrow i {
    font-size: 18px;
    color: #fff;
}

.segment-nav-card.active .segment-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Right Side Display Area */
.segment-display-area {
    height: 600px;
}

.segment-panels {
    height: 100%;
}

.segment-panel {
    display: none;
    height: 100%;
}

.segment-panel.active {
    display: flex;
    flex-direction: column;
    animation: segmentFadeIn 0.4s ease;
}

@keyframes segmentFadeIn {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.segment-display-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.segment-display-header {
    position: relative;
    height: 250px;
    overflow: hidden;
    flex-shrink: 0;
}

.segment-display-img {
    width: 100%;
    height: 100%;
}

.segment-display-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.segment-display-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.segment-badge {
    display: inline-block;
    background: #cf3740;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.segment-display-title h3 {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Info Tabs */
.segment-info-tabs {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 0 25px;
    flex-shrink: 0;
}

.info-tab {
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: #888;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
}

.info-tab::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: #cf3740;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-tab:hover {
    color: #cf3740;
}

.info-tab.active {
    color: #cf3740;
}

.info-tab.active::after {
    transform: scaleX(1);
}

/* Info Content */
.segment-info-content {
    padding: 25px;
    flex: 1;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #cf3740 #f0f0f0;
}

.segment-info-content::-webkit-scrollbar {
    width: 6px;
}

.segment-info-content::-webkit-scrollbar-track {
    background: #f0f0f0;
    border-radius: 3px;
}

.segment-info-content::-webkit-scrollbar-thumb {
    background: #cf3740;
    border-radius: 3px;
}

.segment-tab-content {
    display: none;
}

.segment-tab-content.active {
    display: flex;
    flex-direction: column;
    height: 100%;
    animation: contentFade 0.3s ease;
}

.segment-tab-content.active .segment-stats-inline {
    margin-top: auto;
}

@keyframes contentFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

.segment-tab-content p {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.segment-tab-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.segment-tab-content ul li {
    position: relative;
    padding: 10px 0 10px 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.segment-tab-content ul li:last-child {
    border-bottom: none;
}

.segment-tab-content ul li::before {
    content: "\f00c";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.segment-tab-content ul li:hover {
    padding-left: 35px;
    color: #cf3740;
}

/* Inline Stats in Key Sectors */
.segment-stats-inline {
    display: flex;
    gap: 0;
    margin-top: 25px;
    background: #404041;
    border-radius: 12px;
    overflow: hidden;
}

.segment-stats-inline .stat-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 20px 15px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.segment-stats-inline .stat-item:last-child {
    border-right: none;
}

.segment-stats-inline .stat-item:hover {
    background: rgba(207, 55, 64, 0.2);
}

.segment-stats-inline .stat-item i {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    background: #cf3740;
    border-radius: 10px;
    flex-shrink: 0;
}

.segment-stats-inline .stat-item .stat-number {
    display: block;
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.segment-stats-inline .stat-item .stat-label {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 5px;
}

@media (max-width: 991px) {
    .segment-stats-inline {
        flex-wrap: wrap;
    }
    .segment-stats-inline .stat-item {
        flex: 1 1 auto;
        min-width: 33.33%;
        padding: 15px 12px;
        gap: 10px;
    }
    .segment-stats-inline .stat-item i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .segment-stats-inline .stat-item .stat-number {
        font-size: 20px;
    }
    .segment-stats-inline .stat-item .stat-label {
        font-size: 9px;
    }
}

@media (max-width: 767px) {
    .segment-display-card {
        height: auto;
        min-height: auto;
    }
    .segment-info-content {
        overflow-y: visible;
        overflow: visible;
    }
    .segment-stats-inline {
        flex-direction: column;
        gap: 0;
        margin-top: 20px;
    }
    .segment-stats-inline .stat-item {
        padding: 14px 15px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        justify-content: flex-start;
        min-width: 100%;
    }
    .segment-stats-inline .stat-item:last-child {
        border-bottom: none;
    }
    .segment-stats-inline .stat-item i {
        width: 42px;
        height: 42px;
        font-size: 20px;
    }
    .segment-stats-inline .stat-item .stat-number {
        font-size: 22px;
    }
    .segment-stats-inline .stat-item .stat-label {
        font-size: 10px;
        margin-top: 3px;
    }
}

/* Location Tab Content Styling */
.location-content-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.location-map-circle {
    position: relative;
    width: 230px;
    height: 230px;
    flex-shrink: 0;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    box-shadow: 0 10px 40px rgba(207, 55, 64, 0.3);
}

.location-map-circle a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.location-map-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.location-map-circle:hover img {
    transform: scale(1.1);
    opacity: 0.7;
}

.location-zoom-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.location-zoom-icon i {
    font-size: 24px;
    color: #cf3740;
}

.location-map-circle:hover .location-zoom-icon {
    transform: translate(-50%, -50%) scale(1);
}

.location-pin {
    position: absolute;
    top: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 12px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.location-pin i {
    font-size: 18px;
    color: #cf3740;
}

.location-pin span {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-details {
    flex: 1;
}

.location-details h4 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 15px;
}

.location-details h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 20px 0 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-list li {
    position: relative;
    padding: 6px 0 6px 20px;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.location-list li::before {
    content: "\f111";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 8px;
    font-size: 6px;
    color: #cf3740;
}

@media (max-width: 767px) {
    .location-content-wrapper {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .location-map-circle {
        width: 160px;
        height: 160px;
    }
    .location-details h4 {
        font-size: 18px;
    }
    .location-list li {
        text-align: left;
    }
}

/* Stats Row */
.segment-stats-row {
    display: flex;
    border-top: 1px solid #eee;
    background: #fafafa;
    flex-shrink: 0;
}

.segment-stat-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    border-right: 1px solid #eee;
}

.segment-stat-box:last-child {
    border-right: none;
}

.segment-stat-box > i {
    font-size: 28px;
    color: #cf3740;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info .stat-number {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.stat-info .stat-label {
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .segment-nav-cards {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 10px;
        margin-bottom: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        padding-bottom: 15px;
        max-height: none;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: thin;
    }
    .segment-nav-cards::-webkit-scrollbar {
        height: 6px;
        width: auto;
    }
    .segment-nav-cards::-webkit-scrollbar-track {
        background: rgba(255,255,255,0.1);
        border-radius: 3px;
    }
    .segment-nav-cards::-webkit-scrollbar-thumb {
        background: #cf3740;
        border-radius: 3px;
    }
    .segment-nav-card {
        flex: 0 0 auto;
        min-width: 140px;
        padding: 12px 15px;
        scroll-snap-align: start;
    }
    .segment-nav-icon {
        width: 36px;
        height: 36px;
    }
    .segment-nav-icon i {
        font-size: 18px;
    }
    .segment-nav-info h4 {
        font-size: 13px;
    }
    .segment-nav-info span {
        display: none;
    }
    .segment-nav-arrow {
        display: none;
    }
    .segment-display-header {
        height: 180px;
    }
    .segment-display-title h3 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    .segment-nav-cards {
        gap: 8px;
        padding: 0 0 12px 0;
        margin: 0 -15px 25px -15px;
        padding-left: 15px;
        padding-right: 15px;
    }
    .segment-nav-card {
        min-width: 120px;
        padding: 10px 12px;
        gap: 10px;
        border-radius: 10px;
    }
    .segment-nav-icon {
        width: 32px;
        height: 32px;
        border-radius: 8px;
    }
    .segment-nav-icon i {
        font-size: 16px;
    }
    .segment-nav-info h4 {
        font-size: 12px;
        margin: 0;
        line-height: 1.3;
    }
    .segment-display-header {
        height: 160px;
    }
    .segment-display-title {
        padding: 20px;
    }
    .segment-display-title h3 {
        font-size: 20px;
    }
    .segment-info-tabs {
        padding: 0 15px;
        overflow-x: auto;
    }
    .info-tab {
        padding: 12px 15px;
        font-size: 13px;
        white-space: nowrap;
    }
    .segment-info-content {
        padding: 20px 15px;
        max-height: 350px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .segment-tab-content p {
        font-size: 14px;
    }
    .segment-tab-content.active {
        height: auto;
        display: block;
    }
    .segment-stats-row {
        flex-direction: column;
    }
    .segment-stat-box {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding: 15px 20px;
    }
    .segment-stat-box:last-child {
        border-bottom: none;
    }
}

/* Updates & Stats Section */
.updates-stats-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.padding {
    padding: 80px 0;
}

/* Latest Updates Styles */
.updates-wrapper {
    height: 100%;
}

.updates-scroll-container {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(207, 55, 64, 0.1);
    height: 100%;
    min-height: 550px;
    overflow: hidden;
    position: relative;
    padding: 20px;
}

.updates-scroll-content {
    animation: scroll-updates 30s linear infinite;
}

.updates-scroll-content:hover {
    animation-play-state: paused;
}

@keyframes scroll-updates {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-50%);
    }
}

.update-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.update-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(207, 55, 64, 0.12);
    border-color: rgba(207, 55, 64, 0.25);
}

.update-icon {
    font-size: 22px;
    min-width: 44px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(207, 55, 64, 0.08);
    color: #cf3740;
}

.update-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
}

.update-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #404041;
    margin: 0;
    font-family: var(--primary-font);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-content p {
    display: none;
}

.update-date {
    font-size: 12px;
    font-weight: 600;
    color: #cf3740;
    background: rgba(207, 55, 64, 0.08);
    padding: 6px 10px;
    border-radius: 999px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Stats Counter Styles */
.stats-wrapper {
    height: 100%;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    height: 100%;
    min-height: 550px;
    align-content: start;
}

.updates-stats-section .stat-card {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
    border-radius: 14px;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    min-height: 220px;
    isolation: isolate;
}

.updates-stats-section .stat-card::after {
    content: "";
    position: absolute;
    inset: -20% -10% auto auto;
    width: 120px;
    height: 120px;
    background: radial-gradient(closest-side, rgba(207, 55, 64, 0.12), transparent 70%);
    transform: translate(20%, -20%);
    pointer-events: none;
    z-index: -1;
}

.updates-stats-section .stat-card:nth-child(3) {
    /*grid-column: 1 / -1;*/
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.updates-stats-section .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(207, 55, 64, 0.15);
    border-color: rgba(207, 55, 64, 0.35);
}

.updates-stats-section .stat-icon {
    font-size: 44px;
    min-width: 76px;
    width: 76px;
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(207, 55, 64, 0.08), rgba(207, 55, 64, 0.04));
    box-shadow: inset 0 0 0 2px rgba(207, 55, 64, 0.15), 0 6px 18px rgba(207, 55, 64, 0.12);
    color: #cf3740;
}

.updates-stats-section .stat-content h3 {
    font-size: 38px;
    font-weight: 800;
    color: #404041;
    margin-bottom: 4px;
    font-family: var(--primary-font);
    line-height: 1;
    letter-spacing: -0.02em;
}

.updates-stats-section .stat-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #cf3740;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-family: var(--primary-font);
}

.updates-stats-section .stat-content p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce) {

    .updates-stats-section .stat-card,
    .updates-stats-section .stat-card:hover {
        transition: none;
        transform: none;
    }
}

/* Section Heading */
.section-heading h3 {
    font-size: 18px;
    font-weight: 500;
    text-transform: capitalize;
    margin-bottom: 10px;
    padding-left: 0 !important;
}

.section-heading h2 {
    font-size: 36px;
    font-weight: 700;
    color: #404041;
    margin-bottom: 0;
}

.section-heading.text-center {
    margin-bottom: 40px;
}

.mb-5 {
    margin-bottom: 3rem !important;
}

.mt-20 {
    margin-top: 3rem !important;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .updates-scroll-container {
        height: 400px;
        min-height: 400px;
        margin-bottom: 40px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
        min-height: auto;
    }

    .updates-stats-section .stat-card {
        min-height: auto;
        padding: 22px 18px;
    }

    .stat-card:nth-child(3) {
        grid-column: 1;
        max-width: 100%;
    }

    .section-heading h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .padding {
        padding: 50px 0;
    }

    .updates-scroll-container {
        height: 350px;
        min-height: 350px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
        min-height: auto;
    }

    .updates-stats-section .stat-card {
        padding: 18px 14px;
        min-height: auto;
    }

    .stat-card:nth-child(3) {
        grid-column: 1;
    }

    .updates-stats-section .stat-icon {
        font-size: 36px;
        width: 64px;
        height: 64px;
        min-width: 64px;
        border-radius: 12px;
    }

    .updates-stats-section .stat-content h3 {
        font-size: 30px;
    }

    .updates-stats-section .stat-content h4 {
        font-size: 14px;
    }

    .stat-content p {
        font-size: 12px;
    }

    .update-item {
        gap: 12px;
        padding: 14px;
    }

    .update-icon {
        min-width: 40px;
        width: 40px;
        height: 40px;
        font-size: 20px;
        border-radius: 8px;
    }

    .update-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .update-content h4 {
        font-size: 15px;
        -webkit-line-clamp: 2;
    }

    .update-date {
        align-self: flex-start;
    }

    .section-heading h2 {
        font-size: 24px;
    }

    .mb-5 {
        margin-bottom: 2rem !important;
    }
}

@media (min-width: 992px) {

    .updates-wrapper,
    .stats-wrapper {
        height: 100%;
    }

    .row.g-4 {
        align-items: stretch;
    }
}

/* Success Story */
/* Success Stories Section */
.success-stories-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(207, 55, 64, 0.2), transparent);
}

.success-stories-slider-wrapper {
    position: relative;
    padding: 20px 0;
}

.success-stories-swiper {
    padding: 40px 60px 60px;
    overflow: visible;
}

.success-stories-swiper .swiper-slide {
    height: auto;
    display: flex;
}

.story-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(207, 55, 64, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(207, 55, 64, 0.2);
    border-color: rgba(207, 55, 64, 0.3);
}

.story-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.story-card:hover .story-image img {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(207, 55, 64, 0.3) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 20px;
}

.story-card:hover .story-overlay {
    opacity: 1;
}

.company-logo-badge {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #cf3740;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease 0.1s;
}

.story-card:hover .company-logo-badge {
    transform: translateY(0);
    opacity: 1;
}

.story-content {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.company-name {
    font-size: 22px;
    font-weight: 700;
    color: #cf3740;
    margin: 0 0 8px 0;
    font-family: var(--primary-font);
    line-height: 1.3;
}

.founder-name {
    font-size: 14px;
    font-weight: 600;
    color: #666;
    margin: 0 0 15px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.story-description {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin: 0 0 20px 0;
    flex: 1;
}

.story-stats {
    display: flex;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #404041;
}

.stat-item i {
    font-size: 18px;
    color: #cf3740;
}

/* Navigation Buttons */
.success-nav-prev,
.success-nav-next {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 4px 20px rgba(207, 55, 64, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cf3740;
    font-size: 24px;
    transition: all 0.3s ease;
    border: 2px solid rgba(207, 55, 64, 0.2);
}

.success-nav-prev:hover,
.success-nav-next:hover {
    background: #cf3740;
    color: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(207, 55, 64, 0.3);
}

.success-nav-prev::after,
.success-nav-next::after {
    display: none;
}

.success-nav-prev {
    left: 10px;
}

.success-nav-next {
    right: 10px;
}

/* Pagination */
.success-pagination {
    bottom: 10px !important;
}

.success-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
    transition: all 0.3s ease;
}

.success-pagination .swiper-pagination-bullet-active {
    background: #cf3740;
    width: 30px;
    border-radius: 6px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .success-stories-swiper {
        padding: 30px 50px 50px;
    }

    .story-image {
        height: 250px;
    }

    .company-name {
        font-size: 20px;
    }

    .story-content {
        padding: 25px 20px;
    }
}

@media (max-width: 767px) {
    .success-stories-swiper {
        padding: 20px 15px 50px;
    }

    .story-image {
        height: 220px;
    }

    .company-name {
        font-size: 18px;
    }

    .story-content {
        padding: 20px 18px;
    }

    .story-description {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .success-nav-prev,
    .success-nav-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .success-nav-prev {
        left: 0;
    }

    .success-nav-next {
        right: 0;
    }

    .story-stats {
        gap: 15px;
    }

    .stat-item {
        font-size: 12px;
    }

    .stat-item i {
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .story-image {
        height: 200px;
    }

    .company-logo-badge {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .story-stats {
        flex-direction: column;
        gap: 10px;
    }
}

/* Animation on scroll */
.success-stories-section .story-card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Our Presence Section */
.our-presence-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.our-presence-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.02) 0%, rgba(207, 55, 64, 0.05) 100%);
    pointer-events: none;
}

.presence-content {
    position: relative;
    z-index: 1;
}

.presence-description p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 20px;
    text-align: justify;
}

.presence-highlights {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 30px 0;
    padding: 25px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-left: 4px solid #cf3740;
    border-radius: 8px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #404041;
}

.highlight-item i {
    font-size: 24px;
    color: #cf3740;
    min-width: 30px;
}

/* Presence Stats Grid */
.presence-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.presence-stat-item {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 25px 20px;
    border-radius: 12px;
    border: 2px solid rgba(207, 55, 64, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

.presence-stat-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #cf3740, #e74c3c);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.presence-stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(207, 55, 64, 0.15);
    border-color: rgba(207, 55, 64, 0.3);
}

.presence-stat-item:hover::before {
    transform: scaleX(1);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.1), rgba(207, 55, 64, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.presence-stat-item:hover .stat-icon-wrapper {
    background: linear-gradient(135deg, #cf3740, #e74c3c);
}

.stat-icon-wrapper i {
    font-size: 32px;
    color: #cf3740;
    transition: color 0.3s ease;
}

.presence-stat-item:hover .stat-icon-wrapper i {
    color: #ffffff;
}

.stat-details {
    flex: 1;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #404041;
    margin: 0;
    line-height: 1;
    font-family: var(--primary-font);
    display: inline-block;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    color: #cf3740;
    margin-left: 2px;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin: 5px 0 0;
    font-weight: 500;
    line-height: 1.3;
}

/* Map Wrapper */
.presence-map-wrapper {
    position: relative;
    padding: 40px 20px;
}

.map-container {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* India Map Image Styles */
.india-map-image {
    width: 100%;
    height: auto;
    max-width: 784px;
    margin: 0 auto;
    display: block;
    border-radius: 12px;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
    transition: all 0.3s ease;
}

.india-map-image:hover {
    transform: scale(1.02);
    filter: drop-shadow(0 15px 40px rgba(207, 55, 64, 0.2));
}

/* Responsive Styles */
@media (max-width: 991px) {
    .presence-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .presence-map-wrapper {
        margin-top: 40px;
        padding: 20px 10px;
    }

    .india-map-image {
        max-width: 600px;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media (max-width: 767px) {
    .presence-description p {
        font-size: 15px;
        text-align: left;
    }

    .presence-stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-top: 30px;
    }

    .presence-stat-item {
        padding: 20px 18px;
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .stat-icon-wrapper i {
        font-size: 26px;
    }

    .stat-number {
        font-size: 28px;
    }

    .stat-suffix {
        font-size: 20px;
    }

    .stat-label {
        font-size: 12px;
    }

    .india-map-image {
        max-width: 450px;
    }

    .presence-highlights {
        padding: 20px;
        margin: 25px 0;
    }

    .highlight-item {
        font-size: 14px;
    }

    .highlight-item i {
        font-size: 20px;
    }
}

@media (max-width: 575px) {
    .presence-stat-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .india-map-image {
        max-width: 100%;
    }
}

/* Clientele Section */
.clientele-section {
    background: #fff;
    position: relative;
}

.clientele-logo-slider {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 70px;
}

.clientele-swiper {
    overflow: hidden;
    padding: 20px 10px 40px;
}

/* Client Logo Item */
.client-logo-item {
    text-align: center;
}

.client-photo {
    position: relative;
    width: 100%;
    max-width: 380px;
    height: 340px;
    margin: 0 auto 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.client-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.client-logo-item:hover .client-photo img {
    transform: scale(1.05);
}

/* Photo Overlay with Logo */
.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: 120px;
}

.logo-badge {
    width: 110px;
    height: 110px;
    background: #ffffff;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.client-logo-item:hover .logo-badge {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(207, 55, 64, 0.3);
}

.logo-badge img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo-item h5 {
    font-size: 17px;
    font-weight: 600;
    color: #404041;
    margin: 0;
    padding: 0 10px;
    line-height: 1.4;
    font-family: var(--primary-font);
    transition: color 0.3s ease;
}

.client-logo-item:hover h5 {
    color: #cf3740;
}

/* Navigation Arrows */
.clientele-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    color: #404041;
    font-size: 24px;
}

.clientele-arrow:hover {
    background: #cf3740;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(207, 55, 64, 0.3);
}

.clientele-prev {
    left: 10px;
}

.clientele-next {
    right: 10px;
}

.clientele-arrow.swiper-button-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Responsive */
@media (max-width: 991px) {
    .clientele-logo-slider {
        padding: 0 60px;
    }

    .client-photo {
        max-width: 240px;
        height: 200px;
    }

    .logo-badge {
        width: 80px;
        height: 80px;
        padding: 10px;
    }

    .client-logo-item h5 {
        font-size: 14px;
    }
}

@media (max-width: 767px) {
    .clientele-logo-slider {
        padding: 0 50px;
    }

    .client-photo {
        max-width: 220px;
        height: 180px;
    }

    .logo-badge {
        width: 70px;
        height: 70px;
        padding: 8px;
    }

    .clientele-arrow {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }

    .client-logo-item h5 {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .clientele-logo-slider {
        padding: 0 45px;
    }

    .client-photo {
        max-width: 200px;
        height: 160px;
    }

    .logo-badge {
        width: 65px;
        height: 65px;
        padding: 8px;
    }

    .clientele-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .clientele-prev {
        left: 5px;
    }

    .clientele-next {
        right: 5px;
    }
}

/* Consultancy Services Section - Modern Design */
.consultancy-services-section {
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.consultancy-services-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.02) 0%, rgba(207, 55, 64, 0.05) 100%);
    pointer-events: none;
}

.consultancy-services-section .container {
    position: relative;
    z-index: 1;
}

/* Section Header */
.consultancy-services-section .section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.1), rgba(207, 55, 64, 0.05));
    color: #cf3740;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(207, 55, 64, 0.2);
}

.consultancy-services-section .section-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.consultancy-services-section .highlight-text {
    background: linear-gradient(135deg, #cf3740, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consultancy-services-section .section-description {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.mb-60 {
    margin-bottom: 60px;
}

/* Services Grid */
.services-modern-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

/* Modern Service Card */
.modern-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.modern-service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #cf3740, #e74c3c, #ff6b6b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-service-card::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.modern-service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(207, 55, 64, 0.15);
    border-color: rgba(207, 55, 64, 0.15);
}

.modern-service-card:hover::before {
    transform: scaleX(1);
}

.modern-service-card:hover::after {
    opacity: 1;
}

/* Card Number */
.card-number {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(207, 55, 64, 0.08);
    line-height: 1;
    transition: all 0.4s ease;
}

.modern-service-card:hover .card-number {
    color: rgba(207, 55, 64, 0.15);
    transform: scale(1.1);
}

/* Icon Wrapper */
.icon-wrapper {
    width: 85px;
    height: 85px;
    position: relative;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #cf3740 0%, #e74c3c 100%);
    border-radius: 20px;
    opacity: 0.1;
    transform: rotate(0deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modern-service-card:hover .icon-bg-shape {
    opacity: 1;
    transform: rotate(10deg) scale(1.05);
}

.icon-wrapper i {
    font-size: 44px;
    color: #cf3740;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.modern-service-card:hover .icon-wrapper i {
    color: #ffffff;
    transform: scale(1.1);
}

/* Service Title */
.service-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.modern-service-card:hover .service-title {
    color: #cf3740;
}

/* Service Description */
.service-desc {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 0 25px 0;
}

/* Service Meta */
.service-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #555;
    font-weight: 600;
    background: rgba(207, 55, 64, 0.05);
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.meta-item i {
    font-size: 14px;
    color: #cf3740;
}

.modern-service-card:hover .meta-item {
    background: rgba(207, 55, 64, 0.1);
}

/* Service Link */
.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #cf3740;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.service-link::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #cf3740;
    transition: width 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

.service-link:hover::after {
    width: calc(100% - 24px);
}

.service-link i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(4px);
}

/* CTA Wrapper */
.services-cta-wrapper {
    background: linear-gradient(135deg, #cf3740 0%, #e74c3c 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(207, 55, 64, 0.25);
}

.services-cta-wrapper::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #cf3740;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    gap: 16px;
}

.cta-button i {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .services-modern-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .consultancy-services-section .section-title {
        font-size: 36px;
    }

    .modern-service-card {
        padding: 35px 25px;
    }

    .icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .icon-wrapper i {
        font-size: 38px;
    }

    .service-title {
        font-size: 22px;
    }

    .services-cta-wrapper {
        padding: 40px 35px;
    }

    .cta-content h3 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .services-modern-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .consultancy-services-section .section-title {
        font-size: 32px;
    }

    .consultancy-services-section .section-description {
        font-size: 16px;
    }

    .mb-60 {
        margin-bottom: 40px;
    }

    .modern-service-card {
        padding: 30px 25px;
    }

    .card-number {
        font-size: 40px;
        top: 20px;
        right: 20px;
    }

    .icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .icon-wrapper i {
        font-size: 34px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .service-meta {
        margin-bottom: 20px;
    }

    .services-cta-wrapper {
        flex-direction: column;
        gap: 25px;
        padding: 35px 25px;
        text-align: center;
    }

    .cta-content h3 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 15px;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 15px;
    }
}

@media (max-width: 575px) {
    .consultancy-services-section .section-badge {
        font-size: 12px;
        padding: 6px 18px;
    }

    .consultancy-services-section .section-title {
        font-size: 28px;
    }

    .consultancy-services-section .section-description {
        font-size: 15px;
    }

    .card-number {
        font-size: 36px;
    }

    .service-title {
        font-size: 18px;
    }

    .meta-item {
        font-size: 12px;
        padding: 5px 10px;
    }

    .cta-content h3 {
        font-size: 22px;
    }
}

/* Blog Page Card Enhancements */
.blog-section.blog-page {
    background-color: #f7f8fa;
}

.blog-section.blog-page .post-card {
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-section.blog-page .post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.14);
}

.blog-section.blog-page .post-thumb {
    border-radius: 0;
    overflow: hidden;
}

.blog-section.blog-page .post-thumb img {
    border-radius: 0;
    transform: scale(1.01);
}

.blog-section.blog-page .post-card:hover .post-thumb img {
    transform: scale(1.05);
}

.blog-section.blog-page .post-content-wrap {
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    border: 0;
    background: transparent;
    padding: 22px 22px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.blog-section.blog-page .post-card .post-content h3 {
    margin-bottom: 12px;
}

.blog-section.blog-page .post-card .post-content p {
    font-size: 15px;
    line-height: 24px;
    color: #606168;
    margin-bottom: 16px;
}

@media (max-width: 767px) {
    .blog-section.blog-page {
        background-color: #ffffff;
    }

    .blog-section.blog-page .post-content-wrap {
        padding: 18px 18px 20px;
    }
}

/* About Page Enhancements */
.about-breadcrumb-wrap {
    margin-top: 18px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f1f1f1;
}

.about-breadcrumb-wrap a {
    color: #ffffff;
}

.about-breadcrumb-wrap a:hover {
    color: var(--primary-color);
}

.about-breadcrumb-item {
    opacity: 0.85;
}

.about-breadcrumb-item.active {
    opacity: 1;
    color: var(--primary-color);
    background: #fff;
    padding: 5px;
    border-radius: 2px;
}

.about-breadcrumb-separator {
    margin: 0 6px;
    opacity: 0.7;
}

.about-highlights-list {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
}

.about-highlights-list li {
    padding: 16px 18px;
    border-radius: 10px;
    background: #f7f8fa;
    border-left: 3px solid var(--primary-color);
}

.about-highlights-list h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.about-highlights-list p {
    font-size: 15px;
    margin-bottom: 0;
}

@media (max-width: 767px) {
    .about-highlights-list {
        grid-template-columns: 1fr;
    }
}

.about-mission-vision-section {
    /* background image is applied inline to match Business Segments section */
    background-color: transparent;
    color: inherit;
    position: relative;
    overflow: hidden;
}

.about-mission-vision-section::before {
    content: "";
    position: absolute;
    inset: 0;
    /* remove heavy dark overlay to let the patterned background show through */
    background: none;
    opacity: 0;
    pointer-events: none;
}

.about-mission-vision-section .container {
    position: relative;
    z-index: 1;
}

.about-mission-card {
    background: rgba(20, 21, 26, 0.96);
    border-radius: 14px;
    padding: 28px 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-mission-card::after {
    content: "";
    position: absolute;
    inset: auto -30% -40% auto;
    height: 120px;
    background: radial-gradient(circle, rgba(207, 55, 64, 0.4), transparent 65%);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
    transform: translateY(10px);
}

.about-mission-card.primary {
    border-color: rgba(207, 55, 64, 0.7);
    background: radial-gradient(circle at top left, rgba(207, 55, 64, 0.24), #16171c);
}

.about-mission-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.about-mission-card p {
    font-size: 15px;
    line-height: 1.8;
    color: #d4d6dd;
    margin: 0;
}

.about-mission-card:hover::after {
    opacity: 1;
    transform: translateY(0);
}

.about-stats-strip {
    background: #1d1f27;
    padding: 40px 0 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.about-stat-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 24px 22px;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.14);
    height: 100%;
}

.about-stat-item h3 {
    font-size: 22px;
    font-weight: 800;
    color: #404041;
    margin-bottom: 8px;
}

.about-stat-item h3 span {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-left: 4px;
}

.about-stat-item p {
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
    color: #5c5d63;
}

@media (max-width: 767px) {
    .about-stats-strip {
        padding: 30px 0 40px;
    }

    .about-stat-item {
        margin-bottom: 10px;
    }
}


.big-goal-section {
    position: relative;
    overflow: hidden;
    background: #ffffff;
    /* same base as our-presence-section */
    border-bottom: 1px solid #eee;
    /* keep your existing border if you like */
}

.big-goal-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.02) 0%, rgba(207, 55, 64, 0.05) 100%);
    pointer-events: none;
}

.big-goal-grid {
    margin-top: 20px;
}

.big-goal-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 22px 20px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1),
        box-shadow 0.3s ease;
}

.big-goal-card .goal-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6b7280;
    margin-bottom: 8px;
}

.big-goal-card .goal-number {
    font-size: 26px;
    font-weight: 800;
    color: #222429;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.big-goal-card .goal-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
    color: #4b5563;
}

.big-goal-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(207, 55, 64, 0.16), transparent 55%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.big-goal-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.big-goal-card:hover::before {
    opacity: 1;
}

.big-goal-card:hover .goal-number {
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .big-goal-card {
        padding: 18px 16px;
    }

    .big-goal-card .goal-number {
        font-size: 22px;
    }
}

/* Team Css */

.team-section {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    color: #dc3545;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: #dc3545;
}

.section-label::before {
    right: 100%;
    margin-right: 15px;
}

.section-label::after {
    left: 100%;
    margin-left: 15px;
}

.section-title {
    font-size: 42px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.3;
}

.section-title .highlight {
    color: #dc3545;
}

.team-container {
    /* border: 3px solid #dc3545; */
    padding: 60px 40px;
    background: white;
    border-radius: 8px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    align-items: center;
}

.team-member {
    perspective: 1000px;
    height: 420px;
}

.team-member.center {
    transform: translateY(-30px);
}

.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-member:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-front {
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px;
}

.member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    border: 5px solid #f8f9fa;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-name {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.member-position {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

.card-back {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    color: white;
    text-align: center;
}

.card-back h3 {
    font-size: 26px;
    margin-bottom: 15px;
    font-weight: 700;
}

.card-back .role {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
}

.card-back .description {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.social-links a:hover {
    background: white;
    color: #dc3545;
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-member.center {
        transform: translateY(0);
    }

    .section-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .team-container {
        padding: 40px 20px;
    }

    .section-label::before,
    .section-label::after {
        width: 30px;
    }
}

/* ========================================
   Gallery Glimpse Section
======================================== */
.gallery-glimpse-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.gallery-glimpse-section::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(207, 55, 64, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.section-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(207, 55, 64, 0.2);
}

.gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26, 26, 46, 0) 0%, rgba(26, 26, 46, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}

.gallery-icon i {
    font-size: 22px;
    color: #fff;
}

.gallery-caption {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease 0.15s;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Lightbox Modal Styles */
.gallery-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-lightbox-modal.active {
    display: flex;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.lightbox-image-wrapper {
    max-width: 100%;
    max-height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    background: #cf3740;
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #cf3740;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-caption {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    text-align: center;
}

.lightbox-counter {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 10px;
}

.lightbox-counter .current {
    color: #cf3740;
    font-weight: 600;
}

/* Gallery Responsive */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gallery-item {
        aspect-ratio: 16/10;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-close {
        top: -45px;
        width: 38px;
        height: 38px;
    }
}

/* GEBI Gallery Grid - 3 Columns */
.gallery-grid-gebi {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 992px) {
    .gallery-grid-gebi {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .gallery-grid-gebi {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CTA Section
======================================== */
.cta-section {
    position: relative;
    padding: 80px 0;
    background-image: url('../img/parallex.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}
.cta-section1 {
    position: relative;
    padding: 80px 0;
    background-image: url('../img/parallex1.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.75) 0%, rgba(22, 33, 62, 0.8) 100%);
    z-index: 1;
}

.cta-section .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.cta-btn i {
    font-size: 20px;
}

.cta-btn-primary {
    background: #fff;
    color: #cf3740;
    border-color: #fff;
}

.cta-btn-primary:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-btn-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cta-btn-secondary:hover {
    background: #fff;
    color: #cf3740;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* CTA Section Responsive */
@media (max-width: 991px) {
    .cta-section {
        padding: 70px 0;
        background-attachment: scroll;
    }
    
    .cta-title {
        font-size: 34px;
    }
    
    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .cta-text {
        font-size: 15px;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .cta-btn {
        padding: 14px 30px;
        font-size: 14px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 24px;
    }
    
    .cta-text {
        font-size: 14px;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 13px;
    }
}

/* ========================================
   Form Modal Styles
======================================== */
.form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.form-modal.active {
    display: flex;
}

.form-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.form-modal-container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
}

.form-modal-content {
    background: #fff;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: modalFadeIn 0.25s ease;
    position: relative;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.form-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: #333;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 0;
    line-height: 1;
}

.form-modal-close:hover {
    color: #cf3740;
}

.form-modal-header {
    padding: 22px 30px 18px;
}

.form-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.form-modal-body {
    padding: 15px 30px 30px;
}

/* Form Styles */
.cta-form .form-group {
    margin-bottom: 15px;
}

.cta-form .form-row {
    display: flex;
    gap: 12px;
}

.cta-form .form-row .form-group {
    flex: 1;
}

.cta-form .form-input {
    width: 100%;
    padding: 12px 15px;
    font-size: 14px;
    color: #333;
    background: #fff;
    border: 1px solid #cf3740;
    outline: none;
    transition: all 0.2s ease;
}

.cta-form .form-input::placeholder {
    color: #888;
}

.cta-form .form-input:focus {
    border-color: #a02a31;
    box-shadow: 0 0 0 2px rgba(207, 55, 64, 0.08);
}

.cta-form select.form-input {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath fill='%23666' d='M5 7L0 2h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.cta-form input[type="date"] {
    cursor: pointer;
}

.form-consent {
    font-size: 12px;
    color: #555;
    line-height: 1.5;
    margin-bottom: 18px;
    margin-top: 5px;
}

.form-submit-btn {
    display: inline-block;
    padding: 12px 45px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    background: #cf3740;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-submit-btn:hover {
    background: #b8313a;
}

/* Form Modal Responsive */
@media (max-width: 576px) {
    .form-modal {
        padding: 15px;
    }
    
    .form-modal-header {
        padding: 18px 20px 14px;
    }
    
    .form-modal-header h3 {
        font-size: 16px;
    }
    
    .form-modal-body {
        padding: 12px 20px 25px;
    }
    
    .cta-form .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .cta-form .form-input {
        padding: 11px 12px;
        font-size: 14px;
    }
    
    .form-submit-btn {
        padding: 12px 40px;
    }
    
    .form-modal-close {
        top: 14px;
        right: 14px;
    }
}

/* ========================================
   GEBI Page Specific Styles
======================================== */

/* GEBI CTA Hero Section */
.gebi-cta-hero {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    overflow: hidden;
}

.gebi-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/background-pattern.png') center center;
    opacity: 0.1;
}

.gebi-cta-content {
    position: relative;
    z-index: 2;
}

.gebi-cta-badge {
    display: inline-block;
    background: rgba(207, 55, 64, 0.2);
    color: #cf3740;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(207, 55, 64, 0.3);
}

.gebi-cta-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
}

.gebi-cta-title span {
    color: #cf3740;
}

.gebi-cta-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 500px;
}

.gebi-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    color: #fff;
    padding: 16px 35px;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(207, 55, 64, 0.3);
}

.gebi-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(207, 55, 64, 0.4);
}

.gebi-cta-btn i {
    font-size: 20px;
}

.gebi-cta-images {
    position: relative;
    height: 450px;
}

.gebi-cta-img-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 80%;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.gebi-cta-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gebi-cta-img-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 5px solid #1a1a2e;
}

.gebi-cta-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GEBI Highlights Section */
.gebi-highlights-section {
    background: #fff;
}

.gebi-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.gebi-highlight-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid #eee;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.gebi-highlight-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #cf3740 0%, #ff6b6b 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.gebi-highlight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(207, 55, 64, 0.15);
    border-color: transparent;
}

.gebi-highlight-card:hover::before {
    transform: scaleX(1);
}

.gebi-highlight-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(207, 55, 64, 0.1) 0%, rgba(207, 55, 64, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.4s ease;
}

.gebi-highlight-card:hover .gebi-highlight-icon {
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
}

.gebi-highlight-icon i {
    font-size: 32px;
    color: #cf3740;
    transition: all 0.4s ease;
}

.gebi-highlight-card:hover .gebi-highlight-icon i {
    color: #fff;
}

.gebi-highlight-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.gebi-highlight-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* GEBI Location Section */
.gebi-location-section {
    background: #f8f9fa;
}

.gebi-location-map {
    display: flex;
    justify-content: center;
}

.gebi-map-circle {
    position: relative;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 8px solid #fff;
}

.gebi-map-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gebi-map-pin {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: #cf3740;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 20px rgba(207, 55, 64, 0.4);
    animation: pulse 2s infinite;
}

.gebi-map-pin i {
    font-size: 24px;
    color: #fff;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(207, 55, 64, 0.5);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(207, 55, 64, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(207, 55, 64, 0);
    }
}

.gebi-distance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.gebi-distance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 18px 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.gebi-distance-item:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(207, 55, 64, 0.1);
}

.gebi-distance-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #cf3740 0%, #a02a31 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.gebi-distance-icon i {
    font-size: 20px;
    color: #fff;
}

.gebi-distance-info {
    display: flex;
    flex-direction: column;
}

.gebi-distance-value {
    font-size: 20px;
    font-weight: 700;
    color: #cf3740;
    line-height: 1;
}

.gebi-distance-label {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
}

/* GEBI Partners Section */
.gebi-partners-section {
    background: #fff;
}

.gebi-partners-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
}

.gebi-partner-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
    transition: all 0.3s ease;
    min-height: 100px;
}

.gebi-partner-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: transparent;
    transform: translateY(-5px);
}

.gebi-partner-item img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.gebi-partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* GEBI Responsive Styles */
@media (max-width: 1200px) {
    .gebi-highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .gebi-cta-hero {
        padding: 70px 0;
    }
    
    .gebi-cta-title {
        font-size: 36px;
    }
    
    .gebi-cta-images {
        height: 380px;
        margin-top: 40px;
    }
    
    .gebi-cta-img-main {
        width: 75%;
        height: 280px;
    }
    
    .gebi-cta-img-secondary {
        width: 50%;
        height: 200px;
    }
    
    .gebi-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gebi-map-circle {
        width: 280px;
        height: 280px;
    }
    
    .gebi-distance-grid {
        grid-template-columns: 1fr;
    }
    
    .gebi-partners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .gebi-cta-hero {
        padding: 60px 0;
    }
    
    .gebi-cta-title {
        font-size: 28px;
    }
    
    .gebi-cta-text {
        font-size: 15px;
    }
    
    .gebi-cta-btn {
        padding: 14px 28px;
        font-size: 14px;
    }
    
    .gebi-cta-images {
        height: 320px;
    }
    
    .gebi-cta-img-main {
        width: 85%;
        height: 220px;
        right: 0;
    }
    
    .gebi-cta-img-secondary {
        width: 55%;
        height: 160px;
    }
    
    .gebi-highlights-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .gebi-highlight-card {
        padding: 25px 20px;
    }
    
    .gebi-highlight-icon {
        width: 60px;
        height: 60px;
    }
    
    .gebi-highlight-icon i {
        font-size: 28px;
    }
    
    .gebi-map-circle {
        width: 250px;
        height: 250px;
    }
    
    .gebi-distance-item {
        padding: 15px;
    }
    
    .gebi-distance-value {
        font-size: 18px;
    }
    
    .gebi-partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gebi-partner-item {
        padding: 20px 15px;
        min-height: 80px;
    }
    
    .gebi-partner-item img {
        max-height: 45px;
    }
}

@media (max-width: 480px) {
    .gebi-cta-title {
        font-size: 24px;
    }
    
    .gebi-cta-badge {
        font-size: 12px;
        padding: 6px 15px;
    }
    
    .gebi-cta-images {
        height: 280px;
    }
    
    .gebi-cta-img-main {
        height: 180px;
    }
    
    .gebi-cta-img-secondary {
        height: 130px;
    }
    
    .gebi-map-circle {
        width: 220px;
        height: 220px;
    }
    
    .gebi-map-pin {
        width: 40px;
        height: 40px;
    }
    
    .gebi-map-pin i {
        font-size: 20px;
    }
}

/* ========================================
   Location Map Popup & Overlay Styles
======================================== */

/* Map Circle Overlay */
.gebi-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    pointer-events: none;
}

.gebi-map-circle:hover .gebi-map-overlay {
    opacity: 1;
}

.gebi-map-circle:hover .gebi-map-pin {
    opacity: 0;
}

.gebi-map-pin {
    pointer-events: none;
}

.gebi-map-overlay i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.gebi-map-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Location Popup Modal */
.location-popup-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-popup-modal.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}

.location-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.location-popup-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    animation: locationPopupFadeIn 0.3s ease;
}

@keyframes locationPopupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.location-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: #cf3740;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.location-popup-close:hover {
    background: #a02a31;
    transform: rotate(90deg);
}

.location-popup-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.location-popup-image img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

/* Location Popup Responsive */
@media (max-width: 767px) {
    .location-popup-content {
        max-width: 95%;
    }
    
    .location-popup-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: -10px;
        right: -10px;
    }
    .gebi-map-overlay i {
        font-size: 32px;
    }
    
    .gebi-map-overlay span {
        font-size: 12px;
    }
}

/* ========================================
   Privacy Policy Section Styles
======================================== */

.privacy-policy-section {
    background: #fff;
}

.privacy-policy-section h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.privacy-policy-section .badge {
    font-size: 13px;
    font-weight: 500;
    padding: 6px 16px;
}

.privacy-policy-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    gap: 20px 40px;
}

.privacy-policy-list > li {
    display: block;
    position: relative;
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 10px 0 10px 35px;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-policy-list > li:last-child {
    border-bottom: none;
}

.privacy-policy-list > li::before {
    content: '\f058';
    font-family: 'Line Awesome Free';
    font-weight: 900;
    font-size: 20px;
    color: #cf3740;
    position: absolute;
    left: 0;
    top: 12px;
}

.privacy-policy-list li ul {
    list-style: none;
    padding: 0;
    margin: 12px 0 5px 37px;
    width: calc(100% - 37px);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.privacy-policy-list li ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    background: transparent;
    border: none;
}

.privacy-policy-list li ul li::before {
    content: '\f111';
    font-family: 'Line Awesome Free';
    font-weight: 400;
    font-size: 8px;
    color: #999;
    margin-top: 8px;
}

/* Single column list variant */
.privacy-policy-list.single-column {
    grid-template-columns: 1fr;
}

.privacy-policy-list.single-column li:last-child {
    border-bottom: none;
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-policy-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .privacy-policy-list li {
        border-bottom: 1px solid #f0f0f0;
    }
    
    .privacy-policy-list li:last-child {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .privacy-policy-section h2 {
        font-size: 20px;
    }
    
    .privacy-policy-list > li {
        font-size: 14px;
        padding: 8px 0 8px 30px;
    }
    
    .privacy-policy-list > li::before {
        font-size: 18px;
        top: 10px;
    }
    
    .privacy-policy-list li ul {
        margin: 10px 0 5px 0;
        width: 100%;
    }
    
    .privacy-policy-list li ul li {
        padding: 6px 0;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .privacy-policy-list li ul {
        margin-left: 25px;
    }
    
    .privacy-policy-list li ul li {
        font-size: 13px;
    }
}

/* ========================================
   Location Map Popup & Overlay Styles
======================================== */

/* Map Circle Overlay */
.gebi-map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 50%;
    pointer-events: none;
}

.gebi-map-circle:hover .gebi-map-overlay {
    opacity: 1;
}

.gebi-map-circle:hover .gebi-map-pin {
    opacity: 0;
}

.gebi-map-pin {
    pointer-events: none;
}

.gebi-map-overlay i {
    font-size: 40px;
    color: #fff;
    margin-bottom: 10px;
}

.gebi-map-overlay span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Location Popup Modal */
.location-popup-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 999999 !important;
    display: none !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.location-popup-modal.active {
    display: flex !important;
    visibility: visible;
    opacity: 1;
}

.location-popup-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.location-popup-content {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    animation: locationPopupFadeIn 0.3s ease;
}

@keyframes locationPopupFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.location-popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 45px;
    height: 45px;
    background: #cf3740;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.location-popup-close:hover {
    background: #a02a31;
    transform: rotate(90deg);
}

.location-popup-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.location-popup-image img {
    display: block;
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
}

/* Location Popup Responsive */
@media (max-width: 767px) {
    .location-popup-content {
        max-width: 95%;
    }
    
    .location-popup-close {
        width: 40px;
        height: 40px;
        font-size: 20px;
        top: -10px;
        right: -10px;
    }
    
    .gebi-map-overlay i {
        font-size: 32px;
    }
    
    .gebi-map-overlay span {
        font-size: 12px;
    }
}

/* ========================================
   Consultancy Services Section Styles
======================================== */

.consultancy-services-section {
    background: #fff;
}

.consultancy-card {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
    border: 1px solid #eee;
}

.consultancy-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.consultancy-card-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.consultancy-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(30%);
}

.consultancy-card:hover .consultancy-card-img img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.consultancy-card-content {
    padding: 25px;
    background: #fff;
}

.consultancy-card-title {
    font-size: 16px;
    font-weight: 700;
    color: #cf3740;
    margin-bottom: 15px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.consultancy-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.consultancy-list li {
    position: relative;
    padding-left: 15px;
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 8px;
}

.consultancy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #cf3740;
    font-weight: bold;
}

.consultancy-list li:last-child {
    margin-bottom: 0;
}

/* Responsive Styles for Consultancy Section */
@media (max-width: 1199px) {
    .consultancy-card-img {
        height: 180px;
    }
    
    .consultancy-card-title {
        font-size: 15px;
    }
}

@media (max-width: 991px) {
    .consultancy-card-img {
        height: 200px;
    }
    
    .consultancy-card-content {
        padding: 20px;
    }
}

@media (max-width: 767px) {
    .consultancy-services-section {
        padding: 60px 0;
    }
    
    .consultancy-card-img {
        height: 220px;
    }
    
    .consultancy-card-title {
        font-size: 16px;
    }
    
    .consultancy-list li {
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .consultancy-card-img {
        height: 200px;
    }
    
    .consultancy-card-content {
        padding: 20px 15px;
    }
    
    .consultancy-card-title {
        font-size: 15px;
    }
    
    .consultancy-list li {
        font-size: 13px;
    }
}

/* ========================================
   Floating Contact Buttons
======================================== */

.bw-floating-contact {
    position: fixed;
    top: 50%;
    right: 0;
    z-index: 9999;
    display: flex !important;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.bw-float-item {
    display: flex;
    align-items: center;
    background: #cf3740;
    color: #fff;
    text-decoration: none;
    border-radius: 4px 0 0 4px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
    padding-right: 0;
    transition: background 0.25s ease-out, padding-right 0.25s ease-out;
}

.bw-float-item:hover {
    background: #000;
    padding-right: 12px;
}

.bw-float-item:hover .bw-float-icon {
    background: #000;
}

.bw-float-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #cf3740;
    flex-shrink: 0;
    transition: background 0.25s ease-out;
}

.bw-float-icon i {
    font-size: 30px;
    color: #fff;
}

.bw-float-label {
    padding: 0 16px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    max-width: 0;
    opacity: 0;
    margin-left: 0;
    overflow: hidden;
    transition: max-width 0.25s ease-out, opacity 0.25s ease-out, margin-left 0.25s ease-out;
}

.bw-float-item:hover .bw-float-label {
    max-width: 160px;
    opacity: 1;
    margin-left: 6px;
}

.bw-float-whatsapp {
    background: #25d366;
}

.bw-float-whatsapp .bw-float-icon {
    background: #25d366;
}

@media (max-width: 767.98px) {
    .bw-floating-contact {
        top: auto;
        bottom: 80px;
        right: 10px;
        gap: 6px;
    }

    .bw-float-item {
        border-radius: 50%;
    }

    .bw-float-label {
        display: none;
    }
}

/* ========================================
   Enquiry Modal Styles
======================================== */

.bw-enquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.bw-enquiry-modal.active {
    display: flex;
}

.bw-enquiry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

.bw-enquiry-content {
    position: relative;
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bw-enquiry-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.bw-enquiry-close:hover {
    color: #cf3740;
}

.bw-enquiry-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 30px;
    padding-right: 30px;
    line-height: 1.4;
}

.bw-enquiry-form .bw-form-group {
    margin-bottom: 20px;
}

.bw-enquiry-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.2s;
}

.bw-enquiry-form input:focus {
    outline: none;
    border-color: #cf3740;
}

.bw-enquiry-form input::placeholder {
    color: #999;
}

.bw-consent-text {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.bw-enquiry-submit {
    background: #cf3740;
    color: #fff;
    border: none;
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.bw-enquiry-submit:hover {
    background: #a02a31;
}

@media (max-width: 575px) {
    .bw-enquiry-content {
        padding: 30px 20px;
    }

    .bw-enquiry-title {
        font-size: 16px;
    }

    .bw-enquiry-form input {
        padding: 12px 15px;
    }
}

/* ========================================
   Video Modal & Play Button Styles
======================================== */

.bw-video-trigger {
    cursor: pointer;
    position: relative;
}

.bw-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(207, 55, 64, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.bw-play-btn i {
    font-size: 24px;
    color: #fff;
    margin-left: 4px;
}

.bw-video-trigger:hover .bw-play-btn {
    background: #cf3740;
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 6px 25px rgba(207, 55, 64, 0.5);
}

.bw-video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.bw-video-modal.active {
    display: flex;
}

.bw-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
}

.bw-video-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    animation: modalSlideIn 0.3s ease-out;
}

.bw-video-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1;
}

.bw-video-close:hover {
    color: #cf3740;
}

.bw-video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.bw-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 767px) {
    .bw-play-btn {
        width: 50px;
        height: 50px;
    }

    .bw-play-btn i {
        font-size: 20px;
    }

    .bw-video-close {
        top: -40px;
        font-size: 30px;
    }
}

/*Mobile view float btns*/

/* ========================================
   Mobile Floating Contact Buttons - FIXED
======================================== */

/* Hide mobile version on desktop */
.bw-floating-contact-mobile {
    display: none !important;
}

@media (max-width: 480px){
    .bw-floating-contact{
        display: none !important;
    }
}

/* Show mobile version only on mobile screens */
@media (max-width: 767px) {
    .bw-floating-contact-mobile {
        display: block !important;
    }
    
    /* Mobile Toggle Button */
    .bw-float-toggle-mobile {
        position: fixed;
        right: 10px;
        bottom: 88px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: linear-gradient(135deg, #e63946, #d62828);
        border: none;
        box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
        cursor: pointer;
        z-index: 999;
        transition: all 0.3s ease;
    }

    .bw-float-toggle-mobile:active {
        transform: scale(0.95);
    }

    .bw-toggle-icon-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .bw-toggle-icon-mobile i {
        font-size: 26px;
        color: #fff;
        transition: transform 0.3s ease;
    }

    .bw-floating-contact-mobile.active .bw-toggle-icon-mobile i {
        transform: rotate(45deg);
    }

    /* Contact Buttons Container */
    .bw-float-buttons-mobile {
        position: fixed;
        right: 15px;
        bottom: 135px;
        display: flex;
        flex-direction: column;
        gap: 0;
        z-index: 998;
    }

    /* Individual Button Styles */
    .bw-float-item-mobile {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 16px;
        background: #fff;
        border-radius: 50px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
        text-decoration: none;
        color: #333;
        transition: all 0.3s ease;
        margin-bottom: 10px;
        white-space: nowrap;
        opacity: 0;
        transform: translateY(20px) scale(0.8);
        pointer-events: none;
    }

    .bw-floating-contact-mobile.active .bw-float-item-mobile {
        opacity: 1;
        transform: translateY(0) scale(1);
        pointer-events: auto;
    }

    /* Staggered animation */
    .bw-floating-contact-mobile.active .bw-float-item-mobile:nth-child(1) {
        transition-delay: 0.1s;
    }

    .bw-floating-contact-mobile.active .bw-float-item-mobile:nth-child(2) {
        transition-delay: 0.15s;
    }

    .bw-floating-contact-mobile.active .bw-float-item-mobile:nth-child(3) {
        transition-delay: 0.2s;
    }

    .bw-floating-contact-mobile.active .bw-float-item-mobile:nth-child(4) {
        transition-delay: 0.25s;
    }

    .bw-float-item-mobile:active {
        transform: scale(0.95);
    }

    .bw-float-icon-mobile {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, #e63946, #d62828);
        flex-shrink: 0;
    }

    .bw-float-icon-mobile i {
        font-size: 18px;
        color: #fff;
    }

    .bw-float-whatsapp-mobile .bw-float-icon-mobile {
        background: linear-gradient(135deg, #25D366, #128C7E);
    }

    .bw-float-label-mobile {
        font-size: 13px;
        font-weight: 600;
        color: #333;
    }
}