/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}
html, body {
    overflow-x: hidden; /* Right side ka faltu space khatam kar dega */
    width: 100%;
    margin: 0;
    padding: 0;
}

.logo-section img{
    width: 75px;
    height: 75px;
    border-radius: 50%;
    margin-top: -7px;
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    height: 80vh; /* Puri screen cover karne ke liye */
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(88, 87, 87, 0.5); /* 0.5 ka matlab 50% darkness, ise kam-zyada kar sakte hain */
    z-index: -1; /* Video ke upar lekin text ke niche */
}

.bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 80vh;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -2;
}

.hero-content {
    position: relative;
    color: #ffffff; /* Pure White */
    text-align: center;
    z-index: 10; /* Text sabse upar rahega */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7); /* Text ko aur uthane ke liye halka shadow */
}

.hero-content h1 {
    font-size: 50px !important; /* 100px ki jagah 80px thoda better lagega desktop par */
    font-weight: 800 !important;
    margin-bottom: 20px;
}

.hero-content p {
    font-weight: bold;
}

/* ================= PRODUCT SECTION ================= */
.product {
    padding: 80px 10%;
    background: #fff;
}

.product-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* Image */
.product-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    transition: 0.4s;
}

.product-image img:hover {
    transform: scale(1.05);
}

/* Content */
.product-content {
    flex: 1;
}

.product-content h2 {
    font-size: 40px;
    color: #0a3d62;
}

.product-content h1{
    font-size: 40px;
    color: #0a3d62;
    margin-bottom: 5px;
}

.product-content h3 {
    font-size: 22px;
    color: #16a085;
    margin-bottom: 20px;
}

.product-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* List */
.product-content ul {
    list-style: none;
    margin-bottom: 25px;
}

