*{
    body {
    font-family: 'Poppins', sans-serif;
}
    margin:0; padding:0; box-sizing:border-box;
    font-family:Arial, sans-serif;
}
.offer-bar{
    background:#7B0036;color:#fff;
    text-align:center;padding:7px;font-size:14px;
}
/* NAVBAR */
header{
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:1.5rem 6%;
    background:#fff;
    position:sticky;
    top:0;
    z-index:100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 28px; 
    font-weight: 700;
    color: #000;
    transform: scale(1.9); 
    transform-origin: left center; 
}


.logo img {
   width: 50px;
    object-fit: contain;
    display: block;
}

nav ul{
    display:flex;
    gap:25px;
    list-style:none;
}

nav ul li a{
    text-decoration:none;
    font-weight:600;
    color:#000;
    cursor:pointer;
}

.icons i{
    font-size:18px;
    margin-left:18px;
    cursor:pointer;
}

.menu-btn{
    display:none;
    font-size:23px;
    cursor:pointer;
}


/* HIDE MOBILE ICON ROW IN DESKTOP VIEW */
.mobile-icons {
    display: none;
}

/* MOBILE MENU */
@media(max-width:900px){

    /* NAV MENU */
    nav ul{
        position:absolute;
        top:75px;
        right:0;
        flex-direction:column;
        background:#fff;
        width:100%;
        padding:20px;
        display:none;
    }

    nav.open ul{
        display:flex;
    }

    /* DESKTOP ICON ROW HIDE ON MOBILE */
    .icons{
        display:none;
    }

    /* SHOW MOBILE ICON ROW */
    .mobile-icons {
        display:flex;
        gap:20px;
        margin-top:15px;
        font-size:22px;
        justify-content:flex-start;
        padding-left:10px;
    }

    .menu-btn{
        display:block;
    }
}

/* ================= ABOUT US BANNER ================= */
.about-banner {
    width: 100%;
    height: 70vh;
    position: relative;
    overflow: hidden;
}

/* Image */
.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Dark Overlay */
.about-banner::after {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.45);   
    z-index: 1;
}

/* Text */
.banner-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    text-shadow: 0 3px 10px rgba(0,0,0,0.6);
    z-index: 2;  
}

.banner-text h1 {
    font-size: 60px;
    font-weight: 700;
    margin: 0;
}

