/* =============================================
RESET & BASE
=============================================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    font-family: Arial, Helvetica, sans-serif;
    background-color: #000;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

/* =============================================
NAVBAR
=============================================== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    position: sticky;
    top: 0;
    z-index: 999;
    width: 100%;
}

.navbar .logo img {
    width: 120px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;   /* 🔥 ye important hai */
    gap: 15px;
}

.nav-links a {
    display: flex;
        color: #bdb002;
    align-items: center;   /* icons + text vertical center */
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 3px;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        background-color: #333;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px 0;
        z-index: 998;
    }

    .nav-links a {
        display: block;
        padding: 12px;
        font-size: 18px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

/* =============================================
HERO / KARMA BANNER
=============================================== */
.homepage {
    width: 100%;
    display: block;
    background-color: #000;
    overflow: hidden;
}

.homepage a {
    display: block;
    width: 100%;
}

.image-container {
    width: max-width;
    display: block;
}

.home-banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}




/* =============================================
CONTENT SECTION (Video + Image)
=============================================== */
.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #000;
    padding: 20px;
    gap: 20px;
    flex-wrap: wrap;
}

.about-us {
    flex: 1 1 48%;
    min-width: 280px;
}

.about-video {
    width: 100%;
    height: auto;
    display: block;
}

.image-section {
    flex: 1 1 48%;
    min-width: 280px;
}

.image-section img {
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }

    .about-us,
    .image-section {
        flex: 1 1 100%;
        min-width: 100%;
    }
}


/* =============================================
FEATURES & BENEFITS
=============================================== */
.features-benefits-container {
    padding: 30px 20px;
    background-color: #000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.features-benefits-container h2 {
    color: #bdb002;
    font-size: 2rem;
    font-family: 'Nunito Sans', Arial, sans-serif;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.feature-item {
    flex: 1 1 calc(22% - 20px);
    min-width: 240px;
    max-width: 300px;
    padding: 20px;
    border: 3px solid #ddbd0a;
    border-radius: 8px;
    text-align: center;
    background-color: #000;
    transition: background-color 0.3s;
}

.feature-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.feature-btn {
    background-color: #04802d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.feature-btn:hover {
    background-color: #128C7E;
}

.feature-item:hover {
    background-color: #bdb002;
}

@media (max-width: 768px) {
    .feature-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* =============================================
KHELO OR JEETO
=============================================== */
.Khelo-or-jeeto {
    display: flex;
    background-color: #000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
}

.Khelo-or-jeeto h1 {
    color: #bdb002;
    font-size: 2rem;
    font-family: 'Nunito Sans', Arial, sans-serif;
}

@media (max-width: 480px) {
    .Khelo-or-jeeto h1 {
        font-size: 1.5rem;
    }
}

/* =============================================
SWIPER CAROUSEL
=============================================== */
.cfs {
    background-color: #000;
    padding: 10px 0;
    width: 100%;
    overflow: hidden;
}

.mySwiper {
    width: 100%;
    background: transparent;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide a {
    display: block;
    width: 100%;
}

.swiper-slide img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

@media (min-width: 768px) {
    .swiper-slide img {
        height: 300px;
    }
}

/* =============================================
BEST SERVICES
=============================================== */
.best-services-container {
    padding: 30px 20px;
    background-color: #000;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.best-services-container h2 {
    color: #bdb002;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 10px;
    width: 100%;
    text-align: center;
}

.best-services-item {
    flex: 1 1 calc(30% - 20px);
    min-width: 240px;
    max-width: 340px;
    padding: 20px;
    border: 3px solid #ddbd0a;
    border-radius: 8px;
    text-align: center;
    background-color: #000;
    transition: background-color 0.3s;
}

.best-services-item h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.best-services-item p {
    color: white;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.best-services-btn {
    background-color: #04802d;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

.best-services-btn:hover {
    background-color: #128C7E;
}

.best-services-item:hover {
    background-color: #bdb002;
}

@media (max-width: 768px) {
    .best-services-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

/* =============================================
IPL 2026 BANNER
=============================================== */
.ipl-banner {
    width: 100%;
    display: block;
    background-color: #000;
    padding: 0;
    overflow: hidden;
}

.ipl-banner a {
    display: block;
    width: 100%;
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}



/* =============================================
GET IN TOUCH
=============================================== */
.get-in-touch {
    min-height: 300px;
    background-image: url('assets/b.png');
    background-size: cover;
    background-position: center;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.text-container {
    width: 100%;
    max-width: 600px;
}

.text-container h2 {
    color: #bdb002;
    font-family: 'Nunito Sans', Arial, sans-serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.text-container p {
    color: #f5f4e9;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.whatsapp-btn {
    background-color: #12770e;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
}

@media (max-width: 480px) {
    .text-container h2 {
        font-size: 1.5rem;
    }

    .text-container p {
        font-size: 1rem;
    }

    .whatsapp-btn {
        font-size: 1rem;
        padding: 10px 18px;
    }
}

/* =============================================
DISCLAIMER
=============================================== */
.disclaimer {
    background-color: #000;
    color: white;
    text-align: center;
    padding: 20px;
}

.disclaimer p {
    font-size: 0.9rem;
    margin: 5px 0;
}

.disclaimer p:last-child {
    font-weight: bold;
}

/* =============================================
WHATSAPP FLOATING ICON
=============================================== */
.whatsapp-icon-container {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.2s;
}

.whatsapp-icon:hover {
    transform: scale(1.1);
}

.social-icons {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center; /* optional center alignment */
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: scale(1.1);
}



/* .service-section{
background:#000;
padding:80px 40px;
font-family:Arial, Helvetica, sans-serif;
color:#fff;
max-width:520px;
} */

.service-section{
background:#000;
padding:80px 40px;
font-family:Arial, Helvetica, sans-serif;
color:#fff;

max-width:600px;
margin:0 auto;   /* YE CENTER KAR DEGA */
text-align:center;
}

.service-section h1{
font-size:60px;
font-weight:700;
line-height:1.1;
margin:0;
}

.service-section span{
color:#ffb400;
}

.brush{
width:120px;
height:8px;
background:#ffb400;
margin:20px 0;
border-radius:50px;
}

.tagline{
color:#9e9e9e;
font-style:italic;
font-size:18px;
margin-bottom:15px;
}

.desc{
color:#bfbfbf;
line-height:1.6;
margin-bottom:25px;
}

.features{
list-style:none;
padding:0;
margin-bottom:30px;
}

.features li{
margin-bottom:12px;
padding-left:28px;
position:relative;
color:#d6d6d6;
}

.features li:before{
content:"✔";
position:absolute;
left:0;
color:#ffb400;
}

.play-btn{
display:inline-block;
padding:14px 30px;
border:2px solid #ffb400;
color:#fff;
text-decoration:none;
border-radius:8px;
transition:0.3s;
}

.play-btn:hover{
background:#ffb400;
color:#000;
}