/* General Styling */
 :root {
     --primary-blue: #0A2463;
     --secondary-blue: #3E92CC;
     --accent-gold: #F5B041;
     --light-gray: #D3D3D3;
     --dark-text: #333333;
     --white-text: #FFFFFF;
     --footer-bg: #1a1a1a;
     --footer-hover: #2a2a2a;
}
 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
}
 html {
     scroll-behavior: smooth;
}
 body {
     font-family: 'Open Sans', sans-serif;
     line-height: 1.6;
     color: var(--dark-text);
     background-color: #f4f4f4;
     overflow-x: hidden;
     position: relative;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
}
 main {
     flex: 1;
}
/* Header & Navigation */
 header {
     background-color: var(--primary-blue);
     color: var(--white-text);
     padding: 15px 0;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
 header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
     flex-wrap: wrap;
     gap: 1rem;
     padding: 0 20px;
}
 .logo svg {
     display: block;
     width: 180px;
     height: auto;
}
 nav .nav-links {
     list-style: none;
     display: flex;
     margin: 0;
     padding: 0;
}
 nav .nav-links li {
     margin-left: 30px;
}
 nav .nav-links a {
     color: var(--secondary-blue);
     font-weight: 600;
     font-family: 'Montserrat', sans-serif;
     padding: 5px 0;
     position: relative;
     transition: color 0.3s ease;
}
 nav .nav-links a:hover, nav .nav-links a.active {
     color: var(--accent-gold);
}
 nav .nav-links a::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 0;
     height: 2px;
     background-color: var(--accent-gold);
     transition: width 0.3s ease;
}
 nav .nav-links a:hover::after, nav .nav-links a.active::after {
     width: 100%;
}
/* Mobile Menu Toggle - Fixed */
 .menu-toggle {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 5px;
     z-index: 1001;
    /* Higher than nav to ensure it's clickable */
}
 .menu-toggle span {
     display: block;
     width: 25px;
     height: 3px;
     background-color: var(--white-text);
     margin: 5px 0;
     transition: all 0.3s ease;
     border-radius: 3px;
}
/* Global Background Slider */
 #global-background-slider {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     overflow: hidden;
     background-color: #000;
}
 #global-background-slider .bg-media {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 1.5s ease-in-out;
     transform: scale(1);
     animation: none;
}
 #global-background-slider .bg-media.active {
     opacity: 1;
     animation: backgroundZoom 8s linear forwards;
}
 @keyframes backgroundZoom {
     0% {
         transform: scale(1);
    }
     100% {
         transform: scale(1.1);
    }
}
/* Container */
 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
