/* =======================
   GLOBAL STYLES
======================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*body {*/
/*    font-family: Arial, sans-serif;*/
/*    line-height: 1.6;*/
/*    background: #000000;*/
/*    color: #ffffff ;*/
/*}*/

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;

    /* BLACK + COPPER GRADIENT */
    background: linear-gradient(135deg, #000000, #1a1a1a, #3b2a1a);
    
    color: #f5e6c8; /* soft copper text */
}


/* =======================
   CONTAINER
======================= */
.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* =======================
   HEADER / NAVBAR
======================= */
.header {
    background: #1a1a1a;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    color: #fff;
    text-decoration: none;
    font-size: 22px;
    font-weight: bold;
}

.logo img {height: 40px;}

nav {
    display: flex;
}

nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 20px;
    font-size: 16px;
    transition: 0.3s;
}

nav a:hover {
    color: #00aaff;
}

/* Mobile Menu */
.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* =======================
   SLIDER
======================= */
.slider {
    width: 100%;
    height: 400px;
    overflow: hidden;
    position: relative;
}

.slide {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: none;
}

.slide.active {
    display: block;
    animation: fade 1s;
}

@keyframes fade {
    from {opacity: 0.4;}
    to {opacity: 1;}
}


/* SLIDER CONTAINER */
.slider-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* SLIDE TEXT ON RIGHT */
.slide-text {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: #fff;
    max-width: 400px;
    text-align: left;
    animation: slideTextFade 1s ease forwards;
    
    background: rgba(0, 45, 100, 0.85); /* dark blue with opacity */
    padding: 20px 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    animation: slideTextFade 1s ease forwards;
}

.slide-text h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.slide-text p {
    font-size: 1.1em;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
}

/* TEXT ANIMATION */
@keyframes slideTextFade {
    0% { opacity: 0; transform: translateY(-50%) translateX(50px);}
    100% { opacity: 1; transform: translateY(-50%) translateX(0);}
}

/* RESPONSIVE */
@media(max-width:768px){
    .slide-text {
        left: 10px;
        max-width: 250px;
        text-align: left;
    }
    .slide-text h2 {
        font-size: 1.3em;
    }
    .slide-text p {
        font-size: 1em;
    }
    .slider-container {
    height: 250px;
}
}

/* =======================
   HERO / CENTER TEXT
======================= */
.center {
    text-align: center;
    padding: 50px 0;
}

.center h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: white;
}

.center p {
    font-size: 18px;
    margin-bottom: 20px;
    color: beige;
}




/* =======================
   BUTTONS
======================= */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background: #007bff;
    color: #fff;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background: #0056b3;
}
/* ===== GRID ===== */
.grid-3{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  margin:40px 0;
}

/* ===== CARD ===== */
.card{
  background:#fff;
  border-radius:12px;
  overflow:hidden;
  padding:20px;
  text-align:center;
  transition:all 0.3s ease;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
  position:relative;
}

/* Hover Effect */
.card:hover{
  transform:translateY(-10px);
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

/* ===== IMAGE ===== */
.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  transition:0.3s;
}

/* Image zoom */
.card:hover img{
  transform:scale(1.05);
}

/* ===== TEXT ===== */
.card h3{
  margin:15px 0 10px;
  font-size:20px;
  color:#222;
}

.card p{
  color:#666;
  font-size:14px;
  line-height:1.5;
}

/* ===== BUTTON ===== */
.btn{
  display:inline-block;
  margin-top:15px;
  padding:10px 18px;
  background:linear-gradient(135deg,#007bff,#00c6ff);
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

/* Button hover */
.btn:hover{
  background:linear-gradient(135deg,#0056b3,#0096c7);
  transform:scale(1.05);
}

/* =======================
   FORM
======================= */
form {
    max-width: 500px;
    margin: auto;
}

form input,
form textarea,
form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
}

form textarea {
    height: 120px;
}

/* =======================
   MODAL
======================= */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
}

.modal-content {
    background: #fff;
    padding: 20px;
    margin: 10% auto;
    width: 90%;
    max-width: 400px;
    border-radius: 5px;
    position: relative;
}

.close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}



