/* Custom CSS for Zoom Business Hub Website */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Performance optimizations */
html {
    scroll-behavior: smooth;
}

body {
    font-display: swap;
    text-rendering: optimizeSpeed;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Optimize images */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Optimize animations */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    overflow-y: auto;
    will-change: auto;
}

/* Optimize critical rendering path */
.hero-container {
    contain: layout style paint;
}

/* Optimize animations with GPU acceleration */
.style-16, .style-17, .style-18,
.hamburger div,
.nav-menu li,
.social-icons a {
    will-change: transform;
    transform: translateZ(0);
}

/* Optimize image loading and responsiveness */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s ease;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Global responsive image rules */
img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Ensure images are visible on all devices */
.background-image img,
.zoom-logo-image img,
.brand img,
.gallery img,
.event-hall-images img,
.real-estate-logo img,
.marketing-icon img,
.right-gallery img,
.marketing-right-gallery img,
.logistics-services-grid img,
.consulting-services-grid img,
.education-services-grid img,
.events-management-grid img,
.why-choose-us-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    opacity: 1 !important; /* Override any opacity issues */
}

/* Additional image container fixes */
.image-container,
.gallery-image,
.marketing-image,
.logistics-image,
.consulting-image,
.education-image,
.events-image {
    overflow: visible !important;
    position: relative;
}

.image-container img,
.gallery-image img,
.marketing-image img,
.logistics-image img,
.consulting-image img,
.education-image img,
.events-image img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

/* Fix for specific problematic images */
figure img,
picture img,
.hero img,
.warehouse img,
.taekwondo img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Universal header and footer logo fixes for all pages */
header img,
.style-1 img,
.header-container img,
.logo-desktop img,
.logo-mobile img,
.footer-section img,
.company-logo-container img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
}

/* Ensure header logos are not affected by any page-specific styles */
body .style-1 .logo-desktop .style-5,
body .style-1 .logo-mobile .style-7,
body .header-container .logo-desktop .style-5,
body .header-container .logo-mobile .style-7 {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    height: 65px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
    object-position: center !important;
}

/* Header Container */
.style-1 {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2147483646;
    width: 100%;
    isolation: isolate;
    overflow: visible;
}

.style-2 {
    box-shadow: rgb(0, 0, 0) 0px 12px 52px -25px;
}

/* Header Layout */
.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    overflow: visible;
}

/* Logo Styles */
.style-3, .style-19 {
    display: flex;
    align-items: center;
}

.style-4, .style-6, .style-20, .style-22 {
    display: block;
    text-decoration: none;
}

.style-5, .style-7, .style-21, .style-23 {
    display: block;
    height: 65px;
    width: auto;
    max-width: 250px;
}

/* Logo visibility rules */
.logo-desktop {
    display: block;
}

.logo-desktop .style-4 {
    opacity: 1 !important;
}

.logo-mobile {
    display: none;
}

@media (max-width: 768px) {
    .logo-desktop {
        display: none;
    }
    
    .logo-mobile {
        display: block;
    }
    
    /* Fix mobile logo opacity */
    .logo-mobile .style-6 {
        opacity: 1 !important;
    }
}

