@import url("https://fonts.googleapis.com/css2?family=Karla:wght@400;700&display=swap");

/* Global Styles */
*,
*::after,
*::before {
    box-sizing: border-box;
}

::selection {
    background-color: grey;
    color: white;
}

html {
    background: #fff;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    width: 100%;
    overflow-x: hidden;
}

body {
    background-color: #ffffff;
    margin: 0;
    font-family: 'Karla', sans-serif;
    width: 100%;
    position: relative;
    padding-top: 100px;
    /* Prevent header overlap */
}

@media (max-width: 768px) {
    body {
        width: 100%;
        overflow-x: hidden;
    }
}

.letter-spacing-2 {
    letter-spacing: 2px;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
}

.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    transition-duration: 0.3s;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    transform: scale(1.1);
}

/* Header Styles */
header {
    display: block;
    position: fixed;
    /* Changed from absolute */
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    /* Consistent background */
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 100;
    /* Ensure above all content */
    transition: all 0.3s ease;
}

@media screen and (max-width: 800px) {
    header {
        height: 80px;
    }
}

header .inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    height: 100px;
    align-items: center;
    justify-content: center;
    position: relative;
    /* Restored for logo/burger positioning */
}

@media screen and (max-width: 800px) {
    header .inner {
        height: 80px;
        padding: 0 20px;
        justify-content: flex-end;
    }
}

header .logo {
    display: block;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    /* background-color: white; */
    text-align: center;
    z-index: 11;
}

@media screen and (max-width: 800px) {
    header .logo {
        width: 140px;
        height: 80px;
        left: 15px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}

header .logo img {
    width: 100px;
    margin-top: 10px;
}

@media screen and (max-width: 800px) {
    header .logo img {
        width: 110px;
        margin-top: 0;
    }
}

header nav {
    display: none;
}

header nav a {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    margin: 0 18px;
    transition: color 0.3s ease;
    position: relative;
}

header nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0b057d;
    transition: width 0.3s ease-in-out;
}

header nav a.active,
header nav a:hover {
    color: #0b057d;
}

header nav a.active::after,
header nav a:hover::after {
    width: 100%;
}

@media screen and (min-width: 800px) {
    header nav {
        display: flex;
        align-items: center;
    }
}

/* Mega Menu & Dropdown Styles */
.nav-item-dropdown {
    position: static;
    /* Required for full-width absolute mega menu */
}

.mega-menu {
    position: absolute;
    top: 100px;
    left: 50%;
    width: 60vw;
    transform: translateX(-50%) translateY(20px);
    background: #ffffff;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 60px 0;
    z-index: 1000;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(5);
}

.menu-category h5 {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    letter-spacing: 2px;
}

.menu-category ul li {
    margin-bottom: 12px;
}

.menu-category ul li a {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
    padding: 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.menu-category ul li a:hover {
    color: #1d549b;
    transform: translateX(5px);
}

.menu-category ul li a::after {
    display: none;
}

.menu-category-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: #f8faff;
    transition: transform 0.3s ease;
}

.menu-category-card:hover {
    transform: translateY(-5px);
}

@media screen and (max-width: 800px) {
    .nav-item-dropdown {
        width: 100%;
        text-align: center;
    }

    .mega-menu {
        position: relative;
        top: 0;
        opacity: 1;
        visibility: visible;
        display: block;
        /* Ensure it's rendered for height transition */
        box-shadow: none;
        padding: 0;
        /* Updated padding handling */
        background: transparent;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, padding 0.3s ease;
    }

    /* .nav-item-dropdown:hover .mega-menu {
        display: block; 
    } REMOVED to prevent conflict with JS toggle */

    .nav-item-dropdown.mobile-open .mega-menu {
        max-height: 1000px;
        /* Large enough to fit content */
        padding: 20px 0;
        animation: none;
        /* Removed fade animation */
    }

    .menu-category {
        margin-bottom: 30px;
    }
}


/* Mobile Nav Open State */
header nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    justify-content: flex-start;
    /* Changed from center to allow scrolling */
    padding-top: 100px;
    align-items: center;
    z-index: 99;
    overflow-y: auto;
    /* Allow scrolling */
    padding-bottom: 50px;
}

/* Dropdown Arrow for Mobile */
.dropdown-trigger::after {
    content: '';
    /* bi-chevron-down */
    font-family: 'bootstrap-icons';
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.1s ease;
    display: inline-block;
}

.nav-item-dropdown.mobile-open .dropdown-trigger::after {
    transform: rotate(180deg);
}

@media screen and (min-width: 800px) {
    .dropdown-trigger::after {
        display: none;
        /* Hide on desktop as mega menu is on hover */
    }
}

@media screen and (max-width: 800px) {
    .mega-menu {
        width: 100%;
        padding: 0 20px;
    }

    .menu-category h5 {
        font-size: 16px;
        margin-bottom: 15px !important;
        color: #0b057d !important;
    }

    .menu-category ul li a {
        font-size: 16px;
        padding: 10px 0;
        display: block;
    }
}

header nav.open>a,
header nav.open .nav-item-dropdown {
    font-size: 20px;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
    text-align: center;
}

header nav.open .mega-menu a {
    opacity: 1;
    /* Reset for mega menu items */
    transform: none;
    animation: none;
    font-size: 16px;
    margin: 0;
}

header nav.open>*:nth-child(1) {
    animation-delay: 0.1s;
}

header nav.open>*:nth-child(2) {
    animation-delay: 0.2s;
}

header nav.open>*:nth-child(3) {
    animation-delay: 0.3s;
}

header nav.open>*:nth-child(4) {
    animation-delay: 0.4s;
}

header nav.open>*:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Burger Menu */
/* Burger Menu */
header .burger {
    display: block;
    position: absolute;
    right: 100px;
    top: 35px;
    width: 30px;
    height: 2px;
    background: #212529;
    cursor: pointer;
    z-index: 1000;
    /* Increase touch area */
    box-sizing: content-box;
    padding: 10px 0;
    background-clip: content-box;
    transition: background 0.3s ease;
}

@media screen and (max-width: 800px) {
    header .burger {
        right: 20px;
        top: 29px;
        /* Centered: (80 - 22) / 2 */
    }
}

header .burger:before,
header .burger:after {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #212529;
    transition: transform 0.3s ease, top 0.3s ease;
}