.product-content ul li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* Button */
.btn {
    padding: 12px 28px;
    background: linear-gradient(45deg, #0a3d62, #16a085);
    color: #fff;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ================= ABOUT SECTION ================= */
.about {
    padding: 80px 10%;
    background: linear-gradient(to right, #eaf6fb, #ffffff);
}

.about-container {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    align-items: center;
}

/* Left */
.about-left {
    flex: 1;
    text-align: center;
}

.about-left h2 {
    font-size: 44px;
    color: #0a3d62;
    margin-bottom: 10px;
}

.about-left .sub {
    font-size: 15px;
    color: #16a085;
    margin-bottom: 20px;
}

.about-left img {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Right */
.about-right {
    flex: 1;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
}

.about-right p {
    font-size: 15px;
    line-height: 1.8;
}

/* Scrollbar Styling */
.about-right::-webkit-scrollbar {
    width: 6px;
}

.about-right::-webkit-scrollbar-thumb {
    background: #16a085;
    border-radius: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .product-container {
        flex-direction: column;
        text-align: center;
    }

    .about-container {
        flex-direction: column;
    }

    .product-content h2 {
        font-size: 28px;
    }
}

/****************************************************/

.footer {
    text-align: center;
    padding: 25px 10px;
    background: linear-gradient(135deg, #0a3d62, #16a085);
    color: #fff;
    font-size: 15px;
    letter-spacing: 0.5px;
    position: relative;
}

/* Top border glow effect */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: rgba(255,255,255,0.3);
}

/* Text styling */
.footer p {
    margin: 0;
    opacity: 0.9;
}

/* Hover subtle effect */
.footer:hover {
    background: linear-gradient(135deg, #16a085, #0a3d62);
    transition: 0.4s;
}

/***************************************************/

/* ================= TOP BAR ================= */
.top-bar {
    background: #0a3d62;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding: 8px 10%;
    font-size: 14px;
    flex-wrap: wrap;
}

.top-bar div {
    opacity: 0.9;
}

/* ================= NAVBAR ================= */
/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 10px;
    background: #fff;
    position: relative;
}

/* Logo */
.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-section img {
    /* Size ko 80px se badha kar dekhein */
    width: 100px; 
    height: auto; /* Height auto rakhne se image stretch nahi hogi */
    border-radius: 20px;
    object-fit: contain; /* Isse image box ke andar sahi se set hogi */
}

.brand {
    color: #008b8b;
    font-size: 28px;
    font-weight: 500;
}

/* Menu Desktop */
.nav-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 600;
    margin-right: 10px;
}

/* Toggle */
/* Desktop view mein toggle hamesha hidden rahega */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.nav-actions {
    position: fixed;
    right: 15px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

/* Base Button Style */
.whatsapp-btn,
.call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

/* Icon Styling */
.icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.text {
    display: none;
}

/* Colors */
.whatsapp-btn {
    background-color: #25D366;
}

.call-btn {
    background-color: #25D366;
}

/* Feedback when tapped (Mobile "Hover") */
.whatsapp-btn:active,
.call-btn:active {
    transform: scale(0.9);
    filter: brightness(1.1);
}

@media screen and (max-width: 480px) {
    .nav-actions {
        right: 15px;
        bottom: 20px;
        position: fixed;
    }

    .whatsapp-btn,
    .call-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
    .navbar {
        justify-content: space-between;
    }

    .menu-toggle {
        display: block; /* Mobile par button dikhega */
        z-index: 1002;
        margin-right: 20px;
    }

    .nav-links {
        display: none; 
        flex-direction: row;
        position: absolute;
        top: 60px;
        right: 293px;
        width: 100px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        text-align: center;
        color: #fff;
        gap: 4px;
        font-size: 11px;
    }

    .nav-links.active {
        display: flex;
    }

    .logo-section img {
        width: 90px;
    }
    .brand {
        font-size: 18px; 
    }
}


/****************************************************/


/* Section */
.stats-section {
    background: #2f79a8;
    text-align: center;
    color: #fff; 
    position: relative;
    height: 240px;
}

/* Heading */
.stats-section h2 {
    font-size: 34px;
    font-weight: 400;
    margin-bottom: 50px;
}

/* Floating Box */
.stats-box {
    background: #f5f5f5;
    color: #333;
    max-width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 20px;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    /* 👇 MAGIC (overlap effect) */
    position: relative;
    top: 10px;
    z-index: 5;
}

/* Each Stat */
.stat {
    text-align: center;
    flex: 1;
}

/* Numbers */
.stat h3 {
    font-size: 60px;
    font-weight: bold;
    margin: 0;

    background: linear-gradient(90deg, #4caf50, #ff9800);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Text */
.stat p {
    font-size: 15px;
    margin-top: 10px;
    color: #222;
}

/* Divider */
.divider {
    width: 1px;
    height: 70px;
    background: #cfd8dc;
}

/* MOBILE */
@media (max-width: 768px) {

  .stats-section {
    padding: 10px 15px;
  }

  .stats-box {
    flex-direction: column;
    gap: 15px;
    position: relative;
    top: -40px;

    width: 100%;          /* ❌ remove 400px */
    max-width: 100%;      /* ✅ full responsive */
    height: auto;         /* ❌ remove fixed height */

    margin: 0 auto;       /* center align */
    padding: 20px;
  }

  .products-section {
    margin-top: 100px; /* adjust overlap properly */
  }

  .divider {
    width: 60%;
    height: 1px;
  }

  .stat h3 {
    font-size: 32px; /* thoda reduce for mobile */
  }

  .stat p {
    font-size: 14px;
    text-align: center;
  }
}

/****************************************************/
/* Section */
.products-section {
    background: #f5f5f5;
    padding: 100px 5%;
}

/* Layout */
.container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* LEFT CONTENT */
.product-content1 {
    flex: 1;
    z-index: 2;
    margin-left: 110px;
}

/* Heading */
.product-content1 h2 {
    font-size: 34px;
    margin-bottom: 20px;
    font-weight: 600;
}

.product-content1 h2 span {
    color: #2f79a8;
}

.product-content1 h2 {
    color: #7ab648;
}

/* Paragraph */
.product-content1 p {
    color: #333;
    font-size: 15px;
    line-height: 1.7;
    max-width: 500px;
}

/* List */
.product-list {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.product-list ul {
    list-style: none;
    padding: 0;
}

.product-list li {
    margin-bottom: 12px;
    font-size: 15px;
    color: #333;
    position: relative;
    padding-left: 20px;
}

/* Arrow */
.product-list li::before {
    content: "›";
    position: absolute;
    left: 0;
    color: #2f79a8;
    font-weight: bold;
}

/* RIGHT IMAGE */
.product-image1 {
    flex: 1;
    position: relative;
}

.product-image1 img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    clip-path: polygon(10% 0, 90% 0, 100% 100%, 0 100%, 0 30%);
    border-radius: 6px;
    margin-top: 20px;
}

/* RESPONSIVE */
/* RESPONSIVE FIXES */
@media (max-width: 768px) {
    /* 1. Reset container to stack vertically and center properly */
    .container {
        flex-direction: column;
        margin-top: -90px; /* Removed negative -100px margin */
        padding: 0 20px;
        gap: 30px;
    }

    /* 2. Remove the 110px desktop offset and ensure text is full width */
    .product-content1 {
        margin-left: 0; 
        width: 100%;
        text-align: left;
    }

    /* 3. Scale down heading and remove the 55px offset */
    .product-content1 h2 {
        font-size: 26px;
        margin-left: 0;
        line-height: 1.3;
    }

    /* 4. Fix the paragraph width for small screens */
    .product-content1 p {
        max-width: 100%;
        font-size: 14px;
    }

    /* 5. Stack the list columns vertically */
    .product-list {
        flex-direction: column;
        gap: 0;
        margin-left: 0;
        margin-top: 20px;
    }

    /* 6. Clean up the image and remove the 45px offset */
    .product-image1 {
        width: 100%;
        margin-top: 10px;
    }

    .product-image1 img {
        height: 280px;
        clip-path: none; /* Recommended for mobile to avoid "cut off" look */
        margin-left: 0; 
        border-radius: 12px;
    }
}
/***********************************************************/


/* --- YOUR ORIGINAL CODE --- */
.container1 {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero1 {
    background: linear-gradient(135deg, #2b78c5 0%, #1a5696 100%);
    background-image: url('https://www.transparenttextures.com/patterns/cubes.png'), 
                      linear-gradient(135deg, #3a86d4 0%, #1a5696 100%);
    color: white;
    padding: 30px 0;
    text-align: center;
}

/* Base style for Desktop */
.hero-content h1 {
    font-size: 2rem; /* Increased from 1rem so it looks like a real heading */
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* --- ADD THIS MOBILE RESPONSIVE CODE --- */
@media (max-width: 768px) {
    .hero1 {
        padding: 40px 15px; /* Adds space so text doesn't touch screen edges */
    }

    .hero-content h1 {
        /* This keeps the title big enough to be a heading but small enough for phones */
        font-size: 1.4rem; 
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .hero-content p {
        font-size: 0.9rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }
}

.btn-orange {
    background-color: #f07d38;
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: bold;
    display: inline-block;
}

/* Footer Section */
.footer1 {
    padding: 60px 0;
    background-color: #f9fcff;
    color: #333;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.logo1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.logo1 .r { color: #2b78c5; }
.logo1 .l { color: #3a86d4; }
.logo1 .f { color: #7cb342; }
.logo1 .c { color: #f07d38; }

.tagline {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 25px;
}

.btn-contact {
    background: linear-gradient(to right, #2b78c5 50%, #7cb342 50%);
    color: white;
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 4px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 25px;
}

.contact-info a {
    color: #2b78c5;
    text-decoration: none;
}

.social-links {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-links i {
    font-size: 1.2rem;
    color: #1a5696;
}

/* Footer Links & Address */
.footer-links {
    flex: 2;
}


hr {
    border: 0;
    border-top: 1px solid #ccc;
    margin-bottom: 30px;
}

.address-item {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    align-items: flex-start;
}

/* Icon */
.address-item i {
    color: #f07d38;
    font-size: 16px;
    margin-top: 5px;
}

/* Text */
.address-item p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #333;
}

/* Heading */
.address-item strong {
    font-size: 0.95rem;
    color: #000;
}

/* Phone link */
.phone-link {
    color: #2f79a8;
    text-decoration: none;
    font-weight: 500;
}

.phone-link:hover {
    text-decoration: underline;
}