/*Call to action*/

.cta{
  background:#000;
  padding:60px 0;
}

.center{
  color:#ffffff;
  text-align:center;
}

.center .btn{
  background:#ff9900;
  color:#fff;
}

/* =======================
   FOOTER
======================= */
/*.footer {*/
/*    background: #1a1a1a;*/
/*    color: #fff;*/
/*    text-align: center;*/
/*    padding: 20px;*/
/*    margin-top: 50px;*/
/*}*/

/*.footer a {*/
/*    color: #fff;*/
/*    margin: 0 10px;*/
/*    text-decoration: none;*/
/*}*/

.footer a:hover {
    color: #00aaff;
}
 Footer Enhancements 
.footer-links {
    margin-bottom: 10px;
}

.footer-links a {
    margin: 0 10px;
    display: inline-block;
        color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    transition: 0.3s;
}

/*.socials {*/
/*    margin-bottom: 10px;*/
/*}*/






.footer {
    background-color: #0a0a0a; /* Very dark black */
    color: #ffffff;
    padding: 40px 0 20px 0;
    font-family: 'Arial', sans-serif;
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Section Layout */
.footer-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 30px;
    border-bottom: 1px solid #222; /* Subtle divider */
}

.footer-logo img {
    height: 40px; /* Adjust based on your logo */
}


.footer-nav a:hover {
    color: #a3cf24; /* Green accent color from the logo */
}

/* Social Icons */
.socials {
    display: flex;
    gap: 10px;
}

.socials a {
    /*background: #111;*/
    color: #fff;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
}




.socials a img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    border-radius: 40px;
}
.socials a:hover {
    background: #a3cf24;
    color: #000;
}

/* Bottom Section Layout */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
}

.copyright {
    font-size: 13px;
    color: #bbb;
    margin: 0;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    position: relative;
}

/* Vertical bars between legal links */
.legal-links a:not(:last-child)::after {
    content: "|";
    color: #444;
    margin-left: 20px;
}

/* Responsive Logic */
@media (max-width: 768px) {
    .footer {
        padding: 40px 15px; /* Add side padding so text doesn't hit edges */
    }

    .footer-top {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center;
        gap: 30px; /* Space between logo, nav, and socials */
        border-bottom: 1px solid #222;
        padding-bottom: 30px;
    }

    /* Fix: Ensure the main navigation links are visible and centered */
    .footer-nav {
        display: flex;
        flex-direction: column; 
        gap: 15px;
        width: 100%;
    }

    .footer-nav a {
        font-size: 16px;
        display: block;
    }

    /* Fix: Social boxes centering */
    .socials {
        justify-content: center;
        width: 100%;
    }

    /* Fix: Bottom section (Legal and Copyright) */
    .footer-bottom {
        flex-direction: column;
        gap: 25px;
        padding-top: 30px;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    /* Remove the vertical pipe | on mobile for a cleaner list look */
    .legal-links a:not(:last-child)::after {
        display: none;
    }

    .copyright {
        order: 2; /* Puts copyright at the very bottom */
        font-size: 12px;
        line-height: 1.6;
    }
}



/* =======================
   GOOGLE MAP
======================= */
iframe {
    width: 100%;
    height: 300px;
    border: 0;
    margin-top: 20px;
}

/* =======================
   RESPONSIVE DESIGN
======================= */
@media (max-width: 768px) {

    .grid-3 {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
        flex-direction: column;
        background: #1a1a1a;
        position: absolute;
        top: 60px;
        left: 0;
        width: 200px;
        height:100vh;
    }
    .nav-container {
        gap:10px
    }

    nav a {
        margin: 10px 10px 10px 35px;
        
    }

    nav.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .slider,
    .slide {
        height: 250px;
    }
}



/*shop-now*/
/* PRODUCT PAGE MODERN LAYOUT */
.product-box {
    display: flex;
    gap: 40px;
    margin: 40px 0;
    align-items: flex-start;
}

/* LEFT SIDE */
.product-images {
    flex: 1;
}

.main-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.thumbs {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbs img {
    width: 70px;
    height: 70px;
    cursor: pointer;
    border: 1px solid #ccc;
    transition: 0.3s;
}

.thumbs img:hover {
    border: 2px solid #007bff;
}

/* RIGHT SIDE */
.product-details {
    flex: 1;
}

.product-details h2 {
    margin-bottom: 10px;
}

.product-details p {
    margin-bottom: 10px;
    color: #444;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .product-box {
        flex-direction: column;
    }

    .main-img {
        height: 250px;
    }
}


/*about page section in index */
/* ABOUT PREVIEW - MODERN */
/* ABOUT SECTION */
.about-section {
    margin: 60px 0;
        
}

.about-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

/* IMAGE */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 320px;              /* fixed clean height */
    object-fit: cover;          /* maintain proper crop */
    border-radius: 10px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
}

