
/* =====================================
   FINAL RESPONSIVE NAVBAR FIX
   ADD THIS AT THE VERY END OF CSS
===================================== */



.menu-btn{
    display:none !important;
    font-size:32px;
    cursor:pointer;
}

/* Mobile Only */
@media (max-width:768px){

    .menu-btn{
        display:block !important;
    }

}

@media screen and (max-width:768px){

    nav{
        padding:12px 20px !important;
        position:fixed !important;
        top:0;
        left:0;
        width:100%;
        z-index:9999;
    }

    /* Bigger Logo */
    .logo img{
        height:75px !important;
        width:auto !important;
    }

    /* Menu Icon */
    .menu-btn{
        display:block !important;
        font-size:32px;
        color:#333;
        cursor:pointer;
        z-index:10001;
    }

    /* Full Screen Sidebar */
    .nav-links{
        position:fixed !important;
        top:0;
        right:-100%;
        width:100% !important;
        height:100vh !important;
        background:linear-gradient(
            135deg,
            #ff4d6d,
            #c82ff7,
            #00d4ff
        ) !important;

        display:flex !important;
        flex-direction:column;
        justify-content:flex-start;
        align-items:center;

        padding-top:120px;
        transition:0.4s ease;
        overflow-y:auto;
        z-index:10000;
    }

    .nav-links.active{
        right:0 !important;
    }

    .nav-links a,
    .dropbtn{
        width:90%;
        text-align:center;
        color:#fff !important;
        font-size:18px;
        padding:16px;
        border-bottom:1px solid rgba(255,255,255,0.15);
    }

    /* Mobile Dropdown */
    .dropdown{
        width:100%;
        text-align:center;
    }

    .dropdown-content{
        display:block !important;
        position:static !important;
        width:90%;
        margin:auto;
        background:rgba(255,255,255,0.12) !important;
        backdrop-filter:blur(10px);
        box-shadow:none !important;
        border-radius:15px;
    }

    .dropdown-content a{
        color:#fff !important;
        padding:12px;
        font-size:15px;
        border:none;
    }

    .dropdown-content a:hover{
        background:rgba(255,255,255,0.15);
    }

    /* Hide Navbar WhatsApp */
    .nav-whatsapp{
        display:none !important;
    }

    /* Show Floating WhatsApp */
    .mobile-whatsapp{
        display:flex !important;
        align-items:center;
        justify-content:center;
        width:65px;
        height:65px;
        font-size:30px;
        bottom:20px;
        right:20px;
        z-index:99999;
    }

    body{
        overflow-x:hidden;
    }
}

.logo img {
    height: 70px;
    width: auto;
    display: block;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

:root {
    --primary: rgb(216,87,91);
    --yellow: rgba(196,196,2,1);
    --teal: rgba(0,158,110,1);
    --green: rgba(2,183,36,1);
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 8%;
    position: fixed;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgb(253, 252, 252);
}

.logo {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    position: relative;
}

/* underline animation */
.nav-links a::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary);
    transition: 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* NAV WHATSAPP */
.nav-whatsapp {
    background: linear-gradient(45deg, var(--green), var(--teal));
    color: #fff;
    padding: 8px 18px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}
.nav-whatsapp{
    background:#25D366;
    color:#fff;
    padding:10px 27px;   /* Increased size */
    border-radius:40px;
    text-decoration:none;
    font-size:18px;      /* Larger text */
    font-weight:600;
    display:flex;
    align-items:center;
    gap:8px;
    transition:0.3s ease;
}

.nav-whatsapp i{
    font-size:24px;      /* Larger WhatsApp icon */
}

.nav-whatsapp:hover{
    transform:translateY(-2px);
}
.nav-whatsapp:hover {
    transform: scale(1.05);
}
.menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
}




/* FOOTER */.footer {
    background-image: url("img/bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.footer-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 0 8%;
    gap: 40px;
}

/* LOGO */
.footer-logo {
    color: var(--primary);
    margin-bottom: 10px;
}

/* HEADINGS */
.footer-col h3 {
    margin-bottom: 15px;
}

/* LINKS */
.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #000000;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

/* CONTACT */
.footer-col p {
    margin-bottom: 10px;
    color: #000000;
}

.footer-col i {
    margin-right: 8px;
    color: var(--primary);
}

/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #000000;
}
.footer-logo {
    width: 150px;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 10px;
}
/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}

/* WHATSAPP FLOAT */
.mobile-whatsapp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green);
    color: white;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse 1.5s infinite;
}



.btn {
    padding: 12px 25px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: var(--green);
    transform: translateY(-2px);
}

/* FEATURES */
.features {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--primary);
}

.card h3 {
    margin-bottom: 10px;
}

/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(2,183,36,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(2,183,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(2,183,36,0); }
}