.banner-text p {
    font-size: 22px;
    margin-top: 10px;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {

    .about-banner {
        height: 50vh;
    }

    .about-banner::after {
        background: rgba(0,0,0,0.60); 
    }

    .banner-text h1 {
        font-size: 45px;
    }

    .banner-text p {
        font-size: 18px;
    }
}

/* MOBILE */
@media (max-width: 600px) {

    .about-banner {
        height: 35vh;
    }

    .about-banner::after {
        background: rgba(0,0,0,0.70); 
    }

    .banner-text h1 {
        font-size: 28px;
    }

    .banner-text p {
        font-size: 14px;
    }
}


/* ABOUT SECTION */
.about-container {
    display: flex;
    padding: 40px 10%;
    gap: 60px;
    align-items: center;
}

/* Image frame effect */
.img-frame {
    width: 80%;
    height: 80%;
    border: 3px solid #7B0036;
    position: absolute;
    top: 20px;
    left: 20px;
    border-radius: 15px;
    z-index: 1;
}

.about-image {
    position: relative;
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    position: relative;
    z-index: 2;
    box-shadow: 0px 15px 30px rgba(0,0,0,0.15);
    transition:.5s;
}

.about-image img:hover {
    transform: scale(1.04);
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 18px;
}

.about-content p {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.8;
    color: #444;
}

.about-btn {
    padding: 14px 30px;
    background:#7B0036;
    color:#fff;
    border:none;
    border-radius:30px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
    font-size:16px;
}

.about-btn:hover {
    background:#000;
    transform:scale(1.07);
}

/* FEATURES */
.features {
    padding: 40px 10%;
    background: #fafafa;
    text-align:center;
}

.feature-title {
    font-size: 36px;
    margin-bottom: 45px;
    font-weight: 700;
}

.feature-box {
    display:flex;
    gap:30px;
}

.f-card {
    flex:1;
    background:#fff;
    padding:30px;
    border-radius:15px;
    box-shadow:0px 10px 20px rgba(0,0,0,0.08);
    transition:.4s;
}

.f-card:hover {
    transform: translateY(-10px);
}

.f-card img {
    width:100%;
    height:240px;
    object-fit:cover;
    border-radius:12px;
}

/* BRAND GALLERY */
.brand-gallery {
    padding:40px 10%;
    text-align:center;
}

.gallery-slider {
    display:flex;
    gap:15px;
    overflow-x:auto;
    padding-bottom:10px;
    scroll-behavior:smooth;
}

.gallery-slider::-webkit-scrollbar{
    display:none;
}

.g-item {
    min-width:260px;
    height:330px;
    border-radius:12px;
    overflow:hidden;
}

.g-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.g-item:hover img {
    transform:scale(1.15);
}

/* FADE ANIMATIONS */
.fade-up { opacity:0; transform:translateY(20px); animation:fadeUp 1s forwards; }
.fade-up.delay-1 { animation-delay:0.2s; }
.fade-up.delay-2 { animation-delay:0.4s; }

.fade-left { opacity:0; transform:translateX(-30px); animation:fadeUp 1s forwards; }
.fade-right { opacity:0; transform:translateX(30px); animation:fadeUp 1s forwards; }

@keyframes fadeUp {
    to { opacity:1; transform:translate(0); }
}

/* RESPONSIVE */
@media(max-width:900px){
    .about-container {
        flex-direction:column;
    }
    .feature-box {
        flex-direction:column;
    }
    .about-content p {
    font-size: 14px;
   
}
}



/* footer  */



/* footer  */
.footer {
    background: #f4ede6;
    padding: 2.5rem 8% 25px; 
    color: #7b4f2a;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-evenly; 
    flex-wrap: wrap;
    gap: 30px; 
}

.footer-col {
    min-width: 240px; 
    flex: 1; max-width: 320px; 
}

.footer-about {
    max-width: 300px;
}

.footer-logo {
    width: 160px;
    margin-bottom: 15px;
}

/* Titles */
.footer-col h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #7b4f2a;
}

/* Links */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #4c3b32;
    text-decoration: none;
    transition: 0.3s;
    font-size: 15px;
}

.footer-col ul li a:hover {
    color: #7b4f2a;
    margin-left: 4px;
}

/* Social icons */
.social-links a {
    font-size: 24px;
    margin-right: 14px;
    color: #7b4f2a;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    opacity: 0.7;
}

/* Contact info */
.contact {
    margin-top: 15px;
    font-size: 15px;
    color: #4c3b32;
}

.contact i {
    margin-right: 8px;
    color: #7b4f2a;
    font-size: 18px;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top:2rem;
    border-top: 1px solid #c8b8a8;
    padding-top: 15px;
    font-size: 14px;
    color: #5a4a41;
}

.footer-bottom a {
    color: #7b4f2a;
    font-weight: 600;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .social-links a {
        margin-right: 10px;
    }

    .contact p {
        justify-content: center;
    }

    .footer-col ul li a:hover {
        margin-left: 0;
    }
}


:root{
  --accent: #7B0036;
  --muted: #707070;
  --bg: #fffaf6;
  --card-shadow: 0 14px 34px rgba(12,12,12,0.06);
  --radius: 14px;
  --container: 1200px;
  font-size: 16px;
}