/* Navigation Styles */
.nav-container {
    display: flex;
    align-items: center;
    gap: 30px;
    overflow: visible;
    height: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    position: relative;
    z-index: 2147483646;
    isolation: isolate;
    overflow: visible;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu a:hover {
    color: #007bff;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #007bff;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Remove hover area since we're using click */

.dropdown-content {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    background: white;
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 0 0 8px 8px;
    padding: 8px 0;
    z-index: 2147483647 !important;
    border: 1px solid #e0e0e0;
    border-top: none;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    transition-delay: 0.2s;
    margin-top: 0;
    margin-left: 0;
}

.dropdown.active .dropdown-content {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    position: fixed !important;
    margin-top: 0 !important;
    margin-left: 0 !important;
    transition-delay: 0s;
}

/* Force dropdown to show on desktop hover - highest specificity */
@media (min-width: 769px) {
    .nav-menu .dropdown.active .dropdown-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 2147483647 !important;
        position: fixed !important;
        top: 80px !important;
        left: auto !important;
    }
}

/* Ensure dropdown link looks like other header links */
.dropdown > a {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.dropdown > a:hover {
    color: inherit;
}

/* Force dropdown to appear above everything */
.dropdown {
    position: relative !important;
    z-index: 999999 !important;
}

/* Ensure dropdown appears above all content including background images */
.dropdown-content {
    z-index: 999999 !important;
    position: absolute !important;
    transform: translateZ(0);
    background: white !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

/* Ensure dropdown container creates proper stacking context */
.dropdown {
    position: relative !important;
    z-index: 2147483646 !important;
    isolation: isolate;
}

/* Ensure dropdown appears above ALL content including hero sections */
.dropdown-content {
    z-index: 2147483647 !important; /* Maximum z-index value */
    position: fixed !important;
    transform: translateZ(0) !important;
    will-change: transform !important;
    top: 80px !important; /* Position below header */
    left: auto !important;
    right: auto !important;
    pointer-events: auto !important;
}

/* Force dropdown to break out of any containment */
.dropdown {
    position: relative !important;
    z-index: 2147483646 !important;
    isolation: isolate !important;
    contain: none !important;
}

/* Desktop-only dropdown positioning - override mobile rules */
@media (min-width: 769px) {
    .dropdown-content {
        position: fixed !important;
        top: 80px !important;
        left: auto !important;
        background: white !important;
        min-width: 280px !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
        border-radius: 0 0 8px 8px !important;
        padding: 8px 0 !important;
        z-index: 2147483647 !important;
        border: 1px solid #e0e0e0 !important;
        border-top: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        transition: all 0.3s ease !important;
        margin-top: 0 !important;
        margin-left: 0 !important;
        transform: translateZ(0) !important;
        display: none !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        z-index: 2147483647 !important;
    }
}

.dropdown-content a {
    display: block;
    padding: 12px 25px;
    color: #333;
    text-decoration: none;
    transition: background-color 0.3s ease;
    border-bottom: none;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    margin: 0;
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

/* Ensure dropdown content is always clickable */
.dropdown-content {
    pointer-events: auto !important;
}

/* Make dropdown content stay visible when active */
.dropdown.active .dropdown-content,
.dropdown-content:hover {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 2147483647 !important;
    transition-delay: 0s !important;
}

/* Add delay when dropdown becomes inactive */
.dropdown:not(.active) .dropdown-content {
    transition-delay: 0.3s;
}

/* Real Estate Page Styles */
/* Ensure body and main elements have no padding/margin */
body {
    padding: 0 !important;
    margin: 0 !important;
}

main {
    padding: 0 !important;
    margin: 0 !important;
}

.leasing-section {
    padding: 10px 0 63.36px 0;
    background: #ffffff;
    position: relative;
}

/* First section - minimal top padding */
.leasing-section:first-of-type {
    padding-top: 50px;
}

.leasing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Leasing Content Layout */
.leasing-content-layout {
    display: flex;
    gap: 50px;
    align-items: flex-start;
    padding: 40px;
}

/* Left Column - Leasing Image */
.leasing-image-container {
    flex: 0.45;
    position: relative;
    height: 671.266px;
    min-height: 671.266px;
    overflow: hidden;
}

.leasing-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    min-height: 671.266px;
}

.leasing-image-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 671.266px;
}

.leasing-image-inner {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
}

.leasing-hero-image {
    display: block !important;
    object-fit: cover !important;
    object-position: 50% 50% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 671.266px !important;
    border: 0 !important;
    transition: transform 0.3s ease !important;
    z-index: 1 !important;
    visibility: visible !important;
    opacity: 1 !important;
    max-width: none !important;
}

.leasing-hero-image:hover {
    transform: scale(1.05);
}

/* Right Column - Leasing Content */
.leasing-content-column {
    flex: 0.55;
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0;
    justify-content: flex-start;
}

/* Leasing Main Heading */
.leasing-main-heading h1 {
    font-size: 40px;
    color: #000;
    line-height: 56.4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    margin-bottom: 15px;
}

/* Leasing Subheading */
.leasing-subheading h2 {
    font-size: 32px;
    color: rgb(1, 75, 111);
    line-height: 46.08px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin: 0;
    margin-bottom: 25px;
}

/* Leasing Description */
.leasing-description {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 20px;
}

.leasing-description p {
    font-size: 16px;
    color: #000;
    line-height: 1.3;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.leasing-description p:first-child {
    line-height: 1.3;
    margin-bottom: 8px;
}

.leasing-description p:last-child {
    line-height: 1.3;
    margin-top: 8px;
    margin-bottom: 0;
}

/* Leasing Features List */
.leasing-features-list ul {
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 20px;
}

.leasing-features-list li {
    font-size: 20px;
    color: #000;
    line-height: 1.3;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    margin: 5px 0;
}

/* Leasing CTA Button */
.leasing-cta-button-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0;
}

.leasing-cta-button {
    font-size: 24px;
    padding: 0 20.8px;
    border-radius: 0;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 79.9688px;
    color: #ffffff;
    background-color: rgb(1, 75, 111);
    text-decoration: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    transition: all 0.3s ease;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leasing-cta-button:hover {
    background-color: rgb(0, 50, 80);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive Design for Leasing Section */
@media (max-width: 1200px) {
    .leasing-container {
        padding: 0 30px;
    }
    
    .leasing-content-layout {
        gap: 40px;
        padding: 30px;
    }
    
    .leasing-image-container {
        height: 500px;
    }
    
    .leasing-hero-image {
        height: 500px;
    }
    
    .leasing-main-heading h1 {
        font-size: 36px;
    }
    
    .leasing-subheading h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .leasing-section {
        padding: 5px 0 40px 0;
    }
    
    .leasing-section:first-of-type {
        padding-top: 50px;
    }
    
    .leasing-container {
        padding: 0 20px;
    }
    
    .leasing-content-layout {
        flex-direction: column;
        gap: 30px;
        padding: 25px;
    }
    
    .leasing-image-container {
        height: 400px;
        flex: 1;
    }
    
    .leasing-hero-image {
        height: 400px;
    }
    
    .leasing-content-column {
        gap: 20px;
        padding: 0;
        flex: 1;
    }
    
    .leasing-main-heading h1 {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .leasing-subheading h2 {
        font-size: 24px;
        margin-bottom: 18px;
    }
    
    .leasing-description {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .leasing-description p {
        font-size: 15px;
    }
    
    .leasing-features-list li {
        font-size: 18px;
    }
    
    .leasing-cta-button {
        font-size: 20px;
        height: 60px;
        min-width: 160px;
    }
}

@media (max-width: 480px) {
    .leasing-section {
        padding: 5px 0 30px 0;
    }
    
    .leasing-section:first-of-type {
        padding-top: 50px;
    }
    
    .leasing-container {
        padding: 0 15px;
    }
    
    .leasing-content-layout {
        padding: 20px;
    }
    
    .leasing-image-container {
        height: 300px;
    }
    
    .leasing-hero-image {
        height: 300px;
    }
    
    .leasing-main-heading h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }
    
    .leasing-subheading h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .leasing-description p {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .leasing-features-list li {
        font-size: 16px;
    }
    
    .leasing-cta-button {
        font-size: 18px;
        height: 50px;
        min-width: 140px;
    }
}


/* Social Media Icons - Hidden */
.social-icons {
    display: none !important;
}


/* Mobile Menu Button */
.style-15, .style-31 {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    padding: 8px;
    align-items: center;
    justify-content: center;
    height: auto;
}

.style-16, .style-17, .style-18, .style-32, .style-33, .style-34 {
    height: 3px;
    width: 25px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

.style-15:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Animation Classes */
.style-3, .style-4, .style-8, .style-9, .style-10, .style-11, .style-12, .style-13, .style-14 {
    transition-timing-function: ease;
    transition-duration: 0.3s;
    transition-delay: 0s;
    opacity: 1;
    transition-property: opacity;
}

.style-6, .style-19, .style-20, .style-22, .style-24, .style-25, .style-26, .style-27, .style-28, .style-29, .style-30 {
    transition-timing-function: ease;
    transition-duration: 0.3s;
    opacity: 0;
    transition-property: opacity;
}

.style-15, .style-31 {
    transition-timing-function: ease;
    transition-duration: 0.3s;
    opacity: 1 !important;
    transition-property: opacity;
}

/* Fix logo visibility - override animation classes */
/* Logo visibility fixes - High specificity to override page-specific styles */
.style-1 .logo-desktop .style-4,
.style-1 .logo-mobile .style-6,
.style-1 .logo-desktop .style-5,
.style-1 .logo-mobile .style-7,
.header-container .logo-desktop .style-5,
.header-container .logo-mobile .style-7 {
    opacity: 1 !important;
    display: block !important;
    visibility: visible !important;
    height: 65px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
}

/* Hero Section */
.hero-section {
    background: #fff;
    min-height: 100vh;
    padding-top: 80px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 6fr 6fr;
    gap: 4rem;
    align-items: center;
    min-height: calc(100vh - 80px);
}

/* Left Side - Text Content */
.hero-content {
    padding-right: 2rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.highlighted-text {
    position: relative;
    display: inline-block;
}

.highlighted-text.real-estate {
    color: #005B96;
}

.highlighted-text.real-estate::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -8px;
    right: -8px;
    bottom: -5px;
    border: 3px solid #005B96;
    border-radius: 50px;
    z-index: -1;
}

.highlighted-text.events {
    color: #005B96;
}

.highlighted-text.events::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 3px;
    background: #005B96;
    border-radius: 2px;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-cta {
    display: inline-block;
}

.hero-link {
    color: #005B96;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.hero-link:hover {
    border-bottom-color: #005B96;
}

/* Right Side - Image */
.hero-image {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* WhatsApp Chat Button */


.whatsapp-chat:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-chat::before {
    content: '💬';
    font-size: 1.2rem;
}

/* Industries Section Styles */
.industries-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    overflow: visible;
}

.industries-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: 60px;
    z-index: 5;
}

/* Remove any lines under Industries section */
.section-title::after,
.section-title::before,
.industries-section::after,
.industries-section::before {
    display: none !important;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.section-title strong {
    color: #005B96;
}

/* Services Grid - Responsive */
.services-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    height: auto;
    margin-bottom: 60px;
    z-index: 7;
    overflow: visible;
    padding: 20px 0;
}

/* Mobile-first responsive grid adjustments */
@media (max-width: 1200px) {
    .services-grid {
        height: auto;
        margin-bottom: 50px;
        gap: 18px;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        height: auto;
        margin-bottom: 40px;
        gap: 15px;
    }
    
    /* Tablet image visibility fixes */
    img {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .background-image {
        display: none !important;
    }
    
    .background-image img {
        display: none !important;
    }
    
    .zoom-logo-image img,
    .brand img,
    .gallery img,
    .event-hall-images img,
    .real-estate-logo img,
    .marketing-icon img,
    .right-gallery img,
    .marketing-right-gallery img {
        width: 100%;
        height: auto;
        object-fit: cover;
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
}

@media (max-width: 900px) {
    .services-grid {
        height: auto;
        margin-bottom: 40px;
        gap: 12px;
    }
}

.service-item {
    text-decoration: none;
    color: inherit;
}

/* Industries Section Service Icons */
.industries-section .service-icon {
    width: 120px;
    height: 120px;
    background-color: #005B96;
    border: 3px solid white;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 91, 150, 0.3);
    transition: all 0.3s ease;
    position: absolute;
    overflow: visible;
    text-align: center;
    cursor: pointer;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.industries-section .service-icon:hover {
    transform: scale(1.2) translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 91, 150, 0.4);
    background-color: white;
    border: 3px solid #005B96;
}

.industries-section .service-icon i {
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
    font-weight: 900;
}

.industries-section .service-icon:hover i {
    font-size: 45px;
    color: #005B96;
}

.service-tooltip {
    font-size: 14px;
    font-weight: 700;
    position: absolute;
    bottom: -45px;
    white-space: nowrap;
    transition: all 0.3s ease;
    opacity: 0;
    background-color: #014B6F;
    padding: 5px 10px;
    border-radius: 5px;
    color: #fff;
    z-index: 10;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

.service-icon:hover .service-tooltip {
    opacity: 1;
}

/* Individual Icon Positioning - Flexbox Layout */
.industries-section .service-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.industries-section .service-icon {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
}

/* Responsive Icon Positioning - Flexbox handles all positioning */

/* Background Image - Hidden to prevent overlap */
.background-image {
    display: none;
}

.background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.1;
}

/* Company Description */
.company-description {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.description-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
}

.description-content strong {
    color: #014B6F;
}

.highlighted-text {
    color: #70AEEB;
    font-weight: 600;
}



/* About Zoom Link */
.about-zoom-link {
    text-align: right;
    margin-bottom: 30px;
    z-index: 6;
}

.about-zoom-link a {
    color: #70AEEB;
    text-decoration: none;
    font-size: 20px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.about-zoom-link a:hover {
    color: #005B96;
}

/* Zoom Logo Image */
.zoom-logo-image {
    text-align: center;
    margin-bottom: 20px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.zoom-logo-image img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Warehouse Hero Section Styles */
.warehouse-hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.warehouse-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.warehouse-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.warehouse-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    padding: 60px 0 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.warehouse-content {
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.warehouse-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.warehouse-logo img {
    max-width: 200px;
    height: auto;
    object-fit: contain;
}


.warehouse-heading {
    margin-bottom: 20px;
}

.warehouse-heading h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.2;
}

.bahrain-highlight {
    color: #005B96;
}

.warehouse-subtitle {
    margin-bottom: 0;
}

.warehouse-subtitle p {
    font-size: 1.3rem;
    color: #666;
    margin: 0;
    font-weight: 500;
}

.term-highlight {
    color: #FF6B3D;
    font-weight: 600;
}

/* Warehouse Section Styles */
.warehouse-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    border: none;
    border-bottom: none;
}

.warehouse-section.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/* Brand/Logo */
.brand {
    text-align: center;
    padding: 1rem 0;
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.brand img {
    max-width: 300px;
    height: auto;
    object-fit: contain;
}

/* Hero Content */
.hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.price {
    color: #FF6B3D;
    font-size: 1.5rem;
    font-weight: 600;
}

.price strong {
    color: #FF6B3D;
}



/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    text-align: left;
    display: inline-block;
    text-align: left;
}

.features li {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    color: #333;
    position: relative;
    padding-left: 1.8rem;
}

.features li::before {
    content: '?';
    position: absolute;
    left: 0;
    color: #FF6B3D;
    font-weight: bold;
    font-size: 1.2rem;
}

.features strong {
    color: #014B6F;
}

/* Image Gallery */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.gallery figure {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gallery figure:hover {
    transform: translateY(-5px);
}

.gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.caption {
    padding: 1rem;
    background: #f8f9fa;
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* CTA Buttons */
.cta-row {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.btn {
    background: #FF6B3D;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 61, 0.3);
}

.wa {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa:hover {
    background: #1ea952;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.wa img {
    width: 20px;
    height: 20px;
}

.muted {
    color: #666;
    font-size: 0.9rem;
    font-style: italic;
    margin-top: 1rem;
    border: none;
    border-bottom: none;
    outline: none;
    text-decoration: none;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu {
        gap: 18px;
    }
    
    .nav-menu a {
        font-size: 15px;
    }
    
}

@media (max-width: 1024px) {
    .header-container {
        height: 75px;
        padding: 0 15px;
    }
    
    .nav-menu {
        gap: 15px;
    }
    
    .nav-menu a {
        font-size: 14px;
        padding: 6px 0;
    }
    
    
    .style-5, .style-7 {
        height: 45px;
        max-width: 160px;
    }
}

@media (max-width: 900px) {
    .header-container {
        height: 70px;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .nav-menu a {
        font-size: 13px;
    }
    
    .style-5, .style-7 {
        height: 40px;
        max-width: 140px;
    }
}

/* Desktop Navigation - Hide mobile menu button */
@media (min-width: 769px) {
    .style-15, .style-31 {
        display: none !important;
    }
    
    .nav-menu {
        display: flex !important;
    }
    
}

@media (max-width: 768px) {
    .style-15, .style-31 {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        flex-direction: column;
        padding: 25px 20px;
        box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
        gap: 0;
        z-index: 2147483645;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        pointer-events: auto;
    }
    
    .nav-menu.active {
        display: flex;
        transform: translateX(0);
    }
    
    .nav-menu li {
        opacity: 0;
        animation: slideInFromLeft 0.3s ease forwards;
    }
    
    .nav-menu li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu li:nth-child(2) { animation-delay: 0.2s; }
    .nav-menu li:nth-child(3) { animation-delay: 0.3s; }
    .nav-menu li:nth-child(4) { animation-delay: 0.4s; }
    .nav-menu li:nth-child(5) { animation-delay: 0.5s; }
    .nav-menu li:nth-child(6) { animation-delay: 0.6s; }
    .nav-menu li:nth-child(7) { animation-delay: 0.7s; }
    
    .nav-menu a {
        font-size: 18px;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 18px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        width: 100%;
        text-align: left;
        min-height: 44px; /* Touch-friendly minimum */
        pointer-events: auto;
        position: relative;
        z-index: 2147483647;
    }
    
    .nav-menu a:hover {
        color: #014B6F;
    }
    
    .dropdown-content {
        position: static !important;
        box-shadow: none !important;
        padding-left: 20px !important;
        z-index: auto !important;
        background: transparent !important;
        backdrop-filter: none !important;
        margin-top: 10px !important;
        border-radius: 0 !important;
        border: none !important;
    }
    
    .dropdown-content a {
        font-size: 16px !important;
        padding: 12px 0 !important;
        color: #666 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    
    .dropdown-content a:hover {
        color: #014B6F !important;
        background: rgba(1, 75, 111, 0.05) !important;
        padding-left: 5px !important;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        font-size: 16px;
        padding: 8px 0;
        border-bottom: none;
    }
    
    
    .header-container {
        height: 70px;
    }
    
    .mobile-menu-btn {
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }
    
    .mobile-menu-btn:hover {
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .mobile-menu-btn.active .hamburger div:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-btn.active .hamburger div:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active .hamburger div:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    /* Warehouse Hero Section Mobile */
    .warehouse-hero-section {
        height: 70vh;
        min-height: 500px;
    }
    
    .warehouse-overlay {
        padding: 40px 0 50px;
    }
    
    .warehouse-content {
        padding: 0 15px;
    }
    
    .warehouse-logo img {
        max-width: 150px;
    }
    
    
    .warehouse-heading h1 {
        font-size: 2rem;
    }
    
    .warehouse-subtitle p {
        font-size: 1.1rem;
    }
    
    /* Enhanced mobile image visibility */
    .background-image {
        display: none !important;
    }
    
    .background-image img {
        display: none !important;
    }
    
    .zoom-logo-image img,
    .brand img,
    .gallery img,
    .event-hall-images img,
    .real-estate-logo img,
    .marketing-icon img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        max-width: 100% !important;
        height: auto !important;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-content {
        padding-right: 0;
        order: 2;
    }
    
    .hero-image {
        order: 1;
        height: 300px;
    }
    
    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        opacity: 1 !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    
    
    .industries-section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        gap: 15px;
    }
    
    .industries-section .service-icon {
        width: 100px;
        height: 100px;
        border: 2px solid white;
    }
    
    .industries-section .service-icon i {
        font-size: 32px;
    }
    
    .industries-section .service-icon:hover {
        transform: scale(1.15) translateY(-3px);
        border: 2px solid #005B96;
    }
    
    .industries-section .service-icon:hover i {
        font-size: 36px;
    }
    
    .service-tooltip {
        font-size: 13px;
        bottom: -35px;
    }
    
    .description-content p {
        font-size: 16px;
    }
    
    .decorative-elements {
        height: 60px;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .gallery {
        grid-template-columns: 1fr;
    }
    
    .cta-row {
        flex-direction: column;
    }
    
    .btn, .wa {
        text-align: center;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Warehouse Hero Section Small Mobile */
    .warehouse-hero-section {
        height: 60vh;
        min-height: 400px;
    }
    
    .warehouse-overlay {
        padding: 30px 0 40px;
    }
    
    .warehouse-logo img {
        max-width: 120px;
    }
    
    
    .warehouse-heading h1 {
        font-size: 1.5rem;
    }
    
    .warehouse-subtitle p {
        font-size: 1rem;
    }
    
    /* Force image visibility on small screens */
    img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
    }
    
    .background-image {
        display: none !important;
    }
    
    .zoom-logo-image,
    .brand,
    .gallery,
    .event-hall-images,
    .real-estate-logo,
    .marketing-icon,
    .right-gallery,
    .marketing-right-gallery {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .header-container {
        padding: 0 12px;
        height: 60px;
    }
    
    .style-5, .style-7, .style-21, .style-23 {
        height: 35px;
        max-width: 120px;
    }
    
    .nav-menu {
        top: 60px;
        padding: 20px 15px;
    }
    
    .nav-menu a {
        font-size: 16px;
        padding: 16px 0;
        min-height: 48px; /* Larger touch target for small screens */
    }
    
    .mobile-menu-btn {
        padding: 6px;
    }
    
    .hamburger div {
        height: 2px;
        margin: 4px 0;
        width: 20px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .services-grid {
        gap: 10px;
        height: auto;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        position: relative;
        overflow: visible;
        padding: 10px;
    }
    
    .service-item {
        position: relative !important;
        margin: 5px;
    }
    
    .industries-section .service-icon {
        width: 80px;
        height: 80px;
        position: relative !important;
        transform: none !important;
        top: auto !important;
        left: auto !important;
        border: 2px solid white;
    }
    
    .industries-section .service-icon i {
        font-size: 28px;
    }
    
    .industries-section .service-icon:hover {
        transform: scale(1.1) translateY(-2px) !important;
        border: 2px solid #005B96;
    }
    
    .industries-section .service-icon:hover i {
        font-size: 32px;
    }
    
    .service-tooltip {
        font-size: 12px;
        bottom: -40px;
        padding: 4px 8px;
    }
    
    .hero h2 {
        font-size: 1.75rem;
    }
    
    .price {
        font-size: 1.25rem;
    }
    
    .features li {
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .header-container {
        padding: 0 10px;
        height: 55px;
    }
    
    .style-5, .style-7 {
        height: 30px;
        max-width: 100px;
    }
    
    .nav-menu {
        top: 55px;
        padding: 15px 12px;
    }
    
    .nav-menu a {
        font-size: 15px;
        padding: 14px 0;
        min-height: 44px;
    }
    
    .mobile-menu-btn {
        padding: 4px;
    }
    
    .hamburger div {
        width: 18px;
        height: 2px;
    }
    
    /* Extra small service icons */
    .services-grid {
        height: auto;
        gap: 8px;
        padding: 10px 5px;
    }
    
    .service-item {
        margin: 3px;
    }
    
    .industries-section .service-icon {
        width: 70px;
        height: 70px;
        border: 2px solid white;
    }
    
    .industries-section .service-icon i {
        font-size: 24px;
    }
    
    .industries-section .service-icon:hover i {
        font-size: 28px;
    }
    
    .service-tooltip {
        font-size: 11px;
        padding: 3px 6px;
        bottom: -35px;
    }
    
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Performance Optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lazy-load.loaded {
    opacity: 1;
}

/* Fix logo lazy-load visibility */
.logo-desktop .lazy-load,
.logo-mobile .lazy-load {
    opacity: 1 !important;
}

.hero-img {
    will-change: transform;
}

.highlighted-text::before,
.highlighted-text::after {
    will-change: transform;
}

/* White Strip at Top */
.contact-strip {
    background: white;
    padding: 8px 20px;
    text-align: left;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
    border: none;
    border-bottom: none;
}

/* Adliya Event Hall Section Styles */
.adliya-event-hall {
    background: hsl(199.64, 98.21%, 21.96%);
    position: relative;
    overflow: hidden;
    padding: 0;
}

/* Top V-Shape Separator */
.top-v-shape {
    position: relative;
    height: 110px;
    background: transparent;
    overflow: hidden;
    border: none;
    outline: none;
}

.top-v-shape::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 300%;
    height: 200%;
    background: white;
    clip-path: polygon(0 0, 50% 100%, 100% 0);
}



/* Top Section with Dark Teal Background */
.event-hall-header {
    background: transparent;
    padding: 80px 2rem 60px;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}





/* Decorative Shapes */
.decorative-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

.shape-1 {
    top: 20px;
    left: 20px;
    width: 60px;
    height: 40px;
    transform: rotate(-15deg);
}

.shape-2 {
    top: 40px;
    left: 100px;
    width: 40px;
    height: 60px;
    transform: rotate(25deg);
}

.shape-3 {
    top: 80px;
    left: 180px;
    width: 50px;
    height: 30px;
    transform: rotate(-10deg);
}

/* Navigation Icon - Hidden */
.nav-icon {
    display: none;
}

/* Text Content */
.event-hall-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    z-index: 5;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.1;
}

.subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: white;
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.description {
    font-size: 1.3rem;
    color: white;
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

/* Middle Blue Strip */
.middle-blue-strip {
    background: hsl(199.64, 98.21%, 21.96%);
    height: 40px;
    width: 100%;
}

/* Bottom Section with Three Images */
.event-hall-images {
    display: flex;
    gap: 50px;
    background: transparent;
    padding: 60px 20px 200px 20px;
    justify-content: center;
    position: relative;
}

/* V-Shaped Section Separator at Bottom */
.event-hall-images::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 50vw solid transparent;
    border-right: 50vw solid transparent;
    border-bottom: 60px solid white;
}

.image-container {
    width: 400px;
    height: 280px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

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

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

/* WhatsApp Chat Button */


.chat-btn {
    background: #25D366;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s ease;
}

.chat-btn:hover {
    background: #20ba5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.chat-btn img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

/* Real Estate Services Section */
.real-estate-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
}

.real-estate-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content Area */
.left-content {
    flex: 1;
    max-width: 500px;
}

/* Logo and Heading */
.logo-heading {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.real-estate-logo {
    flex-shrink: 0;
}

.real-estate-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.real-estate-heading {
    flex: 1;
}

.real-estate-heading .main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0;
}

.real-estate-heading .main-title strong {
    color: #014B6F;
}

/* Service Sections */
.leasing-services-text,
.real-estate-services-text,
.warehouse-storage-text {
    margin-bottom: 30px;
}

/* Warehouse CTA Button */
.warehouse-cta {
    margin-top: 40px;
}

.cta-button {
    background: #014B6F;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background: #005B96;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.3);
}

.service-link a {
    color: #014B6F;
    text-decoration: underline;
    font-size: 1.2rem;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
}

/* Generic service styles - removed to prevent conflicts */

/* Right Image Gallery */
.right-gallery {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.gallery-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

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

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

/* Left Image - Large Vertical */
.left-image {
    grid-column: 1;
    grid-row: 1 / 3;
    height: 100%;
}

/* Top Right Image */
.top-image {
    grid-column: 2;
    grid-row: 1;
    height: 100%;
}

/* Bottom Right Image */
.bottom-image {
    grid-column: 2;
    grid-row: 2;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .event-hall-header {
        padding: 60px 1rem 40px;
        min-height: 300px;
    }
    
    .main-title {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.5rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .event-hall-images {
        flex-direction: column;
        gap: 30px;
        padding: 40px 15px;
    }
    
    .image-container {
        width: 100%;
        height: 220px;
    }
    
    
    
    .chat-btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    /* Real Estate Section Mobile */
    .real-estate-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 1rem;
    }
    
    .left-content {
        max-width: 100%;
    }
    
    .logo-heading {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .real-estate-heading .main-title {
        font-size: 2rem;
        text-align: center;
    }
    
    .right-gallery {
        display: flex;
        flex-direction: column;
        gap: 15px;
        height: auto;
    }
    
    .left-image,
    .top-image,
    .bottom-image {
    height: 200px;
}


    
    .left-image {
        order: 1;
    }
    
    .top-image {
        order: 2;
    }
    
    .bottom-image {
        order: 3;
    }
}

/* Marketing & Advertising Services Section (6th Section) */
.marketing-section {
    background: #fff;
    padding: 80px 0;
    position: relative;
    width: 100%;
}

.marketing-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

/* Left Content Area */
.marketing-left-content {
    flex: 1;
    max-width: 500px;
}

/* Logo and Heading */
.marketing-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 45px;
}

.marketing-icon {
    flex-shrink: 0;
}

.marketing-icon img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.marketing-heading {
    flex: 1;
}

.marketing-heading h1 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
}

/* Service Items */
.marketing-service {
    margin-bottom: 40px;
}

.service-title a {
    color: #014B6F;
    text-decoration: underline;
    font-size: 1.4rem;
    font-weight: 600;
    display: block;
    margin-bottom: 10px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-title a:hover {
    color: #005B96;
}

.service-subtitle a {
    color: #7A146E;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.service-subtitle a:hover {
    color: #8A156E;
}

.service-description {
    color: #333;
    font-size: 1.05rem;
    margin: 0;
    line-height: 1.6;
}

/* Marketing CTA Button */
.marketing-cta {
    margin-top: 45px;
}

.marketing-button {
    background: #014B6F;
    color: white;
    padding: 18px 35px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.2);
}

.marketing-button:hover {
    background: #005B96;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(1, 75, 111, 0.4);
}

/* Right Image Gallery */
.marketing-right-gallery {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.gallery-panel {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 25px;
    min-height: 700px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 25px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.marketing-image {
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.marketing-image:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

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

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

/* Top-Left Image - Person with laptop and pie chart */
.top-img {
    grid-column: 1;
    grid-row: 1;
    height: 280px;
}

/* Right Image - Business meeting table with documents (tall vertical) */
.middle-img {
    grid-column: 2;
    grid-row: 1 / 3;
    height: 580px;
}

/* Bottom-Left Image - Person with smartphone and social media emojis */
.bottom-img {
    grid-column: 1;
    grid-row: 2;
    height: 280px;
}

/* Event Planning Section (7th Section) */
.event-planning-section {
    background: #014B6F;
    padding: 80px 0;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.event-planning-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Diagonal Background Element - Subtle decorative element */
.diagonal-bg {
    position: absolute;
    top: -20px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    z-index: 1;
    opacity: 0.3;
}

/* Main Heading */
.event-heading {
    margin-bottom: 30px;
    z-index: 4;
}

.event-heading h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0;
    transition: opacity 0.9s ease 0.2136s;
}

/* Description */
.event-description {
    margin-bottom: 60px;
    z-index: 5;
}

.event-description p {
    font-size: 1.3rem;
    color: white;
    line-height: 1.6;
    margin: 0;
    transition: opacity 0.9s ease 0.216s;
}

/* Event Planning Grid */
.event-planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

/* Event Phase */
.event-phase {
    text-align: left;
}

/* Phase Image */
.phase-image {
    margin-bottom: 25px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.phase-image:hover {
    transform: translateY(-5px);
}

.phase-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

/* Phase Title */
.phase-title {
    margin-bottom: 20px;
    z-index: 9;
}

.phase-title p {
    font-size: 1.2rem;
    color: white;
    margin: 0;
    transition: opacity 0.9s ease 0.2208s;
    text-align: left;
}

.phase-title strong {
    font-weight: 700;
}

.phase-title em {
    font-style: italic;
    opacity: 0.9;
}

/* Phase Download */
.phase-download {
    margin-bottom: 25px;
    z-index: 8;
}

.phase-download a {
    color: white;
    text-decoration: underline;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    transition: opacity 0.9s ease 0.2256s;
}

.phase-download a:hover {
    color: #f8f9fa;
    text-decoration: none;
}

/* Phase CTA Button (Only for Planning Phase) */
.phase-cta {
    z-index: 7;
}

.whatsapp-button {
    background: white;
    color: #014B6F;
    padding: 18px 30px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-block;
    transition: opacity 0.9s ease 0.2232s;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-button:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

/* Bottom Section Layout */
.event-bottom-section {
    display: flex;
    gap: 80px;
    align-items: flex-start;
    margin-top: 40px;
}

/* WhatsApp CTA */
.whatsapp-cta {
    flex-shrink: 0;
    z-index: 7;
}

/* Concluding Text */
.event-conclusion {
    flex: 1;
    text-align: left;
    z-index: 6;
}

.event-conclusion h4 {
    font-size: 1.4rem;
    color: white;
    line-height: 1.6;
    margin: 0;
    max-width: 800px;
    transition: opacity 0.9s ease 0.2352s;
}

/* Responsive Design for Event Planning Section */
@media (max-width: 768px) {
    .event-planning-section {
        padding: 60px 0;
    }
    
    .event-planning-container {
        padding: 0 1rem;
    }
    
    .event-heading h1 {
        font-size: 2.5rem;
    }
    
    .event-description p {
        font-size: 1.1rem;
    }
    
    .event-planning-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .phase-image img {
        height: 250px;
    }
    
    .diagonal-bg {
        width: 100px;
        height: 100px;
        top: -15px;
        right: -20px;
    }
    
    .event-bottom-section {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
    }
}

/* ========================================
   EVENT PLANNING SECTION (7th Section)
   ======================================== */

/* Event Planning Section - Original Structure */
.event-planning-section {
    background: linear-gradient(135deg, #1e4a5f 0%, #2d6187 100%);
    padding: 80px 0;
    position: relative;
    width: 100%;
    color: white;
    overflow: hidden;
}

.event-planning-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
}

/* Diagonal Background Element */
.diagonal-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 74, 95, 0.8) 0%, rgba(45, 97, 135, 0.8) 100%);
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    z-index: 1;
}

/* Main Heading */
.event-heading {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.event-heading h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

/* Description */
.event-description {
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
    max-width: 600px;
}

.event-description p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* Event Planning Grid */
.event-planning-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
    margin-bottom: 60px;
}

.event-phase {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-phase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.phase-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.event-phase:hover .phase-image img {
    transform: scale(1.05);
}

.phase-title {
    padding: 25px 20px;
    text-align: center;
}

.phase-title p {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.phase-title strong {
    font-weight: 700;
}

.phase-title em {
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
}

.phase-download {
    padding: 0 20px 20px 20px;
    text-align: center;
}

.phase-download a {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.phase-download a:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Bottom Section */
.event-bottom-section {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-top: 60px;
}

.whatsapp-cta {
    margin-bottom: 30px;
}

.whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    background: #25D366;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.whatsapp-button:hover {
    background: #20b954;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

.event-conclusion h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
}

/* Event Planning Responsive Design */
@media (max-width: 1200px) {
    .event-planning-container {
        padding: 0 30px;
    }
    
    .event-heading h1 {
        font-size: 3rem;
    }
    
    .event-planning-grid {
        gap: 30px;
    }
}

@media (max-width: 900px) {
    .event-planning-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-heading h1 {
        font-size: 2.5rem;
    }
    
    .event-description p {
        font-size: 1.1rem;
    }
    
    .phase-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .event-planning-section {
        padding: 60px 0;
    }
    
    .event-planning-container {
        padding: 0 20px;
    }
    
    .event-heading h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .event-description {
        text-align: center;
        margin: 0 auto 40px auto;
    }
    
    .event-description p {
        font-size: 1rem;
    }
    
    .diagonal-bg {
        clip-path: none;
    }
    
    .event-bottom-section {
        margin-top: 40px;
    }
    
    .event-conclusion h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .event-heading h1 {
        font-size: 1.8rem;
    }
    
    .phase-title p {
        font-size: 1rem;
    }
    
    .whatsapp-button {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

/* Event Planning Heading */
.event-planning-heading {
    grid-area: 1 / 1 / 3 / 8;
    z-index: 5;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.event-planning-heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Event Planning Logo */
.event-planning-logo {
    grid-area: 1 / 8 / 3 / 10;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.event-planning-logo img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    object-position: center;
}

/* Event Planning Services */
.event-planning-service {
    position: relative;
    z-index: 7;
}

.event-planning-service:nth-child(3) {
    grid-area: 4 / 1 / 6 / 8;
}

.event-planning-service:nth-child(4) {
    grid-area: 7 / 1 / 9 / 8;
}

.event-planning-service:nth-child(5) {
    grid-area: 10 / 1 / 12 / 8;
}

.event-planning-service .service-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.event-planning-service .service-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-planning-service .service-title a:hover {
    color: #005B96;
}

.event-planning-service .service-subtitle {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.event-planning-service .service-subtitle a {
    color: #005B96;
    text-decoration: none;
    transition: color 0.3s ease;
}

.event-planning-service .service-subtitle a:hover {
    color: #014B6F;
}

.event-planning-service .service-description {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* Event Planning CTA */
.event-planning-cta {
    grid-area: 13 / 1 / 15 / 6;
    z-index: 8;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

.event-planning-cta .cta-button {
    background: #005B96;
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.event-planning-cta .cta-button:hover {
    background: #014B6F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 91, 150, 0.3);
}

/* Event Planning Images */
.event-planning-image {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-planning-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.event-planning-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.event-planning-image:hover img {
    transform: scale(1.05);
}

.pre-planning-img {
    grid-area: 1 / 11 / 7 / 15;
    z-index: 4;
}

.during-event-img {
    grid-area: 4 / 15 / 12 / 21;
    z-index: 5;
}

.end-event-img {
    grid-area: 11 / 11 / 18 / 17;
    z-index: 6;
}

/* ========================================
   CONSULTING SERVICES SECTION (8th Section)
   ======================================== */

/* Main Section */
.consulting-services-section {
    padding: 80px 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.consulting-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Images */
.consulting-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.consulting-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.consulting-image:hover {
    transform: translateY(-5px);
}

.consulting-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.consulting-image.top-left {
    grid-column: 1;
    grid-row: 1;
}

.consulting-image.bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.consulting-image.right {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Right Side - Content */
.consulting-content {
    padding-left: 20px;
}

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

.consulting-icon {
    width: 80px;
    height: 80px;
    background: #2d6187;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.consulting-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.consulting-services .service-item {
    margin-bottom: 35px;
}

.consulting-services .service-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d6187;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.consulting-services .service-link {
    font-size: 1rem;
    font-weight: 600;
    color: #8e44ad;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.consulting-services .service-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

/* Grid Container */
.consulting-services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(19, 1fr);
    gap: 20px;
    height: 800px;
}

/* Main Heading */
.consulting-heading {
    grid-area: 1 / 17 / 4 / 26;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consulting-heading h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    white-space: pre-wrap;
    transition: opacity 0.9s ease 0.2448s;
    opacity: 1;
}

/* Company Formation */
.company-formation {
    grid-area: 9 / 15 / 12 / 26;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.company-formation p {
    margin: 0 0 10px 0;
    white-space: pre-wrap;
    transition: opacity 0.9s ease;
    opacity: 1;
}

.company-formation p:first-child {
    transition-delay: 0.2472s;
}

.company-formation p:nth-child(2) {
    transition-delay: 0.2496s;
}

.company-formation p:last-child {
    transition-delay: 0.252s;
}

.company-formation a {
    color: #014B6F;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.company-formation a:hover {
    color: #4A90E2;
    text-decoration: none;
}

/* Market Research */
.market-research {
    grid-area: 13 / 15 / 16 / 26;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.market-research p {
    margin: 0 0 10px 0;
    white-space: pre-wrap;
    transition: opacity 0.9s ease;
    opacity: 1;
}

.market-research p:first-child {
    transition-delay: 0.2544s;
}

.market-research p:nth-child(2) {
    transition-delay: 0.2568s;
}

.market-research p:last-child {
    transition-delay: 0.2592s;
}

.market-research a {
    color: #014B6F;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.market-research a:hover {
    color: #4A90E2;
    text-decoration: none;
}

/* CTA Button */
.consulting-cta {
    grid-area: 17 / 15 / 19 / 21;
    z-index: 12;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 68px;
}

.consulting-btn {
    background: #014B6F;
    color: white;
    padding: 0px 20.8px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68.1424px;
    min-width: 200px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.1s linear;
    opacity: 0.8;
    backface-visibility: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.consulting-btn:hover {
    background: #4A90E2;
    opacity: 1;
    color: white;
}

/* Sales Consultancy */
.sales-consultancy {
    grid-area: 5 / 15 / 8 / 26;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.sales-consultancy p {
    margin: 0 0 10px 0;
    white-space: pre-wrap;
    transition: opacity 0.9s ease;
    opacity: 1;
}

.sales-consultancy p:first-child {
    transition-delay: 0.264s;
}

.sales-consultancy p:nth-child(2) {
    transition-delay: 0.2664s;
}

.sales-consultancy p:last-child {
    transition-delay: 0.2688s;
}

.sales-consultancy a {
    color: #014B6F;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.sales-consultancy a:hover {
    color: #4A90E2;
    text-decoration: none;
}

/* Background Shape */
.consulting-bg-shape {
    grid-area: 8 / 1 / 13 / 27;
    z-index: 3;
    background: transparent;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Logo */
.consulting-logo {
    grid-area: 1 / 15 / 4 / 17;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.consulting-logo img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    object-fit: contain;
    object-position: 50% 50%;
    transition: opacity 0.9s ease 0.2712s;
    opacity: 1;
}

/* Middle Image - Document Clearance */
.middle-image {
    grid-area: 1 / 8 / 19 / 14;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.middle-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.middle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 39.8275% 52.0036%;
    display: block;
    transition: transform 0.3s ease;
    transition: opacity 0.9s ease 0.2736s;
    opacity: 1;
}

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

/* Top Image - Sales Consult */
.top-image {
    grid-area: 1 / 2 / 11 / 8;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
    transition: opacity 0.9s ease 0.276s;
    opacity: 1;
}

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

/* Bottom Image - Property Investment */
.bottom-image {
    grid-area: 11 / 2 / 19 / 8;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
    transition: opacity 0.9s ease 0.2784s;
    opacity: 1;
}

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

/* Responsive Design for Consulting Services */
@media (max-width: 1024px) {
    .consulting-services-grid {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(15, 1fr);
        height: 600px;
        padding: 0 30px;
    }
    
    .consulting-heading {
        grid-area: 1 / 7 / 3 / 13;
    }
    
    .consulting-heading h1 {
        font-size: 2.2rem;
    }
    
    .company-formation {
        grid-area: 7 / 7 / 10 / 13;
    }
    
    .market-research {
        grid-area: 10 / 7 / 13 / 13;
    }
    
    .consulting-cta {
        grid-area: 13 / 7 / 15 / 11;
    }
    
    .sales-consultancy {
        grid-area: 4 / 7 / 7 / 13;
    }
    
    .consulting-bg-shape {
        grid-area: 3 / 1 / 15 / 13;
    }
    
    .consulting-logo {
        grid-area: 1 / 5 / 3 / 7;
    }
    
    .middle-image {
        grid-area: 1 / 4 / 15 / 7;
    }
    
    .top-image {
        grid-area: 1 / 1 / 8 / 4;
    }
    
    .bottom-image {
        grid-area: 8 / 1 / 15 / 4;
    }
}

@media (max-width: 768px) {
    .consulting-services-section {
        padding: 80px 0;
    }
    
    .consulting-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .consulting-heading,
    .company-formation,
    .market-research,
    .consulting-cta,
    .sales-consultancy,
    .consulting-bg-shape,
    .consulting-logo,
    .middle-image,
    .top-image,
    .bottom-image {
        grid-area: auto;
        position: static;
    }
    
    .consulting-heading h1 {
        font-size: 2rem;
    }
    
    .consulting-btn {
        padding: 18px 40px;
        font-size: 1.1rem;
        height: 70px;
        min-width: 220px;
    }
    
    .top-image,
    .middle-image,
    .bottom-image {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .event-heading h1 {
        font-size: 2rem;
    }
    
    .consulting-services-section {
        padding: 60px 0;
    }
    
    .consulting-services-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .consulting-heading h1 {
        font-size: 1.8rem;
    }
    
    .consulting-logo img {
        width: 80px;
        height: 80px;
    }
    
    .consulting-btn {
        padding: 15px 30px;
        font-size: 1rem;
        height: 65px;
        min-width: 200px;
    }
    
    .top-image,
    .middle-image,
    .bottom-image {
        height: 250px;
    }
}

/* Responsive Design for Marketing Section */
@media (max-width: 768px) {
    .marketing-container {
        flex-direction: column;
        gap: 40px;
        padding: 0 1rem;
    }
    
    .marketing-left-content {
        max-width: 100%;
    }
    
    .marketing-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .marketing-heading h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .marketing-right-gallery {
        justify-content: center;
    }
    
    .gallery-panel {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    
    .top-img,
    .middle-img,
    .bottom-img {
        height: 200px;
        grid-column: 1;
        grid-row: auto;
    }
}

/* Freight Forwarding & Logistics Services Section */
.logistics-services-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.logistics-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Left Side - Images */
.logistics-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 500px;
}

.logistics-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.logistics-image:hover {
    transform: translateY(-5px);
}

.logistics-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.logistics-image.top-left {
    grid-column: 1;
    grid-row: 1;
}

.logistics-image.bottom-left {
    grid-column: 1;
    grid-row: 2;
}

.logistics-image.right {
    grid-column: 2;
    grid-row: 1 / 3;
}

/* Right Side - Content */
.logistics-content {
    padding-left: 20px;
}

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

.logistics-icon {
    width: 80px;
    height: 80px;
    background: #2d6187;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logistics-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.logistics-services .service-item {
    margin-bottom: 35px;
}

.logistics-services .service-item h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d6187;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.logistics-services .service-link {
    font-size: 1rem;
    font-weight: 600;
    color: #8e44ad;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.logistics-services .service-description {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
}

.logistics-services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(19, 1fr);
    height: 900px;
    gap: 20px;
    position: relative;
}

/* Grid Areas */
.logistics-heading {
    grid-area: 1 / 17 / 4 / 26;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logistics-logo {
    grid-area: 1 / 15 / 4 / 17;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middle-image {
    grid-area: 1 / 8 / 19 / 14;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.middle-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.middle-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 65.901% 67.2084%;
    display: block;
    transition: transform 0.3s ease;
}

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

.top-image {
    grid-area: 1 / 2 / 10 / 8;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.top-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 68.5% 54.4%;
    display: block;
    transition: transform 0.3s ease;
}

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

.bottom-image {
    grid-area: 10 / 2 / 19 / 8;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 39.6682% 58.4049%;
    display: block;
    transition: transform 0.3s ease;
}

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

.warehousing-service {
    grid-area: 5 / 15 / 8 / 26;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.sea-freight-service {
    grid-area: 9 / 15 / 12 / 26;
    z-index: 7;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.air-freight-service {
    grid-area: 13 / 15 / 16 / 26;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.logistics-cta {
    grid-area: 17 / 15 / 19 / 21;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Typography */
.logistics-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Service Text Styling */
.warehousing-service p,
.sea-freight-service p,
.air-freight-service p {
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.warehousing-service p:first-child,
.sea-freight-service p:first-child,
.air-freight-service p:first-child {
    margin-bottom: 15px;
}

.warehousing-service p:last-child,
.sea-freight-service p:last-child,
.air-freight-service p:last-child {
    margin-bottom: 0;
}

.warehousing-service a,
.sea-freight-service a,
.air-freight-service a {
    color: #014B6F;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.warehousing-service a:hover,
.sea-freight-service a:hover,
.air-freight-service a:hover {
    color: #4A90E2;
}

.warehousing-service a span,
.sea-freight-service a span,
.air-freight-service a span {
    color: #7A146E;
    font-size: 17px;
    font-weight: 700;
}

.warehousing-service p:last-child,
.sea-freight-service p:last-child,
.air-freight-service p:last-child {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Images */
.logistics-logo img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    object-fit: contain;
    object-position: 50% 50%;
}


/* CTA Button */
.logistics-btn {
    background: #014B6F;
    color: white;
    padding: 0px 20.8px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68.1424px;
    min-width: 200px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.1s linear;
    opacity: 0.8;
    backface-visibility: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.logistics-btn:hover {
    background: #4A90E2;
    opacity: 1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 75, 111, 0.3);
}

/* Responsive Design for Logistics Services */
@media (max-width: 1024px) {
    .logistics-services-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(15, 1fr);
        height: 700px;
        padding: 0 30px;
    }
    
    .logistics-heading {
        grid-area: 1 / 12 / 3 / 21;
    }
    
    .logistics-logo {
        grid-area: 1 / 10 / 3 / 12;
    }
    
    .middle-image {
        grid-area: 1 / 6 / 15 / 10;
    }
    
    .top-image {
        grid-area: 1 / 1 / 8 / 6;
    }
    
    .bottom-image {
        grid-area: 8 / 1 / 15 / 6;
    }
    
    .warehousing-service {
        grid-area: 4 / 10 / 6 / 21;
    }
    
    .sea-freight-service {
        grid-area: 7 / 10 / 9 / 21;
    }
    
    .air-freight-service {
        grid-area: 10 / 10 / 12 / 21;
    }
    
    .logistics-cta {
        grid-area: 13 / 10 / 15 / 16;
    }
    
}

@media (max-width: 768px) {
    .logistics-services-section {
        padding: 60px 0;
    }
    
    .logistics-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .logistics-heading,
    .logistics-logo,
    .middle-image,
    .top-image,
    .bottom-image,
    .warehousing-service,
    .sea-freight-service,
    .air-freight-service,
    .logistics-cta {
        grid-area: auto;
        position: static;
    }
    
    .logistics-heading h1 {
        font-size: 32px;
    }
    
    .logistics-logo img {
        width: 80px;
        height: 80px;
    }
    
    .logistics-services-img {
        height: 250px;
    }
    
    .logistics-btn {
        height: 60px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .logistics-services-section {
        padding: 40px 0;
    }
    
    .logistics-services-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .logistics-heading h1 {
        font-size: 28px;
    }
    
    .logistics-logo img {
        width: 60px;
        height: 60px;
    }
    
    .logistics-services-img {
        height: 200px;
    }
    
    .logistics-btn {
        height: 50px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .warehousing-service a,
    .sea-freight-service a,
    .air-freight-service a {
        font-size: 18px;
    }
    
    .warehousing-service a span,
    .sea-freight-service a span,
    .air-freight-service a span {
        font-size: 15px;
    }
}

/* WhatsApp Chat Button for Logistics Section - Responsive */
.whatsapp-chat-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1000;
    transition: all 0.3s ease;
    font-weight: 600;
}

/* WhatsApp Button Responsive */
@media (max-width: 768px) {
    .whatsapp-chat-btn {
        bottom: 15px;
        right: 15px;
        padding: 12px 16px;
        font-size: 14px;
    }
    
    .whatsapp-chat-btn i {
        font-size: 16px;
    }
    
    .whatsapp-chat-btn span {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .whatsapp-chat-btn {
        bottom: 10px;
        right: 10px;
        padding: 10px 14px;
        font-size: 12px;
        gap: 6px;
    }
    
    .whatsapp-chat-btn i {
        font-size: 14px;
    }
    
    .whatsapp-chat-btn span {
        font-size: 10px;
    }
}

.whatsapp-chat-btn:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    color: white;
    text-decoration: none;
}

.whatsapp-chat-btn i {
    font-size: 20px;
}

.whatsapp-chat-btn span {
    font-size: 14px;
    font-weight: 600;
}

/* Education & Training Services Section (10th Section) */
.education-services-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.education-services-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(19, 1fr);
    height: 900px;
    gap: 20px;
    position: relative;
}

/* Grid Areas */
.education-logo {
    grid-area: 1 / 2 / 4 / 4;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.education-heading {
    grid-area: 1 / 4 / 4 / 14;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.youth-leadership-service {
    grid-area: 5 / 2 / 8 / 14;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.education-bg-shape {
    grid-area: 8 / 1 / 13 / 27;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    height: 187.656px;
}

.corporate-training-service {
    grid-area: 13 / 2 / 16 / 14;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.education-cta {
    grid-area: 17 / 2 / 19 / 8;
    z-index: 14;
    display: flex;
    justify-content: center;
    align-items: center;
}

.professional-development-service {
    grid-area: 9 / 2 / 12 / 14;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.large-background-image {
    grid-area: 1 / 20 / 19 / 26;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-education-image {
    grid-area: 1 / 14 / 11 / 20;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-education-image {
    grid-area: 11 / 14 / 19 / 20;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.education-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Service Text Styling */
.youth-leadership-service p,
.corporate-training-service p,
.professional-development-service p {
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.youth-leadership-service p:first-child,
.corporate-training-service p:first-child,
.professional-development-service p:first-child {
    margin-bottom: 15px;
}

.youth-leadership-service p:last-child,
.corporate-training-service p:last-child,
.professional-development-service p:last-child {
    margin-bottom: 0;
}

.youth-leadership-service a,
.corporate-training-service a,
.professional-development-service a {
    color: #014B6F;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.youth-leadership-service a:hover,
.corporate-training-service a:hover,
.professional-development-service a:hover {
    color: #4A90E2;
}

.youth-leadership-service a span,
.corporate-training-service a span,
.professional-development-service a span {
    color: #7A146E;
    font-size: 17px;
    font-weight: 700;
}

.youth-leadership-service p:last-child,
.corporate-training-service p:last-child,
.professional-development-service p:last-child {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Images */
.education-logo img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    object-fit: contain;
    object-position: 50% 50%;
}

.large-background-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.large-background-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.large-background-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
}

.large-background-image:hover img {
    transform: scale(1.05);
}

.top-education-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-education-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.top-education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 73.0923% 38.4021%;
    display: block;
    transition: transform 0.3s ease;
}

.top-education-image:hover img {
    transform: scale(1.05);
}

.bottom-education-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-education-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottom-education-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
}

.bottom-education-image:hover img {
    transform: scale(1.05);
}

/* CTA Button */
.education-btn {
    background: #014B6F;
    color: white;
    padding: 0px 20.8px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68.1424px;
    min-width: 200px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.1s linear;
    opacity: 0.8;
    backface-visibility: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.education-btn:hover {
    background: #4A90E2;
    opacity: 1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 75, 111, 0.3);
}

/* Responsive Design for Education Services */
@media (max-width: 1024px) {
    .education-services-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(15, 1fr);
        height: 700px;
        padding: 0 30px;
    }
    
    .education-heading {
        grid-area: 1 / 8 / 3 / 21;
    }
    
    .education-logo {
        grid-area: 1 / 6 / 3 / 8;
    }
    
    .large-background-image {
        grid-area: 1 / 12 / 15 / 21;
    }
    
    .top-education-image {
        grid-area: 1 / 8 / 8 / 12;
    }
    
    .bottom-education-image {
        grid-area: 8 / 8 / 15 / 12;
    }
    
    .youth-leadership-service {
        grid-area: 4 / 6 / 6 / 21;
    }
    
    .professional-development-service {
        grid-area: 7 / 6 / 9 / 21;
    }
    
    .corporate-training-service {
        grid-area: 10 / 6 / 12 / 21;
    }
    
    .education-cta {
        grid-area: 13 / 6 / 15 / 12;
    }
    
    .education-bg-shape {
        grid-area: 6 / 1 / 9 / 21;
    }
}

@media (max-width: 768px) {
    .education-services-section {
        padding: 60px 0;
    }
    
    .education-services-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .education-heading,
    .education-logo,
    .large-background-image,
    .top-education-image,
    .bottom-education-image,
    .youth-leadership-service,
    .professional-development-service,
    .corporate-training-service,
    .education-cta,
    .education-bg-shape {
        grid-area: auto;
        position: static;
    }
    
    .education-heading h1 {
        font-size: 32px;
    }
    
    .education-logo img {
        width: 80px;
        height: 80px;
    }
    
    .education-services-img {
        height: 250px;
    }
    
    .education-btn {
        height: 60px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .education-services-section {
        padding: 40px 0;
    }
    
    .education-services-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .education-heading h1 {
        font-size: 28px;
    }
    
    .education-logo img {
        width: 60px;
        height: 60px;
    }
    
    .education-services-img {
        height: 200px;
    }
    
    .education-btn {
        height: 50px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .youth-leadership-service a,
    .professional-development-service a,
    .corporate-training-service a {
        font-size: 18px;
    }
    
    .youth-leadership-service a span,
    .professional-development-service a span,
    .corporate-training-service a span {
        font-size: 15px;
    }
}

/* Events Management Section (11th Section) */
.events-management-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.events-management-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(19, 1fr);
    height: 900px;
    gap: 20px;
    position: relative;
}

/* Grid Areas */
.events-heading {
    grid-area: 1 / 17 / 4 / 26;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.events-logo {
    grid-area: 1 / 15 / 4 / 17;
    z-index: 4;
    display: flex;
    justify-content: center;
    align-items: center;
}

.middle-events-image {
    grid-area: 1 / 8 / 19 / 14;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.marketing-events-service {
    grid-area: 5 / 15 / 8 / 26;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.events-bg-shape {
    grid-area: 8 / 1 / 13 / 27;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.05);
    height: 187.656px;
}

.corporate-events-service {
    grid-area: 13 / 15 / 16 / 26;
    z-index: 8;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.events-cta {
    grid-area: 17 / 15 / 19 / 21;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.private-parties-service {
    grid-area: 9 / 15 / 12 / 26;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.top-events-image {
    grid-area: 1 / 2 / 11 / 8;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-events-image {
    grid-area: 11 / 2 / 19 / 8;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.events-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Service Text Styling */
.marketing-events-service p,
.corporate-events-service p,
.private-parties-service p {
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.marketing-events-service p:first-child,
.corporate-events-service p:first-child,
.private-parties-service p:first-child {
    margin-bottom: 15px;
}

.marketing-events-service p:last-child,
.corporate-events-service p:last-child,
.private-parties-service p:last-child {
    margin-bottom: 0;
}

.marketing-events-service a,
.corporate-events-service a,
.private-parties-service a {
    color: #014B6F;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.marketing-events-service a:hover,
.corporate-events-service a:hover,
.private-parties-service a:hover {
    color: #4A90E2;
}

.marketing-events-service a span,
.corporate-events-service a span,
.private-parties-service a span {
    color: #7A146E;
    font-size: 17px;
    font-weight: 700;
}

.marketing-events-service p:last-child,
.corporate-events-service p:last-child,
.private-parties-service p:last-child {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Images */
.events-logo img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    object-fit: contain;
    object-position: 50% 50%;
}

.middle-events-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.middle-events-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.middle-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 71.2351% 89.6079%;
    display: block;
    transition: transform 0.3s ease;
}

.middle-events-image:hover img {
    transform: scale(1.05);
}

.top-events-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-events-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.top-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 38.8993% 70.4088%;
    display: block;
    transition: transform 0.3s ease;
}

.top-events-image:hover img {
    transform: scale(1.05);
}

.bottom-events-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-events-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottom-events-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
}

.bottom-events-image:hover img {
    transform: scale(1.05);
}

/* CTA Button */
.events-btn {
    background: #014B6F;
    color: white;
    padding: 0px 20.8px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68.1424px;
    min-width: 200px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.1s linear;
    opacity: 0.8;
    backface-visibility: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.events-btn:hover {
    background: #4A90E2;
    opacity: 1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 75, 111, 0.3);
}

/* Responsive Design for Events Management */
@media (max-width: 1024px) {
    .events-management-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(15, 1fr);
        height: 700px;
        padding: 0 30px;
    }
    
    .events-heading {
        grid-area: 1 / 12 / 3 / 21;
    }
    
    .events-logo {
        grid-area: 1 / 10 / 3 / 12;
    }
    
    .middle-events-image {
        grid-area: 1 / 6 / 15 / 10;
    }
    
    .top-events-image {
        grid-area: 1 / 1 / 8 / 6;
    }
    
    .bottom-events-image {
        grid-area: 8 / 1 / 15 / 6;
    }
    
    .marketing-events-service {
        grid-area: 4 / 10 / 6 / 21;
    }
    
    .private-parties-service {
        grid-area: 7 / 10 / 9 / 21;
    }
    
    .corporate-events-service {
        grid-area: 10 / 10 / 12 / 21;
    }
    
    .events-cta {
        grid-area: 13 / 10 / 15 / 16;
    }
    
    .events-bg-shape {
        grid-area: 6 / 1 / 9 / 21;
    }
}

@media (max-width: 768px) {
    .events-management-section {
        padding: 60px 0;
    }
    
    .events-management-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .events-heading,
    .events-logo,
    .middle-events-image,
    .top-events-image,
    .bottom-events-image,
    .marketing-events-service,
    .private-parties-service,
    .corporate-events-service,
    .events-cta,
    .events-bg-shape {
        grid-area: auto;
        position: static;
    }
    
    .events-heading h1 {
        font-size: 32px;
    }
    
    .events-logo img {
        width: 80px;
        height: 80px;
    }
    
    .events-services-img {
        height: 250px;
    }
    
    .events-btn {
        height: 60px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .events-management-section {
        padding: 40px 0;
    }
    
    .events-management-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .events-heading h1 {
        font-size: 28px;
    }
    
    .events-logo img {
        width: 60px;
        height: 60px;
    }
    
    .events-services-img {
        height: 200px;
    }
    
    .events-btn {
        height: 50px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .marketing-events-service a,
    .private-parties-service a,
    .corporate-events-service a {
        font-size: 18px;
    }
    
    .marketing-events-service a span,
    .private-parties-service a span,
    .corporate-events-service a span {
        font-size: 15px;
    }
}

/* Events Marketing & Advertising Services Section (12th Section) */
.events-marketing-section {
    padding: 100px 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.events-marketing-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(20, 1fr);
    height: 1000px;
    gap: 20px;
    position: relative;
}

/* Grid Areas */
.events-marketing-logo {
    grid-area: 1 / 2 / 4 / 4;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.events-marketing-heading {
    grid-area: 1 / 4 / 4 / 14;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.large-marketing-image {
    grid-area: 1 / 20 / 20 / 26;
    z-index: 6;
    display: flex;
    justify-content: center;
    align-items: center;
}

.events-marketing-bg-shape {
    grid-area: 8 / 1 / 14 / 27;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    background: white;
    height: 226.406px;
}

.event-publicity-service {
    grid-area: 5 / 2 / 8 / 14;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.influencer-management-service {
    grid-area: 14 / 2 / 17 / 14;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.public-relations-service {
    grid-area: 9 / 2 / 13 / 14;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.events-marketing-cta {
    grid-area: 18 / 2 / 20 / 8;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-marketing-image {
    grid-area: 1 / 14 / 11 / 20;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottom-marketing-image {
    grid-area: 11 / 14 / 20 / 20;
    z-index: 8;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Typography */
.events-marketing-heading h1 {
    font-size: 40px;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Service Text Styling */
.event-publicity-service p,
.influencer-management-service p,
.public-relations-service p {
    margin: 0 0 10px 0;
    font-family: 'Poppins', sans-serif;
}

.event-publicity-service p:first-child,
.influencer-management-service p:first-child,
.public-relations-service p:first-child {
    margin-bottom: 15px;
}

.event-publicity-service p:last-child,
.influencer-management-service p:last-child,
.public-relations-service p:last-child {
    margin-bottom: 0;
}

.event-publicity-service a,
.influencer-management-service a,
.public-relations-service a {
    color: #014B6F;
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.event-publicity-service a:hover,
.influencer-management-service a:hover,
.public-relations-service a:hover {
    color: #4A90E2;
}

.event-publicity-service a span,
.influencer-management-service a span,
.public-relations-service a span {
    color: #7A146E;
    font-size: 17px;
    font-weight: 700;
}

.event-publicity-service p:last-child,
.influencer-management-service p:last-child,
.public-relations-service p:last-child {
    color: #666666;
    font-size: 16px;
    line-height: 1.6;
    font-weight: 400;
}

/* Images */
.events-marketing-logo img {
    width: 99px;
    height: 99px;
    border-radius: 50%;
    object-fit: contain;
    object-position: 50% 50%;
}

.large-marketing-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.large-marketing-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.large-marketing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 25.6648% 48.0032%;
    display: block;
    transition: transform 0.3s ease;
}

.large-marketing-image:hover img {
    transform: scale(1.05);
}

.top-marketing-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.top-marketing-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.top-marketing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
}

.top-marketing-image:hover img {
    transform: scale(1.05);
}

.bottom-marketing-image {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bottom-marketing-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.bottom-marketing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    display: block;
    transition: transform 0.3s ease;
}

.bottom-marketing-image:hover img {
    transform: scale(1.05);
}

/* CTA Button */
.events-marketing-btn {
    background: #014B6F;
    color: white;
    padding: 0px 20.8px;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 68.1424px;
    min-width: 200px;
    text-align: center;
    line-height: 1;
    box-shadow: 0 4px 15px rgba(1, 75, 111, 0.2);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.1s linear;
    opacity: 0.8;
    backface-visibility: hidden;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.events-marketing-btn:hover {
    background: #4A90E2;
    opacity: 1;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(1, 75, 111, 0.3);
}

/* Responsive Design for Events Marketing */
@media (max-width: 1024px) {
    .events-marketing-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(16, 1fr);
        height: 800px;
        padding: 0 30px;
    }
    
    .events-marketing-logo {
        grid-area: 1 / 1 / 3 / 3;
    }
    
    .events-marketing-heading {
        grid-area: 1 / 3 / 3 / 11;
    }
    
    .large-marketing-image {
        grid-area: 1 / 11 / 16 / 21;
    }
    
    .top-marketing-image {
        grid-area: 1 / 11 / 8 / 16;
    }
    
    .bottom-marketing-image {
        grid-area: 8 / 11 / 16 / 16;
    }
    
    .event-publicity-service {
        grid-area: 4 / 1 / 6 / 11;
    }
    
    .public-relations-service {
        grid-area: 7 / 1 / 9 / 11;
    }
    
    .influencer-management-service {
        grid-area: 10 / 1 / 12 / 11;
    }
    
    .events-marketing-cta {
        grid-area: 13 / 1 / 15 / 6;
    }
    
    .events-marketing-bg-shape {
        grid-area: 6 / 1 / 10 / 21;
    }
}

@media (max-width: 768px) {
    .events-marketing-section {
        padding: 60px 0;
    }
    
    .events-marketing-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .events-marketing-logo,
    .events-marketing-heading,
    .large-marketing-image,
    .top-marketing-image,
    .bottom-marketing-image,
    .event-publicity-service,
    .public-relations-service,
    .influencer-management-service,
    .events-marketing-cta,
    .events-marketing-bg-shape {
        grid-area: auto;
        position: static;
    }
    
    .events-marketing-heading h1 {
        font-size: 32px;
    }
    
    .events-marketing-logo img {
        width: 80px;
        height: 80px;
    }
    
    .events-marketing-btn {
        height: 60px;
        font-size: 1rem;
        min-width: 180px;
    }
}

@media (max-width: 480px) {
    .events-marketing-section {
        padding: 40px 0;
    }
    
    .events-marketing-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .events-marketing-heading h1 {
        font-size: 28px;
    }
    
    .events-marketing-logo img {
        width: 60px;
        height: 60px;
    }
    
    .events-marketing-btn {
        height: 50px;
        font-size: 0.9rem;
        min-width: 160px;
    }
    
    .event-publicity-service a,
    .public-relations-service a,
    .influencer-management-service a {
        font-size: 18px;
    }
    
    .event-publicity-service a span,
    .public-relations-service a span,
    .influencer-management-service a span {
        font-size: 15px;
    }
}

/* Why Choose Us Section (13th Section) */
.why-choose-us-section {
    padding: 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.why-choose-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    align-items: start;
    min-height: 600px;
}

/* Left Content Area */
.why-choose-us-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

/* Main Heading */
.why-choose-heading {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.1;
}

/* Company Info Section */
.company-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.company-logo-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-description {
    flex: 1;
}

.company-description p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Bullet Points List */
.why-choose-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.why-choose-list li {
    font-size: 1.1rem;
    color: #333;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    display: flex;
    align-items: center;
}

.why-choose-list li.highlighted {
    position: relative;
    font-weight: 600;
}

.why-choose-list li.highlighted::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 15px;
    width: calc(100% - 15px);
    height: 2px;
    background: #4a90e2;
    border-radius: 2px;
}

/* Right Content Area - Client Logos Grid */
.why-choose-us-right {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.client-logos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 600px;
    justify-items: center;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.logo-item img {
    max-width: 100%;
    max-height: 75px;
    object-fit: contain;
    filter: grayscale(10%) opacity(0.85);
    transition: filter 0.3s ease;
}

.logo-item:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Specific Logo Styling */
.subway-logo img {
    max-height: 45px;
}

.infonas-logo img,
.khalaifat-logo img,
.bahrain-circuit-logo img {
    max-height: 50px;
}

.al-kindi-logo img,
.chicket-logo img,
.playbh-logo img,
.pizza-hut-logo img {
    max-height: 55px;
}

.planet-smoothie-logo img {
    max-height: 75px;
}

/* Why Choose Us Responsive Design */
@media (max-width: 1200px) {
    .why-choose-us-container {
        gap: 60px;
        padding: 0 30px;
    }
    
    .why-choose-heading {
        font-size: 3rem;
    }
    
    .client-logos-grid {
        gap: 25px;
        max-width: 550px;
    }
}

@media (max-width: 900px) {
    .why-choose-us-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .why-choose-us-left {
        align-items: center;
        text-align: center;
    }
    
    .why-choose-heading {
        font-size: 2.5rem;
    }
    
    .company-info {
        justify-content: center;
        text-align: center;
    }
    
    .why-choose-list ul {
        align-items: center;
    }
    
    .client-logos-grid {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .why-choose-heading {
        font-size: 2rem;
    }
    
    .company-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }
    
    .company-logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .company-description p {
        font-size: 1rem;
        text-align: center;
    }
    
    .why-choose-list li {
        font-size: 1rem;
        justify-content: center;
    }
    
    .client-logos-grid {
        gap: 20px;
    }
    
    .logo-item {
        height: 100px;
        padding: 20px;
    }
    
    .logo-item img {
        max-height: 65px;
    }
}

@media (max-width: 480px) {
    .why-choose-heading {
        font-size: 1.8rem;
    }
    
    .company-description p {
        font-size: 0.95rem;
    }
    
    .why-choose-list li {
        font-size: 0.95rem;
    }
    
    .client-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .logo-item {
        height: 90px;
        padding: 15px;
    }
    
    .logo-item img {
        max-height: 55px;
    }
    
    /* Specific mobile logo adjustments */
    .subway-logo img {
        max-height: 35px;
    }
    
    .infonas-logo img,
    .khalaifat-logo img,
    .bahrain-circuit-logo img {
        max-height: 40px;
    }
    
    .al-kindi-logo img,
    .chicket-logo img,
    .playbh-logo img,
    .pizza-hut-logo img {
        max-height: 45px;
    }
    
    .planet-smoothie-logo img {
        max-height: 50px;
    }
}

/* Typography */
.why-choose-us-heading h1 {
    font-size: 48px;
    font-weight: 700;
    color: #014B6F;
    line-height: 1.2;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.why-choose-us-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-choose-us-list li {
    margin-bottom: 20px;
    font-size: 20px;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    position: relative;
}

.why-choose-us-list li em {
    font-style: italic;
    font-weight: 500;
}

.why-choose-us-list li.highlighted em {
    color: #4A90E2;
}

.why-choose-us-description p {
    font-size: 18px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

/* Hand-drawn underline */
.hand-drawn-underline {
    position: absolute;
    top: 60px;
    left: 0;
    width: 184px;
    height: 28px;
    z-index: 10;
}

.hand-drawn-underline path {
    stroke-dasharray: 501;
    stroke-dashoffset: 1002;
    animation: drawLine 2s ease-in-out forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Company Logo */
.company-logo img {
    width: 98.6632px;
    height: 98.6632px;
    object-fit: contain;
    object-position: 50% 50%;
    border-radius: 10px;
}

/* Footer Company Logo Container */
.company-logo-container {
    opacity: 1 !important;
    visibility: visible !important;
}

.company-logo-container img {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

/* Individual Logo Sizing */
/* Subway logo sizing handled by general .logo-item img rules */

/* Infonas logo sizing handled by general .logo-item img rules */

/* Al Kindi logo sizing handled by general .logo-item img rules */

/* Khalaifat logo sizing handled by general .logo-item img rules */

/* Chicket logo sizing handled by general .logo-item img rules */

/* Planet Smoothie logo sizing handled by general .logo-item img rules */

/* Bahrain Circuit logo sizing handled by general .logo-item img rules */

/* PlayBH logo sizing handled by general .logo-item img rules */

/* Pizza Hut logo sizing handled by general .logo-item img rules */

/* Responsive Design for Why Choose Us */
@media (max-width: 1024px) {
    .why-choose-us-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(12, 1fr);
        height: 700px;
        padding: 0 30px;
    }
    
    .why-choose-us-heading {
        grid-area: 1 / 1 / 3 / 8;
    }
    
    .company-logo {
        grid-area: 3 / 1 / 5 / 3;
    }
    
    .why-choose-us-description {
        grid-area: 3 / 3 / 5 / 8;
    }
    
    .why-choose-us-list {
        grid-area: 5 / 1 / 9 / 8;
    }
    
    .logos-grid {
        grid-area: 1 / 9 / 12 / 21;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 1fr);
    }
    
    .why-choose-us-heading h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .why-choose-us-section {
        padding: 60px 0;
    }
    
    .why-choose-us-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .why-choose-us-heading,
    .company-logo,
    .why-choose-us-list,
    .why-choose-us-description,
    .logos-grid {
        grid-area: auto;
        position: static;
    }
    
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
        padding: 15px;
    }
    
    .why-choose-us-heading h1 {
        font-size: 36px;
        text-align: center;
    }
    
    .why-choose-us-list li {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .why-choose-us-description p {
        font-size: 16px;
    }
    
    .company-logo img {
        width: 80px;
        height: 80px;
    }
}

@media (max-width: 480px) {
    .why-choose-us-section {
        padding: 40px 0;
    }
    
    .why-choose-us-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .logos-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 10px;
    }
    
    .why-choose-us-heading h1 {
        font-size: 32px;
    }
    
    .why-choose-us-list li {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .why-choose-us-description p {
        font-size: 14px;
    }
    
    .company-logo img {
        width: 60px;
        height: 60px;
    }
    
    .hand-drawn-underline {
        width: 150px;
        height: 20px;
    }
}

/* Contact Section (14th Section) */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e5a7a 0%, #2d6187 50%, #1a4d6b 100%) !important;
    background-color: #2d6187 !important; /* Fallback color */
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Ensure contact section background override */
section.contact-section {
    background: linear-gradient(135deg, #1e5a7a 0%, #2d6187 50%, #1a4d6b 100%) !important;
    background-color: #2d6187 !important;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    position: relative;
}

/* Left Side - Cityscape Images */
.contact-images {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 40px;
    gap: 20px;
}

.cityscape-image {
    position: relative;
    width: 280px;
    height: 350px;
    margin: 0;
}

.first-cityscape {
    transform: none;
    z-index: 2;
}

.second-cityscape {
    transform: none;
    z-index: 3;
    margin-top: 0;
    margin-left: 0;
}

.image-container {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    clip-path: none;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Right Side - Content and Form */
.contact-content-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 60px 80px 40px;
    color: white;
    text-align: left;
}

.contact-content {
    margin-bottom: 40px;
}

.contact-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
    text-align: left;
}

.contact-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    max-width: 500px;
}

/* Contact Form */
.contact-form-container {
    width: 100%;
    max-width: 500px;
    align-self: flex-start;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-size: 1rem;
    font-weight: 500;
    color: white;
    font-family: 'Poppins', sans-serif;
    text-align: left;
}

.form-field .required {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    color: #333;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.form-field input:focus,
.form-field textarea:focus {
    background: white;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    align-self: flex-start;
    padding: 15px 30px;
    background: transparent;
    border: 2px solid white;
    border-radius: 5px;
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: white;
    color: #2d6187;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Contact Section Responsive Design */
@media (max-width: 1200px) {
    .contact-container {
        padding: 0 30px;
    }
    
    .contact-content-area {
        padding: 60px 40px 60px 30px;
    }
    
    .contact-content h1 {
        font-size: 2.5rem;
    }
    
    .cityscape-image {
        width: 250px;
        height: 170px;
    }
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .contact-images {
        order: 2;
        padding: 20px;
        flex-direction: row;
        justify-content: center;
        min-height: 300px;
        gap: 15px;
    }
    
    .contact-content-area {
        order: 1;
        padding: 60px 40px 40px 40px;
        text-align: left;
        align-items: flex-start;
    }
    
    .first-cityscape,
    .second-cityscape {
        transform: none;
        margin: 0;
    }
    
    .cityscape-image {
        width: 180px;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        min-height: auto;
    }
    
    .contact-content-area {
        padding: 40px 20px 30px 20px;
    }
    
    .contact-content h1 {
        font-size: 2rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
    }
    
    .contact-images {
        padding: 20px;
        min-height: 250px;
    }
    
    .cityscape-image {
        width: 150px;
        height: 110px;
    }
    
    .form-field input,
    .form-field textarea {
        padding: 12px 18px;
        border-radius: 20px;
    }
    
    .form-field textarea {
        min-height: 100px;
    }
    
    .submit-btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .contact-content h1 {
        font-size: 1.8rem;
    }
    
    .contact-content p {
        font-size: 1rem;
    }
    
    .contact-images {
        flex-direction: column;
        align-items: center;
        min-height: 200px;
    }
    
    .cityscape-image {
        width: 120px;
        height: 90px;
        margin: 5px;
    }
    
    .form-field input,
    .form-field textarea {
        padding: 10px 15px;
        font-size: 0.95rem;
    }
    
    .submit-btn {
        align-self: center;
        padding: 10px 20px;
        font-size: 0.85rem;
    }
}

/* Clip Path SVG */
.clip-path-svg {
    position: absolute;
    width: 0;
    height: 0;
}

/* Image Containers */
.image-container {
    overflow: hidden;
    clip-path: url(#vertical-parallelogram-1);
    position: relative;
    width: 362.667px;
    height: 543.993px;
}

.second-cityscape-image .image-container {
    clip-path: url(#vertical-parallelogram-2);
}

.image-container img {
    display: block;
    object-fit: cover;
    object-position: 37.8223% 62.4756%;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.second-cityscape-image .image-container img {
    object-position: 95.8453% 64.9746%;
}

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

/* Typography */
.contact-content h3 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-content h3 strong {
    font-weight: 700;
}

.contact-content p {
    font-size: 18px;
    color: white;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Contact Form */
.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-field {
    margin-bottom: 20px;
    display: grid;
    align-content: flex-start;
    align-items: flex-start;
    grid-auto-flow: row;
    grid-template-columns: min-content auto;
    grid-template-rows: auto;
}

.form-field label {
    grid-column: 1 / span 2;
    color: white;
    margin-bottom: 4px;
    cursor: pointer;
    display: flex;
    align-items: baseline;
    column-gap: 8.768px;
}

.form-field label span:first-child {
    font-weight: 500;
    font-size: 16px;
}

.form-field label .required {
    font-size: 14px;
    opacity: 0.8;
}

.form-field input,
.form-field textarea {
    grid-column: 1 / span 2;
    box-sizing: border-box;
    color: #000;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1.11111px solid rgba(0, 0, 0, 0);
    width: 100%;
    height: auto;
    padding: 10px 20px;
    position: relative;
    z-index: 1;
    border-radius: 27.6348px;
    transition: background-color 0.15s cubic-bezier(0.33, 1, 0.68, 1);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 1);
    border-color: rgba(0, 0, 0, 0.2);
}

.form-field textarea {
    min-height: 120px;
    resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
    color: rgba(0, 0, 0, 0.6);
    font-style: italic;
}

/* Submit Button */
.submit-btn {
    border-radius: 0px;
    background: rgba(0, 0, 0, 0);
    transition: background-color 0.1s linear, color 0.1s linear;
    line-height: normal;
    border: 1.11111px solid white;
    padding: 16px 20.8px;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    min-width: 120px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: white;
    color: #014B6F;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Responsive Design for Contact */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(14, 1fr);
        height: 800px;
        padding: 0 30px;
    }
    
    .first-cityscape-image {
        grid-area: 1 / 1 / 14 / 7;
    }
    
    .second-cityscape-image {
        grid-area: 1 / 5 / 14 / 11;
    }
    
    .contact-content {
        grid-area: 1 / 11 / 6 / 21;
    }
    
    .contact-form-container {
        grid-area: 6 / 11 / 14 / 21;
    }
    
    .contact-content h3 {
        font-size: 40px;
    }
    
    .image-container {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .first-cityscape-image,
    .second-cityscape-image,
    .contact-content,
    .contact-form-container {
        grid-area: auto;
        position: static;
    }
    
    .first-cityscape-image,
    .second-cityscape-image {
        display: none; /* Hide images on mobile for better form focus */
    }
    
    .contact-content h3 {
        font-size: 36px;
        text-align: center;
    }
    
    .contact-content p {
        text-align: center;
        font-size: 16px;
    }
    
    .contact-form {
        max-width: 100%;
    }
    
    .form-field input,
    .form-field textarea {
        padding: 12px 20px;
        font-size: 16px;
    }
    
    .submit-btn {
        width: 100%;
        padding: 18px 20px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .contact-content h3 {
        font-size: 32px;
    }
    
    .contact-content p {
        font-size: 14px;
    }
    
    .form-field input,
    .form-field textarea {
        padding: 10px 15px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .submit-btn {
        padding: 16px 20px;
        font-size: 16px;
    }
}

/* Warehouse Page Section */
.warehouse-page-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(48, 1fr);
    gap: 0;
    background: #ffffff;
    overflow: hidden;
    padding-top: 80px; /* Account for fixed header */
}

/* Warehouse Page Styles - Exact Original Styles */
.warehouse-page-section .style-0 {
    grid-area: 1 / 1 / 17 / 27;
    z-index: 1;
}

.warehouse-page-section .style-1 {
    justify-content: center;
}

.warehouse-page-section .style-2 {
    height: 100%;
    width: 100%;
    width: 100%;
}

.warehouse-page-section .style-3 {
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0781065s;
    transition-duration: 0.9s;
    transition-delay: 0.0781065s;
    align-items: center;
    opacity: 1;
    transition-property: opacity;
    min-height: 1px;
}

.warehouse-page-section .style-4 {
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    width: 100%;
    height: 100%;
}

/* Warehouse page styles - exclude header elements */
.warehouse-page-section .style-5:not(.header-container .style-5):not(.style-1 .style-5) {
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
}

/* Ensure header logo is not affected by warehouse styles */
.style-1 .warehouse-page-section .style-5,
.header-container .warehouse-page-section .style-5 {
    display: block !important;
    height: 65px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
}

.warehouse-page-section .style-6 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 624.288px;
    mix-blend-mode: normal;
    opacity: 0;
}

/* Warehouse page styles - exclude header elements */
.warehouse-page-section .style-7:not(.header-container .style-7):not(.style-1 .style-7) {
    grid-area: 13 / 11 / 20 / 17;
    z-index: 4;
}

/* Ensure header mobile logo is not affected by warehouse styles */
.style-1 .warehouse-page-section .style-7,
.header-container .warehouse-page-section .style-7 {
    display: block !important;
    height: 65px !important;
    width: auto !important;
    max-width: 250px !important;
    object-fit: contain !important;
    object-position: center !important;
    opacity: 1 !important;
    grid-area: unset !important;
    z-index: 2147483646 !important;
}

.warehouse-page-section .style-8 {
    justify-content: center;
}

.warehouse-page-section .style-9 {
    height: 100%;
    width: 100%;
    width: 100%;
}

.warehouse-page-section .style-10 {
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0816568s;
    transition-duration: 0.9s;
    transition-delay: 0.0816568s;
    align-items: center;
    opacity: 1;
    transition-property: opacity;
    min-height: 1px;
}

.warehouse-page-section .style-11 {
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    width: 100%;
    height: 100%;
}

.warehouse-page-section .style-12 {
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
}

.warehouse-page-section .style-13 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 266.944px;
    mix-blend-mode: normal;
    opacity: 0;
}

.warehouse-page-section .style-14 {
    mix-blend-mode: normal;
    grid-area: 20 / 7 / 22 / 22;
    z-index: 2;
}

.warehouse-page-section .style-15 {
    justify-content: flex-start;
}

.warehouse-page-section .style-16 {
    font-size: 52.6px;
}

.warehouse-page-section .style-17 {
    text-align: center;
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0852071s;
    white-space: nowrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0852071s;
    opacity: 1;
    transition-property: opacity;
}

.warehouse-page-section .style-18 {
    color: #6F0133;
}

.warehouse-page-section .style-19 {
    mix-blend-mode: normal;
    grid-area: 21 / 9 / 23 / 19;
    z-index: 3;
}

.warehouse-page-section .style-20 {
    justify-content: center;
}

.warehouse-page-section .style-21 {
    position: relative;
    z-index: 0;
    z-index: 0;
}

.warehouse-page-section .style-22 {
    text-align: center;
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0887574s;
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0887574s;
    opacity: 1;
    transition-property: opacity;
}

.warehouse-page-section .style-23 {
    color: #FF6B3D;
}

.warehouse-page-section .style-24 {
    color: #FF6B3D;
}

.warehouse-page-section .style-25 {
    font-size: 26px;
    --stroke: var(--text-highlight-color);
    --stroke-width: 0.1em;
    --stroke-linecap: square;
    --stroke-linejoin: bevel;
    --blend: none;
    --opacity: undefined;
    opacity: 1;
    
    width: 346px;
    height: 37px;
    left: 101px;
    top: -1px;
    --stroke: var(--text-highlight-color);
    --stroke-width: 0.1em;
    --stroke-linecap: square;
    --stroke-linejoin: bevel;
    --blend: none;
    --opacity: undefined;
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
    width: 346px;
    height: 36.9965px;
    left: 101px;
    top: -1px;
}

.warehouse-page-section .style-26 {
    grid-area: 27 / 2 / 43 / 16;
    z-index: 9;
}

.warehouse-page-section .style-27 {
    justify-content: center;
}

.warehouse-page-section .style-28 {
    height: 100%;
    width: 100%;
    width: 100%;
}

.warehouse-page-section .style-29 {
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0923077s;
    transition-duration: 0.9s;
    transition-delay: 0.0923077s;
    align-items: center;
    opacity: 1;
    transition-property: opacity;
    min-height: 1px;
}

.warehouse-page-section .style-30 {
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    width: 100%;
    height: 100%;
}

.warehouse-page-section .style-31 {
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
}

.warehouse-page-section .style-32 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 663.976px;
    mix-blend-mode: normal;
    opacity: 0;
}

.warehouse-page-section .style-33 {
    mix-blend-mode: normal;
    grid-area: 27 / 17 / 30 / 26;
    z-index: 6;
}

.warehouse-page-section .style-34 {
    justify-content: center;
}

.warehouse-page-section .style-35 {
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.095858s;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.095858s;
    opacity: 1;
    transition-property: opacity;
}

.warehouse-page-section .style-36 {
    mix-blend-mode: normal;
    grid-area: 30 / 17 / 33 / 26;
    z-index: 8;
}

.warehouse-page-section .style-37 {
    justify-content: center;
}

.warehouse-page-section .style-38 {
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0994083s;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.0994083s;
    opacity: 1;
    transition-property: opacity;
}

.warehouse-page-section .style-39 {
    color: #FF6B3D;
}

.warehouse-page-section .style-40 {
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.102959s;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.102959s;
    opacity: 1;
    transition-property: opacity;
}

.warehouse-page-section .style-41 {
    color: #FF6B3D;
}

.warehouse-page-section .style-42 {
    mix-blend-mode: normal;
    grid-area: 33 / 17 / 38 / 25;
    z-index: 7;
}

.warehouse-page-section .style-43 {
    justify-content: flex-start;
}

.warehouse-page-section .style-44 {
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.106509s;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.106509s;
    opacity: 1;
    transition-property: opacity;
}

.warehouse-page-section .style-45 {
    grid-area: 38 / 17 / 40 / 21;
    z-index: 5;
}

.warehouse-page-section .style-46 {
    justify-content: center;
}

.warehouse-page-section .style-47 {
    height: 68.4201px;
    display: flex;
}

.warehouse-page-section .style-48 {
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.110059s;
    transition-duration: 0.9s;
    transition-delay: 0.110059s;
    opacity: 1;
    transition-property: opacity;
    flex: 1 1 0%;
    text-align: center;
}

.warehouse-page-section .style-49 {
    padding-top: 0px;
    padding-bottom: 0px;
    border-radius: 0px;
    transition: opacity 0.1s linear;
    backface-visibility: hidden;
    line-height: normal;
    border-style: solid;
    border-width: 0px;
    display: flex;
    -webkit-font-smoothing: antialiased;
    align-items: center;
    box-sizing: border-box;
    justify-content: center;
    height: 68.4201px;
    background: #007bff;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

.warehouse-page-section .style-49:hover {
    background: #0056b3;
    color: white;
}

.warehouse-page-section .style-50 {
    grid-area: 44 / 10 / 48 / 16;
    z-index: 10;
}

.warehouse-page-section .style-51 {
    justify-content: center;
}

.warehouse-page-section .style-52 {
    height: 100%;
    width: 100%;
    width: 100%;
}

.warehouse-page-section .style-53 {
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.113609s;
    transition-duration: 0.9s;
    transition-delay: 0.113609s;
    align-items: center;
    opacity: 1;
    transition-property: opacity;
    min-height: 1px;
}

.warehouse-page-section .style-54 {
    overflow: hidden;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    mask-image: radial-gradient(white, black);
    position: relative;
    width: 100%;
    height: 100%;
}

.warehouse-page-section .style-55 {
    display: block;
    object-fit: cover;
    object-position: 50% 50%;
}

.warehouse-page-section .style-56 {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 147.83px;
    mix-blend-mode: normal;
    opacity: 0;
}

.warehouse-page-section .style-57 {
    mix-blend-mode: normal;
    grid-area: 47 / 10 / 48 / 16;
    z-index: 11;
}

.warehouse-page-section .style-58 {
    justify-content: flex-start;
}

.warehouse-page-section .style-59 {
    text-align: center;
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.11716s;
    white-space: pre-wrap;
    transition-timing-function: ease;
    transition-duration: 0.9s;
    transition-delay: 0.11716s;
    opacity: 1;
    transition-property: opacity;
}

/* Warehouse Page Responsive Design */
@media (max-width: 1024px) {
    .warehouse-page-section {
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: repeat(40, 1fr);
    }
    
    .warehouse-page-section .style-0 {
        grid-area: 1 / 1 / 15 / 13;
    }
    
    .warehouse-page-section .style-7 {
        grid-area: 10 / 5 / 15 / 9;
    }
    
    .warehouse-page-section .style-14 {
        grid-area: 16 / 3 / 18 / 11;
    }
    
    .warehouse-page-section .style-19 {
        grid-area: 18 / 4 / 20 / 10;
    }
    
    .warehouse-page-section .style-26 {
        grid-area: 22 / 1 / 35 / 7;
    }
    
    .warehouse-page-section .style-33 {
        grid-area: 22 / 8 / 25 / 13;
    }
    
    .warehouse-page-section .style-36 {
        grid-area: 25 / 8 / 28 / 13;
    }
    
    .warehouse-page-section .style-42 {
        grid-area: 28 / 8 / 32 / 13;
    }
    
    .warehouse-page-section .style-45 {
        grid-area: 32 / 8 / 34 / 12;
    }
    
    .warehouse-page-section .style-50 {
        grid-area: 36 / 3 / 40 / 9;
    }
    
    .warehouse-page-section .style-57 {
        grid-area: 38 / 3 / 40 / 9;
    }
}

@media (max-width: 768px) {
    .warehouse-page-section {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 20px;
        padding: 20px;
    }
    
    .warehouse-page-section .style-0,
    .warehouse-page-section .style-7,
    .warehouse-page-section .style-14,
    .warehouse-page-section .style-19,
    .warehouse-page-section .style-26,
    .warehouse-page-section .style-33,
    .warehouse-page-section .style-36,
    .warehouse-page-section .style-42,
    .warehouse-page-section .style-45,
    .warehouse-page-section .style-50,
    .warehouse-page-section .style-57 {
        grid-area: auto;
        position: relative;
        width: 100%;
        height: auto;
        min-height: auto;
    }
    
    .warehouse-page-section .style-16 {
        font-size: 32px;
    }
    
    .warehouse-page-section .style-25 {
        width: 100%;
        height: auto;
        left: 0;
        top: 0;
    }
    
    .warehouse-page-section .style-47 {
        height: 50px;
    }
    
    .warehouse-page-section .style-49 {
        height: 50px;
        font-size: 14px;
    }
}

/* Footer Section (15th Section) */
.footer-section {
    padding: 80px 0 0;
    background: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(34, 1fr);
    height: 1200px;
    gap: 20px;
    position: relative;
}

/* Grid Areas */
.map-container {
    grid-area: 1 / 1 / 13 / 14;
    z-index: 3;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.company-logo-container {
    grid-area: 1 / 21 / 4 / 26;
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.company-logo-container img {
    width: 100%;
    height: auto;
    max-width: 300px;
    object-fit: contain;
    object-position: center;
}

.contact-info {
    grid-area: 1 / 15 / 6 / 26;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.contact-info .email {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info .phone-numbers {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0 0 15px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info .working-hours {
    font-size: 16px;
    color: #000;
    line-height: 1.2;
    margin: 0 0 25px 0;
    font-family: 'Poppins', sans-serif;
}

.contact-info .days {
    color: #014B6F;
    font-weight: 400;
}

.contact-info .hours-highlight {
    color: #B00F0F;
    font-weight: 700;
}

.company-entities {
    grid-area: 6 / 15 / 13 / 26;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.company-entities ul {
    list-style: none;
    padding: 0;
    margin: 15px 0 20px 0;
}

.company-entities li {
    font-size: 16px;
    color: #014B6F;
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.company-entities li strong {
    color: #014B6F;
    font-weight: 700;
}

.company-entities .address {
    font-size: 16px;
    color: #000;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.company-entities .address strong {
    color: #000;
    font-weight: 700;
}

.company-entities .bahrain-text {
    color: #B00F0F;
    font-weight: 400;
}

/* Separator Line */
.separator-line {
    grid-area: 17 / 1 / 18 / 6;
    z-index: 9;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.separator-line::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #ddd;
    position: absolute;
}

/* Quick Links Heading */
.quick-links-heading {
    grid-area: 17 / 6 / 18 / 9;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.quick-links-heading h4 {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Quick Links Columns */
.quick-links-column-1 {
    grid-area: 20 / 2 / 24 / 8;
    z-index: 14;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.quick-links-column-2 {
    grid-area: 20 / 8 / 24 / 14;
    z-index: 11;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.quick-links-column-3 {
    grid-area: 20 / 14 / 24 / 20;
    z-index: 11;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.quick-links-column-4 {
    grid-area: 20 / 20 / 24 / 26;
    z-index: 13;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}


/* Quick Links Styling */
.quick-links-column-1 ul,
.quick-links-column-2 ul,
.quick-links-column-3 ul,
.quick-links-column-4 ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links-column-1 li,
.quick-links-column-2 li,
.quick-links-column-3 li,
.quick-links-column-4 li {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-family: 'Poppins', sans-serif;
}

.quick-links-column-1 li strong,
.quick-links-column-2 li strong,
.quick-links-column-3 li strong,
.quick-links-column-4 li strong {
    font-weight: 700;
    color: #333;
}

/* Footer Copyright */
.footer-copyright {
    grid-area: 31 / 1 / 34 / 27;
    z-index: 15;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 0;
    background: #014B6F;
    color: white;
    text-align: center;
    margin-top: 40px;
}

.footer-copyright p {
    width: 100%;
    background-color: #014B6F;
    color: white;
    text-align: center;
    padding: 20px 0;
    position: relative;
    bottom: 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
    margin: 0;
}

.footer-copyright .copyright-symbol {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 5px;
}

/* Responsive Design for Footer */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(20, 1fr);
        grid-template-rows: repeat(30, 1fr);
        height: 1000px;
        padding: 0 30px;
    }
    
    .map-container {
        grid-area: 1 / 1 / 12 / 11;
    }
    
    .company-logo-container {
        grid-area: 1 / 11 / 4 / 21;
    }
    
    .contact-info {
        grid-area: 4 / 11 / 7 / 21;
    }
    
    .company-entities {
        grid-area: 7 / 11 / 12 / 21;
    }
    
    .separator-line {
        grid-area: 13 / 1 / 14 / 21;
    }
    
    .quick-links-heading {
        grid-area: 13 / 1 / 14 / 21;
        justify-content: center;
    }
    
    .quick-links-column-1,
    .quick-links-column-2,
    .quick-links-column-3,
    .quick-links-column-4 {
        grid-area: auto;
        padding: 10px 0;
    }
    
    .footer-copyright {
        grid-area: 25 / 1 / 30 / 21;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 60px 0 0;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 30px;
        padding: 0 20px;
    }
    
    .map-container,
    .company-logo-container,
    .contact-info,
    .company-entities,
    .separator-line,
    .quick-links-heading,
    .quick-links-column-1,
    .quick-links-column-2,
    .quick-links-column-3,
    .quick-links-column-4,
    .footer-copyright {
        grid-area: auto;
        position: static;
    }
    
    .map-container {
        height: 300px;
    }
    
    .company-logo-container img {
        max-width: 250px;
    }
    
    .contact-info h3,
    .company-entities h3,
    .quick-links-heading h4 {
        font-size: 20px;
    }
    
    .contact-info p,
    .company-entities li,
    .quick-links-column-1 li,
    .quick-links-column-2 li,
    .quick-links-column-3 li,
    .quick-links-column-4 li {
        font-size: 14px;
    }
    
    .footer-copyright {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .footer-section {
        padding: 40px 0 0;
    }
    
    .footer-grid {
        padding: 0 15px;
        gap: 20px;
    }
    
    .map-container {
        height: 250px;
    }
    
    .company-logo-container img {
        max-width: 200px;
    }
    
    .contact-info h3,
    .company-entities h3,
    .quick-links-heading h4 {
        font-size: 18px;
    }
    
    .contact-info p,
    .company-entities li,
    .quick-links-column-1 li,
    .quick-links-column-2 li,
    .quick-links-column-3 li,
    .quick-links-column-4 li {
        font-size: 13px;
    }
    
    .footer-copyright p {
        font-size: 12px;
        padding: 15px 0;
    }
}

/* ========================================
   WAREHOUSE PAGE STYLES
   ======================================== */

/* Warehouse Hero Section */
.warehouse-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 80vh;
}

.warehouse-hero-content {
    padding: 0 60px;
}

.warehouse-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
    line-height: 1.2;
}

.warehouse-hero-content p {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

.warehouse-hero-content .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.warehouse-hero-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

.warehouse-hero-image {
    padding: 0 60px;
}

.warehouse-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Warehouse Services Section */
.warehouse-services {
    padding: 40px 0 80px;
    background: white;
    margin-top: 0;
}

.warehouse-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.service-card {
    background: white;
    padding: 30px 25px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}

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

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 30px 0;
    color: white;
    flex-shrink: 0;
    order: 1;
    position: relative;
    z-index: 1;
}

.service-card h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 20px 0;
    flex-shrink: 0;
    order: 2;
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-card p {
    color: #6c757d;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    order: 3;
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Warehouse Features Section */
.warehouse-features {
    padding: 80px 0;
    background: #f8f9fa;
}

.warehouse-features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.features-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 32px;
    line-height: 1.2;
}

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

.features-list li {
    padding: 12px 0;
    font-size: 1.1rem;
    color: #495057;
    position: relative;
    padding-left: 32px;
}

.features-list li::before {
    content: "?";
    position: absolute;
    left: 0;
    top: 12px;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.features-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Section - Duplicate removed to prevent override */

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 16px;
}

.contact-content p {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form {
    display: grid;
    gap: 24px;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group textarea {
    padding: 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #007bff;
}

.submit-button {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
}

/* Responsive Design for Warehouse Page */
@media (max-width: 1024px) {
    .warehouse-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 100px 0 60px;
    }
    
    .warehouse-hero-content,
    .warehouse-hero-image {
        padding: 0 40px;
    }
    
    .warehouse-hero-content h1 {
        font-size: 3rem;
    }
    
    .warehouse-services-grid {
        padding: 0 40px;
    }
    
    .warehouse-features-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 40px;
    }
    
    .contact-content {
        padding: 0 40px;
    }
}

@media (max-width: 768px) {
    .warehouse-hero {
        padding: 80px 0 40px;
    }
    
    .warehouse-hero-content,
    .warehouse-hero-image {
        padding: 0 20px;
    }
    
    .warehouse-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .warehouse-hero-content p {
        font-size: 1.1rem;
    }
    
    .warehouse-services {
        padding: 60px 0;
    }
    
    .warehouse-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .service-card {
        padding: 30px 20px 35px;
        min-height: 300px;
    }
    
    .warehouse-features {
        padding: 60px 0;
    }
    
    .warehouse-features-content {
        padding: 0 20px;
    }
    
    .features-text h2 {
        font-size: 2rem;
    }
    
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-content {
        padding: 0 20px;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .warehouse-hero-content h1 {
        font-size: 2rem;
    }
    
    .warehouse-hero-content p {
        font-size: 1rem;
    }
    
    .warehouse-hero-content .cta-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .service-card {
        padding: 25px 15px 30px;
        min-height: 280px;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
        margin: 0 0 25px 0;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin: 0 0 15px 0;
    }
    
    .service-card p {
        font-size: 1rem;
        margin: 0;
    }
    
    .features-text h2 {
        font-size: 1.8rem;
    }
    
    .features-list li {
        font-size: 1rem;
    }
    
    .contact-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-content p {
        font-size: 1.1rem;
    }
}

/* Taekwondo Page Styles */
.taekwondo-hero-section {
    padding: 120px 0 60px 0;
    background: #f5f5f5;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.taekwondo-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.taekwondo-logo-section {
    text-align: center;
    margin-bottom: 80px;
}

.taekwondo-logo {
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.taekwondo-content-section {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.taekwondo-image-content {
    position: relative;
    order: 1;
    margin-top: 20px;
}

.taekwondo-main-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    object-position: center;
}

.taekwondo-text-content {
    padding-left: 40px;
    padding-top: 0;
    order: 2;
}

.taekwondo-main-heading {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 0.9;
    margin: 0 0 30px 0;
    padding: 0;
}

.taekwondo-line {
    display: block;
    font-size: 3.5rem;
    color: #333;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.taekwondo-line.red-text {
    color: #9E1920;
}

.taekwondo-description {
    margin-top: 30px;
}

.taekwondo-description h3 {
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4;
    color: #1e3a8a;
    margin: 0 0 15px 0;
}

.taekwondo-description p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #555;
    margin: 0;
}

.taekwondo-description .red-text {
    color: #9E1920;
    font-weight: 600;
}

/* Responsive Design for Taekwondo Page */
@media (max-width: 1024px) {
    .taekwondo-content-section {
        gap: 60px;
    }
    
    .taekwondo-line {
        font-size: 3.2rem;
    }
    
    .taekwondo-text-content {
        padding-left: 30px;
    }
}

@media (max-width: 768px) {
    .taekwondo-hero-section {
        padding: 100px 0 40px 0;
    }
    
    .taekwondo-container {
        padding: 0 1rem;
    }
    
    .taekwondo-logo-section {
        margin-bottom: 50px;
    }
    
    .taekwondo-logo {
        max-width: 350px;
    }
    
    .taekwondo-content-section {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    
    .taekwondo-image-content {
        order: 1;
        margin-top: 0;
    }
    
    .taekwondo-text-content {
        padding-left: 0;
        padding-top: 0;
        order: 2;
    }
    
    .taekwondo-line {
        font-size: 2.8rem;
        text-align: left;
    }
    
    .taekwondo-description h3 {
        font-size: 1rem;
        text-align: left;
    }
    
    .taekwondo-description p {
        font-size: 0.85rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .taekwondo-hero-section {
        padding: 90px 0 30px 0;
    }
    
    .taekwondo-line {
        font-size: 2.2rem;
    }
    
    .taekwondo-logo {
        max-width: 280px;
    }
    
    .taekwondo-description h3 {
        font-size: 0.95rem;
    }
    
    .taekwondo-description p {
        font-size: 0.8rem;
    }
}

/* Why Taekwondo Section (2nd Section) - Optimized and Responsive */
.why-taekwondo-section {
    position: relative;
    min-height: 753px;
    padding: 80px 0;
    background: #f8f9fa;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-taekwondo-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: repeat(18, 1fr);
    min-height: 753px;
    gap: 10px;
    padding: 0 20px;
}

/* Background Image */
.taekwondo-bg-image {
    grid-area: 1 / 2 / 19 / 10;
    z-index: 2;
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.taekwondo-bg-image picture,
.taekwondo-bg-image .bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.taekwondo-bg-image:hover .bg-image {
    transform: scale(1.02);
}

/* Content Grid */
.why-content-grid {
    display: contents;
}

/* Main Heading */
.why-heading-section {
    grid-area: 1 / 11 / 6 / 26;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 20px 0;
}

.why-main-heading {
    font-size: 81px;
    line-height: 81px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow-wrap: break-word;
    opacity: 1;
    transition: opacity 0.9s ease 0.135s;
}

.red-highlight {
    color: #bf0808;
}

/* Subtitle */
.why-subtitle-section {
    grid-area: 6 / 11 / 8 / 26;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 0;
}

.why-subtitle {
    font-size: 32.392px;
    line-height: 46.6445px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
    margin: 0;
    opacity: 1;
    transition: opacity 0.9s ease 0.140625s;
}

.blue-highlight {
    color: #014b6f;
}

/* Description */
.why-description-section {
    grid-area: 8 / 11 / 11 / 26;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px 0;
}

.why-description-text {
    font-size: 16px;
    line-height: 26.1274px;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin: 16px 0 0;
    opacity: 1;
    transition: opacity 0.9s ease 0.145s;
    overflow-wrap: break-word;
}

.why-description-text:first-child {
    margin-top: 0;
}

/* Benefits List */
.why-benefits-section {
    grid-area: 11 / 11 / 16 / 26;
    z-index: 6;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 20px 0;
}

.benefits-list {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

.benefit-item {
    margin: 10.049px 0;
    opacity: 1;
    transition: opacity 0.9s ease;
}

.benefit-item:nth-child(1) { transition-delay: 0.154688s; }
.benefit-item:nth-child(2) { transition-delay: 0.159375s; }
.benefit-item:nth-child(3) { transition-delay: 0.164062s; }

.benefit-item p {
    font-size: 16px;
    line-height: 26.1274px;
    font-family: 'Inter', sans-serif;
    color: #333;
    margin: 0;
    overflow-wrap: break-word;
}

.benefit-highlight {
    font-weight: 700;
}

.benefit-item:nth-child(1) .benefit-highlight { color: #8d0909; }
.benefit-item:nth-child(2) .benefit-highlight { color: #b30a0a; }
.benefit-item:nth-child(3) .benefit-highlight { color: #c00d0d; }

/* CTA Button */
.why-cta-section {
    grid-area: 17 / 11 / 19 / 15;
    z-index: 8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.learn-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 62.6875px;
    padding: 0 20.8px;
    font-size: 24.196px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #fff;
    background: #014b6f;
    border: none;
    border-radius: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 1;
    transition-delay: 0.16875s;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}

.learn-more-btn:hover {
    background: #023a56;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 75, 111, 0.3);
}

.learn-more-btn:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .why-taekwondo-container {
        max-width: 1200px;
        grid-template-columns: repeat(24, 1fr);
        grid-template-rows: repeat(16, 1fr);
        gap: 8px;
    }
    
    .taekwondo-bg-image {
        grid-area: 1 / 1 / 17 / 9;
    }
    
    .why-heading-section {
        grid-area: 1 / 10 / 5 / 25;
    }
    
    .why-subtitle-section {
        grid-area: 5 / 10 / 7 / 25;
    }
    
    .why-description-section {
        grid-area: 7 / 10 / 10 / 25;
    }
    
    .why-benefits-section {
        grid-area: 10 / 10 / 14 / 25;
    }
    
    .why-cta-section {
        grid-area: 14 / 10 / 16 / 15;
    }
    
    .why-main-heading {
        font-size: 72px;
        line-height: 72px;
    }
    
    .why-subtitle {
        font-size: 28px;
        line-height: 40px;
    }
}

@media (max-width: 900px) {
    .why-taekwondo-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .why-taekwondo-container {
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding: 0 30px;
        min-height: auto;
    }
    
    .taekwondo-bg-image {
        width: 100%;
        height: 400px;
        order: 1;
        margin-bottom: 20px;
    }
    
    .why-content-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
        order: 2;
    }
    
    .why-heading-section,
    .why-subtitle-section,
    .why-description-section,
    .why-benefits-section,
    .why-cta-section {
        grid-area: unset;
        width: 100%;
        text-align: left;
    }
    
    .why-main-heading {
        font-size: 56px;
        line-height: 56px;
        white-space: normal;
    }
    
    .why-subtitle {
        font-size: 24px;
        line-height: 34px;
    }
    
    .learn-more-btn {
        width: 200px;
        align-self: flex-start;
    }
}

@media (max-width: 768px) {
    .why-taekwondo-section {
        padding: 50px 0;
    }
    
    .why-taekwondo-container {
        padding: 0 20px;
        gap: 30px;
    }
    
    .taekwondo-bg-image {
        height: 350px;
    }
    
    .why-main-heading {
        font-size: 48px;
        line-height: 48px;
    }
    
    .why-subtitle {
        font-size: 22px;
        line-height: 30px;
    }
    
    .why-description-text {
        font-size: 15px;
        line-height: 24px;
    }
    
    .benefit-item p {
        font-size: 15px;
        line-height: 24px;
    }
    
    .learn-more-btn {
        font-size: 20px;
        height: 55px;
        width: 180px;
    }
}

@media (max-width: 480px) {
    .why-taekwondo-section {
        padding: 40px 0;
    }
    
    .why-taekwondo-container {
        padding: 0 15px;
        gap: 25px;
    }
    
    .taekwondo-bg-image {
        height: 300px;
    }
    
    .why-main-heading {
        font-size: 36px;
        line-height: 36px;
    }
    
    .why-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .why-description-text {
        font-size: 14px;
        line-height: 22px;
        margin: 12px 0 0;
    }
    
    .benefit-item {
        margin: 8px 0;
    }
    
    .benefit-item p {
        font-size: 14px;
        line-height: 22px;
    }
    
    .learn-more-btn {
        font-size: 18px;
        height: 50px;
        width: 160px;
        padding: 0 15px;
    }
}

/* Performance Optimizations */
.why-taekwondo-section * {
    will-change: auto;
    contain: layout style paint;
}

.taekwondo-bg-image .bg-image {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .why-taekwondo-section *,
    .taekwondo-bg-image .bg-image,
    .learn-more-btn {
        transition: none !important;
        animation: none !important;
    }
}

/* Comprehensive Programs Section (3rd Section) - Optimized and Responsive */
.comprehensive-programs-section {
    padding: 60px 0 20px 0; /* Small bottom padding for subtle gap */
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.comprehensive-programs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(26, 1fr);
    grid-template-rows: auto auto auto; /* FIXED: Use auto sizing instead of fixed rows */
    gap: 8px; /* Reduced gap from 10px to 8px */
    min-height: auto; /* REMOVED fixed height - let content determine height */
}

/* Section Header */
.programs-main-header {
    grid-area: 1 / 9 / 2 / 19; /* FIXED: Use row 1 only */
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.programs-main-title {
    font-size: 40.588px;
    line-height: 57.2291px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
    margin: 0 0 32px 0;
    opacity: 1;
    transition: opacity 0.9s ease 0.173437s;
}

.programs-main-subtitle {
    font-size: 32.392px;
    line-height: 46.6445px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
    margin: 32px 0 0 0;
    opacity: 1;
    transition: opacity 0.9s ease 0.178125s;
}

/* Programs Grid Layout */
.programs-grid-layout {
    display: contents;
}

/* Program Row */
.program-row {
    display: contents;
}

/* Left Images Column */
.program-images-left {
    display: contents;
}

/* Ensure left and right image columns are perfectly aligned */
.program-images-left .program-image-item,
.program-images-right .program-image-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-images-left .program-image-item:nth-child(1) {
    grid-area: 2 / 2 / 3 / 6; /* Better alignment with 300px width */
    z-index: 3;
}

.program-images-left .program-image-item:nth-child(2) {
    grid-area: 3 / 2 / 4 / 6; /* Better alignment with 300px width */
    z-index: 4;
}

.program-images-left .program-image-item:nth-child(3) {
    grid-area: 4 / 2 / 5 / 6; /* Better alignment with 300px width */
    z-index: 5;
}

/* Center Content Column */
.program-content-center {
    display: contents;
}

.kids-content {
    grid-area: 2 / 8 / 3 / 20; /* Centered between images */
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    transform: none;
}

.adult-content {
    grid-area: 3 / 8 / 4 / 20; /* Centered between images */
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    transform: none;
}

.advanced-content {
    grid-area: 4 / 8 / 5 / 20; /* Centered between images */
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 15px 20px;
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    transform: none;
}

/* Right Images Column */
.program-images-right {
    display: contents;
}

.program-images-right .program-image-item:nth-child(1) {
    grid-area: 2 / 22 / 3 / 26; /* Better alignment with 300px width */
    z-index: 2;
}

.program-images-right .program-image-item:nth-child(2) {
    grid-area: 3 / 22 / 4 / 26; /* Better alignment with 300px width */
    z-index: 3;
}

.program-images-right .program-image-item:nth-child(3) {
    grid-area: 4 / 22 / 5 / 26; /* Better alignment with 300px width */
    z-index: 4;
}

/* Program Image Items - Better aligned and sized */
.program-image-item {
    position: relative;
    width: 100%;
    height: 280px !important; /* Slightly larger for better visibility */
    display: flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 12px !important; /* Better radius for modern look */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important; /* Enhanced shadow */
    /* Force identical rectangular aspect ratio for all */
    aspect-ratio: 4/3 !important;
    min-height: 280px !important;
    max-height: 280px !important;
    /* Better styling for alignment */
     /* Natural size */
    transition: all 0.3s ease !important;
    margin: 10px 0; /* Better spacing */
}

/* Override: Make ALL images the same size - 300px height, 400px width */
.program-images-left .program-image-item,
.program-images-right .program-image-item {
    height: 300px !important; /* Exact height for all images */
    width: 400px !important; /* Exact width for all images */
    aspect-ratio: 4/3 !important; /* 400px/300px ratio */
    min-height: 300px !important;
    max-height: 300px !important;
    min-width: 400px !important;
    max-width: 400px !important;
    overflow: hidden !important;
    position: relative !important;
    margin: 10px 0 !important; /* Consistent gaps between images */
}

/* Specific fix for right-side images to match left-side */
.program-images-right .program-image-item {
    /* Ensure right images are identical to left images */
    aspect-ratio: 4/3 !important; /* 400px/300px ratio */
    height: 300px !important;
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important;
    margin: 10px 0 !important; /* Consistent gaps between images */
}

.program-images-right .program-training-image {
    /* Force right images to fill rectangular container like left images */
    width: 400px !important;
    height: 300px !important;
    object-fit: cover !important;
    object-position: center center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

/* Ensure left-side images also use same rectangular cropping */
.program-images-left .program-image-item {
    aspect-ratio: 4/3 !important; /* 400px/300px ratio */
    height: 300px !important;
    width: 400px !important;
    min-width: 400px !important;
    max-width: 400px !important;
    overflow: hidden !important;
    margin: 10px 0 !important; /* Consistent gaps between images */
}

.program-images-left .program-training-image {
    /* Force left images to use same rectangular container */
    width: 400px !important;
    height: 300px !important;
    object-fit: cover !important;
    object-position: center center !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
}

.program-training-image {
    width: 400px !important; /* Exact width for all images */
    height: 300px !important; /* Exact height for all images */
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 12px;
    transition: transform 0.3s ease;
    opacity: 1 !important;
    display: block !important;
    /* Performance optimizations */
    will-change: transform;
    backface-visibility: hidden;
    transform: translateZ(0);
    /* Simplified approach for consistent display */
    max-width: 400px !important;
    max-height: 300px !important;
    min-height: 300px !important;
    min-width: 400px !important;
}

/* Ensure ALL images have identical dimensions regardless of position */
.program-images-left .program-image-item:nth-child(1) .program-training-image,
.program-images-left .program-image-item:nth-child(2) .program-training-image,
.program-images-left .program-image-item:nth-child(3) .program-training-image,
.program-images-right .program-image-item:nth-child(1) .program-training-image,
.program-images-right .program-image-item:nth-child(2) .program-training-image,
.program-images-right .program-image-item:nth-child(3) .program-training-image {
    height: 300px !important;
    width: 400px !important;
    object-position: center center !important;
    object-fit: cover !important;
    display: block !important;
    /* Remove absolute positioning that was hiding images */
    position: relative !important;
}

.program-image-item:hover .program-training-image {
    transform: scale(1.1);
}

.program-image-item:hover {
     /* Container also scales more on hover */
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25) !important; /* Enhanced shadow on hover */
}

/* Ensure images are visible and properly sized */
.program-image-item img,
.program-image-item .program-training-image {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
    width: 100% !important;
    height: 246.906px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Force consistent sizing across all program sections */
.comprehensive-programs-section img {
    visibility: visible !important;
    opacity: 1 !important;
    display: block !important;
}

/* Ultimate override for ALL program images - Better aligned */
.comprehensive-programs-section .program-image-item {
    display: flex !important;
    width: 400px !important; /* Exact width for all images */
    height: 300px !important; /* Exact height for all images */
    /* Force rectangular container for all images */
    aspect-ratio: 4/3 !important; /* 400px/300px ratio */
    overflow: hidden !important;
    position: relative !important;
    /* Better styling for alignment */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15) !important;
     /* Natural size */
    margin: 10px 0 !important; /* Better spacing */
}

.comprehensive-programs-section .program-training-image {
    width: 400px !important;
    height: 300px !important; /* Match standardized container height */
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 12px !important;
    /* Force all images to fill rectangular container */
    min-width: 100% !important;
    min-height: 100% !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    /* Natural zoom for better look */
    
}

/* Show ALL images - No hiding */
/* Ensure all images are visible and properly styled */
.program-images-left .program-image-item,
.program-images-right .program-image-item {
    display: block !important; /* Show all images */
    visibility: visible !important;
    opacity: 1 !important;
}

/* Special zoom for specific images as requested */
/* Adult Classes - Right side image (1st image in right column) */
.program-images-right .program-image-item:nth-child(1) {
    transform: translateY(-3px);
}

.program-images-right .program-image-item:nth-child(1) .program-training-image {
    transform: scale(1.15);
}

/* Advanced Classes - Left side image (3rd image in left column) */
.program-images-left .program-image-item:nth-child(3) {
    transform: translateY(-3px);
}

.program-images-left .program-image-item:nth-child(3) .program-training-image {
    transform: scale(1.15);
}

/* Simplified container control for remaining images */
.program-images-left .program-image-item,
.program-images-right .program-image-item {
    /* Force exact container dimensions */
    flex-shrink: 0 !important;
    flex-grow: 0 !important;
    position: relative !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Program Content Items */
.program-content-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    height: 100%;
}

.program-title {
    font-size: 48px;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 15px 0;
    text-align: center;
    letter-spacing: -0.5px;
    opacity: 1;
    transition: opacity 0.9s ease;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.program-highlight {
    font-size: 24px;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    color: #E31C23;
    margin: 0 0 12px 0;
    text-align: center;
    opacity: 1;
    transition: opacity 0.9s ease;
}

.highlight-red {
    color: #bb1212;
    font-weight: 500;
}

.program-description {
    font-size: 20px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    color: #333;
    margin: 0;
    text-align: center;
    max-width: 300px; /* Constrain width for better readability */
    opacity: 1;
    transition: opacity 0.9s ease;
}

.advanced-description {
    margin: 16px 0 0;
}

/* Program Dividers - Hidden */
.program-divider {
    display: none !important; /* Remove all black divider lines */
}

.program-divider:nth-of-type(2) {
    display: none !important; /* Remove all black divider lines */
}

.program-divider:nth-of-type(3) {
    display: none !important; /* Remove all black divider lines */
}

.program-divider::after {
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    border: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .comprehensive-programs-container {
        grid-template-columns: repeat(24, 1fr);
        grid-template-rows: repeat(32, 1fr);
        padding: 0 30px;
    }
    
    .programs-main-header {
        grid-area: 1 / 8 / 4 / 17;
    }
    
    .program-images-left .program-image-item:nth-child(1) {
        grid-area: 6 / 1 / 12 / 9;
    }
    
    .program-images-left .program-image-item:nth-child(2) {
        grid-area: 14 / 1 / 20 / 9;
    }
    
    .program-images-left .program-image-item:nth-child(3) {
        grid-area: 22 / 1 / 29 / 9; /* Same height as other images */
    }
    
    .kids-content {
        grid-area: 4 / 9 / 10 / 17; /* Moved upward in tablet view */
        transform: translateY(-15px); /* Upward movement */
        padding: 20px 15px;
    }
    
    .adult-content {
        grid-area: 12 / 9 / 18 / 17; /* Moved upward in tablet view */
        transform: translateY(-15px); /* Upward movement */
        padding: 20px 15px;
    }
    
    .advanced-content {
        grid-area: 20 / 9 / 27 / 17; /* Moved upward in tablet view */
        transform: translateY(-15px); /* Upward movement */
        padding: 20px 15px;
    }
    
    .program-images-right .program-image-item:nth-child(1) {
        grid-area: 6 / 17 / 12 / 25;
    }
    
    .program-images-right .program-image-item:nth-child(2) {
        grid-area: 14 / 17 / 20 / 25;
    }
    
    .program-images-right .program-image-item:nth-child(3) {
        grid-area: 22 / 17 / 29 / 25; /* Same height as other images */
    }
    
    .programs-main-title {
        font-size: 36px;
        line-height: 50px;
    }
    
    .programs-main-subtitle {
        font-size: 28px;
        line-height: 40px;
    }
    
    .program-title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (max-width: 900px) {
    .comprehensive-programs-section {
        padding: 60px 0 5px 0; /* Minimal bottom padding for tight spacing */
    }
    
    .comprehensive-programs-container {
        display: flex;
        flex-direction: column;
        gap: 60px;
        padding: 0 30px;
        min-height: auto; /* Already set to auto */
    }
    
    .programs-main-header {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .programs-grid-layout {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
    
    .program-row {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    
    .program-images-left,
    .program-images-right {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    
    .program-content-center {
        display: flex;
        flex-direction: column;
        gap: 40px;
        order: 1;
    }
    
    .program-images-left {
        order: 2;
    }
    
    .program-images-right {
        order: 3;
    }
    
    .program-image-item {
        width: 200px;
        height: 150px;
        flex-shrink: 0;
    }
    
    /* Enhanced sizing for ALL images in tablet view */
    .program-images-left .program-image-item,
    .program-images-right .program-image-item {
        width: 240px !important; /* Increased width for better visibility */
        height: 180px !important; /* Increased height for better visibility */
        aspect-ratio: 4/3 !important; /* Force identical rectangular aspect ratio */
        overflow: hidden !important;
        position: relative !important;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
        border-radius: 12px !important;
         /* Zoom for prominence */
        margin: 10px 0 !important;
    }
    
    .program-images-left .program-training-image,
    .program-images-right .program-training-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
         /* Enhanced zoom for ALL images */
    }
    
    /* Override: ALL images identical size */
    .program-images-left .program-image-item:nth-child(1),
    .program-images-left .program-image-item:nth-child(2),
    .program-images-left .program-image-item:nth-child(3),
    .program-images-right .program-image-item:nth-child(1),
    .program-images-right .program-image-item:nth-child(2),
    .program-images-right .program-image-item:nth-child(3) {
        width: 200px !important;
        height: 150px !important; /* Force identical dimensions */
    }
    
    .program-content-item {
        padding: 20px 10px;
    }
    
    .programs-main-title {
        font-size: 32px;
        line-height: 44px;
    }
    
    .programs-main-subtitle {
        font-size: 24px;
        line-height: 34px;
    }
    
    .program-title {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .comprehensive-programs-section {
        padding: 40px 0 5px 0; /* Minimal bottom padding for tight spacing */
    }
    
    .comprehensive-programs-container {
        padding: 0 20px;
        gap: 40px;
    }
    
    .programs-grid-layout {
        gap: 40px;
    }
    
    .program-row {
        gap: 25px;
    }
    
    .program-images-left,
    .program-images-right {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .program-image-item {
        width: 100%;
        max-width: 300px;
        height: 200px;
        margin: 0 auto; /* Center align all images */
    }
    
    /* Ensure ALL images have IDENTICAL dimensions on mobile */
    .program-images-left .program-image-item,
    .program-images-right .program-image-item {
        width: 100% !important;
        max-width: 300px !important;
        height: 200px !important; /* All images same height */
        aspect-ratio: 4/3 !important; /* Force identical rectangular aspect ratio */
        overflow: hidden !important;
        position: relative !important;
    }
    
    .program-images-left .program-training-image,
    .program-images-right .program-training-image {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* Force identical sizing for ALL mobile images */
    .program-images-left .program-image-item:nth-child(1),
    .program-images-left .program-image-item:nth-child(2),
    .program-images-left .program-image-item:nth-child(3),
    .program-images-right .program-image-item:nth-child(1),
    .program-images-right .program-image-item:nth-child(2),
    .program-images-right .program-image-item:nth-child(3) {
        height: 200px !important; /* Force identical height */
        width: 100% !important;
        max-width: 300px !important;
    }
    
    .programs-main-title {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 20px;
    }
    
    .programs-main-subtitle {
        font-size: 20px;
        line-height: 28px;
        margin-top: 20px;
    }
    
    .program-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    
    .program-highlight,
    .program-description {
        font-size: 18px;
        line-height: 26px;
    }
}

@media (max-width: 480px) {
    .comprehensive-programs-section {
        padding: 30px 0 5px 0; /* Minimal bottom padding for tight spacing */
    }
    
    .comprehensive-programs-container {
        padding: 0 15px;
        gap: 30px;
    }
    
    .programs-grid-layout {
        gap: 30px;
    }
    
    .program-row {
        gap: 20px;
    }
    
    .program-image-item {
        height: 180px;
        margin: 0 auto;
    }
    
    /* IDENTICAL sizing for ALL images on small mobile */
    .program-images-left .program-image-item,
    .program-images-right .program-image-item {
        height: 180px !important; /* All images same height */
        width: 100% !important;
        max-width: 280px !important;
        aspect-ratio: 1.56 / 1 !important; /* Force identical aspect ratio */
    }
    
    /* Force identical sizing for ALL small mobile images */
    .program-images-left .program-image-item:nth-child(1),
    .program-images-left .program-image-item:nth-child(2),
    .program-images-left .program-image-item:nth-child(3),
    .program-images-right .program-image-item:nth-child(1),
    .program-images-right .program-image-item:nth-child(2),
    .program-images-right .program-image-item:nth-child(3) {
        height: 180px !important; /* Force identical height */
        width: 100% !important;
        max-width: 280px !important;
    }
    
    .program-content-item {
        padding: 15px 5px;
    }
    
    .programs-main-title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 15px;
    }
    
    .programs-main-subtitle {
        font-size: 18px;
        line-height: 24px;
        margin-top: 15px;
    }
    
    .program-title {
        font-size: 22px;
        line-height: 28px;
        margin-bottom: 12px;
    }
    
    .program-highlight,
    .program-description {
        font-size: 16px;
        line-height: 22px;
    }
}

/* Performance Optimizations */
.comprehensive-programs-section * {
    will-change: auto;
    contain: layout style paint;
}

.program-training-image {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .comprehensive-programs-section *,
    .program-training-image {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

/* ========================================
   KIDS GAIN SECTION - 4TH SECTION
   ======================================== */

/* Main Section Container */
.kids-gain-section {
    padding: 20px 0 80px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.kids-gain-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Header Content */
.kids-gain-header {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    padding: 20px 0;
}

.kids-gain-title {
    font-size: 58.7px;
    line-height: 58.7px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: opacity 0.9s ease 0.248437s;
}

.kids-gain-title-highlight {
    color: #a90a0a;
    font-weight: 700;
}

.kids-gain-subtitle {
    font-size: 34.6px;
    line-height: 34.6px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    transition: opacity 0.9s ease 0.253125s;
}

.kids-gain-subtitle strong {
    font-weight: 700;
}

.kids-gain-description {
    font-size: 28.294px;
    line-height: 41.1678px;
    font-weight: 400;
    color: #000000;
    margin: 32px 0 0 0;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    white-space: pre-wrap;
    transition: opacity 0.9s ease 0.257812s;
}

/* Two Column Content Wrapper */
.kids-gain-content-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Image Column */
.kids-gain-image-column {
    flex: 0 0 60%; /* Image takes 60% of width */
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.kids-gain-image-wrapper {
    width: 100%;
    height: 450px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.kids-gain-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: opacity 0.9s ease 0.2625s;
    border-radius: 8px;
}

/* Text Column */
.kids-gain-text-column {
    flex: 0 0 40%; /* Text takes 40% of width */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 450px; /* Same height as image */
    overflow-y: auto; /* Allow scrolling if content overflows */
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    padding: 0;
    margin: 0;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.benefit-title {
    font-weight: 700;
    font-size: 18px;
    color: #bf0b0b;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.benefit-content {
    font-size: 16px;
    line-height: 22px;
    color: #000000;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

/* Removed old grid-based delays - using flexbox now */

/* Responsive Design */
@media (max-width: 1200px) {
    .kids-gain-content-wrapper {
        gap: 30px;
    }
    
    .kids-gain-image-column {
        flex: 0 0 55%; /* Slightly smaller image on tablet */
    }
    
    .kids-gain-text-column {
        flex: 0 0 45%; /* Slightly larger text on tablet */
        height: 400px; /* Adjust height for tablet */
    }
    
    .kids-gain-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 1024px) {
    .kids-gain-section {
        padding: 5px 0 60px 0;
    }
    
    .kids-gain-container {
        gap: 25px;
    }
    
    .kids-gain-title {
        font-size: 48px;
        line-height: 48px;
    }
    
    .kids-gain-subtitle {
        font-size: 20px;
        line-height: 28px;
    }
    
    .kids-gain-description {
        font-size: 18px;
        line-height: 26px;
    }
    
    .kids-gain-content-wrapper {
        gap: 25px;
    }
    
    .kids-gain-image-column {
        flex: 0 0 50%;
    }
    
    .kids-gain-text-column {
        flex: 0 0 50%;
        height: 350px;
    }
    
    .kids-gain-image-wrapper {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .kids-gain-section {
        padding: 5px 0 40px 0; /* Minimal top padding for tight spacing */
    }
    
    .kids-gain-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        gap: 30px;
        min-height: auto; /* Already set to auto */
    }
    
    .kids-gain-header {
        grid-area: 1 / 1 / 2 / 2;
        order: 1;
    }
    
    .kids-gain-image-container {
        grid-area: 2 / 1 / 3 / 2;
        order: 2;
        height: 300px;
    }
    
    .kids-gain-image-wrapper {
        height: 400px;
    }
    
    .kids-gain-benefits {
        grid-area: 3 / 1 / 4 / 2;
        order: 3;
    }
    
    .kids-gain-title {
        font-size: 36px;
        line-height: 36px;
        white-space: normal;
    }
    
    .kids-gain-content-wrapper {
        flex-direction: column; /* Stack vertically on mobile */
        gap: 20px;
    }
    
    .kids-gain-image-column {
        flex: 1;
        order: 1;
    }
    
    .kids-gain-text-column {
        flex: 1;
        order: 2;
        height: auto; /* Auto height on mobile */
        overflow-y: visible;
    }
    
    .kids-gain-image-wrapper {
        height: 300px;
    }
    
    .kids-gain-subtitle {
        font-size: 18px;
        line-height: 26px;
    }
    
    .kids-gain-description {
        font-size: 16px;
        line-height: 22px;
    }
    
    .benefits-list {
        gap: 12px;
    }
    
    .benefit-title {
        font-size: 16px;
    }
    
    .benefit-content {
        font-size: 14px;
        line-height: 20px;
    }
}

@media (max-width: 480px) {
    .kids-gain-section {
        padding: 5px 0 30px 0; /* Minimal top padding for tight spacing */
    }
    
    .kids-gain-container {
        padding: 0 15px;
        gap: 20px;
    }
    
    .kids-gain-content-wrapper {
        gap: 15px;
    }
    
    .kids-gain-image-wrapper {
        height: 250px;
    }
    
    .kids-gain-title {
        font-size: 28px;
        line-height: 28px;
    }
    
    .kids-gain-subtitle {
        font-size: 16px;
        line-height: 22px;
    }
    
    .kids-gain-description {
        font-size: 14px;
        line-height: 20px;
    }
    
    .benefits-list {
        gap: 10px;
    }
    
    .benefit-title {
        font-size: 14px;
    }
    
    .benefit-content {
        font-size: 13px;
        line-height: 18px;
    }
    
    .benefit-item {
        margin: 2px 0; /* Even more compact spacing on mobile */
    }
}

/* Performance Optimizations */
.kids-gain-section * {
    will-change: auto;
    contain: layout style paint;
}

.kids-gain-image {
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Performance optimizations for all devices */
.program-image-item {
    contain: layout style paint;
    will-change: transform;
}

/* Responsive Design for Program Images */
@media (max-width: 1024px) {
    .program-images-left .program-image-item,
    .program-images-right .program-image-item {
        width: 320px !important;
        height: 240px !important;
        aspect-ratio: 4/3 !important;
    }
    
    .program-training-image {
        width: 320px !important;
        height: 240px !important;
    }
    
    .kids-content,
    .adult-content,
    .advanced-content {
        grid-area: 2 / 6 / 5 / 20;
        padding: 10px 15px;
    }
}

@media (max-width: 768px) {
    .program-images-left .program-image-item,
    .program-images-right .program-image-item {
        width: 240px !important;
        height: 180px !important;
        aspect-ratio: 4/3 !important;
    }
    
    .program-training-image {
        width: 240px !important;
        height: 180px !important;
    }
    
    .kids-content,
    .adult-content,
    .advanced-content {
        grid-area: 2 / 5 / 5 / 21;
        padding: 8px 10px;
    }
}

@media (max-width: 480px) {
    .program-images-left .program-image-item,
    .program-images-right .program-image-item {
        width: 180px !important;
        height: 135px !important;
        aspect-ratio: 4/3 !important;
    }
    
    .program-training-image {
        width: 180px !important;
        height: 135px !important;
    }
    
    .kids-content,
    .adult-content,
    .advanced-content {
        grid-area: 2 / 4 / 5 / 22;
        padding: 5px 8px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .kids-gain-section *,
    .kids-gain-image,
    .benefit-content {
        transition: none !important;
        animation: none !important;
        transform: none !important;
    }
}

