body {
    margin: 0;
    font-family: Arial;
    padding-top: 90px;
}

/* Navbar White */
.navbar {
    background: #ffffff;   /* 👈 white background */
    padding: 12px 0;
    transition: 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08); /* light shadow */
     backdrop-filter: blur(10px);
}
 
/* Logo */
  .logo {
    width: 300px;
    height: auto;
    object-fit: contain;
}

/* Tablet */
@media (max-width: 992px) {
    .logo {
        width: 100px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .logo {
        width: 200px;
    }
}

/* Menu Links Dark */
.nav-link {
    color: #222 !important;   /* 👈 dark text */
    margin: 0 10px;
    font-weight: 500;
    position: relative;
}

/* Hover Effect */
.nav-link::after {
    content: "";
    width: 0%;
    height: 2px;
    background: #007bff;
    position: absolute;
    left: 0;
    bottom: -5px;
    transition: 0.3s;
}

.nav-link:hover {
    color: #007bff !important;
}

.nav-link:hover::after {
    width: 100%;
}

/* Social Icons */
.social-icons a {
    color: #222;
    margin-left: 12px;
    font-size: 18px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #007bff;
    transform: scale(1.2);
}

/* Mobile Fix */
@media (max-width: 991px) {
    .navbar-nav {
        margin-top: 10px;
    }
    .social-icons {
        margin-top: 10px;
    }
}

/* Section */
.about-section {
    padding: 80px 0;
}

/* Images container */
.about-images {
    position: relative;
}

/* First Image */
.img1 {
    width: 70%;
    border-radius: 10px;
}

/* Second Image (overlap) */
.img2 {
    width: 60%;
    position: absolute;
    bottom: -20px;
    right: 0;
    border-radius: 10px;
    border: 5px solid #fff;
}

/* Hero Image */
.hero-img {
    height: 100vh;
    object-fit: cover;
}

 .slider-img {
    height: 525px;
    width: 100vw;
    object-fit: fill;   /* 👈 important */
    background: #f8f9fa;   /* optional */
}

/* Content */
.about-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-content p {
    color: #555;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .img2 {
        position: static;
        width: 100%;
        margin-top: 15px;
    }

    .img1 {
        width: 100%;
    }
}

/* GALLERY */
.gallery-box {
    position: relative;
    height: 350px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* IMAGE FULL (NO CUT) */
.gallery-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;   /* 👈 FULL IMAGE SHOW */
    padding: 10px;
    transition: 0.4s;
}

/* OVERLAY */
.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;

    background: rgba(0,0,0,0.7);
    color: white;
    padding: 15px;

    transform: translateY(100%);
    transition: 0.4s;
}

/* HOVER EFFECT */
.gallery-box:hover img {
    transform: scale(1.1);
}

.gallery-box:hover .overlay {
    transform: translateY(0);
}

/* CONTACT FORM */
.contact-box {
    max-width: 500px;
    margin: auto;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
}
.contact-box input,
.contact-box textarea {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.contact-box button {
    width: 100%;
    background: #007bff;
    color: white;
    padding: 10px;
    border: none;
}

/* Footer */
.footer {
    background: #0f172a;
    color: #fff;
    padding: 50px 0 20px;
    margin-top:20px;
}

/* Title */
.footer-title {
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Text */
.footer-text {
    font-size: 14px;
    color: #ccc;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #00c6ff;
    padding-left: 5px;
}

/* Social Icons */
.footer-social a {
    color: #fff;
    margin-right: 10px;
    font-size: 16px;
    transition: 0.3s;
}

.footer-social a:hover {
    color: #00c6ff;
    transform: scale(1.2);
}

/* Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 20px;
    padding-top: 15px;
    font-size: 14px;
    color: #aaa;
}


/* Product Card */
.product-card {
    overflow: hidden;
    cursor: pointer;
}

/* Image Box */
.product-img {
    position: relative;
    overflow: hidden;
}

/* Images */
.product-img img {
    width: 100%;
    display: block;
    transition: 0.5s;
}

/* Hover Image */
.hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* Hover Effect */
.product-img:hover .hover-img {
    opacity: 1;
}

.product-img:hover .main-img {
    opacity: 0;
}
.product-card:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}

.product-img:hover img {
    transform: scale(1.1);
}





/* Footer Logo */
.footer-logo {
    width: 140px;   /* 👈 size adjust kar sakte ho */
    height: auto;
    transition: 0.3s;
}

/* Hover Effect */
.footer-logo:hover {
    transform: scale(1.05);
}
@media (max-width: 576px) {
    .footer-logo {
        width: 120px;
    }
}

 
/* start about css */
 /* BANNER */
.about-banner {
    position: relative;
    height: 400px;
    overflow: hidden;
}

.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* DARK OVERLAY */
.about-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

/* CONTENT */
.banner-content {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    color: white;
    z-index: 2;
}

/* TITLE ANIMATION */
.animate-title {
    font-size: 45px;
    font-weight: bold;
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s forwards;
}

/* TEXT ANIMATION */
.animate-text {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s 0.5s forwards;
}

/* BUTTON ANIMATION */
.animate-btn {
    opacity: 0;
    transform: translateY(50px);
    animation: slideUp 1s 1s forwards;
}

/* KEYFRAME */
@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* PRODUCT BOX */
.product-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.product-box img {
    width: 100%;
    height: 350px;
    object-fit: contain;   /* no cut */
}

.product-box:hover {
    transform: translateY(-10px);
}

/* CONTENT */
.about-content {
    max-width: 700px;
    margin: auto;
}

.about-content h2 {
    font-weight: bold;
}
/* end about css */

/* start read more pages */

/* HERO */
.read-hero {
   position: relative;
    height: 400px;

    background: url('Images/ENEQ3.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.read-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55); /* 👈 perfect dark */
}

.hero-content {
    position: relative;
    color: white;
    top: 50%;
    transform: translateY(-50%);
}

/* CTA */
.cta {
    background: #007bff;
}

/* end read more pages */




/* HERO SECTION */
.read-hero {
    position: relative;
    height: 400px;

    background: url('Images/ENEQ1.webp') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

/* DARK OVERLAY */
.read-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.55); /* 👈 perfect dark */
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

 
 

/* TEXT */
.hero-text {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;

    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease 0.5s forwards;
}

/* ANIMATION */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* start enquiry page css  */
 /* 🔥 HERO SECTION */
.enquiry-hero {
    position: relative;
    height: 300px;
    background: url('Images/sendquariy.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enquiry-hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

.enquiry-hero .hero-content {
    position: relative;
    color: #fff;
    text-align: center;
}

/* 🔥 FORM BOX */
.enquiry-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* INPUT */
.form-control {
    border-radius: 10px;
    padding: 12px;
}

/* BUTTON */
.btn-danger {
    border-radius: 30px;
    padding: 12px;
}

/* WHATSAPP BUTTON */
.btn-success {
    background: #25D366;
    border: none;
    border-radius: 30px;
    padding: 12px;
}

.btn-success:hover {
    background: #1ebe5d;
}

/* GOOGLE MAP */
iframe {
    border-radius: 10px;
}
/* FORM BOX */
.enquiry-box {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* INPUT */
.form-control {
    border-radius: 10px;
    padding: 10px;
}

/* BUTTON */
.btn-danger {
    border-radius: 30px;
    padding: 12px;
}

.btn-success {
    background: #25D366;
    border: none;
}

.btn-success:hover {
    background: #1ebe5d;
}
/* end enquiry page css */