header .burger:before {
    top: 2px;
    /* 10px pad - 8px gap */
}

header .burger:after {
    top: 20px;
    /* 10px pad + 2px height + 8px gap */
}

header .burger.active {
    background: transparent;
    /* Hide middle line */
}

header .burger.active:before {
    top: 10px;
    /* Center */
    transform: rotate(45deg);
}

header .burger.active:after {
    top: 10px;
    /* Center */
    transform: rotate(-45deg);
}

@media screen and (min-width: 800px) {
    header .burger {
        display: none;
    }
}

/* Donate Link */
header .donate-link {
    width: 72px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 27px;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    color: #212529;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-decoration: none;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
    z-index: 11;
}

/* Main Content */
/* Hero Split Section */
#hero-split {
    background: #ffffff;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

#slider-content h2 {
    font-family: 'Karla', sans-serif;
    font-weight: 700;
    font-size: 40px;
    letter-spacing: -1px;
    color: #0b057d;
    line-height: normal;
    margin: 20px 0 60px;
}

@media screen and (max-width: 800px) {
    #slider-content h2 {
        font-size: 50px;
        line-height: 55px;
        margin: 15px 0 40px;
    }
}

@media screen and (min-width: 801px) {
    #slider-content h2 {
        font-size: 110px;
        line-height: 100px;
    }
}

#slider-content .meta {
    display: inline-block;
    font-size: 14px;
    letter-spacing: 5px;
    color: #88888ab5;
    text-transform: uppercase;
    position: relative;
}

@media screen and (min-width: 800px) {
    #slider-content .meta {
        font-size: 16px;
    }
}

#slider-content .meta:after {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    right: -55px;
    width: 45px;
    height: 2px;
    background-color: #393d40;
}

@media screen and (max-width: 800px) {
    #slider-content .meta:after {
        display: none;
    }
}

#slider-content #slide-status {
    margin-top: 10px;
    font-weight: 400;
    font-size: 18px;
    color: #212529;
}

@media screen and (max-width: 800px) {
    #slider-content #slide-status {
        font-size: 22px;
    }
}

@media screen and (min-width: 801px) {
    #slider-content #slide-status {
        font-size: 34px;
    }
}

/* Circular Slider Container */
.hero-image-wrapper {
    width: 100%;
    aspect-ratio: 1/1;
    max-width: 600px;
    margin: 0 auto;
    z-index: 1;
}

#slider.circular-slider {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

#slider.circular-slider img {
    display: none;
}

#slider.circular-slider canvas {
    border-radius: 50% !important;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    transform: none !important;
}

/* Hero Pagination */
#pagination {
    z-index: 10;
    margin-left: -150px;
    /* Offset for better alignment with text */
}

#pagination button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #0b057d;
    border: none;
    opacity: 0.3;
    transition: all 0.3s ease;
    padding: 0;
}

#pagination button.active {
    opacity: 1;
    transform: scale(1.3);
}

@media (max-width: 991.98px) {
    #hero-split {
        padding-top: 100px;
        text-align: center;
    }

    #hero-split #slider-content .meta:after {
        display: none;
    }

    .hero-image-wrapper {
        max-width: 400px;
    }

    #hero-split .hero-actions {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    #hero-split .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
    }
}

/* Page Loader */
.loading:before {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}

.loading:after {
    content: '';
    position: fixed;
    z-index: 100001;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background: #212529;
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

/* Page Loader */
.loading:before {
    content: '';
    position: fixed;
    z-index: 100000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
}

.loading:after {
    content: '';
    position: fixed;
    z-index: 100001;
    top: 50%;
    left: 50%;
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0.4;
    background: #212529;
    animation: loaderAnim 0.7s linear infinite alternate forwards;
}

@keyframes loaderAnim {
    to {
        opacity: 1;
        transform: scale3d(0.5, 0.5, 1);
    }
}

/* About Section Enhancement */
.about-section {
    background: #ffffff;
    position: relative;
    z-index: 1;
}

.about-section .collage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.about-section .collage-grid .grid-item {
    transition: transform 0.3s ease;
}

.about-section .collage-grid .grid-item:hover {
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

.about-section .collage-grid .item-1 {
    grid-column: span 2;
    height: 250px;
}

.about-section .collage-grid .item-2,
.about-section .collage-grid .item-3,
.about-section .collage-grid .item-4,
.about-section .collage-grid .item-5 {
    height: 140px;
}

@media (max-width: 576px) {
    .about-section .collage-grid .item-1 {
        height: 200px;
    }

    .about-section .collage-grid .item-2,
    .about-section .collage-grid .item-3,
    .about-section .collage-grid .item-4,
    .about-section .collage-grid .item-5 {
        height: 120px;
    }
}

.about-section .about-content .custom-list li {
    margin-bottom: 12px;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
}

.about-section .about-content .custom-list li i {
    font-size: 1.1rem;
    color: #0b057d !important;
}

.about-section .about-content .btn-primary {
    background-color: #0b057d;
    border-color: #0b057d;
    padding: 15px 40px;
    font-weight: 600;
}

.about-section .about-content .btn-primary:hover {
    background-color: #08045d;
    border-color: #08045d;
}

/* Products Section Styles */
.products-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.products-section .swiper-slide {
    height: auto;
    padding: 15px;
}

.products-section .swiper-pagination-bullet-active {
    background-color: #0b057d !important;
}

.products-section .product-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    height: 400px;
    /* Fixed height to prevent sibling resizing */
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.products-section .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(11, 5, 125, 0.15);
}

.products-section .product-card .card-image {
    height: 100%;
    position: relative;
    overflow: hidden;
}

.products-section .product-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.products-section .product-card:hover .card-image img {
    transform: scale(1.1);
}

.products-section .product-card .card-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 5, 125, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.products-section .product-card:hover .card-image .overlay {
    opacity: 1;
}

.products-section .product-card .card-image .card-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    font-size: 2.5rem;
    color: #ffffff;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 2;
}

.products-section .product-card:hover .card-image .card-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.products-section .product-card .card-content {
    padding: 20px 25px;
    text-align: center;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    position: absolute;
    /* Absolute positioning */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 3;
    transition: transform 0.3s ease;
    transform: translateY(60px);
    /* Hide detailed content initially */
}

.products-section .product-card:hover .card-content {
    transform: translateY(0);
    /* Slide up on hover */
}

