* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* mera  */
/* FONT AWESOME LINK (head me add karo) */


/* HEADER */
header {
    width: 100%;
    background: #f9fdff;
    color: rgb(255, 255, 255);
    padding: 15px 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 540px;
}


header .logo {
    font-size: 22px;
    font-weight: bold;
}

header ul {
    list-style: none;
    display: flex;
    gap: 55px !important;
}

header ul li a {
    color: rgb(0, 0, 0);
    text-decoration: none;
}

/* ===== ABOUT BOX SECTION ===== */

.about-box {
    padding: 60px 20px;
    background: #f7f9fb;
}

.about-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #222;
}

.about-left p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
    font-size: 16px;
}

.about-btn {
    display: inline-block;
    padding: 12px 25px;
    background: #0077ff;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.about-btn:hover {
    background: #005fcc;
}

.about-right {
    flex: 1;
    text-align: center;
}

.about-right img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 0 12px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }
}

/* SLIDER */
.slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slide {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
}

/* ARROWS */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    padding: 12px 18px;
    font-size: 24px;
    background: rgba(0,0,0,0.5);
    border: none;
    color: #fff;
    cursor: pointer;
    border-radius: 5px;
}

.prev { left: 15px; }
.next { right: 15px; }

.prev:hover, .next:hover {
    background: rgba(0,0,0,0.8);
}


