/* ========================================
   Anex Engineering - Futuristic Light Theme
   Glassmorphism + Gradient Accents
   ======================================== */

/* ===== BASE STYLES ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f0f2ff 0%, #f8f9fc 50%, #eef0ff 100%);
    background-attachment: fixed;
    min-height: 100vh;
    color: #1a1a2e;
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: #fb923c;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ea580c;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===== SECTION TITLES ===== */
.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #fb923c, #ea580c);
    margin: 0.6rem auto 0;
    border-radius: 2px;
}

/* ===== GLASSMORPHISM UTILITY ===== */
.glass {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 16px;
}

.glass-dark {
    background: rgba(15, 12, 41, 0.06);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(15, 12, 41, 0.06);
    border-radius: 16px;
}

/* ===== WRAPPER ===== */
.bg_wrwpper {
    max-width: 100%;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
}

/* ===== HEADER ===== */
header {
    position: relative;
    z-index: 10;
    padding-top: 15px;
}

.header_bottom {
    padding: 10px 0;
    margin-bottom: 15px;
}

.logo img {
    max-width: 180px;
    filter: drop-shadow(0 2px 8px rgba(251, 146, 60, 0.15));
    transition: filter 0.3s ease;
}

.logo img:hover {
    filter: drop-shadow(0 4px 16px rgba(251, 146, 60, 0.3));
}

.logo2 h3 {
    font-size: 20px;
    font-weight: 700;
    padding-top: 10px;
    margin: 0;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: opacity 0.3s ease;
}

.logo2 h3:hover {
    opacity: 0.8;
}

/* ===== NAVIGATION ===== */
.nav_section {
    position: sticky;
    top: 10px;
    z-index: 1000;
    margin-bottom: 20px;
}

.nav_section .navbar {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 8px 24px;
    box-shadow: 0 4px 24px rgba(251, 146, 60, 0.1);
}

.nav_section .navbar-nav {
    gap: 2px;
}

.nav_section .navbar-nav .nav-link {
    color: #4a4a6a;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav_section .navbar-nav .nav-link:hover,
.nav_section .navbar-nav .nav-link:focus,
.nav_section .navbar-nav .nav-link.active {
    color: #fb923c;
    background: rgba(251, 146, 60, 0.08);
}

.nav_section .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 50%;
    height: 2px;
    background: linear-gradient(90deg, #fb923c, #ea580c);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav_section .navbar-nav .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown */
.nav_section .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 8px;
    margin-top: 10px !important;
    box-shadow: 0 12px 40px rgba(251, 146, 60, 0.12);
    animation: dropIn 0.2s ease-out;
}

@keyframes dropIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.nav_section .dropdown-menu .dropdown-item {
    color: #4a4a6a;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.nav_section .dropdown-menu .dropdown-item:hover {
    background: rgba(251, 146, 60, 0.08);
    color: #fb923c;
}

/* Show dropdown on hover (desktop) */
@media (min-width: 992px) {
    .nav_section .dropdown:hover .dropdown-menu {
        display: block;
    }
}

/* Navbar toggler */
.nav_section .navbar-toggler {
    border: 1px solid rgba(251, 146, 60, 0.2);
    padding: 8px 12px;
    border-radius: 10px;
}

.nav_section .navbar-toggler:focus {
    box-shadow: 0 0 0 3px rgba(251, 146, 60, 0.15);
}

.nav_section .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(74,74,106,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ===== SLIDER / BANNER ===== */
.banner_sec {
    margin-bottom: 2rem;
}

.banner_container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(251, 146, 60, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: #fff;
}

/* Slider Pro light overrides */
.sp-horizontal .sp-previous-arrow {
    left: 15px !important;
}

.sp-horizontal .sp-next-arrow {
    right: 15px !important;
}

.sp-arrow {
    background: rgba(255, 255, 255, 0.85) !important;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-radius: 50% !important;
    width: 42px !important;
    height: 42px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    top: 50% !important;
    margin-top: 0 !important;
}

.sp-arrow::before {
    color: #fb923c !important;
    font-size: 18px !important;
    line-height: 1 !important;
}

.sp-arrow:hover {
    background: #fff !important;
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.2) !important;
}

/* ===== PRODUCTS SECTION ===== */
.product_sec {
    padding: 2rem 0;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.06);
}

.productbox {
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.08);
    border-radius: 12px;
    padding: 15px;
    margin: 10px 5px;
    transition: all 0.4s ease;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.productbox:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(251, 146, 60, 0.12);
    border-color: rgba(251, 146, 60, 0.2);
}

.productbox img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
}

.productbox h3 {
    color: #2d2d4a;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    text-align: center;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Owl Carousel nav overrides for light theme */
.video_slider .owl-prev,
.video_slider .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(251, 146, 60, 0.15);
    color: #fb923c;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.video_slider:hover .owl-prev,
.video_slider:hover .owl-next {
    opacity: 1;
}

.video_slider .owl-prev {
    left: 5px;
}

.video_slider .owl-next {
    right: 5px;
}

.video_slider .owl-prev:hover,
.video_slider .owl-next:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.15);
}