.products-section .product-card .card-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    transition: color 0.3s ease;
}

.products-section .product-card:hover .card-content h3 {
    color: #ffffff;
}

.products-section .product-card .card-content .hover-content {
    opacity: 0;
    transition: opacity 0.4s ease 0.1s;
    /* Delay opacity slightly */
    margin-top: 15px;
}

.products-section .product-card:hover .card-content .hover-content {
    opacity: 1;
}

.products-section .product-card .card-content .hover-content p {
    font-size: 0.9rem;
    color: #e0e0e0;
    margin-bottom: 15px;
}

.products-section .product-card .card-content .hover-content .details-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.products-section .product-card .card-content .hover-content .details-link:hover {
    text-decoration: underline;
}

/* Why Choose Section Styles */
.why-choose-section {
    background: #ffffff;
}

.why-choose-section .feature-item .icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(11, 5, 125, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.why-choose-section .feature-item:hover .icon-wrapper {
    background: #0b057d;
    transform: scale(1.1);
}

.why-choose-section .feature-item:hover .icon-wrapper i {
    color: #ffffff !important;
}

.why-choose-section .collage-wrapper {
    position: relative;
    padding: 20px;
}

.why-choose-section .collage-wrapper .collage-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 150px);
    gap: 15px;
}

@media (max-width: 576px) {
    .why-choose-section .collage-wrapper .collage-container {
        grid-template-rows: repeat(3, 100px);
    }
}

.why-choose-section .collage-wrapper .collage-container .collage-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-choose-section .collage-wrapper .collage-container .collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-choose-section .collage-wrapper .collage-container .collage-item:hover {
    transform: translateY(-5px);
    z-index: 2;
}

/* Masonry Mix Layout */
.why-choose-section .collage-wrapper .collage-container .item-1 {
    grid-column: 1 / 3;
    grid-row: 1 / 3;
}

.why-choose-section .collage-wrapper .collage-container .item-2 {
    grid-column: 3;
    grid-row: 1;
}

.why-choose-section .collage-wrapper .collage-container .item-3 {
    grid-column: 3;
    grid-row: 2;
}

.why-choose-section .collage-wrapper .collage-container .item-4 {
    grid-column: 1;
    grid-row: 3;
}

.why-choose-section .collage-wrapper .collage-container .item-5 {
    grid-column: 2;
    grid-row: 3;
}

.why-choose-section .collage-wrapper .collage-container .item-6 {
    grid-column: 3;
    grid-row: 3;
}

.why-choose-section .collage-wrapper .decor-circle {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    border: 2px dashed #0b057d;
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.why-choose-section .collage-wrapper .decor-dots {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background-image: radial-gradient(#0b057d 2px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}


.badge-dotted {
    border: 2px dotted #0b057d;
    padding: 8px 16px;
    display: inline-block;
    border-radius: 50px;
    background: rgba(11, 5, 125, 0.03);
}


.why-choose-section .vertical-lines-decor {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 0;
}

.why-choose-section .vertical-lines-decor .line {
    width: 0;
    border-left: 3px dotted rgba(11, 5, 125, 0.2);
}

.why-choose-section .vertical-lines-decor .line-1 {
    height: 300px;
}

.why-choose-section .vertical-lines-decor .line-2 {
    height: 200px;
    margin-left: 10px;
}

.why-choose-section .vertical-lines-decor .line-3 {
    height: 100px;
    margin-left: 20px;
}

.why-choose-section .vertical-lines-decor .line-4 {
    height: 50px;
    margin-left: 30px;
}


.why-choose-section .vertical-lines-decor {
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    flex-direction: row !important;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
}

.why-choose-section .vertical-lines-decor .line {
    margin: 0 !important;
}

/* Decor for Products Section */
.products-section .vertical-lines-decor.left-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    z-index: 0;
}

.products-section .vertical-lines-decor.left-decor .line {
    width: 0;
    margin: 0;
}

/* Gallery Section Styles */
.gallery-section {
    background: #f8f9fa;
}

.gallery-section .gallery-grid .gallery-card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.gallery-section .gallery-grid .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-section .gallery-grid .gallery-card .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 5, 125, 0.9) 0%, rgba(11, 5, 125, 0.4) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 30px;
}

.gallery-section .gallery-grid .gallery-card .overlay .content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
    text-align: left;
    width: 100%;
}

.gallery-section .gallery-grid .gallery-card .overlay .content h5 {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Poppins', sans-serif;
}

.gallery-section .gallery-grid .gallery-card .overlay .content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin-bottom: 0;
}

.gallery-section .gallery-grid .gallery-card .overlay .content .btn-icon {
    position: absolute;
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0b057d;
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease 0.1s;
}

.gallery-section .gallery-grid .gallery-card .overlay .content .btn-icon:hover {
    background: #0b057d;
    color: #ffffff;
}

@media (hover: hover) {
    .gallery-section .gallery-grid .gallery-card:hover img {
        transform: scale(1.1);
    }

    .gallery-section .gallery-grid .gallery-card:hover .overlay {
        opacity: 1;
    }

    .gallery-section .gallery-grid .gallery-card:hover .overlay .content {
        transform: translateY(0);
    }

    .gallery-section .gallery-grid .gallery-card:hover .overlay .content .btn-icon {
        opacity: 1;
        transform: scale(1);
    }
}

/* Ensure mobile sees overlay content or it doesn't block clicks */
@media (max-width: 991px) {
    .gallery-section .gallery-grid .gallery-card .overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(11, 5, 125, 0.7) 0%, transparent 100%);
    }

    .gallery-section .gallery-grid .gallery-card .overlay .content {
        transform: translateY(0);
    }
}

.gallery-section .right-decor {
    top: 50%;
    right: 40px;
    transform: translateY(-50%);
    left: auto;
    flex-direction: row-reverse;
}


/* Gallery Left Decor */
.gallery-section .left-decor {
    position: absolute;
    top: 0;
    left: 0;
    right: auto;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    z-index: 0;
}

.gallery-section .left-decor .line {
    width: 0;
    margin: 0;
}


/* FAQ Section Styles */
.faq-section {
    background: #ffffff;
}

.faq-section .accordion-item {
    transition: all 0.3s ease;
    border: 1px solid rgba(11, 5, 125, 0.1) !important;
}

.faq-section .accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(11, 5, 125, 0.05) !important;
}

