:root {
    --primary-color: #1a5f7a;
    --secondary-color: #2d8f47;
    --accent-color: #ff6b35;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    position: relative;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Preloader Styles */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.98) 0%, rgba(45, 143, 71, 0.98) 100%);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.preloader-content {
    text-align: center;
    color: white;
}

.preloader-gif {
    width: 150px;
    height: auto;
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: fadeInOut 1.5s ease-in-out infinite;
}

/* Preloader - Big Screen Styles */
@media (min-width: 768px) {
    .preloader-gif {
        width: 250px;
        margin-bottom: 30px;
    }
    
    .preloader-text {
        font-size: 1.5rem;
        letter-spacing: 3px;
    }
}

@media (min-width: 992px) {
    .preloader-gif {
        width: 350px;
        margin-bottom: 40px;
    }
    
    .preloader-text {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
}

@media (min-width: 1200px) {
    .preloader-gif {
        width: 450px;
        margin-bottom: 50px;
    }
    
    .preloader-text {
        font-size: 2.2rem;
        letter-spacing: 5px;
    }
}

@media (min-width: 1400px) {
    .preloader-gif {
        width: 550px;
        margin-bottom: 60px;
    }
    
    .preloader-text {
        font-size: 2.5rem;
        letter-spacing: 6px;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

/* Sketchfab 3D Background */
.sketchfab-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    min-height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.sketchfab-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transform: scale(1.1);
    transform-origin: center center;
}

/* Three.js Bubble Animation Container */
#bubble-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Mouse Cursor Effect */
.mouse-effect {
    opacity: 0;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99999;
    pointer-events: none;
}

.circle {
    position: absolute;
    background-color: #ffffff;
    width: 14px;
    height: 14px;
    left: 0px;
    top: 0px;
    border-radius: 100%;
    z-index: 99999;
    user-select: none;
    pointer-events: none;
    transition: all 0.05s;
    box-shadow: 0 0 15px rgba(255, 255, 255, 1), 
                0 0 25px rgba(255, 255, 255, 0.9),
                0 0 35px rgba(255, 255, 255, 0.7),
                0 0 8px rgba(2, 1, 77, 0.8),
                inset 0 0 5px rgba(255, 255, 255, 0.5);
    border: 2.5px solid #02014d;
    backdrop-filter: blur(2px);
}

.circle-follow {
    position: absolute;
    border: 2.5px solid rgba(255, 255, 255, 1);
    width: 45px;
    height: 45px;
    left: 0px;
    top: 0px;
    border-radius: 100%;
    z-index: 99999;
    user-select: none;
    pointer-events: none;
    transition: all 0.1s;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8),
                inset 0 0 25px rgba(255, 255, 255, 0.4),
                0 0 15px rgba(2, 1, 77, 0.4);
    backdrop-filter: blur(3px);
}



/* Ensure all content is above animated background */
.navbar {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999 !important;
    background-color: #0504aa;
    backdrop-filter: blur(5px);
}

section {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(1px);
}

section.bg-light {
    background: rgba(248, 249, 250, 0.65) !important;
}

.why-choose-section {
    background: rgba(248, 249, 250, 0.55) !important;
    backdrop-filter: blur(1px);
}

.what-we-serve-section {
    background: rgba(248, 249, 250, 0.75) !important;
}

.gallery-section {
    background: rgba(255, 255, 255, 0.75) !important;
}

.hero-section,
.page-header,
.video-section {
    background-blend-mode: overlay;
}

.stats-section {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.9) 0%, rgba(45, 143, 71, 0.9) 100%) !important;
    background-blend-mode: overlay;
}

footer {
    position: relative;
    z-index: 10;
    background-color: #0504aa;
    backdrop-filter: blur(2px);
}

.navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    z-index: 9999 !important;
    background-color: #0504aa;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

/* Sticky navbar when scrolling */
.navbar.scrolled {
    background-color: #0504aa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 6px 0;
    backdrop-filter: blur(10px);
}

.navbar .container {
    max-width: 95%;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: white !important;
    display: flex;
    align-items: center;
    padding: 3px 0;
    transition: opacity 0.3s;
}