/* MAIN */
.main{padding:40px 0}
.about-hero{display:flex;gap:36px;align-items:center;margin-bottom:36px}
.about-hero-left{flex:1}
.about-hero-left .frame{background:var(--bg);padding:18px;border-radius:12px;box-shadow:var(--card-shadow);display:flex;align-items:center;justify-content:center}
.about-hero-left img{max-width:100%;height:420px;object-fit:cover;border-radius:10px}
.about-hero-right{flex:1;max-width:720px}
.about-hero-right h2{font-size:32px;margin:0 0 12px;color:#111}
.lead{font-size:16px;color:#333;line-height:1.6;margin-bottom:14px}
.bullets{list-style:none;padding:0;margin:0 0 18px}
.bullets li{margin:8px 0;color:#444}

/* CTAs */
.cta-row{display:flex;gap:12px;margin-top:8px}
.btn{display:inline-block;padding:10px 18px;border-radius:10px;border:1px solid transparent;text-decoration:none;font-weight:600;cursor:pointer}
.btn.primary{background:var(--accent);color:#fff}
.btn.outline{background:transparent;border-color:#ddd;color:#111}

/* POLICIES */
.policies{margin:24px 0}
.policies h3{font-size:22px;margin-bottom:14px}
.policy-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.policy-card{background:#fff;border-radius:12px;padding:16px;box-shadow:var(--card-shadow);position:relative;overflow:hidden}
.policy-card h4{margin:0 0 6px}
.policy-card .muted{font-size:13px;color:var(--muted);margin-bottom:8px}
.policy-body{max-height:120px;overflow:hidden;color:#333;line-height:1.5;transition:all .28s ease}
.policy-card.open .policy-body{max-height:800px}
.panel-toggle{margin-top:12px;border:0;background:var(--accent);color:#fff;padding:8px 12px;border-radius:8px;cursor:pointer}

/* CONTACT */
.contact-info{gap:30px;margin-top:28px;align-items:flex-start}
.contact-left{flex:1;background:#fff;padding:18px;border-radius:12px;box-shadow:var(--card-shadow)}
.contact-right{flex:1;background:#fff;padding:18px;border-radius:12px;box-shadow:var(--card-shadow)}
.contact-right h4{margin-top:0}
.contact-form .row{display:flex;gap:12px;margin-bottom:12px}
.contact-form input,.contact-form textarea{width:100%;padding:10px;border:1px solid #e6e2df;border-radius:8px;font-size:15px}
.form-row{display:flex;gap:10px;justify-content:flex-start;margin-top:10px}

/* MAP */
.map-wrap{margin-top:22px}
.map-wrap h4{margin-bottom:10px}
.map-placeholder img{width:100%;border-radius:12px;object-fit:cover;display:block;box-shadow:var(--card-shadow)}


/* RESPONSIVE */
@media (max-width:1000px){
  .policy-grid{grid-template-columns:1fr}
  .about-hero{flex-direction:column}
  .about-hero-left img{height:320px}
}
@media (max-width:780px){
  .container{padding:0 5%}
  .header-inner{gap:12px}
  .main{padding:28px 0}
  .menu-toggle{display:block}
  .main-nav{display:none}
  .about-hero-left img{height:240px}
  .contact-info{flex-direction:column}
}
@media (max-width:420px){
  .btn{padding:8px 12px;font-size:14px}
}



/* Floating WhatsApp & Call Buttons */
:root{
--size:60px;
--gap:12px;
--right-offset:20px;
--bottom-offset:20px;
}


.floating-actions{
position: fixed;
right: var(--right-offset);
bottom: var(--bottom-offset);
display: flex;
flex-direction: column;
gap: var(--gap);
z-index: 999999;
}


.action-btn{
width: var(--size);
height: var(--size);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #fff;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
text-decoration: none;
transition: transform 0.2s ease;
}


.action-btn:hover{
transform: translateY(-6px);
}


/* WhatsApp */
.whatsapp{
background: #25D366;
}


/* Call */
.call{
background: #007AFF;
}


.floating-actions svg{
width: 60%;
height: 60%;
fill: white;
}

.whatsapp i {
    font-size: 35px;   
}

@media(max-width:600px){
:root{ --size:50px; --right-offset:14px; --bottom-offset:14px; }
}