.faq-section .accordion-button {
    background-color: #ffffff;
    color: #0b057d;
    padding: 20px 25px;
    font-size: 1.1rem;
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: #0b057d;
    color: #ffffff;
    box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(11, 5, 125, 0.1);
}

.faq-section .accordion-body {
    padding: 20px 25px;
    line-height: 1.7;
}

.faq-section .right-decor {
    top: 0 !important;
    right: 0 !important;
    left: auto !important;
    transform: none !important;
    flex-direction: row-reverse !important;
    align-items: flex-start;
    gap: 15px;
    padding: 30px;
    position: absolute;
}

.faq-section .right-decor .line {
    width: 0;
    margin: 0 !important;
}


/* FAQ Background Image Styles */
.faq-section {
    position: relative;
    background: url('../images/sabari013.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, 0.92); */
    z-index: -1;
}


.faq-section {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
}

.faq-section .accordion-button {
    padding: 12px 20px !important;
    font-size: 1rem !important;
}

@media (max-width: 768px) {
    .faq-section .container {
        border-radius: 30px !important;
        /* Smaller radius for mobile */
        padding: 30px 15px !important;
    }

    .faq-section .display-5 {
        font-size: 1.8rem !important;
        /* Smaller headings */
    }

    .faq-section .accordion-button {
        padding: 15px !important;
        font-size: 0.95rem !important;
    }

    .faq-section .accordion-body {
        font-size: 0.9rem !important;
        padding: 12px 15px !important;
    }

    .faq-section .badge-dotted {
        font-size: 0.75rem !important;
    }
}


.faq-section {
    background: transparent !important;
}

.faq-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/sabari013.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: -2;
    transition: background-image 1.5s ease-in-out;
}

/* Unique 3D Contact Section Styles */
.contact-unique-section {
    background-color: #ffffff2b;
    padding: 100px 0;
}

.floating-supplies-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.supplies-main-img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 800px;
    opacity: 0.1;
    /* Reduced further since it's now inside the card too */
    filter: blur(8px);
    animation: floatSlow 20s infinite alternate ease-in-out;
}

@keyframes floatSlow {
    from {
        transform: translate(-52%, -48%) rotate(0deg);
    }

    to {
        transform: translate(-48%, -52%) rotate(2deg);
    }
}

.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: rgba(11, 5, 125, 0.1);
    top: -100px;
    right: -100px;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: rgba(0, 123, 255, 0.1);
    bottom: -50px;
    left: -50px;
}

.glass-form-container {
    background: #ffffff;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    position: relative;
}

.glass-form-body {
    background-image: url('../images/contact/supplies_3d.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
}

.glass-form-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    /* Keeps it white while showing the image */
    z-index: -1;
}

.contact-info-panel {
    background: linear-gradient(135deg, #0b057d 0%, #0044ff 100%) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.icon-circle {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-quick-links div:hover .icon-circle {
    background: #ffffff;
    color: #0b057d;
    transform: scale(1.1);
}

.input-group-modern {
    position: relative;
    margin-bottom: 20px;
}

.input-group-modern input,
.input-group-modern textarea {
    width: 100%;
    padding: 15px 0;
    font-size: 1rem;
    color: #333;
    background: transparent;
    border: none;
    border-bottom: 2px solid #eee;
    outline: none;
    transition: all 0.3s ease;
}

.input-group-modern textarea {
    resize: none;
}

.focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #0b057d;
    transition: 0.4s;
}

.input-group-modern input:focus~.focus-border,
.input-group-modern textarea:focus~.focus-border {
    width: 100%;
}

.btn-3d-submit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 30px;
    background: #0b057d;
    color: white;
    border: none;
    border-radius: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(11, 5, 125, 0.2);
}

.btn-3d-submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11, 5, 125, 0.4);
    background: #0044ff;
}

.btn-3d-submit .btn-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.btn-3d-submit:hover .btn-icon {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .glass-form-container {
        border-radius: 30px;
    }

    .contact-unique-section {
        padding: 60px 0;
    }
}

/* About Background Section */
.about-bg-section {
    position: relative;
    background: url('../images/about/about.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    padding: 100px 0;
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
}

.about-bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.336);
    /* White overlay to show bg image faintly */
    z-index: 1;
}

.about-content-box {
    position: relative;
    z-index: 2;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border */
    background: rgb(255, 255, 255);
    /* Almost transparent white */
    backdrop-filter: blur(5px);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Vision & Mission Cards */
.vision-mission-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08) !important;
}

.vision-mission-card .icon-wrapper i {
    transition: transform 0.3s ease;
    display: inline-block;
}

.vision-mission-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

/* Values Circular Design */
.value-circle-card {
    width: 280px;
    height: 280px;
    position: relative;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.value-circle-card .circle-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0b057d 0%, #0044ff 100%);
    z-index: 1;
    transition: all 0.4s ease;
}

.value-circle-card:hover .circle-bg {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(11, 5, 125, 0.3);
}

.value-circle-card .circle-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: center;
}

.value-circle-card:hover {
    transform: translateY(-10px);
}

.value-circle-card.large-circle {
    width: 450px;
    height: 450px;
    background: transparent;
}