.navbar-brand:hover {
    opacity: 0.85;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    max-width: 160px;
    filter: brightness(1.1) contrast(1.1);
    transition: transform 0.3s ease;
}

.company-name {
    font-size: 32px;
    margin-left: 10px;
    color: white;
    font-weight: 700;
}

.navbar-brand:hover .logo-img {
    transform: scale(1.02);
    filter: brightness(1.15) contrast(1.15);
}

.navbar-nav {
    align-items: center;
}

.nav-link {
    padding: 8px 15px !important;
    font-weight: 600;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.95) !important;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.nav-link:hover {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

.nav-link.active {
    color: white !important;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}

/* Hover Dropdown - Main Menu */
.dropdown-hover {
    position: relative;
}

.dropdown-hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin-top: 0;
    background: white;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    z-index: 1050;
}

/* Show dropdown when hovering over parent OR dropdown menu */
.dropdown-hover:hover .dropdown-menu,
.dropdown-hover .dropdown-menu:hover,
.dropdown-hover.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Create invisible bridge to prevent gap */
.dropdown-hover::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
    z-index: 1049;
}

.dropdown-menu .dropdown-item {
    padding: 10px 20px;
    color: #212529;
    transition: all 0.2s ease;
    font-weight: 500;
}

.dropdown-menu .dropdown-item:hover {
    background-color: #f0f7ff;
    color: #1a5f7a;
    padding-left: 25px;
}

/* Nested Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-toggle-submenu {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px !important;
    color: #212529 !important;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.dropdown-toggle-submenu:hover {
    background-color: #f8f9fa !important;
    color: #1a5f7a !important;
}

.dropdown-toggle-submenu i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: #1a5f7a;
}

.dropdown-submenu:hover .dropdown-toggle-submenu i {
    transform: translateX(3px);
}

.dropdown-submenu .submenu {
    position: absolute;
    top: 0;
    left: 100%;
    margin-left: 2px;
    min-width: 200px;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1050;
    pointer-events: none;
    display: block;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    pointer-events: auto;
}

.dropdown-submenu .submenu .dropdown-item {
    padding: 12px 20px;
    white-space: nowrap;
    color: #212529;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
    font-size: 0.95rem;
}

.dropdown-submenu .submenu .dropdown-item:hover {
    background-color: #e8f4f8;
    color: #1a5f7a;
    border-left-color: #1a5f7a;
    padding-left: 25px;
    font-weight: 500;
}

/* Mobile responsive for nested menu */
@media (max-width: 991px) {
    .dropdown-hover {
        position: static;
    }
    
    .dropdown-hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
        pointer-events: auto;
        display: none;
        position: static;
        margin-top: 0;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.1);
        padding: 0;
    }
    
    .dropdown-hover:hover .dropdown-menu,
    .dropdown-hover.show .dropdown-menu,
    .dropdown-hover .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
        display: block;
    }
    
    .dropdown-menu .dropdown-item {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 12px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .dropdown-menu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: white !important;
        padding-left: 25px;
    }
    
    .dropdown-submenu {
        position: static;
    }
    
    .dropdown-submenu .submenu {
        position: static;
        margin-top: 0;
        margin-left: 20px;
        box-shadow: none;
        border: none;
        border-left: 3px solid rgba(255, 255, 255, 0.3);
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(255, 255, 255, 0.05);
        pointer-events: auto;
        display: block;
    }
    
    .dropdown-submenu:hover .submenu {
        transform: none;
    }
    
    .dropdown-submenu .submenu .dropdown-item {
        padding: 10px 15px;
        color: rgba(255, 255, 255, 0.85) !important;
    }
    
    .dropdown-submenu .submenu .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1) !important;
        color: white !important;
    }
    
    .dropdown-toggle-submenu {
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    .dropdown-toggle-submenu:hover {
        background-color: rgba(255, 255, 255, 0.15) !important;
        color: white !important;
    }
    
    .dropdown-toggle-submenu i {
        transform: rotate(90deg);
    }
    
    /* Remove invisible bridge on mobile */
    .dropdown-hover::after {
        display: none;
    }
}

