* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo {
    height: 60px;
    border-radius: 50%;
}

.partner-logo {
    height: 50px;
    border-radius: 2%;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #27ae60;
}

/* Hero */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('images/Modern.jpeg') center/cover no-repeat;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 50, 0.7);
}

.hero-content {
    position: relative;
    max-width: 600px;
    color: #fff;
    padding: 0 40px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 10px;
}

.hero-content h2 {
    font-size: 2rem;
    color: #f1c40f;
    margin: 20px 0;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.cta-btn {
    background: #f1c40f;
    color: #000;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    display: inline-block;
    box-shadow: 0 5px 15px rgba(241,196,15,0.4);
    transition: transform 0.3s;
}

.cta-btn:hover {
    transform: translateY(-3px);
}

.hero-image {
    position: absolute;
    right: 50px;
    bottom: 50px;
    text-align: center;
    z-index: 2;
}

.hero-image img {
    width: 300px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(97, 164, 236, 0.6);
    border: 1px solid white;
}

.caption {
    color: #fff;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* Sections */
section {
    padding: 80px 20px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

h3 {
    color: #27ae60;
    margin: 15px 0;
}

/* About */
.about {
    background: #f8f9fa;
}

.tagline {
    color: #f1751b;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.desc {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.1rem;
    color: #555;
}

.vision-mission {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.vision-mission h3{
    color: #f1751b;
}

.card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    width: 350px;
}

/* Services */
.services {
    background: #fff;
}
.services h3{
    color: #f1751b;
}


.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.service-card {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.icon {
    width: 80px;
    height: 80px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #2b64a9;
}

/* Surya Ghar */
.surya-ghar {
    background: #eef5ff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

.info-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
}

.info-card.highlight {
    border-left: 5px solid #2b64a9;
}

.emoji {
    display: block;
    font-size: 1.2rem;
    color: #f1751b;
    margin-bottom: 10px;
    font-weight: bold;
}
#emoji-sub{
    color: #2c3e50;
}

/* Products */
/* Products Section - Side by Side Layout */
/* .products {
    padding: 50px 20px;
    background: #fff;
}

.products .subtitle {
    color: #555;
    margin-bottom: 60px;
}

.product-row {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    gap: 50px;
    flex-wrap: wrap;
}

.product-row.reverse {
    flex-direction: row-reverse;
}

.product-img {
    flex: 1;
    min-width: 300px;
}

.product-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.product-img img:hover {
    transform: translateY(-10px);
}

.product-text {
    flex: 1;
    min-width: 300px;
    padding: 20px;
}

.product-text h3 {
    font-size: 2rem;
    color: #f1751b;
    margin-bottom: 20px;
}

.product-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
} */

/* Responsive */
/* @media (max-width: 768px) {
    .product-row {
        flex-direction: column !important;
        text-align: center;
    }
    
    .product-row.reverse {
        flex-direction: column !important;
    }
    
    .product-text {
        order: -1;
    }
} */

/* ============= PRODUCTS SECTION ============= */
.products {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.product-row {
    display: flex;
    align-items: center;
    gap: 40px;                    /* Gap ab controlled aur perfect hai */
    margin-bottom: 80px;
}

/* Reverse row (image left, text right) */
.product-row.reverse {
    flex-direction: row-reverse;
}

/* VIDEO CONTAINER */
.product-img {
    flex: 1;                      /* Ab video flexible hai, chhota nahi rahega */
    max-width: 500px;             /* Zyada bada bhi nahi hoga */
}

.product-video {
    width: 100%;
    aspect-ratio: 9 / 14;         /* Vertical video ke liye perfect */
    object-fit: cover;            /* Ya contain – jo pasand ho */
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* TEXT CONTAINER */
.product-text {
    flex: 1;
    padding: 20px 0;
}

.product-text h3 {
    color: #f1751b;
    font-size: 28px;
    margin-bottom: 16px;
}

.product-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

/* RESPONSIVE – MOBILE FIRST */
@media (max-width: 868px) {
    .product-row,
    .product-row.reverse {
        flex-direction: column;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }

    .product-img {
        max-width: 380px;
        width: 100%;
    }

    .product-text h3 {
        font-size: 24px;
    }
}

/* Extra small phones */
@media (max-width: 480px) {
    .product-img {
        max-width: 300px;
    }
}

/* Contact */
.contact {
    background: #f8f9fa;
    padding: 50px 20px;
}

.contact-grid {
    display: flex;
    max-width: 1100px;
    margin: 50px auto 0;
    gap: 50px;
    flex-wrap: wrap;
}
.location h3{
    color: #f1751b;
}
.form h3{
    color: #f1751b;
}

.location, .form {
    flex: 1;
    min-width: 300px;
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map iframe {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    margin-top: 20px;
}

form input, form textarea {
    width: 100%;
    padding: 15px;
    margin: 15px 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.submit-btn {
    background: #f1c40f;
    color: #000;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-weight: bold;
    cursor: pointer;
}

/* Footer */
.footer {
    /* background: #1a3c34; */
    background-color: #55446e;
    color: #fff;
    padding: 60px 20px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 40px;
}

.col h4 {
    color: #f1751b;;
    margin-bottom: 20px;
}

.col ul {
    list-style: none;
}

.col ul li {
    margin: 10px 0;
}

.col ul li a {
    color: #ddd;
    text-decoration: none;
}

.copyright {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #2c5c50;
    color: #ddd;
}

/* Scroll to Top */
#scrollTop {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: #f1751b;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    display: none;
    z-index: 999;
}

#scrollTop:hover {
    background: #f1751b;
}

/* WhatsApp Floating Button */
.whatsapp_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.whatsapp-icon {
    margin-top: 15px;
}

/* Instagram Floating Button */
.insta_float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 100px;  /* adjust position (above WhatsApp button) */
    right: 20px;
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
}

.insta-icon {
    margin-top: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .hero-image { position: static; margin: 40px auto; }
    .hero-image img { width: 250px; }
}
/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-content .col {
        margin-bottom: 30px;
    }
    .footer-content .col:last-child {
        margin-bottom: 0;
    }
}


/* project complete */