/* Owl Carousel dots light */
.owl-theme .owl-dots .owl-dot span {
    background: rgba(251, 146, 60, 0.15) !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: linear-gradient(135deg, #fb923c, #ea580c) !important;
}

/* ===== PAGE INNER ===== */
.page_inner {
    margin: 2rem 0;
}

.page_inner .row {
    gap: 0;
}

/* ===== EVENTS SECTION ===== */
.news_event {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    height: 480px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.06);
}

.news_event h3 {
    color: #2d2d4a;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(251, 146, 60, 0.1);
    flex-shrink: 0;
}

.events-scroll {
    flex: 1;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 5%, #000 90%, transparent 100%);
}

.events-scroll-content {
    animation: scrollUp 30s linear infinite;
}

.events-scroll-content:hover {
    animation-play-state: paused;
}

@keyframes scrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.news_event .media {
    display: flex;
    align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(251, 146, 60, 0.06);
    border-radius: 12px;
    padding: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.news_event .media:hover {
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.08);
    border-color: rgba(251, 146, 60, 0.15);
    transform: translateX(4px);
}

.news_event .media-object,
.news_event .media img {
    border-radius: 10px;
    height: 80px;
    width: 80px;
    min-width: 80px;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.news_event .media-body {
    padding-left: 14px;
}

.news_event .media-heading {
    color: #2d2d4a;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
    line-height: 1.3;
}

.news_event .media-body p {
    color: #6b7280;
    font-size: 0.82rem;
    line-height: 1.5;
    margin: 0;
}

.news_event .event-year {
    display: inline-block;
    font-size: 0.7rem;
    color: #fb923c;
    margin-top: 6px;
    background: rgba(251, 146, 60, 0.08);
    padding: 2px 10px;
    border-radius: 10px;
    font-weight: 500;
}

/* ===== WELCOME / CONTENT ===== */
.welcome {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 2rem;
    height: 480px;
    overflow-y: auto;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.06);
}

.welcome h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome p,
.welcome div,
.welcome span,
.welcome * {
    color: #4a4a6a !important;
    font-size: 0.92rem !important;
    line-height: 1.8 !important;
    font-family: 'Inter', sans-serif !important;
    margin-bottom: 1rem;
}

.welcome::-webkit-scrollbar {
    width: 4px;
}

.welcome::-webkit-scrollbar-track {
    background: transparent;
}

.welcome::-webkit-scrollbar-thumb {
    background: rgba(251, 146, 60, 0.2);
    border-radius: 2px;
}

/* ===== STRATEGIC PARTNERS / BRANDS ===== */
.statigic {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 16px;
    padding: 1.5rem;
    height: 480px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.06);
}

.statigic h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d2d4a;
    text-align: center;
    flex-shrink: 0;
}

#quote-carousel {
    padding: 0;
    margin-top: 10px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

#quote-carousel .carousel-inner {
    flex: 1;
    display: flex;
    align-items: center;
}

#quote-carousel .carousel-indicators {
    position: relative;
    bottom: auto;
    margin-top: 15px;
    flex-shrink: 0;
}

#quote-carousel .carousel-indicators li,
#quote-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.2);
    border: none;
    transition: all 0.3s ease;
}

#quote-carousel .carousel-indicators .active {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    width: 28px;
    border-radius: 5px;
}

#quote-carousel img {
    max-height: 130px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    border-radius: 8px;
    filter: grayscale(20%) brightness(0.95);
    transition: all 0.4s ease;
}

#quote-carousel img:hover {
    filter: grayscale(0%) brightness(1.05);
}

#quote-carousel .carousel-control {
    display: none;
}

#quote-carousel blockquote {
    border-left: none;
    margin: 0;
}

/* ===== CLIENTS SECTION ===== */
.client-carousel {
    padding: 2rem 1rem;
    margin: 1rem 0;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.06);
}

.client-carousel .item {
    padding: 10px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-carousel .item:hover {
    opacity: 1;
}

.client-carousel .item img {
    height: 60px;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
    filter: brightness(0.9);
    transition: all 0.3s ease;
}

.client-carousel .item:hover img {
    filter: brightness(1.05);
}

/* ===== PROJECT GALLERY ===== */
#portfolio-2 {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: 0 4px 20px rgba(251, 146, 60, 0.06);
}

#portfolio-2 > h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.gallery {
    float: left;
    width: 16.66%;
    padding: 6px;
    box-sizing: border-box;
}

[class*='thumbnail-'] {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
}

[class*='thumbnail-'] img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 10px;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    display: block;
}

[class*='thumbnail-']:hover img {
    transform: scale(1.12);
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.12);
}

[class*='thumbnail-'] > .caption {
    display: none;
    position: absolute;
    bottom: 2px;
    left: 2px;
    right: 2px;
    padding: 6px 10px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(4px);
    color: #2d2d4a;
    font-size: 11px;
    text-align: center;
    border-radius: 0 0 8px 8px;
    font-weight: 500;
}