.value-circle-card.large-circle .circle-bg {
    background: linear-gradient(135deg, #00d4ff 0%, #0044ff 100%);
}

@media (max-width: 991px) {
    .value-circle-card.large-circle {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 768px) {
    .value-circle-card {
        width: 250px;
        height: 250px;
    }

    .value-circle-card.large-circle {
        width: 100%;
        height: auto;
        aspect-ratio: 1/1;
        border-radius: 50%;
    }
}


/* Custom Tabs Styling */
.custom-tabs .nav-link {
    color: #6c757d;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.custom-tabs .nav-link:hover {
    transform: translateY(-2px);
    background: #e9ecef;
}

.custom-tabs .nav-link.active {
    background: linear-gradient(135deg, #0b057d 0%, #0044ff 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(11, 5, 125, 0.3);
}

.custom-tabs .nav-link i {
    font-size: 1.1rem;
    vertical-align: text-top;
}

/* Tab Content Animation */
.tab-pane {
    transition: all 0.4s ease-in-out;
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

/* Intersecting Circles Layout */
.intersecting-circles-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    height: 700px;
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.inter-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    text-align: center;
    color: white;
    transition: all 0.5s ease;
    backdrop-filter: blur(8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.inter-circle:hover {
    z-index: 20 !important;
    transform: scale(1.05);
}

/* Vision - Top Left */
.inter-circle.vision {
    top: 0;
    left: 80px;
    background: linear-gradient(135deg, rgba(11, 5, 125, 0.85) 0%, rgba(68, 62, 192, 0.8) 100%);
    z-index: 2;
}

/* Mission - Top Right */
.inter-circle.mission {
    top: 0;
    right: 80px;
    background: linear-gradient(135deg, rgba(0, 68, 255, 0.85) 0%, rgba(0, 150, 255, 0.8) 100%);
    z-index: 3;
}

/* Values - Bottom Center */
.inter-circle.values {
    bottom: 50px;
    /* Overlap more */
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.9) 0%, rgba(60, 60, 60, 0.85) 100%);
    z-index: 4;
    width: 460px;
    height: 460px;
}

.inter-circle.values:hover {
    transform: translateX(-50%) scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .intersecting-circles-container {
        height: auto;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        margin-top: 0;
    }

    .inter-circle {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 300px;
        height: 300px;
        margin-bottom: -40px;
    }

    .inter-circle.values {
        width: 320px;
        height: 320px;
        margin-bottom: 0;
        transform: none !important;
    }
}

/* Goals Strategic Roadmap */
.goal-step-card {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    height: 100%;
    z-index: 1;
}

.goal-step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #e0e0e0;
}

.goal-step-card .step-number {
    position: absolute;
    top: -15px;
    right: 30px;
    background: #0b057d;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(11, 5, 125, 0.3);
}

.goal-step-card:hover .step-number {
    background: #00d4ff;
    transform: scale(1.1);
}

.goal-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(11, 5, 125, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.goal-step-card:hover .goal-icon-wrapper {
    background: #0b057d;
}

.goal-step-card:hover .goal-icon-wrapper i {
    color: white !important;
}



/* Founder Section Styling */
.founder-section {
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
}

.founder-img-wrapper {
    position: relative;
    padding: 20px;
    z-index: 1;
}

.founder-img-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(11, 5, 125, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    border-radius: 50%;
}

.founder-image-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 20px 0;
    box-shadow: 20px 20px 0px rgba(11, 5, 125, 0.1);
    transition: all 0.5s ease;
}

.founder-image-card img {
    width: 100%;
    transition: transform 0.5s ease;
}

.founder-image-card:hover img {
    transform: scale(1.03);
}

.founder-image-card:hover {
    box-shadow: 10px 10px 0px rgba(14, 114, 134, 0.2);
    transform: translateY(-5px);
}

.founder-content blockquote {
    border-left: 5px solid #0b057d;
    padding-left: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.signature-text {
    font-family: 'Cursive', sans-serif;
    /* Fallback if no specific font loaded, or use visual styling */
    color: #0b057d;
    font-size: 1.5rem;
    font-weight: bold;
    opacity: 0.8;
}

/* Vertical Lines Decoration */
.vertical-lines-decor {
    position: absolute;
    top: 0;
    right: 5%;
    height: 100%;
    display: flex;
    gap: 20px;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

/* Vertical Lines Decoration - Staggered Dots */
.vertical-lines-decor {
    position: absolute;
    top: 0;
    height: 100%;
    display: flex;
    gap: 15px;
    z-index: 10;
    /* Making sure it's on top of backgrounds */
    pointer-events: none;
}

.vertical-lines-decor.left-decor {
    left: 40px;
    right: auto;
}

.vertical-lines-decor.right-decor {
    right: 40px;
    left: auto;
    flex-direction: row-reverse;
}

.vertical-lines-decor .line {
    width: 0;
    border-left: 3px dotted rgb(11, 5, 125);
}

/* Slope/Triangular Height Staggering */
.vertical-lines-decor .line:nth-child(1) {
    height: 400px;
}

.vertical-lines-decor .line:nth-child(2) {
    height: 350px;
}

.vertical-lines-decor .line:nth-child(3) {
    height: 300px;
}

.vertical-lines-decor .line:nth-child(4) {
    height: 250px;
}

.vertical-lines-decor .line:nth-child(5) {
    height: 200px;
}

.vertical-lines-decor .line:nth-child(6) {
    height: 150px;
}

.vertical-lines-decor .line:nth-child(7) {
    height: 100px;
}

.vertical-lines-decor .line:nth-child(8) {
    height: 50px;
}

/* Animation removed as per user request */



/* Empty ruleset fix if any - verifying grid connector */
/* Cleaned up redundant empty blocks */

.footer-section {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: #0b057d !important;
    background-image: linear-gradient(135deg, #0b057d 0%, #1d549b 100%) !important;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    margin-top: -50px;
    /* Slight overlap for smooth transition */
}

/* Mobile Responsive Adjustments for Footer Shape */
@media (max-width: 768px) {
    .footer-section {
        border-top-left-radius: 40px;
        border-top-right-radius: 40px;
        margin-top: -30px;
    }
}

/* Bouncing Bubbles Animation */
.footer-ball {
    position: absolute;
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    pointer-events: none;
    /* Bubble appearance: gradient + reflection */
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0.05) 60%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: inset -5px -5px 10px rgba(0, 0, 0, 0.1), inset 5px 5px 10px rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(2px);
}

.ball-1 {
    width: 60px;
    height: 60px;
    top: 10%;
    left: 10%;
    animation: bounceX1 15s linear infinite alternate, bounceY1 11s linear infinite alternate;
}

.ball-2 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    right: 15%;
    animation: bounceX2 20s linear infinite alternate, bounceY2 13s linear infinite alternate;
}

.ball-3 {
    width: 40px;
    height: 40px;
    top: 40%;
    left: 45%;
    animation: bounceX3 18s linear infinite alternate, bounceY3 16s linear infinite alternate;
}

.ball-4 {
    width: 70px;
    height: 70px;
    bottom: 10%;
    left: 20%;
    animation: bounceX4 25s linear infinite alternate, bounceY4 19s linear infinite alternate;
}

.ball-5 {
    width: 50px;
    height: 50px;
    top: 30%;
    right: 30%;
    animation: bounceX5 12s linear infinite alternate, bounceY5 14s linear infinite alternate;
}

.ball-6 {
    width: 35px;
    height: 35px;
    bottom: 40%;
    left: 15%;
    animation: bounceX6 19s linear infinite alternate, bounceY6 17s linear infinite alternate;
}

.ball-7 {
    width: 55px;
    height: 55px;
    top: 60%;
    right: 10%;
    animation: bounceX7 22s linear infinite alternate, bounceY7 21s linear infinite alternate;
}

.ball-8 {
    width: 45px;
    height: 45px;
    bottom: 15%;
    right: 5%;
    animation: bounceX8 16s linear infinite alternate, bounceY8 24s linear infinite alternate;
}

@keyframes bounceX1 {
    from {
        left: 0%;
    }

    to {
        left: calc(100% - 60px);
    }
}

@keyframes bounceY1 {
    from {
        top: 0%;
    }

    to {
        top: calc(100% - 60px);
    }
}

@keyframes bounceX2 {
    from {
        right: 0%;
    }

    to {
        right: calc(100% - 80px);
    }
}

@keyframes bounceY2 {
    from {
        bottom: 0%;
    }

    to {
        bottom: calc(100% - 80px);
    }
}

@keyframes bounceX3 {
    from {
        left: 10%;
    }

    to {
        left: calc(90% - 40px);
    }
}

@keyframes bounceY3 {
    from {
        top: 10%;
    }

    to {
        top: calc(90% - 40px);
    }
}

@keyframes bounceX4 {
    from {
        left: 5%;
    }

    to {
        left: calc(95% - 70px);
    }
}

@keyframes bounceY4 {
    from {
        bottom: 5%;
    }

    to {
        bottom: calc(95% - 70px);
    }
}

@keyframes bounceX5 {
    from {
        right: 0%;
    }

    to {
        right: calc(100% - 50px);
    }
}

@keyframes bounceY5 {
    from {
        top: 0%;
    }

    to {
        top: calc(100% - 50px);
    }
}

@keyframes bounceX6 {
    from {
        left: 0%;
    }

    to {
        left: calc(100% - 35px);
    }
}

@keyframes bounceY6 {
    from {
        bottom: 0%;
    }

    to {
        bottom: calc(100% - 35px);
    }
}

@keyframes bounceX7 {
    from {
        right: 0%;
    }

    to {
        right: calc(100% - 55px);
    }
}

@keyframes bounceY7 {
    from {
        top: 0%;
    }

    to {
        top: calc(100% - 55px);
    }
}

@keyframes bounceX8 {
    from {
        right: 0%;
    }

    to {
        right: calc(100% - 45px);
    }
}

@keyframes bounceY8 {
    from {
        bottom: 0%;
    }

    to {
        bottom: calc(100% - 45px);
    }
}

.footer-section .footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: flex-start;
    font-size: 0.85rem;
    line-height: 1.4;
    font-weight: 500;
}

.footer-section .footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
    opacity: 1;
}

.footer-section .footer-links li:last-child {
    margin-bottom: 0 !important;
}

.footer-section .social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section .social-icon:hover {
    background: #ffffff;
    transform: translateY(-5px);
    color: rgb(0, 46, 158);
}

.footer-section .icon-box {
    font-size: 1.2rem;
    line-height: 1;
}

.footer-section .text-primary {
    color: #00d4ff !important;
}

.footer-section .founder-box {
    background-color: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
    transition: all 0.3s ease;
}

.footer-section .founder-box:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}