/* CARDS */
.cards {
    padding: 40px 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.card img {
    width: 413px;
    border-radius: 10px;
    height: 248px;
}


/* FOOTER */
/* FOOTER */
/* ---------------- FOOTER STYLES ---------------- */
.footer {
        background-color: #43003a;
    color: #b5ff21;
    padding: 60px 20px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer a {
    color: #b5ff21;
    text-decoration: none;
    transition: 0.3s;
}

.footer a:hover {
    color: #ff4d4d;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 220px;
    min-width: 220px;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;

}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col .social a {
    display: inline-block;
    margin-right: 10px;
    font-size: 20px;
    color: #b5ff21;
    transition: 0.3s;
}

.footer-col .social a:hover {
    color: #ff4d4d;
}

.footerextra {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
    text-align: center;
}

.footerextra .hh2 {
    font-size: 20px;
    color: #43003a;
}

.footer-bottom {
    text-align: center;
    padding: 15px 0;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #b5ff21;
}

/* MOBILE & TABLET RESPONSIVE DESIGN 
-------------------------------------- */

@media (max-width: 992px) {

    /* Header */
    header {
        flex-direction: column;
        gap: 10px;
        padding: 20px;
        text-align: center;
    }

    header ul {
        flex-wrap: wrap;
        justify-content: center;
    }


    /* Slider */
    .slider {
        height: 350px;
    }
    .slide {
        height: 350px;
    }

    .prev, .next {
        font-size: 20px;
        padding: 10px 14px;
    }
}


@media (max-width: 768px) {

    /* Slider small */
    .slider {
        height: 260px;
    }
    .slide {
        height: 260px;
    }

    /* Cards */
    .cards {
        padding: 20px;
        grid-template-columns: 1fr 1fr;
    }

    .card img {
        width: 100%;
        height: auto;
    }
}


@media (max-width: 576px) {

    /* Header */
    header {
        padding: 15px;
    }
    header ul {
        gap: 10px;
    }
    header ul li a {
        font-size: 14px;
    }

    /* Slider */
    .slider {
        height: 200px;
    }
    .slide {
        height: 200px;
    }

    /* Arrows */
    .prev, .next {
        font-size: 18px;
        padding: 8px 12px;
    }

    /* Cards mobile */
    .cards {
        grid-template-columns: 1fr;
        padding: 20px 15px;
    }

    .card img {
        width: 100%;
        height: auto;
    }

    
    /* Footer responsive */
    /* .footer {
        padding: 30px 20px;
    }
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social {
        justify-content: center;
    } */
}

@media (max-width: 576px) {
    .footer {
        padding: 40px 15px 20px 15px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li,
    .footer-bottom {
        font-size: 13px;
    }

    .footer-col .social a {
        font-size: 18px;
    }
}


/* mine  */
/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown .dropbtn {
    cursor: pointer;
    color: rgb(0,0,0);
    text-decoration: none;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f7f9fb;
    min-width: 220px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    border-radius: 6px;
    z-index: 1000;
    top: 100%;
    left: 0;
    padding: 10px 0;
}

.dropdown-content li {
    list-style: none;
}

.dropdown-content li a {
    color: #222;
    padding: 10px 20px;
    display: block;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.dropdown-content li a:hover {
    background-color: #0077ff;
    color: #fff;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


/* mine  */
/* LED SIGNAGE SECTION */
.led-signage {
    background-color: #40b4f5; /* sky blue */
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.led-signage .led-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    border-bottom: 2px solid #fff;
    display: inline-block;
    padding-bottom: 5px;
}

.led-signage .led-text p {
    max-width: 900px;
    margin: 20px auto;
    font-size: 16px;
    line-height: 1.8;
}

.led-signage .led-text img {
    margin-top: 20px;
    max-width: 300px;
    width: 100%;
}

/* GALLERY */
.led-signage .led-gallery {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    justify-items: center;
}

.led-signage .led-gallery img {
    width: 100%;
    height: 200px; /* fixed height for all images */
    object-fit: cover; /* images will fit perfectly without stretching */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}

.led-signage .led-gallery img:hover {
    transform: scale(1.05);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .led-signage .led-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .led-signage {
        padding: 40px 15px;
    }
    .led-signage .led-text h2 {
        font-size: 24px;
    }
    .led-signage .led-text p {
        font-size: 14px;
    }
    .led-signage .led-gallery img {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .led-signage .led-text img {
        max-width: 200px;
    }
    .led-signage .led-gallery {
        grid-template-columns: 1fr 1fr; /* 2 images per row on mobile */
        gap: 15px;
    }
    .led-signage .led-gallery img {
        height: 150px;
    }
}

/* mera code hai ye   */

.footerextra{
    display: flex;
    justify-content: space-around;
    /* background-color:turquoise; */
    margin-top:20px;
}
.hh2{
    background-color: #b5ff21;
    text-align: center;
    border-radius: 10px;
    padding:40px;
    border:2px solid rgb(41, 38, 38);
    color:#43003a;
}


/* media byme  */

@media (max-width:640px) {
    .footerextra{
        display: flex;
        flex-direction: column;
        gap:10px;
    }
    
}

/* mine  */

/* Hamburger styles */
.hamburger {
    display: none; /* hidden on desktop */
    font-size: 36px; /* bada icon */
    cursor: pointer;
    color: #fff; /* icon white */
    background-color: red; /* red background */
    padding: 10px 15px;
    border-radius: 8px;
    user-select: none;
}

/* Mobile view */
@media (max-width: 992px) {
    header {
        display: flex;
        justify-content: space-between; /* logo left, hamburger right */
        align-items: center; /* vertical center */
        padding: 10px 20px;
        position: relative;
    }

    /* Hamburger visible on mobile */
    .hamburger {
        display: block;
    }

    /* Nav menu hidden by default on mobile */
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #fff;
        position: absolute;
        top: 100%;
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        z-index: 99;
    }

    /* Show nav when toggled */
    .nav-links.show {
        display: flex;
    }

    /* Dropdown content mobile toggle */
    .dropdown-content {
        display: none;
        flex-direction: column;
    }

    .dropdown-content li {
        padding: 10px 20px;
    }

    .nav-links li {
        padding: 10px 20px;
    }

    /* Make logo smaller on mobile */
    .logo img {
        width: 150px; /* adjust as needed */
        height: auto;
        margin: 0;
    }
}


/* mine footer  */

@media (max-width: 576px) {
    .footer-container {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 30px;
        max-width: 200px;
        margin: 0 auto;
        justify-content: center;
    }
}


/* HERO SECTION */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* Full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Background Image */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/cococupcafe.jpg');
    background-size: cover;
    background-position: center;
    z-index: 1;
    filter: brightness(0.6); /* Optional: dark overlay effect */
}


/* whastaap redirect button  */

/* WhatsApp Floating Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s ease-in-out;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

/* Tablet Responsive */
@media (max-width: 768px) {
    .whatsapp-btn {
        bottom: 15px;
        right: 15px;
        padding: 10px;
    }

    .whatsapp-btn img {
        width: 30px;
    }
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .whatsapp-btn {
        bottom: 10px;
        right: 10px;
        padding: 8px;
    }

    .whatsapp-btn img {
        width: 28px;
    }
}
