@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;
}

body {
    background-color: #ffffff;
    margin: 0;
    font-family: 'Karla', sans-serif;
    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);
}

/* Header Styles */
header {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff00;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 10;
}

@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: 60px;
        height: 70px;
        left: 20px;
    }
}

header .logo img {
    width: 100px;
    margin-top: 10px;
}

@media screen and (max-width: 800px) {
    header .logo img {
        width: 35px;
        margin-top: 5px;
    }
}

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: none;
        /* Toggle with JS later if needed, but for now hidden in mobile simplify */
        box-shadow: none;
        padding: 20px 0;
        background: transparent;
    }

    .nav-item-dropdown:hover .mega-menu {
        display: block;
    }

    .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: center;
    align-items: center;
    z-index: 99;
}

header nav.open a {
    font-size: 20px;
    margin: 15px 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeIn 0.5s forwards;
}

header nav.open a:nth-child(1) {
    animation-delay: 0.1s;
}

header nav.open a:nth-child(2) {
    animation-delay: 0.2s;
}

header nav.open a:nth-child(3) {
    animation-delay: 0.3s;
}

header nav.open a:nth-child(4) {
    animation-delay: 0.4s;
}

header nav.open a:nth-child(5) {
    animation-delay: 0.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Burger Menu */
header .burger {
    display: block;
    position: absolute;
    right: 100px;
    top: 35px;
    width: 30px;
    height: 2px;
    background: #212529;
    cursor: pointer;
    z-index: 100;
}

@media screen and (max-width: 800px) {
    header .burger {
        right: 20px;
        top: 39px;
    }
}

header .burger:before,
header .burger:after {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 2px;
    background: #212529;
    transition: transform 0.3s ease;
}

header .burger:before {
    top: -8px;
}

header .burger:after {
    top: 8px;
}

header .burger.active {
    background: transparent;
}

header .burger.active:before {
    transform: rotate(45deg) translate(5px, 5px);
}

header .burger.active:after {
    transform: rotate(-45deg) translate(6px, -7px);
}

@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 */
main {
    position: relative;
    width: 100%;
    height: 100vh;
}

#slider {
    width: 100%;
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

#slider canvas {
    width: 150%;
    height: 150%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

#slider img {
    width: 100%;
    max-width: 100%;
    position: relative;
    z-index: 0;
    display: none;
}

.slider-inner {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1060px;
    height: 100%;
    margin: 0 auto;
    z-index: 5;
}

#slider-content {
    padding: 0 10px;
}

#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 span {
    display: none;
}

#slider-content .meta {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 5px;
    color: #88888ab5;
    text-transform: uppercase;
    position: relative;
}

@media screen and (min-width: 800px) {
    #slider-content .meta {
        font-size: 13px;
    }
}

#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;
    }
}

/* Pagination */
#pagination {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 30px;
    z-index: 6;
}

@media screen and (max-width: 800px) {
    #pagination {
        right: 15px;
    }
}

#pagination button {
    display: block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    width: 16px;
    height: 16px;
    background-color: #212529;
    border-radius: 100%;
    padding: 0;
    margin: 30px 0;
    cursor: pointer;
    position: relative;
    opacity: 0.2;
    transition: opacity 0.2s ease-in-out;
    outline: none;
}

@media screen and (max-width: 800px) {
    #pagination button {
        width: 10px;
        height: 10px;
        margin: 20px 0;
    }
}

#pagination button:hover {
    opacity: 0.5;
}

#pagination button.active {
    opacity: 1;
}

#pagination button.active:before {
    width: 300%;
    height: 300%;
    opacity: 1;
}

#pagination button:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.4s ease-in-out, width 0.4s ease-in-out, height 0.4s ease-in-out;
}

/* 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;
}

.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);
}

.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/about/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/about/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('../../assets/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;
    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;
}

.goals-section .col-lg-4:not(:last-child) .goal-step-card::after {
    /* Optional connector line could go here, but grid is clean */
}

/* 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: rgb(0, 46, 158) !important;
}

.footer-section .footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-section .footer-links a:hover {
    color: #ffffff;
    transform: translateX(8px);
}

.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(11, 5, 125, 0.8) 0%, rgba(11, 5, 125, 0) 100%);
    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;
}

.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;
}