* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}




/* =========================
   NAVBAR COMPLETE DESIGN
========================= */

.navbar {
    background: #111111;   /* Desktop background */
    padding: 12px 0;
    transition: 0.3s ease;
}

.navbar .navbar-brand img {
    height: 50px;
    transition: 0.3s;
}

/* Nav links */
.navbar-nav .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    margin: 0 10px;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover {
    color: #00c3ff !important;
}

/* Dropdown */
.dropdown-menu {
    border-radius: 6px;
    border: none;
    padding: 10px 0;
}

.dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-size: 14px;
}

.dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
}



/* =========================
   MOBILE DESIGN
========================= */

/* =========================
   FINAL MOBILE SIDEBAR MENU
========================= */
@media (max-width: 991px) {

    .navbar-collapse {
        position: fixed;
        top: 110px;   /* 👈 header + topbar ke niche */
        right: -230px;
        width: 230px;   /* 👈 thoda kam width */
        height: calc(100vh - 110px);
        background: #fff;

        padding: 0;   /* 👈 ZERO space */
        transition: 0.4s ease;
        box-shadow: -5px 0 25px rgba(0,0,0,0.15);
        overflow-y: auto;
        z-index: 1050;
    }

    .navbar-collapse.show {
        right: 0;
    }

    .navbar-nav {
        margin: 0 !important;
        padding: 0 !important;
    }

    .navbar-nav .nav-link {
        padding: 14px 20px;
        border-bottom: 1px solid #e5e5e5;
    }
}



    /* Hover Blue */
    .navbar-nav .nav-link:hover {
        color: #007bff !important;
        padding-left: 8px;
    }

    /* Active link */
    .navbar-nav .nav-link.active {
        color: #007bff !important;
    }

    /* Dropdown inside mobile */
    .dropdown-menu {
        position: static;
        background: #f8f8f8;
        border: none;
        box-shadow: none;
        padding-left: 10px;
    }

    .dropdown-menu .dropdown-item {
        color: #000 !important;
        font-size: 13px;
        padding: 8px 0;
    }

    .dropdown-menu .dropdown-item:hover {
        color: #007bff !important;
        background: transparent;
    }



/* =========================
   CUSTOM HAMBURGER BUTTON
========================= */

.custom-toggler {
    width: 40px;
    height: 35px;
    position: relative;
    border: none;
    background: transparent;
    z-index: 1100;
}

.custom-toggler span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #000;
    left: 0;
    transition: 0.3s;
}

.custom-toggler span:nth-child(1) {
    top: 8px;
}

.custom-toggler span:nth-child(2) {
    top: 16px;
}

.custom-toggler span:nth-child(3) {
    top: 24px;
}

/* ANIMATION WHEN OPEN */
.custom-toggler.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 16px;
}

.custom-toggler.active span:nth-child(2) {
    opacity: 0;
}

.custom-toggler.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 16px;
}

/* Top Bar */
.top-bar {
    background: #5a1e5c;
    color: #fff;
    padding: 8px 15px;
}

.contact-info {
    display: flex;
    justify-content: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}


/* Header */
.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f4b400;
    padding: 10px 15px;
    position: relative;
 
 
}
/* Header Transparent */
.header {
    background: yellow !important;
}

/* Navbar Transparent */
.navbar {
    background: transparent !important;
}

/* Navbar link color black */
.navbar .nav-link {
    color: #000 !important;
}

/* Active link bhi black */
.navbar .nav-link.active {
    color: #000 !important;
}

/* Dropdown toggle black */
.navbar .dropdown-toggle {
    color: #000 !important;
}

/* Dropdown items black */
.dropdown-menu .dropdown-item {
    color: #000 !important;
}
/* Normal color black */
.navbar .nav-link {
    color: #000 !important;
}

/* Hover color blue */
.navbar .nav-link:hover {
    color: #007bff !important;   /* Bootstrap Blue */
}

/* Active link blue */
.navbar .nav-link.active {
    color: #007bff !important;
}

/* Dropdown items hover blue */
.dropdown-menu .dropdown-item:hover {
    color: #007bff !important;
}