.footer-section .footer-logo img {
    max-width: 150px;
    object-fit: contain;
}

/* Contact Page Additional Features */
.icon-box-small {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.features-list .d-flex {
    transition: all 0.3s ease;
    padding: 10px;
    border-radius: 15px;
}

.features-list .d-flex:hover {
    background: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transform: translateX(5px);
}

.features-list .d-flex:hover .icon-box-small {
    background-color: #0b057d !important;
    color: #ffffff !important;
}

.contact-image-card {
    position: relative;
    height: 100%;
}

.contact-image-card img {
    transition: transform 0.5s ease;
}

.contact-image-card:hover img {
    transform: scale(1.05);
}

.image-overlay-text {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 2;
}

.badge-dotted {
    border: 1px dashed rgba(11, 5, 125, 0.3);
    padding: 5px 15px;
    border-radius: 50px;
    background: rgba(11, 5, 125, 0.05);
}

.map-wrapper {
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.25) !important;
}

/* Premium Gallery Page Styles */
.gallery-premium-section {
    background: #fdfdfd;
}

.gallery-item {
    cursor: pointer;
    background: #eee;
    height: 100%;
}

.gallery-item img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0) 100%);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: flex-end;
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-content {
    transform: translateY(20px);
    transition: all 0.4s ease;
    color: #0b057d;
    /* Dark text for white overlay */
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.gallery-item.featured {
    height: 500px;
}

@media (max-width: 991px) {
    .gallery-item.featured {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .gallery-item.featured {
        height: 300px;
    }
}

.gallery-premium-section .vertical-lines-decor {
    opacity: 0.15;
}

/* --- Product Showcase Layout --- */
.showcase-header {
    background: #fdfdfd;
    padding: 30px 0 5px;
    /* Reduced since body has padding-top */
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.showcase-main-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.showcase-main-img-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.showcase-main-img-wrapper:hover img {
    transform: scale(1.05);
}

.showcase-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 25px;
    border-radius: 100px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: #0b057d;
    z-index: 2;
}

.content-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.gallery-item-small {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.gallery-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item-small:hover img {
    transform: scale(1.1);
}

.showcase-feature-item {
    background: #fff;
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.showcase-feature-item:hover {
    border-color: #0b057d;
    box-shadow: 0 15px 30px rgba(11, 5, 125, 0.05);
}

.showcase-feature-item i {
    font-size: 2rem;
    color: #0b057d;
    margin-bottom: 15px;
    display: block;
}

.parallax-img-section {
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    margin: 40px 0;
}

.parallax-img-section img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

@media (max-width: 991px) {
    .showcase-main-img-wrapper img {
        height: 500px;
    }
}

/* Info Dense Components */
.info-data-card {
    background: #f8faff;
    border-radius: 25px;
    padding: 30px;
    border: 1px solid rgba(11, 5, 125, 0.05);
}

.info-stat-box {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(0, 0, 0, 0.1);
}

.info-stat-box:last-child {
    border-right: none;
}

.info-stat-box .h3 {
    color: #0b057d;
    font-weight: 800;
    margin-bottom: 5px;
}

.info-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 10px;
}

.info-table tr {
    transition: transform 0.2s ease;
}

.info-table td {
    background: #fff;
    padding: 15px 20px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.info-table td:first-child {
    border-radius: 12px 0 0 12px;
    font-weight: 700;
    color: #000;
    width: 40%;
}

.info-table td:last-child {
    border-radius: 0 12px 12px 0;
    color: #666;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.info-tag {
    background: rgba(11, 5, 125, 0.05);
    color: #0b057d;
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.info-tag:hover {
    background: #0b057d;
    color: #fff;
}

@media (max-width: 991px) {
    .info-stat-box {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
}

/* Tablet & Mobile Improvements */
@media (max-width: 768px) {
    body {
        padding-top: 80px;
        /* Match mobile header height */
    }

    .showcase-header {
        margin-top: 0;
        width: 100%;
    }

    .showcase-header .display-3 {
        font-size: 2.5rem !important;
    }

    .showcase-main-img-wrapper img {
        height: 350px !important;
    }

    .content-gallery-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .gallery-item-small {
        height: 200px;
    }

    .parallax-img-section {
        height: 250px;
        margin: 20px 0;
    }

    .info-table td:first-child {
        width: 45%;
        padding: 12px 15px;
    }

    .info-table td {
        padding: 12px 15px;
        font-size: 0.9rem;
    }

    .showcase-feature-item {
        padding: 20px;
    }

    /* Padding adjustments for sections on mobile */
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Prevent large gutters from causing overflow */
    .row.g-5 {
        --bs-gutter-x: 1.5rem;
    }

    /* Prevent long text in tables from overflowing */
    .info-table td {
        word-break: break-word;
    }

    /* Ensure breadcrumbs wrap on very small screens */
    .breadcrumb {
        flex-wrap: wrap;
    }

}

/* Sticky WhatsApp Button Styles */
.whatsapp-sticky {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 9;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none !important;
}

.whatsapp-sticky:hover {
    transform: scale(1.1) translateY(-5px);
    background-color: #20b857;
    color: white;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%);
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #25d366;
}

.whatsapp-sticky:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    left: 75px;
}

@media (max-width: 768px) {
    .whatsapp-sticky {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* Premium CTA Section Styles */
.premium-cta-section {
    background-color: #0b057d;
    background-image: linear-gradient(135deg, #0b057d 0%, #1d549b 100%);
    color: white;
    z-index: 1;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.cta-decor-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -100px;
}

.circle-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -50px;
    background: rgba(0, 212, 255, 0.05);
}

.btn-primary-gradient {
    background: linear-gradient(45deg, #ffffff 0%, #f8f9fa 100%);
    color: #0b057d !important;
    border: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary-gradient:hover {
    background: #ffffff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
}

.hvr-grow {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-property: transform;
    transition-property: transform;
}

.hvr-grow:hover,
.hvr-grow:focus,
.hvr-grow:active {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* GSAP Reveal Helper (Initial States) */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
}

/* --- Gallery Lightbox Feature --- */
.gallery-item,
.gallery-card {
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 5, 125, 0.9) 0%, transparent 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    transition: all 0.4s ease;
    padding: 2rem;
    pointer-events: none;
    /* Crucial: Let the click pass through to the item on first tap */
}

@media (hover: hover) {
    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

    .gallery-item:hover img {
        transform: scale(1.05);
    }
}

/* On mobile, show a subtle version of the overlay by default or on tap */
@media (max-width: 991px) {
    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(11, 5, 125, 0.6) 0%, transparent 50%);
    }
}

.gallery-content {
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-content {
    transform: translateY(0);
}

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.796);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.lightbox-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image-container {
    position: relative;
    width: 100%;
    /*height: 100%;*/
    max-height: 97vh;
    border-radius: 30px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
}

.lightbox-image {
    width: 100%;
    /*height: 100%;*/
    /* object-fit: contain; */
    /* background: #000; */
}

.lightbox-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: #0b057d;
    /* Changed from white to dark blue */
    font-size: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 10;
}

.lightbox-close:hover {
    transform: rotate(90deg) scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 29);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

@media (hover: hover) {
    .lightbox-nav:hover {
        background: #ffffff;
        color: #0b057d;
        transform: translateY(-50%) scale(1.1);
    }
}

.lightbox-nav.prev {
    left: -80px;
}

.lightbox-nav.next {
    right: -80px;
}

@media (max-width: 1300px) {
    .lightbox-nav.prev {
        left: 10px;
    }

    .lightbox-nav.next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
    }
}

@media (max-width: 768px) {
    .lightbox-content-wrapper {
        height: 60vh;
    }

    .lightbox-nav {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .lightbox-caption {
        padding: 15px;
    }
}

/* Open Animation Classes (Triggered by JS) */
.lightbox-modal.active {
    display: flex;
}

.lightbox-image-container.flipping {
    animation: flipIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes flipIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Pan-India Operational Presence Styles */
.pan-india-section {
    background-color: #fff;
    padding-bottom: 5rem;
}

.globe-animation-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Decorative Frame Accents */

/* Technical Crosshairs */
.frame-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid #0b057d;
    z-index: 4;
}

.corner-tl {
    top: 30px;
    left: 30px;
    border-right: 0;
    border-bottom: 0;
}

.corner-tr {
    top: 30px;
    right: 30px;
    border-left: 0;
    border-bottom: 0;
}

.corner-bl {
    bottom: 30px;
    left: 30px;
    border-right: 0;
    border-top: 0;
}

.corner-br {
    bottom: 30px;
    right: 30px;
    border-left: 0;
    border-top: 0;
}


/* Base Orbit Ring */
.orbit-ring {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 2px dashed rgba(11, 5, 125, 0.1);
    border-radius: 50%;
    z-index: 1;
    animation: rotateOrbit 60s linear infinite;
}

@keyframes rotateOrbit {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.globe-container {
    position: relative;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: #00000020;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatGlobe 6s ease-in-out infinite;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(11, 5, 125, 0.06);
}

@keyframes floatGlobe {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.globe-map {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes spinGlobe3D {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.earth-globe-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    /* Removed spin animation for the map image */
    /* animation: spinGlobe3D 30s linear infinite; */
}

/* Port Labels Orbiting */
.port-labels {
    position: absolute;
    width: 450px;
    height: 450px;
    z-index: 3;
    animation: rotateOrbit 60s linear infinite;
}

.port-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform-origin: center center;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

/* Static positioning for each label around the circle */
.label-west {
    transform: translate(-50%, -50%) rotate(0deg) translate(225px) rotate(0deg);
}

.label-maharashtra {
    transform: translate(-50%, -50%) rotate(51deg) translate(225px) rotate(-51deg);
}

.label-south {
    transform: translate(-50%, -50%) rotate(102deg) translate(225px) rotate(-102deg);
}

.label-east-south {
    transform: translate(-50%, -50%) rotate(153deg) translate(225px) rotate(-153deg);
}

.label-east-mid {
    transform: translate(-50%, -50%) rotate(204deg) translate(225px) rotate(-204deg);
}

.label-east-north {
    transform: translate(-50%, -50%) rotate(255deg) translate(225px) rotate(-255deg);
}

.label-minor {
    transform: translate(-50%, -50%) rotate(306deg) translate(225px) rotate(-306deg);
}

/* Port Data Content Side */
.region-icon {
    width: 40px;
    height: 40px;
    background: rgba(11, 5, 125, 0.05);
    color: #0b057d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.2rem;
}

.section-badge {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(11, 5, 125, 0.06);
    color: #0b057d;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
}

.stat-pill {
    min-width: 140px;
    background: #fff;
    border-left: 4px solid #0b057d !important;
}

@media (max-width: 991px) {
    .globe-animation-wrapper {
        height: 400px;
    }

    .orbit-ring,
    .port-labels {
        width: 320px;
        height: 320px;
    }

    .globe-container {
        width: 220px;
        height: 220px;
    }

    .port-label {
        transform: translate(-50%, -50%) rotate(var(--rot, 0deg)) translate(150px) rotate(calc(-1 * var(--rot, 0deg)));
    }
}

.port-label .port-info-wrapper {
    animation: counterRotateEffect 60s linear infinite;
    display: flex;
    align-items: center;
    gap: 10px;
}

@keyframes counterRotateEffect {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.port-dot {
    width: 12px;
    height: 12px;
    background: #0b057d;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 0 4px rgba(11, 5, 125, 0.1);
}

.port-dot::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #0b057d;
    border-radius: 50%;
    animation: dotPulse 2s infinite;
}

.port-info {
    background: rgba(255, 255, 255, 0.85);
    padding: 12px 18px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(11, 5, 125, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 4px solid #0b057d;
    width: 200px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(12px);
}

.location-tag {
    color: #0b057d;
    font-weight: 600;
    display: inline-block;
    padding: 2px 8px;
    background: rgba(11, 5, 125, 0.04);
    border-radius: 4px;
    margin: 2px 0;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(11, 5, 125, 0.05);
}

.location-tag:hover {
    background: #0b057d !important;
    color: #ffffff !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(11, 5, 125, 0.15);
}

.port-info-mini {
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #0b057d;
    box-shadow: 0 4px 12px rgba(11, 5, 125, 0.1);
    white-space: nowrap;
    border-left: 3px solid #0b057d;
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease;
}

.port-label:hover .port-info-mini {
    transform: scale(1.1);
    background: #ffffff;
}

.port-info h6 {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0b057d;
}

.port-info p {
    margin: 0;
    font-size: 0.7rem;
    color: #666;
    line-height: 1.2;
}

@media (max-width: 991px) {
    .globe-animation-wrapper {
        height: 400px;
        /* margin-bottom: 300px; */
        /* Space for labels orbiting outside */
    }

    .orbit-ring,
    .port-labels {
        width: 300px !important;
        height: 300px !important;
    }

    .globe-container {
        width: 220px !important;
        height: 220px !important;
    }

    .label-west {
        transform: translate(-50%, -50%) rotate(0deg) translate(150px) rotate(0deg);
    }

    .label-maharashtra {
        transform: translate(-50%, -50%) rotate(51deg) translate(150px) rotate(-51deg);
    }

    .label-south {
        transform: translate(-50%, -50%) rotate(102deg) translate(150px) rotate(-102deg);
    }

    .label-east-south {
        transform: translate(-50%, -50%) rotate(153deg) translate(150px) rotate(-153deg);
    }

    .label-east-mid {
        transform: translate(-50%, -50%) rotate(204deg) translate(150px) rotate(-204deg);
    }

    .label-east-north {
        transform: translate(-50%, -50%) rotate(255deg) translate(150px) rotate(-255deg);
    }

    .label-minor {
        transform: translate(-50%, -50%) rotate(306deg) translate(150px) rotate(-306deg);
    }

    .port-data-container {
        padding-top: 50px;
        text-align: center;
    }

    .region-item p {
        padding-left: 0 !important;
    }
}

/* Bonded Warehouse Section */
.bonded-warehouse-section {
    background: #fff;
    padding: 100px 0;
}

.feature-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(11, 5, 125, 0.05);
    color: #0b057d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature-icon-box-small {
    width: 35px;
    height: 35px;
    background: rgba(11, 5, 125, 0.05);
    color: #0b057d;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.bonded-warehouse-section .d-flex:hover .feature-icon-box-small {
    background: #0b057d;
    color: #fff;
    transform: scale(1.1);
}

.bonded-warehouse-section .d-flex:hover .feature-icon-box {
    background: #0b057d;
    color: #fff;
    transform: translateY(-3px);
}

.warehouse-image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.warehouse-image-wrapper .image-box {
    position: relative;
    z-index: 2;
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: #0b057d;
    color: #fff;
    padding: 20px 30px;
    border-radius: 20px;
    text-align: center;
    z-index: 3;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
}

.experience-badge .text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

.accent-frame {
    position: absolute;
    top: 40px;
    left: 40px;
    right: 0;
    bottom: 0;
    /* border: 10px solid rgba(11, 5, 125, 0.05); */
    border-radius: 20px;
    z-index: 1;
}

@media (max-width: 991px) {
    .bonded-warehouse-section {
        padding: 60px 0;
    }

    .warehouse-image-wrapper {
        padding-right: 20px;
        padding-bottom: 20px;
        margin-top: 40px;
    }

    .accent-frame {
        top: 20px;
        left: 20px;
    }

    .experience-badge {
        bottom: -15px;
        right: -10px;
        padding: 15px 20px;
    }
}