/* TEXT */
.about-text {
    flex: 1;
    color: white;
}

.about-text h2 {
    font-size: 2.2em;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 15px;
    color: white;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .about-grid {
        flex-direction: column;
    }

    .about-image img {
        height: 250px;
    }

    .about-text h2 {
        font-size: 1.8em;
    }
}


.hero-section {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

/* IMAGE AS BACKGROUND */
.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* IMPORTANT */
    display: block;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.5); /* dark layer */
    
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* TEXT */
.hero-content {
    color: #fff;
    padding: 0 20px;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.2em;
}


/* Button styling */
.hero-btn {
    /*position: absolute;*/
    /*right: 0;*/
    /*top: 100%;*/
    margin-top: 20px;

    background-color: #ff6b00;
    color: #fff;
    padding: 7px 15px;
    text-decoration: none;
    font-size: 30px;
    border-radius: 15px;
    transition: 0.3s ease;
}

/* Hover effect */
.hero-btn:hover {
    background-color: #e65c00;
}



/* MOBILE */
@media(max-width:768px){
    .hero-section {
        height: 300px;
    }
    .hero-content h1 {
        font-size: 2em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-btn {
        margin-left: 0px;
    }
}

/* CONTACT PAGE */
.contact-grid {
    display: flex;
    gap: 40px;
    margin: 40px 0;
}

.contact-form, .contact-info {
    flex: 1;
}

.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form textarea {
    height: 150px;
}

.contact-info p {
    margin: 8px 0;
}

@media(max-width: 768px) {
    .contact-grid {
        flex-direction: column;
    }
}

/* HERO SECTION FOR CONTACT PAGE */
.contact-hero {
    width: 100%;
    height: 400px; /* adjust as needed */
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('images/contact-hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #fff;
}

.contact-hero .hero-content {
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.8em;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

.contact-hero p {
    font-size: 1.2em;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.7);
}

/* RESPONSIVE */
@media(max-width:768px){
    .contact-hero {
        height: 300px;
    }
    .contact-hero h1 {
        font-size: 2em;
    }
    .contact-hero p {
        font-size: 1em;
    }
}


/*product.php contact button*/
.contact-btn-wrap {
    margin-top: 20px;
    text-align: left;
}

.contact-btn {
    display: inline-block;
    padding: 12px 20px;
    background: #000;
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.3s;
    font-weight: 500;
}

.contact-btn:hover {
    background: #444;
}





.container-ceo {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.grid-ceo {
    display: flex;
    justify-content: center;
}

.card-ceo {
    display: flex;
    align-items: center;
    gap: 40px;
    background: #f5f5f5;
    padding: 30px;
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
}

/* Image */
.ceo-img img {
    width: 220px;
    height: auto;
    border-radius: 10px;
}

/* Content */
.ceo-content h3 {
    font-size: 28px;
    margin-bottom: 10px;
}

.ceo-content p {
    font-size: 16px;
    color: #555;
}

/* ✅ MOBILE VIEW */
@media (max-width: 768px) {
    .card-ceo {
        flex-direction: column;   /* stack */
        text-align: center;
    }

    .ceo-img img {
        width: 180px;
        margin-bottom: 15px;
    }
}


.whatsapp-float {
    position: fixed;
    width: 55px;
    height: 55px;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    /*box-shadow: 0 4px 10px rgba(0,0,0,0.3);*/
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}