/* Logo */
.logo img {
    height: 60px;
    max-width: 100%;
}
    /* Show toggle */
    .menu-toggle {
        display: block;
    }

    /* Reduce logo size */
    .logo img {
        height: 45px;
    }







/* Footer Background */
.footer-section {
    background: url('footer-bg.jpg') no-repeat center center/cover;
    position: relative;
}

/* Dark Overlay */
.footer-overlay {
    background: rgba(0, 0, 0, 0.85);
    padding: 70px 0 20px 0;
}

/* Title */
.footer-title {
    font-weight: 700;
    margin-bottom: 20px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links li a:hover {
    color: #f4b400;
    padding-left: 5px;
}

/* Divider */
.footer-divider {
    border-color: rgba(255,255,255,0.2);
    margin: 40px 0 20px;
}

/* Responsive Spacing */
@media (max-width: 768px) {
    .footer-overlay {
        text-align: center;
    }
}

/* Sticky Footer Layout */
html, body {
    
     overflow-x: hidden;
}

body {
    
    flex-direction: column;
     margin: 0;
    overflow-x: hidden;
}

/* Middle Content */
.main-content {
    flex: 1;
}


/* Social Sidebar */
.social-sidebar {
    position: fixed;
    top: 40%;
    left: 0;
    transform: translateY(-50%);
    z-index: 999;
}

.social-sidebar a {
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.social-sidebar .facebook {
    background: #3b5998;
}

.instagram {
    background: #e1306c;
}

.social-sidebar .linkedin {
    background: #0077b5;
}

.social-sidebar a:hover {
    padding-left: 8px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .social-sidebar {
        top: auto;
        bottom: 20px;
        left: 10px;
        transform: none;
    }

    .social-sidebar a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 5px;
    }
}


/* ========================= */
/* WHATSAPP FLOAT */
/* ========================= */

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 28px;
    line-height: 60px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.6);
    z-index: 999;
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 768px) {

    .social-sidebar {
        top: auto;
        bottom: 100px;
        left: 10px;
        transform: none;
    }

    .social-sidebar a {
        width: 40px;
        height: 40px;
        line-height: 40px;
        margin-bottom: 5px;
    }

    .whatsapp-float {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 22px;
        right: 15px;
        bottom: 20px;
    }
}

/* slider */
.top-slider img{
    width:100%;
    height:550px;
    object-fit:cover;
}

@media(max-width:768px){
    .top-slider img{
        height:250px;
    }
}

/* About */
.about-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 40%, #c3d9f5 100%);
    
}

/* Blue curve effect */
.about-section::after {
    content: "";
    position: absolute;
    right: -200px;
    bottom: -150px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle at center, rgba(0, 140, 255, 0.4), transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.about-left {
    flex: 1;
}

.small-title {
    color: #6a1b9a;
    font-weight: 600;
    letter-spacing: 2px;
    padding-left: 20px;
    position: relative;
}

.small-title::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 20px;
    background: #f4b400;
}

.about-left h2 {
    font-size: 42px;
    margin: 15px 0;
    font-weight: 700;
}

.about-left p {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
}

.about-right {
    flex: 1;
}

.about-right img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Responsive */
@media(max-width:992px){
    .about-container{
        flex-direction: column;
        text-align: center;
    }

    .small-title{
        padding-left: 0;
    }

    .small-title::before{
        display: none;
    }

    .about-left h2{
        font-size: 32px;
    }
}

/* Page Banner Section */
.page-banner {
    position: relative;
    background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?q=80&w=1600&auto=format&fit=crop') center center/cover no-repeat;

    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    overflow: hidden;
}

/* Dark Overlay */
.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
}

/* Content Layout */
.banner-content {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;   
    align-items: center;
    text-align: center;
}

/* Page Title */
.page-title {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
}

/* Breadcrumb */
.breadcrumb {
    font-size: 16px;
    margin: 0;
}

.breadcrumb a {
    color: #ffc107;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 8px;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .banner-content {
        flex-direction: column;
        align-items: center;
        text-align: center;

    }

    .banner-right {
        margin-top: 10px;
    }

    .page-title {
        font-size: 28px;
    }
}