.hero-section {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.85) 0%, rgba(45, 143, 71, 0.85) 100%),
                url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920') center/cover;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    margin-top: 0;
    padding: 40px 0;
    backdrop-filter: blur(1px);
}

.hero-section .container {
    padding: 0 15px;
}

.hero-content {
    padding: 20px 0;
}

.hero-content {
    z-index: 2;
}

.section-padding {
    padding: 80px 0;
}

.feature-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
}

.stats-section {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.9) 0%, rgba(45, 143, 71, 0.9) 100%);
    color: white;
    padding: 50px 0 !important;
    backdrop-filter: blur(2px);
}

.stats-section .container {
    padding: 0 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
}

.footer {
    background-color: #0504aa;
    color: #fff;
    padding: 50px 0 20px;
    backdrop-filter: blur(2px);
}

.footer .row > div {
    padding: 0 15px;
}

.footer h5 {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    color: white !important;
}

.footer ul.list-unstyled li {
    margin-bottom: 10px;
}

.footer ul.list-unstyled li a {
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
    color: white !important;
}

.footer ul.list-unstyled li a:hover {
    color: white !important;
    padding-left: 5px;
}

.footer ul.list-unstyled li span {
    color: white !important;
}

.footer p {
    color: white !important;
}

.footer .text-white-50 {
    color: white !important;
}

/* Corporate Social Responsibility Section */
.csr-section {
    background: rgba(255, 255, 255, 0.75);
    padding: 80px 0;
}

.csr-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 30px;
}

.csr-description {
    font-size: 1.1rem;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    line-height: 1.8;
}

.csr-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.csr-card {
    background: white;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.csr-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #1a5f7a;
}

.csr-icon {
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.csr-card:hover .csr-icon {
    transform: scale(1.15) rotate(5deg);
}

.csr-icon i {
    font-size: 3.5rem;
    color: #1a5f7a;
    display: inline-block;
}

.csr-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a5f7a;
    margin: 0;
    text-transform: capitalize;
    transition: color 0.3s ease;
}

.csr-card:hover .csr-label {
    color: #0d4a63;
}

.csr-card:nth-child(1) {
    animation-delay: 0.1s;
}

.csr-card:nth-child(2) {
    animation-delay: 0.2s;
}

.csr-card:nth-child(3) {
    animation-delay: 0.3s;
}

.csr-card:nth-child(4) {
    animation-delay: 0.4s;
}

.csr-card:nth-child(5) {
    animation-delay: 0.5s;
}

.csr-card:nth-child(6) {
    animation-delay: 0.6s;
}

.csr-card:nth-child(7) {
    animation-delay: 0.7s;
}

.csr-card:nth-child(8) {
    animation-delay: 0.8s;
}

@media (max-width: 992px) {
    .csr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .csr-grid {
        grid-template-columns: 1fr;
    }
    
    .csr-title {
        font-size: 2rem;
    }
    
    .csr-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Mission & Vision Section */
.mission-vision-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('fish.jpg') center/cover;
    min-height: 500px;
    padding: 80px 0;
    position: relative;
    display: flex;
    align-items: center;
}

.mission-vision-card {
    background: rgba(0, 0, 0, 0.7);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(5px);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.mission-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    background: rgba(0, 0, 0, 0.75);
}

