/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Pacifico&display=swap');

/* Body Styling */
body {
    font-family: 'Raleway', sans-serif;
    margin:0;
    padding: 0;
    background: radial-gradient(circle, #ffffff, #eeeeee, #FDFEFE);
    color: #4D4D4D;
    
}

/* Global Reset */
* {
    margin: 0;
    padding: 0;
    /* box-sizing: border-box; */
}

/* Navbar Base Styles */
header {
    position:relative;
    top: 0;
    z-index: 1000;
    /* background: rgba(44, 62, 80, 0.95); Navbar Background */
    /* box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); */
}
.dropdown-toggle::after {
    content: ' ▼';
    font-size: 12px;
    margin-left: 5px;
}
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    max-width: 1200px;
    margin: auto;
}

nav a {
    text-decoration: none;
    color: #031a5f;
    font-size: 15px;
    font-weight: 600;
    margin: 0 10px;
    font-weight: bolder;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #1ABC9C; /* Highlight color on hover */
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 20px;
    font-family: 'Pacifico', cursive; /* Brand font */
    color: #1ABC9C;
}

/* Navigation Items */
.nav-items {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Dropdown Menu */
/* ===================================
   ULTRA-SMOOTH PREMIUM DROPDOWN MENU
=================================== */
.nav-item {
    position: relative;
}

/* Dropdown Base */
.nav-item .dropdown {
    display: flex;
    flex-direction: column; /* Ensures single-row stacked layout */
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: rgba(28, 37, 51, 0.96); /* Deep navy tone */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    transform: translateY(15px) scale(0.97);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
}

/* Dropdown Items */
.nav-item .dropdown a {
    display: block;
    width: 100%;
    padding: 12px 22px;
    color: #f8f8f8;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.35s ease;
    position: relative;
    box-sizing: border-box;
    letter-spacing: 0.4px;
}

/* Hover Effect — Subtle Slide + Glow */
.nav-item .dropdown a:hover {
    background: linear-gradient(to right, rgba(255, 126, 95, 0.25), rgba(255, 213, 102, 0.22));
    color: #FFD166;
    padding-left: 28px;
    text-shadow: 0 0 8px rgba(255, 209, 102, 0.7);
}

/* Optional arrow animation */
.nav-item .dropdown a::after {
    content: '›';
    position: absolute;
    right: 20px;
    font-size: 14px;
    color: #FFD166;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.nav-item .dropdown a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Remove border for last item */
.nav-item .dropdown a:last-child {
    border-bottom: none;
}

/* Smooth Dropdown Animation */
.nav-item:hover .dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Floating arrow under parent item */
.nav-item:hover::after {
    content: '';
    position: absolute;
    top: 96%;
    left: 25px;
    border-width: 7px;
    border-style: solid;
    border-color: rgba(28, 37, 51, 0.96) transparent transparent transparent;
    filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}

/* Optional entry animation for each item */
.nav-item:hover .dropdown a {
    animation: dropdownFade 0.4s ease forwards;
    opacity: 0;
}

.nav-item:hover .dropdown a:nth-child(1) { animation-delay: 0.05s; }
.nav-item:hover .dropdown a:nth-child(2) { animation-delay: 0.1s; }
.nav-item:hover .dropdown a:nth-child(3) { animation-delay: 0.15s; }
.nav-item:hover .dropdown a:nth-child(4) { animation-delay: 0.2s; }

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



/* Login Icon */
nav a.login-icon {
    display: flex;
    align-items: center;
    color: #031a5f;
    font-weight: bolder;
    font-size: 15px;
    font-weight: bold;
}

nav a.login-icon:hover {
    color: #1ABC9C;
    text-decoration: underline;
}

nav a.login-icon i {
    margin-right: 8px;
}

/* Hamburger Menu for Mobile */
/* Hamburger Menu for Mobile */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Hamburger Lines */
.hamburger div {
    width: 100%;
    height: 3px;
    background-color: #00E0C6;
    border-radius: 2px;
    transition: 0.4s ease;
}

/* Animation: Hamburger → X */
nav.active .hamburger div:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}
nav.active .hamburger div:nth-child(2) {
    opacity: 0;
}
nav.active .hamburger div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* Responsive Styles */
@media screen and (max-width: 768px) {

    /* SLIDE + FADE MENU */
    .nav-items {
        display: none;
        flex-direction: column;
        background: #243447;
        position: absolute;
        top: 100%;
        right: 0;
        width: 100%;
        padding: 10px 0;
        border-radius: 0 0 10px 10px;
        overflow: hidden;

        opacity: 0;
        transform: translateY(-25px);
        transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);  /* Smooth */
    }

    /* When ACTIVE → slide down */
    nav.active .nav-items {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }

    /* MENU LINK ANIMATION (staggered fade + slide) */
    .nav-items a {
        padding: 15px;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
        color: white;
        font-size: 17px;

        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.35s ease;
    }

    nav.active .nav-items a {
        opacity: 1;
        transform: translateY(0);
    }

    /* Delay each link slightly (stagger animation) */
    .nav-items a:nth-child(1) { transition-delay: 0.05s; }
    .nav-items a:nth-child(2) { transition-delay: 0.10s; }
    .nav-items a:nth-child(3) { transition-delay: 0.15s; }
    .nav-items a:nth-child(4) { transition-delay: 0.20s; }
    .nav-items a:nth-child(5) { transition-delay: 0.25s; }

    .nav-items a:last-child {
        border-bottom: none;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 6px;
    }
}