/* Typography */
 h1, h2, h3, h4 {
     font-family: 'Montserrat', sans-serif;
     color: var(--primary-blue);
     margin-bottom: 15px;
}
 h1 {
     font-size: 2.5em;
}
 h2 {
     font-size: 2.2em;
}
 h3 {
     font-size: 1.8em;
}
 h4 {
     font-size: 1.4em;
}
 p {
     margin-bottom: 15px;
}
/* Links & Buttons */
 a {
     color: var(--secondary-blue);
     text-decoration: none;
     transition: color 0.3s ease;
}
 a:hover {
     color: var(--accent-gold);
}
 .btn {
     display: inline-block;
     padding: 12px 25px;
     border-radius: 5px;
     font-weight: 600;
     text-align: center;
     transition: background-color 0.3s ease, color 0.3s ease;
     border: none;
     cursor: pointer;
     white-space: nowrap;
}
 .primary-btn {
     background-color: var(--accent-gold);
     color: var(--white-text);
}
 .primary-btn:hover {
     background-color: #e09f3e;
}
 .secondary-btn {
     background-color: transparent;
     color: var(--white-text);
     border: 2px solid var(--white-text);
     margin-left: 15px;
}
 .secondary-btn:hover {
     background-color: var(--white-text);
     color: var(--primary-blue);
}
 .button-group .btn:first-child {
     margin-left: 0;
}
/* Hero Sections */
 .hero-section, .hero-slider-section {
     position: relative;
     width: 100%;
     height: 60vh;
     min-height: 450px;
     display: block;
     text-align: center;
     color: var(--white-text);
     z-index: 1;
     overflow: hidden;
}
 .hero-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: -1;
}
 .hero-content, .hero-slider .slide-content {
     max-width: 900px;
     margin: 0 auto;
     padding: 0 20px;
     position: relative;
     z-index: 2;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100%;
     box-sizing: border-box;
}
 .hero-content h2, .hero-slider .slide-content h2 {
     font-size: 3.2em;
     margin-bottom: 20px;
     color: var(--white-text);
     line-height: 1.2;
}
 .hero-content p, .hero-slider .slide-content p {
     font-size: 1.1em;
     margin-bottom: 30px;
     color: rgba(255, 255, 255, 0.9);
     max-width: 700px;
}
/* Hero Slider Specific */
 .hero-slider .slider-container {
     position: relative;
     width: 100%;
     height: 100%;
}
 .hero-slider .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     transition: opacity 1s ease-in-out;
     opacity: 0;
}
 .hero-slider .slide.active {
     opacity: 1;
     z-index: 1;
}
 .hero-slider .slide-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.6);
     z-index: 0;
}
 .hero-slider .slider-nav-dots {
     position: absolute;
     bottom: 30px;
     left: 50%;
     transform: translateX(-50%);
     z-index: 10;
     display: flex;
     gap: 10px;
}
 .hero-slider .dot {
     display: block;
     width: 12px;
     height: 12px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     cursor: pointer;
     transition: background-color 0.3s ease, border-color 0.3s ease;
     border: 2px solid rgba(255, 255, 255, 0.5);
}
 .hero-slider .dot.active, .hero-slider .dot:hover {
     background-color: var(--accent-gold);
     border-color: var(--accent-gold);
}
/* Main Content Container */
 main {
     margin-top: 0;
     width: 100%;
}
 main > section:first-of-type {
     padding-top: 60px;
}
 main section {
     padding: 80px 0;
     text-align: center;
     position: relative;
     z-index: 1;
}
/* Content Block */
 .main-content-block {
     background-color: var(--white-text);
     padding: 70px 30px;
     margin-bottom: 60px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
     border-radius: 12px;
     position: relative;
}
 .main-content-block:last-of-type {
     margin-bottom: 60px;
}
/* Grid Systems */
 .intro-grid, .vm-grid, .deal-grid, .benefits-grid, .contact-grid, .storage-cards, .agriculture-cards {
     display: grid;
     gap: 32px;
     margin-top: 50px;
     text-align: left;
}
 .intro-grid, .deal-grid, .benefits-grid, .contact-grid, .storage-cards, .agriculture-cards {
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
 .vm-grid {
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 40px;
}
 .intro-grid .grid-item, .deal-grid .deal-item, .benefits-grid .benefit-item, .contact-grid .contact-card, .storage-cards .storage-card, .agriculture-cards .agriculture-card {
     transition: transform 0.2s ease, box-shadow 0.2s ease;
}
 .intro-grid .grid-item:hover, .deal-grid .deal-item:hover, .benefits-grid .benefit-item:hover, .contact-grid .contact-card:hover, .storage-cards .storage-card:hover, .agriculture-cards .agriculture-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}
 .grid-item, .deal-item, .benefit-item, .contact-card, .storage-card, .agriculture-card {
     background: var(--white-text);
     padding: 32px;
     border-radius: 12px;
     box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     position: relative;
     border-top: 3px solid var(--secondary-blue);
}
 .grid-item:hover, .deal-item:hover, .benefit-item:hover, .contact-card:hover, .storage-card:hover, .agriculture-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
 .deal-grid .deal-item {
     border-top-color: var(--accent-gold);
}
 .benefits-grid .benefit-item {
     border-top-color: var(--primary-blue);
}
 .storage-cards .storage-card, .agriculture-cards .agriculture-card {
     border-top-color: var(--accent-gold);
}
 .grid-item h4, .deal-item h4, .benefit-item h4, .contact-card h4, .storage-card h4, .agriculture-card h4 {
     color: var(--primary-blue);
     margin-bottom: 14px;
     font-size: 1.3em;
     font-weight: 700;
     line-height: 1.3;
}
 .grid-item p, .deal-item p, .benefit-item p, .contact-card p, .storage-card p, .agriculture-card p {
     color: var(--dark-text);
     line-height: 1.6;
     font-size: 1em;
     margin-bottom: 15px;
}
 .grid-item h4, .deal-item h4, .benefit-item h4, .contact-card h4, .storage-card h4, .agriculture-card h4 {
     display: flex;
     align-items: center;
     gap: 10px;
}
/* Tank Storage Section */
 .tank-storage-section {
     background-color: var(--white-text);
     padding: 70px 30px;
     margin-bottom: 60px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
     border-radius: 12px;
     text-align: center;
}
 .tank-storage-section h3 {
     color: var(--primary-blue);
     margin-bottom: 20px;
     font-size: 1.8em;
}
 .tank-storage-section p {
     color: var(--dark-text);
     max-width: 800px;
     margin: 0 auto 30px;
     font-size: 1.1em;
     line-height: 1.6;
}
 .storage-card .primary-btn {
     margin-top: 15px;
     padding: 12px 25px;
     font-size: 1em;
}
/* Agriculture Section */
 .agriculture-section {
     background-color: var(--white-text);
     padding: 70px 30px;
     margin-bottom: 60px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
     border-radius: 12px;
     text-align: center;
}
 .agriculture-section h3 {
     color: var(--primary-blue);
     margin-bottom: 20px;
     font-size: 1.8em;
}
 .agriculture-section p {
     color: var(--dark-text);
     max-width: 800px;
     margin: 0 auto 30px;
     font-size: 1.1em;
     line-height: 1.6;
}
 .agriculture-card .product-image-gallery {
     position: relative;
     width: 100%;
     height: 180px;
     overflow: hidden;
     border-bottom: 3px solid var(--secondary-blue);
     margin-bottom: 15px;
}
 .agriculture-card .product-image-gallery img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 0.4s ease-in-out;
     display: block;
}
 .agriculture-card .product-image-gallery img.active {
     opacity: 1;
}
/* --- FIX: Prevent first image flash in galleries --- */
 .agriculture-card .product-image-gallery img:first-child {
     opacity: 1;
}
 .agriculture-card .primary-btn {
     margin-top: 15px;
     padding: 12px 25px;
     font-size: 1em;
}
/* Responsive Design for Tank Storage and Agriculture Sections */
 @media (max-width: 768px) {
     .tank-storage-section, .agriculture-section {
         padding: 50px 20px;
    }
     .tank-storage-section h3, .agriculture-section h3 {
         font-size: 1.6em;
    }
     .tank-storage-section p, .agriculture-section p {
         font-size: 1em;
    }
     .storage-cards, .agriculture-cards {
         margin-top: 30px;
    }
     .storage-card, .agriculture-card {
         padding: 24px;
    }
     .storage-card h4, .agriculture-card h4 {
         font-size: 1.2em;
    }
     .storage-card p, .agriculture-card p {
         font-size: 0.95em;
    }
     .storage-card .primary-btn, .agriculture-card .primary-btn {
         padding: 10px 20px;
         font-size: 0.95em;
    }
     .agriculture-card .product-image-gallery {
         height: 150px;
    }
}
/* Modern Footer Design */
 footer {
     background-color: var(--footer-bg);
     color: var(--light-gray);
     padding: 60px 0 20px;
     font-size: 0.9em;
     width: 100%;
     box-sizing: border-box;
     margin-top: auto;
     position: relative;
     overflow: hidden;
}
 footer::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 4px;
     background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue), var(--accent-gold));
}
 .footer-content {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     flex-wrap: wrap;
     gap: 40px;
     padding-bottom: 40px;
     border-bottom: 1px solid rgba(255, 255, 255, 0.1);
     margin-bottom: 30px;
}
 .footer-logo, .footer-nav, .footer-contact, .footer-social {
     flex: 1;
     min-width: 200px;
     text-align: left;
}
 .footer-logo h3 {
     color: var(--white-text);
     margin-bottom: 15px;
     font-size: 1.5em;
     font-weight: 700;
}
 .footer-logo p {
     color: var(--light-gray);
     font-size: 0.9em;
     line-height: 1.6;
     max-width: 300px;
}
 .footer-nav h4, .footer-contact h4, .footer-social h4 {
     color: var(--white-text);
     margin-bottom: 20px;
     font-size: 1.2em;
     font-weight: 600;
     position: relative;
     padding-bottom: 10px;
}
 .footer-nav h4::after, .footer-contact h4::after, .footer-social h4::after {
     content: '';
     position: absolute;
     left: 0;
     bottom: 0;
     width: 40px;
     height: 2px;
     background-color: var(--accent-gold);
}
 .footer-nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 12px;
}
 .footer-nav a {
     color: var(--light-gray);
     text-decoration: none;
     transition: color 0.2s, padding-left 0.2s;
     position: relative;
}
 .footer-nav a::before {
     content: '›';
     position: absolute;
     left: -15px;
     opacity: 0;
     transition: left 0.2s, opacity 0.2s;
     color: var(--accent-gold);
}
 .footer-nav a:hover {
     color: var(--accent-gold);
     padding-left: 15px;
}
 .footer-nav a:hover::before {
     left: 0;
     opacity: 1;
}
 .footer-contact p {
     color: var(--light-gray);
     margin: 8px 0;
     font-size: 0.9em;
     line-height: 1.6;
     display: flex;
     align-items: center;
}
 .footer-contact p i {
     margin-right: 10px;
     color: var(--accent-gold);
     width: 20px;
     text-align: center;
}
 .footer-social .social-links {
     display: flex;
     gap: 15px;
     margin-top: 15px;
}
 .footer-social .social-links a {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 40px;
     height: 40px;
     background-color: rgba(255, 255, 255, 0.1);
     border-radius: 50%;
     color: var(--white-text);
     transition: background-color 0.3s, transform 0.3s;
}
 .footer-social .social-links a:hover {
     background-color: var(--accent-gold);
     transform: translateY(-3px);
}
 .copyright {
     font-size: 0.85em;
     color: var(--light-gray);
     text-align: center;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.05);
}
/* Product Carousel */
 .product-sliders {
     display: flex;
     flex-direction: column;
     gap: 60px;
     padding: 40px 20px;
     background-color: #f8f8f8;
     margin: 40px auto;
     border-radius: 8px;
     box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}
 .product-carousel {
     position: relative;
     max-width: 1100px;
     margin: 0 auto;
     overflow: hidden;
     padding: 20px 0;
     border-radius: 8px;
     box-shadow: 0 5px 20px rgba(0,0,0,0.08);
     background-color: var(--white-text);
}
 .product-carousel h3 {
     text-align: center;
     color: var(--primary-blue);
     margin-bottom: 30px;
}
 .carousel-track {
     display: flex;
     transition: transform 0.5s ease-in-out;
     gap: 30px;
     padding: 0 15px;
}
 .slide-product {
     flex: 0 0 auto;
     min-width: 300px;
     width: 300px;
     background-color: var(--white-text);
     border-radius: 8px;
     box-shadow: 0 5px 15px rgba(0,0,0,0.05);
     overflow: hidden;
     text-align: center;
     min-height: 480px;
     display: flex;
     flex-direction: column;
     justify-content: space-between;
}
 .product-image-gallery {
     position: relative;
     width: 100%;
     height: 180px;
     overflow: hidden;
     border-bottom: 3px solid var(--secondary-blue);
}
 .product-image-gallery img {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 0.4s ease-in-out;
     display: block;
}
 .product-image-gallery img.active {
     opacity: 1;
}
/* --- FIX: Prevent first image flash in galleries --- */
 .product-image-gallery img:first-child {
     opacity: 1;
}
 .slide-product h4 {
     margin: 20px 0 10px;
     color: var(--primary-blue);
     padding: 0 15px;
}
 .slide-product p {
     padding: 0 15px 20px;
     font-size: 0.95em;
     color: #555;
     flex-grow: 1;
}
 .carousel-btn {
     position: absolute;
     top: calc(50% - 20px);
     transform: translateY(-50%);
     background-color: rgba(10, 36, 99, 0.8);
     color: var(--white-text);
     border: none;
     padding: 10px 15px;
     cursor: pointer;
     font-size: 1.5em;
     border-radius: 50%;
     z-index: 5;
     transition: background-color 0.3s ease;
}
 .carousel-btn:hover {
     background-color: var(--primary-blue);
}
 .prev-btn {
     left: -10px;
}
 .next-btn {
     right: -10px;
}
 .carousel-dots {
     text-align: center;
     margin-top: 30px;
}
 .carousel-dot {
     display: inline-block;
     width: 10px;
     height: 10px;
     background-color: rgba(10, 36, 99, 0.3);
     border-radius: 50%;
     margin: 0 5px;
     cursor: pointer;
     transition: background-color 0.3s ease;
}
 .carousel-dot.active {
     background-color: var(--primary-blue);
}
/* Offices Section */
 .offices-section {
     background-color: var(--primary-blue);
     color: var(--white-text);
     padding: 60px 0;
     text-align: center;
}
 .offices-section h3 {
     color: var(--white-text);
     margin-bottom: 40px;
}
 .office-cards {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
     margin-top: 30px;
}
 .office-card {
     background-color: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 8px;
     padding: 25px;
     flex: 1;
     min-width: 280px;
     max-width: 400px;
     box-shadow: 0 4px 10px rgba(0,0,0,0.3);
     text-align: left;
}
 .office-card h4 {
     color: var(--accent-gold);
     margin-bottom: 10px;
     font-size: 1.3em;
}
/* Contact Form */
 .contact-form {
     max-width: 700px;
     margin: 40px auto 0;
     padding: 40px;
     background-color: var(--white-text);
     border-radius: 8px;
     box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
 .form-group {
     margin-bottom: 20px;
     text-align: left;
}
 .form-group label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: var(--primary-blue);
}
 .form-group input[type="text"], .form-group input[type="email"], .form-group textarea {
     width: 100%;
     padding: 12px;
     border: 1px solid #ddd;
     border-radius: 5px;
     font-size: 1em;
     font-family: 'Open Sans', sans-serif;
}
 .form-group textarea {
     resize: vertical;
}
 .contact-form .primary-btn {
     width: auto;
     margin-top: 15px;
}
/* Responsive Design */
 @media (max-width: 992px) {
     h1 {
         font-size: 2.2em;
    }
     h2 {
         font-size: 2.0em;
    }
     h3 {
         font-size: 1.6em;
    }
     .hero-section, .hero-slider-section {
         height: 50vh;
         min-height: 350px;
    }
     .vm-grid {
         grid-template-columns: 1fr;
    }
}
/* Mobile Navigation - Fixed and Narrower */
/* Mobile Menu Toggle - Fixed and Larger */
 .menu-toggle {
     display: none;
     background: none;
     border: none;
     cursor: pointer;
     padding: 10px;
     z-index: 1001;
    /* Higher than nav to ensure it's clickable */
     width: 50px;
    /* Increased button size */
     height: 40px;
     position: relative;
     border-radius: 4px;
     transition: background-color 0.3s ease;
     display: none;
     flex-direction: column;
     justify-content: center;
     align-items: center;
}
 .menu-toggle:hover {
     background-color: rgba(255, 255, 255, 0.1);
}
 .menu-toggle span {
     display: block;
     width: 35px;
    /* Increased from 30px */
     height: 4px;
    /* Increased from 3px */
     background-color: var(--white-text);
    /* Ensures white color */
     margin: 4px 0;
    /* Spacing between lines */
     transition: all 0.3s ease;
     border-radius: 4px;
}
/* Mobile Navigation - Fixed and Narrower */
 @media (max-width: 768px) {
     header .container {
         flex-direction: column;
         align-items: flex-start;
         padding: 0 15px;
         position: relative;
    }
     .logo {
         margin-bottom: 15px;
    }
     nav .nav-links {
         flex-direction: column;
         display: none;
         width: 85%;
        /* Slightly narrower than full width */
         max-width: 320px;
        /* But not too wide on larger screens */
         background-color: var(--primary-blue);
         padding: 15px 0;
         position: absolute;
         top: 100%;
         left: 50%;
        /* Position from center */
         transform: translateX(-50%);
        /* Center the menu */
         z-index: 999;
        /* Lower than menu-toggle but higher than content */
         box-shadow: 0 4px 15px rgba(0,0,0,0.3);
        /* Add more shadow for depth */
         border-radius: 0 0 12px 12px;
        /* More rounded corners */
         margin-top: 10px;
        /* Add space between header and menu */
    }
     nav .nav-links.active {
         display: flex;
    }
     nav .nav-links li {
         margin: 0;
         width: 100%;
         border-top: 1px solid rgba(255,255,255,0.15);
    }
     nav .nav-links a {
         display: block;
         padding: 15px 25px;
        /* Slightly more padding */
         width: 100%;
         color: white;
         text-decoration: none;
         transition: background-color 0.2s ease;
         font-size: 0.95em;
        /* Slightly smaller text */
    }
     nav .nav-links a:hover {
         background-color: rgba(255,255,255,0.1);
    }
     .menu-toggle {
         display: flex;
         flex-direction: column;
         justify-content: center;
        align-items: center;
        /* Changed from block to flex */
         position: absolute;
         right: 15px;
         top: 15px;
        /* Keep original position */
    }
    /* Hamburger to X animation - Updated for larger size */
     .menu-toggle.active span:nth-child(1) {
         transform: rotate(45deg) translate(8px, 8px);
    }
     .menu-toggle.active span:nth-child(2) {
         opacity: 0;
    }
     .menu-toggle.active span:nth-child(3) {
         transform: rotate(-45deg) translate(8px, -8px);
    }
     main > section:first-of-type {
         padding-top: 40px;
    }
     .hero-content h2, .hero-slider .slide-content h2 {
         font-size: 2.4em;
    }
}
/* Mobile Footer */
 @media (max-width: 768px) {
     .footer-content {
         flex-direction: column;
         align-items: center;
         text-align: center;
         gap: 30px;
    }
     .footer-logo, .footer-nav, .footer-contact, .footer-social {
         text-align: center;
         width: 100%;
    }
     .footer-nav ul {
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: center;
         gap: 15px;
    }
     .footer-nav h4::after, .footer-contact h4::after, .footer-social h4::after {
         left: 50%;
         transform: translateX(-50%);
    }
     .footer-social .social-links {
         justify-content: center;
    }
}
 @media (max-width: 480px) {
     h1 {
         font-size: 1.8em;
    }
     h2 {
         font-size: 1.6em;
    }
     h3 {
         font-size: 1.4em;
    }
     .hero-section, .hero-slider-section {
         height: 45vh;
         min-height: 300px;
    }
     .hero-content h2, .hero-slider .slide-content h2 {
         font-size: 1.8em;
    }
     .btn {
         padding: 10px 20px;
         font-size: 0.95em;
    }
}
/* Safe Layout Fixes */
 header .container {
     padding-left: 20px !important;
     padding-right: 20px !important;
}
 .logo {
     margin: 0 !important;
}
 .logo svg {
     margin-left: 0 !important;
     display: block !important;
}
 .hero-slider-section {
     margin-bottom: 0 !important;
}
 main {
     margin-top: 0 !important;
}
 main > section:first-of-type {
     padding-top: 80px !important;
}
 footer {
     margin-top: 0 !important;
}
 .hero-slider-section {
     position: relative;
     width: 100%;
     height: 70vh;
     min-height: 500px;
     overflow: hidden;
     margin-bottom: 0;
}
 .slide-content {
     position: relative;
     z-index: 2;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     height: 100%;
     text-align: center;
     color: var(--white-text);
     padding: 0 20px;
}
 main {
     margin-top: 0;
}
 main > section:first-of-type {
     padding-top: 60px;
}
 .hero-section, .hero-slider-section {
     display: block !important;
}
 .hero-slider .slide-content {
     padding: 100px 20px !important;
     height: auto !important;
     justify-content: flex-start !important;
     align-items: center !important;
     text-align: center !important;
     max-width: 900px;
     margin: 0 auto;
     box-sizing: border-box;
}
 main > section:last-of-type {
     margin-bottom: 60px;
}
 .main-content-block:last-of-type {
     margin-bottom: 60px;
}
/* Contact CTA Section */
 .contact-cta {
     background: linear-gradient(135deg, var(--primary-blue), #1a3a7a);
     color: var(--white-text);
     text-align: center;
     padding: 70px 30px !important;
}
 .contact-cta h3 {
     font-size: 2.4em;
     margin-bottom: 20px;
     color: var(--white-text);
}
 .contact-cta p {
     font-size: 1.2em;
     max-width: 700px;
     margin: 0 auto 30px;
     line-height: 1.6;
     opacity: 0.95;
}
 .contact-cta .btn {
     display: inline-block;
     padding: 14px 36px;
     font-size: 1.1em;
     font-weight: 600;
     border-radius: 8px;
     text-decoration: none;
     transition: all 0.3s ease;
     box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
 .contact-cta .primary-btn {
     background-color: var(--accent-gold);
     color: var(--primary-blue);
     border: 2px solid var(--accent-gold);
}
 .contact-cta .primary-btn:hover {
     background-color: #e09f3e;
     transform: translateY(-3px);
     box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}
/* Signing Deal Section */
 .signing-deal-section {
     background-color: #f9fbfd;
     text-align: center;
     padding: 50px 20px !important;
     max-width: 1000px;
     margin: 0 auto 60px;
}
 .signing-deal-section .container {
     max-width: 900px;
     padding: 0 20px;
}
 .signing-deal-section h3 {
     color: var(--primary-blue);
     margin-bottom: 16px;
     font-size: 2em;
}
 .signing-deal-section p {
     font-size: 1.1em;
     max-width: 700px;
     margin: 0 auto 24px;
     line-height: 1.6;
}
 .deal-image-wrapper {
     margin-top: 30px;
     max-width: 750px;
     margin-left: auto;
     margin-right: auto;
     border-radius: 12px;
     overflow: hidden;
     box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
 .deal-image {
     width: 100%;
     height: auto;
     display: block;
     border-bottom: 4px solid var(--accent-gold);
}
 .image-caption {
     background: var(--primary-blue);
     color: var(--white-text);
     padding: 16px;
     font-style: italic;
     font-size: 0.9em;
     text-align: center;
}
/* Global Background Slider */
 #global-background-slider {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -1;
     overflow: hidden;
}
 .bg-media {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
     opacity: 0;
     transition: opacity 1s ease-in-out;
}
 .bg-media.active {
     opacity: 1;
}
 .hero-slider-section {
     position: relative;
     z-index: 1;
}
 .hero-slider .slide {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-size: cover;
     background-position: center;
     opacity: 0;
     transition: opacity 0.5s ease-in-out;
}
 .hero-slider .slide.active {
     opacity: 1;
}
 .hero-slider .slide-overlay {
     background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
}
 .hero-slider .slide-content {
     position: relative;
     z-index: 2;
}
/* Expertise Section */
 .expertise-section {
     background-color: var(--white-text);
     padding: 70px 30px;
     margin-bottom: 60px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
     border-radius: 12px;
     text-align: left;
}
 .expertise-section h3 {
     text-align: center;
     color: var(--primary-blue);
     margin-bottom: 20px;
}
 .expertise-section ul {
     list-style: none;
     padding: 0;
     margin: 20px auto 0;
     max-width: 800px;
}
 .expertise-section ul li {
     position: relative;
     padding-left: 35px;
     margin-bottom: 18px;
     font-size: 1.1em;
     color: var(--dark-text);
     line-height: 1.6;
     transition: transform 0.2s ease;
}
 .expertise-section ul li:hover {
     transform: translateX(5px);
}
 .expertise-section ul li::before {
     content: '✔';
     position: absolute;
     left: 0;
     top: 2px;
     color: var(--accent-gold);
     font-size: 1.2em;
     line-height: 1.6;
}
 .expertise-section .cta-text {
     margin-top: 20px;
     font-size: 1.1em;
     text-align: center;
}
 @media (max-width: 768px) {
     .expertise-section {
         padding: 50px 20px;
    }
     .expertise-section ul {
         margin: 15px auto 0;
    }
     .expertise-section ul li {
         font-size: 1em;
         margin-bottom: 14px;
         padding-left: 30px;
    }
     .expertise-section ul li::before {
         top: 1px;
         font-size: 1.1em;
    }
}