.mv-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.mv-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.mv-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mission-btn {
    background: linear-gradient(135deg, #1a5f7a, #0d4a63);
}

.mission-btn:hover {
    background: linear-gradient(135deg, #2a7ba0, #1a5f7a);
    transform: translateX(5px);
    color: white;
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
}

.vision-btn {
    background: linear-gradient(135deg, #8b6914, #6b4f0f);
}

.vision-btn:hover {
    background: linear-gradient(135deg, #a67c1a, #8b6914);
    transform: translateX(5px);
    color: white;
    box-shadow: 0 6px 20px rgba(139, 105, 20, 0.4);
}

.mv-button i {
    transition: transform 0.3s ease;
}

.mv-button:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .mission-vision-section {
        padding: 60px 0;
        min-height: auto;
    }
    
    .mission-vision-card {
        padding: 30px 25px;
        margin-bottom: 20px;
    }
    
    .mv-title {
        font-size: 2rem;
    }
    
    .mv-text {
        font-size: 1rem;
    }
}

/* Products Navigation Section */
.products-nav-section {
    margin: 0;
    padding: 0;
}

.products-main-panel {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
                url('fish.jpg') center/cover;
    min-height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 60px;
    overflow: hidden;
}

.products-background-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.products-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.products-overlay-text {
    color: white;
    z-index: 2;
    position: relative;
}

.products-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.products-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.products-category-panel {
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.products-category-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-category-panel:hover::before {
    opacity: 1;
}

.products-species {
    background: #2d8f47;
}

.products-category {
    background: #1a5f7a;
}

.products-category-link {
    text-decoration: none;
    color: white;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.products-category-panel:hover {
    transform: scale(1.02);
}

.products-category-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.products-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.products-icon-group {
    position: relative;
    display: inline-block;
    width: 80px;
    height: 80px;
}

.products-icon {
    font-size: 3rem;
    color: white;
    position: absolute;
    transition: all 0.3s ease;
}

.products-icon-back {
    opacity: 0.5;
    transform: translate(10px, 10px) scale(0.9);
    z-index: 1;
}

.products-category-panel:hover .products-icon {
    transform: translateY(-5px);
}

.products-category-panel:hover .products-icon-back {
    transform: translate(15px, 15px) scale(0.85);
}

@media (max-width: 992px) {
    .products-main-panel {
        min-height: 400px;
        padding: 40px;
    }
    
    .products-title {
        font-size: 2rem;
    }
    
    .products-subtitle {
        font-size: 1.4rem;
    }
    
    .products-category-panel {
        min-height: 200px;
    }
}

@media (max-width: 768px) {
    .products-main-panel {
        min-height: 300px;
        padding: 30px 20px;
    }
    
    .products-title {
        font-size: 1.5rem;
    }
    
    .products-subtitle {
        font-size: 1.2rem;
    }
    
    .products-category-panel {
        min-height: 180px;
    }
    
    .products-category-title {
        font-size: 1.2rem;
    }
    
    .products-icon {
        font-size: 2.5rem;
    }
}

.footer-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    filter: brightness(1.1) contrast(1.1);
}

.footer-company-name {
    font-size: 32px;
    margin-left: 10px;
    color: white;
    font-weight: 700;
}

.social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

/* Individual social media colors on hover */
.social-link:hover i.bi-facebook {
    color: #1877f2;
}

.social-link:has(.bi-facebook):hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link:has(.bi-twitter):hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-link:has(.bi-instagram):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link:has(.bi-linkedin):hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-link:has(.bi-youtube):hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-link:has(.bi-whatsapp):hover {
    background: #25d366;
    border-color: #25d366;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    transition: transform 0.3s;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.page-header {
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.9) 0%, rgba(45, 143, 71, 0.9) 100%),
                url('https://images.unsplash.com/photo-1559827260-dc66d52bef19?w=1920') center/cover;
    padding: 150px 0 80px;
    color: white;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.7) 0%, rgba(45, 143, 71, 0.7) 100%);
    z-index: 1;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.timeline-item {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 9px;
    top: 20px;
    width: 2px;
    height: calc(100% + 10px);
    background: #e0e0e0;
}

.timeline-item:last-child::after {
    display: none;
}

.value-card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.value-card:hover {
    transform: translateY(-5px);
}

.contact-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    height: 100%;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-control, .form-select {
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    padding: 12px 15px;
    transition: border-color 0.3s;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 95, 122, 0.25);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.compliance-btn {
    background-color: #1a5f7a;
    border-radius: 6px;
    padding: 8px 20px !important;
    margin-left: 10px;
    color: white !important;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.compliance-btn:hover {
    background-color: #2a7ba0;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

.video-section {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0 !important;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding-bottom: 0 !important;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 80px 0;
}

.breadcrumb-nav {
    margin-bottom: 20px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.breadcrumb-item a {
    color: #1a5f7a;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #1a5f7a;
    font-weight: bold;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #1a5f7a;
    padding: 0 8px;
}

/*.section-heading {*/
/*    font-size: 2.5rem;*/
/*    font-weight: 700;*/
/*    color: #1a5f7a;*/
/*    text-transform: uppercase;*/
/*    margin-bottom: 30px;*/
/*    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);*/
/*    letter-spacing: 1px;*/
/*}*/

/*.content-text {*/
/*    font-size: 1.5rem;*/
/*    color: #2c3e50;*/
/*    line-height: 1.8;*/
/*    margin-bottom: 40px;*/
/*    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);*/
/*    font-weight: 500;*/
/*}*/

.cta-button {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #2c3e50;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #1a5f7a;
}

.cta-button i {
    color: #8b4513;
    font-size: 1.2rem;
}

/* Why Choose Us Section */
.why-choose-section {
    background: rgba(248, 249, 250, 0.65) !important;
    backdrop-filter: blur(1px);
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.image-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
}

.image-item:hover img {
    transform: scale(1.1);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 40px;
}

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

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.check-icon {
    color: #2d8f47;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 5px;
    animation: checkPulse 2s infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.feature-content {
    flex: 1;
}

.feature-content strong {
    display: block;
    color: #1a5f7a;
    font-size: 1.2rem;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-content p {
    color: #555;
    margin: 0;
    line-height: 1.6;
}

.company-statement {
    background: linear-gradient(135deg, rgba(227, 242, 253, 0.9) 0%, rgba(187, 222, 251, 0.9) 100%);
    padding: 25px 30px;
    border-radius: 10px;
    margin-top: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(2px);
}

.company-statement p {
    color: #1a5f7a;
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
    line-height: 1.6;
}

/* Animation Classes */
.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.8s ease-out forwards;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.8s ease-out forwards;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in-left:nth-child(1) {
    animation-delay: 0.1s;
}

.fade-in-right:nth-child(2) {
    animation-delay: 0.2s;
}

.fade-in-left:nth-child(3) {
    animation-delay: 0.3s;
}

.fade-in-right:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-item:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-item:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-item:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-item:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .image-grid {
        grid-template-columns: 1fr;
    }
    
    .image-item img {
        height: 200px;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* What We Serve Section */
.what-we-serve-section {
    background: rgba(248, 249, 250, 0.75);
    padding: 80px 0;
}

.serve-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    text-align: center;
    margin-bottom: 50px;
}

.serve-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.serve-card {
    background: linear-gradient(180deg, #f5f5f5 0%, #e0e0e0 100%);
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.serve-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(200, 200, 200, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.serve-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.serve-card:hover::before {
    opacity: 1;
}

.card-icon {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.serve-card:hover .card-icon {
    transform: scale(1.2) rotate(5deg);
}

.card-icon i {
    font-size: 3.5rem;
    background: linear-gradient(135deg, #1a5f7a, #2d8f47);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.card-label {
    position: relative;
    z-index: 2;
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a5f7a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.serve-card:hover .card-label {
    color: #0d4a63;
}

.serve-card:nth-child(1) {
    animation-delay: 0.1s;
}

.serve-card:nth-child(2) {
    animation-delay: 0.2s;
}

.serve-card:nth-child(3) {
    animation-delay: 0.3s;
}

.serve-card:nth-child(4) {
    animation-delay: 0.4s;
}

.serve-card:nth-child(5) {
    animation-delay: 0.5s;
}

.serve-card:nth-child(6) {
    animation-delay: 0.6s;
}

@media (max-width: 1200px) {
    .serve-cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .serve-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .serve-title {
        font-size: 2rem;
    }
    
    .card-icon i {
        font-size: 2.5rem;
    }
    
    .card-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 576px) {
    .serve-cards {
        grid-template-columns: 1fr;
    }
}

/* Gallery Section */
.gallery-section {
    background: rgba(255, 255, 255, 0.75);
}

.gallery-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 40px;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    aspect-ratio: 1;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    max-width: 100%;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 95, 122, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 3rem;
    color: white;
}

/* Lightbox Modal */
.lightbox-content {
    background: transparent;
    border: none;
    position: relative;
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1051;
    opacity: 1;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.lightbox-close:hover {
    background: white;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.lightbox-close::before {
    content: '×';
    font-size: 2rem;
    color: #1a5f7a;
    font-weight: 300;
    line-height: 1;
}

.lightbox-close:hover::before {
    color: #0d4a63;
}

#lightbox-image {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: contain;
    display: block;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-title {
        font-size: 2rem;
    }
    
    .lightbox-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .lightbox-close::before {
        font-size: 1.5rem;
    }
}
/* Branch Card Styles */
.branch-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.branch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.branch-card-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #2d8f47 100%);
    padding: 20px 25px;
    color: white;
}

.branch-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    display: flex;
    align-items: center;
}

.branch-name i {
    font-size: 1.3rem;
}

.branch-card-body {
    padding: 25px;
}

.branch-info {
    margin-bottom: 20px;
}

.branch-detail {
    border-bottom: 1px solid #f0f0f0;
    padding-bottom: 15px;
}

.branch-detail:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a5f7a;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-label i {
    font-size: 1.1rem;
    color: #2d8f47;
}

.detail-value {
    margin: 0;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}

/* Scrolling Text Section */
.scrolling-text-section {
    background-color: #0504aa !important;
    padding: 15px 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
    margin-top: 0 !important;
    display: flex;
    align-items: center;
    min-height: 50px;
}

/* Remove gap between video section and scrolling text */
.video-section + .scrolling-text-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: none !important;
}

.video-section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Override general section styling for video and scrolling text to remove any borders/lines */
.video-section,
.scrolling-text-section {
    backdrop-filter: none !important;
}

.video-section {
    background-blend-mode: overlay;
}

/* Ensure no line appears between sections */
section.video-section {
    background: transparent !important;
}

section.scrolling-text-section {
    background-color: #0504aa !important;
}

.scrolling-text-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.scrolling-text-content {
    display: inline-flex;
    align-items: center;
    animation: scroll-text 30s linear infinite;
    gap: 30px;
}

.scrolling-text-item {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
    flex-shrink: 0;
}

.scrolling-text-separator {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
}

@keyframes scroll-text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .scrolling-text-section {
        padding: 12px 0;
    }
    
    .scrolling-text-item {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }
    
    .scrolling-text-content {
        gap: 20px;
    }
    
    .scrolling-text-separator {
        font-size: 1rem;
    }
}

.detail-value a {
    color: #1a5f7a;
    text-decoration: none;
    transition: color 0.3s ease;
}

.detail-value a:hover {
    color: #2d8f47;
    text-decoration: underline;
}

.branch-map {
    margin-top: 20px;
}

.branch-map .map-container {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.branch-map .map-container iframe {
    display: block;
    width: 100%;
    height: 250px;
    border: none;
}

/* Responsive design for branch cards */
@media (max-width: 768px) {
    .branch-card-header {
        padding: 15px 20px;
    }
    
    .branch-name {
        font-size: 1.3rem;
    }
    
    .branch-card-body {
        padding: 20px;
    }
    
    .branch-map .map-container iframe {
        height: 200px;
    }
}

/* Certificates Section Styles */
.certificates-section {
    background: linear-gradient(135deg, rgba(248, 249, 250, 0.95) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 80px 0;
}

.certificates-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.certificates-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    display: block;
}

.certificates-scroll {
    display: flex !important;
    align-items: center;
    gap: 40px;
    animation: scroll-certificates 30s linear infinite !important;
    will-change: transform;
    flex-wrap: nowrap !important;
    width: fit-content !important;
    min-width: max-content;
}

.certificate-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 150px;
    min-width: 200px;
    width: auto;
}

.certificate-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.certificate-item img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
}

.certificate-item:hover img {
    filter: grayscale(0%);
}

@keyframes scroll-certificates {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-50% - 20px));
    }
}

.certificates-container:hover .certificates-scroll {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .certificates-section {
        padding: 60px 0;
    }

    .certificates-section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .certificate-item {
        height: 120px;
        min-width: 150px;
        padding: 15px;
    }

    .certificates-scroll {
        gap: 20px;
    }
}