[class*='thumbnail-']:hover > .caption {
    display: block;
}

[class*='large-'] {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99999;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    width: auto;
    max-width: 85vw;
    max-height: 85vh;
    padding: 20px;
    display: none;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

[class*='large-'] img {
    max-width: 100%;
    max-height: 75vh;
    width: auto;
    height: auto;
    margin: 0 auto;
    border-radius: 12px;
    display: block;
}



.close {
    color: #fb923c !important;
    font-size: 28px !important;
    position: fixed !important;
    top: 20px !important;
    right: 30px !important;
    cursor: pointer !important;
    opacity: 0.8 !important;
    transition: opacity 0.3s ease !important;
    line-height: 1 !important;
    border: none !important;
    background: rgba(255, 255, 255, 0.9) !important;
    z-index: 999999 !important;
    width: 44px !important;
    height: 44px !important;
    float: none !important;
    font-weight: normal !important;
    text-shadow: none !important;
    padding: 0 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
}

.close:hover {
    opacity: 1 !important;
    background: #fff !important;
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.2) !important;
}

/* ===== FOOTER ===== */
#footer {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px 24px 0 0;
    padding: 2.5rem 0 1.5rem;
    margin-top: 3rem;
    box-shadow: 0 -4px 20px rgba(251, 146, 60, 0.06);
}

#footer h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fb923c, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer ul li {
    color: #4a4a6a;
    font-size: 14px;
    padding: 2px 0;
    line-height: 1.6;
}

#footer .one,
#footer .three {
    color: #4a4a6a;
}

#footer .box {
    margin-bottom: 10px;
    margin-top: 10px;
    width: 100%;
}

#footer .box2 {
    margin-bottom: 10px;
    clear: both;
}

#footer_sec {
    background: rgba(251, 146, 60, 0.04);
    backdrop-filter: blur(8px);
    padding: 1.5rem 0;
}

.copy p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.copy a {
    color: #fb923c;
    transition: color 0.3s ease;
}

.copy a:hover {
    color: #ea580c;
}

.social {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.social p {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    line-height: 1;
    white-space: nowrap;
}

.social ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.social ul li a span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(251, 146, 60, 0.08);
    color: #fb923c;
    font-size: 15px;
    transition: all 0.3s ease;
}

.social ul li a span:hover {
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.3);
}

/* ===== SCROLL TO TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #fb923c, #ea580c);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(251, 146, 60, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: all 0.3s ease;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.scroll-to-top:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 24px rgba(251, 146, 60, 0.5);
}

.scroll-to-top:active {
    transform: translateY(0) scale(0.95);
}

/* ===== ANIMATIONS ===== */
.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.slide-up {
    animation: slideUp 0.8s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered entrance */
.stagger-1 { animation-delay: 0.1s; }
.stagger-2 { animation-delay: 0.2s; }
.stagger-3 { animation-delay: 0.3s; }
.stagger-4 { animation-delay: 0.4s; }
.stagger-5 { animation-delay: 0.5s; }
.stagger-6 { animation-delay: 0.6s; }
.stagger-7 { animation-delay: 0.7s; }
.stagger-8 { animation-delay: 0.8s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
    .nav_section .navbar {
        border-radius: 16px;
        padding: 8px 16px;
    }

    .nav_section .navbar-nav .nav-link {
        padding: 10px 16px;
    }

    .logo img {
        max-width: 140px;
    }

    .logo2 h3 {
        font-size: 17px;
    }

    .news_event,
    .welcome,
    .statigic {
        height: auto;
        min-height: 300px;
        margin-bottom: 1rem;
    }

    .events-scroll {
        height: 250px;
    }

    .product_sec {
        padding: 1.5rem 0;
    }

    .gallery {
        width: 25%;
    }
}

@media (max-width: 767px) {
    .logo img {
        max-width: 110px;
    }

    .logo2 h3 {
        font-size: 14px;
        padding-top: 6px;
    }

    .nav_section .navbar {
        border-radius: 12px;
    }

    .gallery {
        width: 33.33%;
    }

    .social ul {
        justify-content: center;
        margin-top: 10px;
    }

    .social p {
        text-align: center;
    }

    .copy p {
        text-align: center;
    }

    .section-title {
        font-size: 1.5rem;
    }

    #footer {
        padding: 2rem 0 1rem;
        border-radius: 16px 16px 0 0;
    }

    .product_sec {
        border-radius: 12px;
        padding: 1rem 0;
    }

    .banner_container {
        border-radius: 12px;
    }

    .header_bottom {
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-width: 80px;
    }

    .logo2 h3 {
        font-size: 11px;
    }

    .gallery {
        width: 50%;
    }

    [class*='thumbnail-'] img {
        height: 80px;
    }

    .productbox {
        margin: 5px 3px;
        padding: 10px;
    }

    .productbox img {
        height: 70px;
    }

    .client-carousel .item img {
        height: 45px;
    }

    .news_event,
    .welcome,
    .statigic {
        padding: 1rem;
        min-height: 250px;
    }
}