/* ABOUT SECTION */
.about-section {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    transition: 0.3s;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-text h2 {
    margin-bottom: 15px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
}

/* REVERSE LAYOUT */
.about-section.reverse .about-text {
    order: 2;
}

.about-section.reverse .about-img {
    order: 1;
}


/* ===== PREMIUM COLORFUL DESIGN ===== */

:root{
    --primary:#ff4d6d;
    --secondary:#7b2ff7;
    --accent:#00d4ff;
    --gold:#ffd700;
    --green:#00c853;
    --dark:#0f172a;
}

/* BODY */
body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#f4f7ff,#eef9ff);
    overflow-x:hidden;
}

/* Animated Background */
body::before{
    content:'';
    position:fixed;
    top:-200px;
    left:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,#7b2ff733,transparent);
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    bottom:-200px;
    right:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,#ff4d6d33,transparent);
    z-index:-1;
}

/* NAVBAR */
nav{
    background:linear-gradient(90deg,#ff4d6d,#7b2ff7,#00d4ff);
    box-shadow:0 10px 35px rgba(0,0,0,.15);
}

.nav-links a,
.dropbtn{
    color:#000000 !important;
    font-weight:700;
    transition:.3s;
}

.nav-links a:hover,
.dropbtn:hover{
    color:#ffd700 !important;
}

.nav-links a::after{
    background:#ffd700;
}

.logo img{
    filter:drop-shadow(0 5px 15px rgba(255,255,255,.4));
}



/* BOTTOM */
.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    border-top: 1px solid #444;
    font-size: 14px;
    color: #000000;
}
.footer-logo {
    width: 150px;
    max-width: 100%;
    height: auto;
    margin-top: 15px;
    margin-bottom: 10px;
}
/* RESPONSIVE */
@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 20px;
    }
}

/* WHATSAPP FLOAT */
.mobile-whatsapp {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--green);
    color: white;
    font-size: 26px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    animation: pulse 1.5s infinite;
}

/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(2,183,36,0.6); }
    70% { box-shadow: 0 0 0 15px rgba(2,183,36,0); }
    100% { box-shadow: 0 0 0 0 rgba(2,183,36,0); }
}



/* FEATURES */
.features {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.card:hover {
    transform: translateY(-10px);
}

.card i {
    font-size: 35px;
    margin-bottom: 15px;
    color: var(--primary);
}

.card h3 {
    margin-bottom: 10px;
}


/* ABOUT SECTION */
.about-section {
    padding: 80px 8%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    transition: 0.3s;
}

.about-section:hover {
    transform: translateY(-5px);
}

.about-text h2 {
    margin-bottom: 15px;
    color: var(--primary);
}

.about-text p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
}

/* REVERSE LAYOUT */
.about-section.reverse .about-text {
    order: 2;
}

.about-section.reverse .about-img {
    order: 1;
}


/* ===== PREMIUM COLORFUL DESIGN ===== */

:root{
    --primary:#ff4d6d;
    --secondary:#7b2ff7;
    --accent:#00d4ff;
    --gold:#ffd700;
    --green:#00c853;
    --dark:#0f172a;
}