/* Hover Effect */
.nav-item:hover > a {
    color: #00E0C6;
    transition: 0.3s ease;
}







/* carousel */
.carousel{
    height: 100vh;
    margin-top: -60px;
    width: 100vw;
    overflow: hidden;
    position: relative;
}
.carousel .list .item{
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0; 
   background: radial-gradient(circle, #ffffff, #d3d3d3, #3a3a3a);



}
.carousel .list .item::before {
    content: "Laksh369";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.08);
    z-index: 0;
    pointer-events: none;
}
.carousel .list .item img{
    width: 100%;
    height: 100%;
    object-fit:contain;
}
.carousel .list .item .content{
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 45%;
    transform: translateX(-50%);
    padding-right: 40%;
    box-sizing: border-box;
    color: #0a0454;
    text-shadow: 0 5px 10px #0004;
}
.carousel .list .item .author{
    font-weight: bold;
    letter-spacing: 10px;
}
.carousel .list .item .title,
.carousel .list .item .topic{
    font-size: 2.5em;
    font-weight: bold;
    line-height: 1.3em;
}
.carousel .list .item .topic{
    color: #e2430e;
}
.carousel .list .item .des{
    color: #ffffff;
    font-weight: bolder;
}
.carousel .list .item .buttons{
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}
.carousel .list .item .buttons button{
    border: none;
    background-color: #eee;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}
.carousel .list .item .buttons button:nth-child(2){
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}
/* thumbail */
.thumbnail{
    position: absolute;
    bottom: 50px;
    left: 73%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}
.thumbnail .item{
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}
.thumbnail .item img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
}
.thumbnail .item .content{
    color: hsl(0, 0%, 100%);  /* premium charcoal */
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    font-weight: bolder;
}
.thumbnail .item .content .title{
    font-weight: 1000;
}
.thumbnail .item .content .description{
    font-weight: 800;
    color: #1a1f2b;
}
/* arrows */
.arrows{
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}
.arrows button{
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}
.arrows button:hover{
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1){
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons
{
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}
@keyframes showContent{
    to{
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}
.carousel .list .item:nth-child(1) .content .title{
    animation-delay: 1.2s!important;
}
.carousel .list .item:nth-child(1) .content .topic{
    animation-delay: 1.4s!important;
}
.carousel .list .item:nth-child(1) .content .des{
    animation-delay: 1.6s!important;
}
.carousel .list .item:nth-child(1) .content .buttons{
    animation-delay: 1.8s!important;
}
/* create animation when next click */
.carousel.next .list .item:nth-child(1) img{
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}
@keyframes showImage{
    to{
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1){
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.prev .list .item img{
    z-index: 100;
}
@keyframes showThumbnail{
    from{
        width: 0;
        opacity: 0;
    }
}
.carousel.next .thumbnail{
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext{
    from{
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time{
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #f1683a;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time{
    animation: runningTime 3s linear 1 forwards;
}
@keyframes runningTime{
    from{ width: 100%}
    to{width: 0}
}


/* prev click */

.carousel.prev .list .item:nth-child(2){
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img{
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}
@keyframes outFrame{
    to{
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1){
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}
.carousel.next .arrows button,
.carousel.prev .arrows button{
    pointer-events: none;
}
.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons
{
    animation: contentOut 1.5s linear 1 forwards!important;
}

@keyframes contentOut{
    to{
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}
/* @media screen and (max-width: 678px) {
 
    .carousel .list .item .content{
        padding-right: 0;
    }
    .carousel .list .item .content .title{
        font-size: 30px;
    }
} */
@media screen and (max-width: 678px) {
       .carousel .list .item .des {
        display: none !important;
    }

    /* MAIN SLIDER CONTENT */
    .carousel .list .item .content {
        top: 12%;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 90%;
        padding: 0;
        text-align: center;
    }

    .carousel .list .item .title {
        font-size: 1.6em;
        line-height: 1.2em;
    }

    .carousel .list .item .topic {
        font-size: 1.4em;
    }

    .carousel .list .item .author {
        font-size: 11px;
        letter-spacing: 4px;
    }

  .carousel .list .item img {
    width: 90%;
    height: 100%;
    object-fit: contain;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}



    /* BUTTONS */
    .carousel .list .item .buttons {
        grid-template-columns: 1fr 1fr;
        width: 80%;
        margin: 15px auto 0 auto;
    }
.thumbnail {
    scroll-snap-type: x mandatory;
    overflow-x: auto;
    bottom: -2px;
    left: 10%;
}

.thumbnail .item {
    scroll-snap-align: start;
}
  .arrows {
        display: none;
    }

    /* WATERMARK FIX (TOO BIG ON MOBILE) */
    .carousel .list .item::before {
        font-size: 4rem;
    }
}





/* //welcome section */

.welcome-section {
    text-align: center;
    padding: 50px 20px;
    background: radial-gradient(circle, #ffffff, #fdfdfd, #FDFEFE);
    color: #FFFFFF;
}

.welcome-section h1 {
    font-family: 'Pacifico', cursive;
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C3E50;
}

.welcome-section p {
    font-size: 18px;
    margin: 10px 0;
    color: #000;
}

.stats-section {
    display: flex;
    justify-content: center;
     background: radial-gradient(circle, #e7dede, #f9f9f9, #c4d0d0);
    flex-wrap: wrap;
    gap: 20px;
    padding: 50px 20px;
}

.stats-block {
    width: 220px;
    padding: 20px;
    text-align: center;
    background: radial-gradient(circle, #1ABC9C, #2C3E50, #FDFEFE);
    color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stats-block h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.stats-block p {
    font-size: 16px;
    margin: 0;
}


/* Services / Products Section */
.section {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.section h2 {
    font-family: 'Pacifico', cursive;
    color: #2C3E50;
    font-size: 36px;
    margin-bottom: 40px;
}

/* Container for cards */
.services {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

/* Card design */
.service-card {
    background: linear-gradient(135deg, #FDFEFE, #1ABC9C);
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* Product image */
.service-card img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 12px;
    margin-bottom: 15px;
}

/* Title */
.service-card h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: #2C3E50;
}

/* Description */
.service-card p {
    font-size: 15px;
    line-height: 1.5;
    color: #4D4D4D;
    margin-bottom: 20px;
    padding: 0 10px;
}

/* Button */
.service-card .btn {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #e97451, #ffb347); /* brand gradient */
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    position: relative;
    overflow: hidden;
}

/* Hover effect */
.service-card .btn:hover {
    background: linear-gradient(135deg, #6c7a41, #e97451);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* Ripple shine effect */
.service-card .btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transition: left 0.5s;
    border-radius: inherit;
}

.service-card .btn:hover::after {
    left: 100%;
}


/* Responsive */
@media (max-width: 768px) {
    .services {
        flex-direction: column;
        align-items: center;
    }
    .service-card {
        width: 90%;
    }
}


/* sider window */
/* Carousel Section */
.carousel-section1 {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
}

.carousel-section1 h1 {
    font-family: 'Pacifico', cursive;
    color: #2C3E50;
    font-size: 36px;
    margin-bottom: 10px;
}

.carousel-section1 p#ram {
    font-size: 18px;
    color: #4D4D4D;
    margin-bottom: 40px;
}

/* Carousel container */
.carousel1 {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.carousel-track1 {
    display: flex;
    gap: 20px;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    width: 280px;
    flex: 0 0 auto; /* Prevent shrinking */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.product-image {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

/* Title */
.product-title {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    color: #2C3E50;
    margin: 15px;
}

/* Rating Section */
.rating-section {
    margin: 0 15px;
    font-size: 14px;
    color: #f39c12; /* star color */
}

.review-count {
    margin-left: 5px;
    font-size: 13px;
    color: #555;
}

/* Price Section */
.price-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
    font-size: 16px;
}

.price {
    color: #e74c3c;
    font-weight: bold;
}

.mrp {
    text-decoration: line-through;
    color: #888;
}

.discount {
    color: #27ae60;
    font-weight: 500;
}

/* Delivery */
.delivery {
    font-size: 14px;
    color: #2C3E50;
    margin-bottom: 15px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    justify-content: space-around;
    margin: 10px 15px 15px 15px;
    gap: 10px;
}

.action-buttons .btn-add-to-cart,
.action-buttons .btn-buy-now {
    padding: 10px 15px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
}

/* Add to Cart Button */
.btn-add-to-cart {
    background: linear-gradient(135deg, #1ABC9C, #16A085);
    color: #fff;
}

.btn-add-to-cart:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Buy Now / More Info Button */
.btn-buy-now {
    background: linear-gradient(135deg, #e97451, #ffb347);
    color: #fff;
}

.btn-buy-now:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 1024px) {
    .carousel-track1 {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .carousel-track1 {
        gap: 10px;
    }
    .product-card {
        width: 220px;
    }
}

@media (max-width: 480px) {
    .product-card {
        width: 100%; /* full width minus some margin */
        margin: 0 0%;
    }

    .carousel-track1 {
        gap: 10px;
    }
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 20px;
    }

    .prev-btn {
        left: 5px;
    }

    .next-btn {
        right: 5px;
    }
}

.carousel1-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel1 {
    overflow: hidden;
    width: 100%;
}

.carousel-track1 {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* Arrows */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: background 0.3s;
}

.carousel-btn:hover {
    background-color: rgba(0,0,0,0.8);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}



/* our collaborators */
.collab-section {
    text-align: center;
    padding: 50px 20px;
    background: #faf9f6;
}
.collab-section h2 {
    font-family: 'Pacifico', cursive;
    color: #28527a;
    font-size: 2.5em;
    margin-bottom: 10px;
}
.collab-section p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #444;
}

.collab-slider {
    position: relative;
    overflow: hidden;
    width: 90%;
    margin: auto;
}

.collab-track {
    display: flex;
    width: calc(220px * 40); /* duplicate 20 items → total 40 for looping */
    animation: slideCollab 50s linear infinite;
}

.collab-item {
    flex: 0 0 220px;
    margin: 0 15px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}
.collab-item:hover {
    transform: scale(1.05);
}

.collab-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 12px;
}

.collab-item h4 {
    font-size: 1.1em;
    color: #28527a;
    margin-bottom: 6px;
}

.collab-item span {
    display: block;
    font-size: 0.9em;
    color: #666;
}

/* Animation for infinite loop */
@keyframes slideCollab {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Section styling */
.videos-section {
text-align: center;
padding: 50px 20px;
background: #f9f9f9;
}
.videos-section h2 {
font-family: 'Pacifico', cursive;
color: #28527a;
font-size: 2.5em;
margin-bottom: 10px;
}
.videos-section p {
font-size: 1.2em;
color: #555;
margin-bottom: 40px;
}

/* Carousel container */
.videos-carousel {
position: relative;
overflow: hidden;
width: 95%;
margin: auto;
}

/* Track for smooth scrolling */
.videos-track {
display: flex;
gap: 20px;
animation: scrollVideos 60s linear infinite;
}

/* Individual video items */
.video-item {
flex: 0 0 300px;
border-radius: 10px;
overflow: hidden;
transition: transform 0.3s;
background: #000;
}
.video-item:hover {
transform: scale(1.05);
}

/* Video styling */
.video-item video {
width: 100%;
height: 170px;
object-fit: cover;
display: block;
}

/* Animation for carousel scroll */
@keyframes scrollVideos {
0% { transform: translateX(0); }
100% { transform: translateX(-50%); }
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
.video-item {
flex: 0 0 250px;
}
.video-item video {
height: 150px;
}
}
@media screen and (max-width: 768px) {
.video-item {
flex: 0 0 200px;
}
.video-item video {
height: 130px;
}
}
@media screen and (max-width: 480px) {
.video-item {
flex: 0 0 180px;
}
.video-item video {
height: 110px;
}
}



/* Footer Section */
/* 🌟 Footer Styles */
.shree-footer {
  background: linear-gradient(135deg, #1a1f2b, #2C3E50, #1B263B);
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Quicksand', sans-serif;
  position: relative;
  overflow: hidden;
}

/* Soft animated gradient glow in the background */
.shree-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(233, 116, 81, 0.2), transparent 60%);
  animation: glowMove 8s infinite linear;
  z-index: 0;
}
@keyframes glowMove {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

/* Sections */
.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h2,
.footer-section h3 {
  color: #FFC107;
  margin-bottom: 12px;
  font-size: 1.3rem;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.footer-section h2:hover,
.footer-section h3:hover {
  color: #E97451;
  text-shadow: 0 0 8px rgba(233, 116, 81, 0.6);
}

.footer-section p,
.footer-section ul {
  color: #ddd;
  line-height: 1.6;
  font-size: 0.95rem;
}



/* ✨ Animated underline + color glow */
.footer-section ul li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #E97451, #FFC107);
  transition: width 0.4s ease;
}

.footer-section ul li a:hover {
  color: #FFC107;
  transform: translateX(5px);
  text-shadow: 0 0 8px rgba(255, 193, 7, 0.5);
}

.footer-section ul li a:hover::after {
  width: 100%;
}

/* 🌐 Social Links */
.social-links {
  margin-top: 10px;
}

.social-icon {
  display: inline-block;
  margin: 0 6px;
  font-size: 1.1rem;
  color: #fff;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #E97451, #FFC107);
  text-align: center;
  box-shadow: 0 0 5px rgba(255, 193, 7, 0.4);
  transition: all 0.4s ease;
}

.social-icon:hover {
  transform: scale(1.15) rotate(10deg);
  box-shadow: 0 0 12px rgba(255, 193, 7, 0.9);
  background: linear-gradient(135deg, #FFC107, #E97451);
}

/* 📧 Contact links (Mail, WhatsApp, Phone) */
.footer-section a[href^="mailto"],
.footer-section a[href^="tel"],
.footer-section a[href*="wa.me"],
.footer-section a[href*="whatsapp"] {
  color: #FFC107;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin: 4px 0;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a[href^="mailto"]::before,
.footer-section a[href^="tel"]::before,
.footer-section a[href*="wa.me"]::before,
.footer-section a[href*="whatsapp"]::before {
  content: "•";
  color: #E97451;
  margin-right: 6px;
  transition: transform 0.3s ease;
}

.footer-section a[href^="mailto"]:hover,
.footer-section a[href^="tel"]:hover,
.footer-section a[href*="wa.me"]:hover,
.footer-section a[href*="whatsapp"]:hover {
  color: #E97451;
  text-shadow: 0 0 8px rgba(233, 116, 81, 0.7);
  transform: translateX(3px);
}

.footer-section a[href^="mailto"]:hover::before,
.footer-section a[href^="tel"]:hover::before,
.footer-section a[href*="wa.me"]:hover::before,
.footer-section a[href*="whatsapp"]:hover::before {
  transform: scale(1.3);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #ccc;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 25px;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1;
}

.footer-bottom a {
  color: #FFC107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #E97451;
}
.footer-section.popular h3 {
  color: #FFC107;
  margin-bottom: 10px;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.footer-section.popular h3:hover {
  color: #E97451;
  text-shadow: 0 0 6px rgba(233, 116, 81, 0.6);
}

.footer-section.popular ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section.popular ul li {
  margin: 4px 0;
  color: #ddd;
  font-size: 0.9rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-section.popular ul li:hover {
  color: #FFC107;
  transform: translateX(4px);
}

/* 📱 Mobile Optimization */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
  }

  .footer-section.links {
    display: none; /* hide quick links on small screens */
  }

  .footer-section h2 {
    font-size: 1.1rem;
  }

  .footer-section p {
    font-size: 0.85rem;
    margin: 3px 0;
  }

  .social-icon {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 0.9rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    margin-top: 15px;
  }
}