/* BODY */
body{
    font-family:'Poppins',sans-serif;
    background:linear-gradient(135deg,#f4f7ff,#eef9ff);
    overflow-x:hidden;
}

/* Animated Background */
body::before{
    content:'';
    position:fixed;
    top:-200px;
    left:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,#7b2ff733,transparent);
    z-index:-1;
}

body::after{
    content:'';
    position:fixed;
    bottom:-200px;
    right:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:radial-gradient(circle,#ff4d6d33,transparent);
    z-index:-1;
}

/* NAVBAR */
nav{
    background:linear-gradient(90deg,#ff4d6d,#7b2ff7,#00d4ff);
    box-shadow:0 10px 35px rgba(0,0,0,.15);
}

.nav-links a,
.dropbtn{
    color:#000000 !important;
    font-weight:700;
    transition:.3s;
}

.nav-links a:hover,
.dropbtn:hover{
    color:#ffd700 !important;
}

.nav-links a::after{
    background:#ffd700;
}

.logo img{
    filter:drop-shadow(0 5px 15px rgba(255,255,255,.4));
}

.btn {
    padding: 12px 25px;
    border: none;
    background: var(--primary);
    color: white;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: var(--green);
    transform: translateY(-2px);
}



/* ABOUT SECTIONS */
.about-section{
    background:#fff;
    margin:40px 8%;
    padding:50px;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.about-text h2{
    color:#7b2ff7;
    font-weight:800;
}

.about-img img{
    border-radius:25px;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
    transition:.4s;
}

.about-img img:hover{
    transform:scale(1.05);
}

/* FEATURES */
.features{
    padding:80px 8%;
    gap:30px;
}

.card{
    background:#fff;
    border:none;
    border-radius:25px;
    padding:35px;
    overflow:hidden;
    position:relative;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.4s;
}

.card::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(90deg,#ff4d6d,#7b2ff7,#00d4ff);
}

.card:hover{
    transform:translateY(-15px);
    box-shadow:0 25px 50px rgba(0,0,0,.15);
}

.card i{
    font-size:50px;
    margin-bottom:20px;
    background:linear-gradient(45deg,#ff4d6d,#7b2ff7);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.card h3{
    color:#0f172a;
    font-weight:700;
}

/* DROPDOWN */
.dropdown-content{
    border-radius:20px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.dropdown-content a:hover{
    background:linear-gradient(90deg,#ff4d6d,#7b2ff7);
    color:#fff;
}

/* WHATSAPP BUTTON */
.nav-whatsapp{
    background:linear-gradient(45deg,#00c853,#25D366);
    box-shadow:0 10px 25px rgba(37,211,102,.4);
}

.mobile-whatsapp{
    background:linear-gradient(45deg,#00c853,#25D366);
}


/* FOOTER */
.footer{
    background:
    linear-gradient(rgba(15,23,42,.95),rgba(15,23,42,.95)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1920&q=80');
    background-size:cover;
    background-position:center;
    color:#fff;
    padding-top:70px;
}

.footer h3{
    color:#00d4ff;
}

.footer-col p,
.footer-col a{
    color:#fff !important;
}

.footer-col a:hover{
    color:#ffd700 !important;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.2);
    color:#fff;
}


/* MOBILE */
@media(max-width:768px){
    
    .about-section{
        margin:20px;
        padding:25px;
    }

    .nav-links{
        background:linear-gradient(180deg,#7b2ff7,#ff4d6d);
    }

    .nav-links a{
        color:#000000 !important;
    }   

    
}


/* Mobile */
@media (max-width: 768px) {
    .dropdown {
        width: 100%;
    }

    .dropdown-content {
        position: static;
        display: block;
        box-shadow: none;
        background: transparent;
        margin-left: 15px;
    }

    .dropdown-content a {
        padding: 8px 0;
    }
}


nav{
    position:sticky;
    top:0;
    z-index:999;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:12px 5%;
    box-shadow:0 2px 15px rgba(0,0,0,0.08);
}

.logo img{
    height:90px;
    width:auto;
    display:block;
}

/* Center Navigation */
.nav-links{
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links a,
.dropbtn{
    text-decoration:none;
    color:#333;
    font-size:16px;
    font-weight:600;
}

/* Dropdown */
.dropdown{
    position:relative;
}

.dropdown-content{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    min-width:280px;
    background:#fff;
    border-radius:10px;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
    overflow:hidden;
}

.dropdown-content a{
    display:block;
    padding:14px 18px;
}

.dropdown-content a:hover{
    background:#f5f5f5;
}

.dropdown:hover .dropdown-content{
    display:block;
}

/* WhatsApp Button */
.nav-whatsapp{
    background:#25D366;
    color:#fff !important;
    padding:14px 26px;
    border-radius:50px;
    text-decoration:none;
    font-size:16px;
    font-weight:700;
    white-space:nowrap;
    display:flex;
    align-items:center;
    gap:8px;
}

.nav-whatsapp i{
    font-size:20px;
}

/* Menu Button */
.menu-btn{
    display:none;
    font-size:32px;
    cursor:pointer;
}

/* ===== TABLET ===== */
@media (max-width: 992px){

    .logo img{
        height:50px;
    }

    .nav-links{
        gap:20px;
    }

    .nav-whatsapp{
        padding:12px 20px;
        font-size:15px;
    }
}

/* ===== MOBILE ===== */
@media (max-width: 768px){

    .menu-btn{
        display:block;
        z-index:1001;
    }

    .nav-links{
        position:fixed;
        top:0;
        right:-100%;
        width:85%;
        max-width:320px;
        height:100vh;
        background:#fff;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        padding:90px 25px 30px;
        transition:0.4s ease;
        box-shadow:-5px 0 25px rgba(0,0,0,.15);
        overflow-y:auto;
    }

    .nav-links.active{
        right:0;
    }

    .nav-links a,
    .dropbtn{
        width:100%;
        padding:16px 0;
        border-bottom:1px solid #eee;
    }

    .dropdown{
        width:100%;
    }

    .dropdown-content{
        position:static;
        display:block;
        box-shadow:none;
        background:#f8f8f8;
        margin-top:5px;
        border-radius:8px;
        min-width:100%;
    }

    .dropdown-content a{
        padding:12px 15px;
        border:none;
        font-size:14px;
    }

    .nav-whatsapp{
        margin-top:20px;
        width:100%;
        justify-content:center;
        border:none;
    }

    .logo img{
        height:45px;
    }
}
@media (max-width: 768px) {
    .nav-whatsapp{
        display: none;
    }
}
@media (max-width: 768px) {

    .logo img{
        height: 70px; /* Increase from 45px or 50px */
        width: auto;
    }

}
.menu-btn{
    display:block;
    font-size:32px;
    cursor:pointer;
    z-index:10001;
}

.menu-btn i{
    transition:0.3s;
}

/* Active Navbar Link */
.nav-links a.active {
    color: rgb(216,87,91) !important;
    font-weight: 700;
}

.nav-links a.active::after {
    width: 100%;
    background: rgb(216,87,91);
}