body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

/*==========================
        HEADER
===========================*/

/*==========================
        LUXURY HEADER
===========================*/

.main-header{
    position:sticky;
    top:0;
    z-index:9999;
    background:#2e2e2e;        /* Same as footer */
    border-bottom:1px solid #2e2e2e;
    box-shadow:0 6px 20px rgba(0,0,0,.25);
}

/* Gold line */

.header-top-line{

    height:4px;

    background:linear-gradient(to right,#8d6b18,#d4af37,#8d6b18);

}

.header-container{
    width:90%;
    max-width:1400px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 0;
}

/* Logo */

.logo a{
    display:flex;
    align-items:center;
    text-decoration:none;
}

.logo img{
    height:85px;
    width:auto;
}

.logo-text{
    margin-left:15px;
}

.logo-text h2{
    color:#ffffff;
    margin:0;
    font-size:32px;
    font-weight:700;
}

.logo-text span{
    color:#d4af37;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:13px;
}

/* Navigation */

.main-header nav ul{
    list-style:none;
    display:flex;
    gap:35px;
    margin:0;
    padding:0;
}

.main-header nav ul li a{
    color:#bbbbbb;              /* Same grey as footer text */
    text-decoration:none;
    font-size:17px;
    font-weight:600;
    transition:.35s;
    position:relative;
}

/* Gold underline */

.main-header nav ul li a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:#d4af37;

    transition:.35s;

}


.main-header nav ul li a:hover{
        color:#d4af37;

}



.main-header nav ul li a:hover::after{
    width:100%;


}



/* Slider */

.slider-img{
    height:700px;
    object-fit:cover;
}

.carousel-caption{
    bottom:220px;
}

.carousel-caption h1{
    font-size:60px;
    font-weight:bold;
}

.carousel-caption p{
    font-size:22px;
}

/* Highlights */

/* .highlights{
    padding:80px 20px;
    background:#f8f8f8;
}

.highlight{
    background:white;
    padding:30px;
    border-radius:12px;
    box-shadow:0 5px 15px rgba(0,0,0,0.08);
} */

/* CTA */

/* .cta{
    background:#222;
    color:white;
    padding:80px 20px;
}

.cta .btn{
    background:#c79b3b;
    border:none;
    color:white;
    padding:12px 25px;
} */



main {
    padding: 20px;
}

section h2 {
    color: #333;
}

/* .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
} */

.gallery-grid img {
    width: 100%;
    height: auto;
}
.home-banner {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
}

.highlights {
    padding: 40px 20px;
    text-align: center;
}

.highlight-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* .highlight {
    flex: 1 1 250px;
    background: #eee;
    padding: 20px;
    border-radius: 8px;
} */

.cta {
    text-align: center;
    padding: 40px 20px;
}
.cta h2{
    color:white;
    font-size:42px;
    font-weight:700;
    margin-bottom:25px;
}
.cta .btn {
    display: inline-block;
    margin: 10px;
    padding: 12px 25px;
    background: #5f5f5f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
.carousel-item{
    position:relative;
}

.carousel-item::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
}

.carousel-caption{
    z-index:2;
}

.section-tit{
    text-align:center;
    font-size:48px;
    font-weight:800;
    margin-bottom:50px;
}

.highlight{
    background:white;
    padding:35px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,0.08);
    transition:0.3s;
}

.highlight:hover{
    transform:translateY(-8px);
}

.products{
    padding:80px 20px;
    background:#f8f8f8;
}

.product-grid{
    display:flex;
    gap:30px;
    justify-content:center;
    flex-wrap:wrap;
}

.product-card{
    width:350px;
    background:white;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 8px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.product-card:hover{
    transform:translateY(-10px);
}

.product-card img{
    width:100%;
    height:250px;
    object-fit:cover;
}

.product-card h3{
    padding:15px 20px 5px;
}

.product-card p{
    padding:0 20px 20px;
}

/*==================================
        HAMBURGER MENU
===================================*/

.header-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

/* Hide hamburger on desktop */

.menu-toggle{
    display:none;
    font-size:30px;
    color:#c79b3b;
    cursor:pointer;
}

/* Desktop Menu */

#navbar ul{
    display:flex;
    list-style:none;
    gap:30px;
    margin:0;
    padding:0;
}

/* Mobile */

@media(max-width:991px){

.menu-toggle{
    display:block;
}

#navbar{

    position:absolute;

    top:100%;

    left:0;

    width:100%;

    background:#171717;

    display:none;

    box-shadow:0 8px 20px rgba(0,0,0,.2);

}

#navbar.active{
    display:block;
}

#navbar ul{

    flex-direction:column;

    gap:0;

}

#navbar ul li{

    border-bottom:1px solid rgba(255,255,255,.1);

}

#navbar ul li a{

    display:block;

    padding:18px;

    color:#ddd;

    text-decoration:none;

    transition:.3s;

}

#navbar ul li a:hover{

    background:#c79b3b;

    color:#fff;

}

}

/* ================= CONTACT PAGE ================= */

.contact-page{

    padding:80px 0;

    background:#f8f9fa;

}

.contact-title{

    text-align:center;

    margin-bottom:70px;

}

.contact-title span{

    color:#c79b3b;

    font-weight:700;

    letter-spacing:2px;

}

.contact-title h1{

    font-size:52px;

    font-weight:700;

    margin:15px 0;

}

.contact-title p{

    width:60%;

    margin:auto;

    color:#666;

    line-height:1.8;

}

.contact-container{
    width:90%;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:40px;
}

/*=========================
        GOOGLE MAP
==========================*/

.map-text{

    color:#666;

    margin-bottom:20px;

    line-height:1.8;

}

.map-container{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.map-container iframe{

    display:block;

    width:100%;

    height:520px;

    border:0;

}

/* .contact-form{
    width:58%;
    background:white;
    padding:40px;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-info{
    width:38%;
    background:#fff;
    padding:45px;
    border-radius:20px;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
}


.contact-info h2{

    font-weight:700;

    margin-bottom:25px;

}
.contact-form label{
    font-weight:600;
    margin-bottom:8px;
    display:block;
}

.contact-form .form-control{
    margin-bottom:15px;
}

.form-control{
    border-radius:10px;
    padding:14px;
    border:1px solid #ddd;
}

.form-control:focus{
    border-color:#c79b3b;
    box-shadow:0 0 8px rgba(199,155,59,.25);
}

.contact-btn{
    background:#c79b3b;
    color:white;
    border:none;
    padding:14px 40px;
    border-radius:16px;
    font-size:18px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background: #757575;
} */

.info-box{

    display:flex;

    align-items:flex-start;

    gap:20px;

    margin-top:30px;

}

.icon{
    width:75px;
    height:75px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:30px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    transition:.4s;
}

.info-box:hover .icon{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 15px 35px rgba(212,175,55,.5);
}



/* WhatsApp */
.whatsapp-icon{
    background:linear-gradient(135deg,#25D366,#128C7E);
}

/* Email */
.email-icon{
    background:linear-gradient(135deg,#ff9800,#f57c00);
}

/* Head Office */
.office-icon{
    background:linear-gradient(135deg,#9c27b0,#6a1b9a);
}

/* Factory */
.factory-icon{
    background:linear-gradient(135deg,#607D8B,#37474F);
}

/* Office Hours */
.clock-icon{
    background:linear-gradient(135deg,#E91E63,#AD1457);
}


.info-box:hover .icon{
    background:#c79b3b;

    transform:translateY(-6px) scale(1.1) rotate(-8deg);
}





.info-box h4{

    margin:0;

    font-weight:700;

}

.info-box p{

    margin-top:5px;

    color:#666;

}
/*======================
        FOOTER
========================*/

.footer{

background:#2e2e2e;;

color:#ddd;

margin-top:100px;

}

/* Gold line */

.footer-top-line{

height:5px;

background:linear-gradient(to right,#8d6b18,#d4af37,#8d6b18);

}

.footer-container{

width:90%;

max-width:1400px;

margin:auto;

padding:70px 0;

display:grid;

grid-template-columns:2fr 1fr 1fr 1.5fr;

gap:60px;

}

.footer-logo{

width:120px;

margin-bottom:20px;

}

.footer-column h3{

color:white;

font-size:28px;

margin-bottom:20px;

}

.footer-column h4{

color:#d4af37;

margin-bottom:25px;

font-size:24px;

}

.footer-column p{

line-height:1.9;

color:#bbb;

}

.footer-column ul{

list-style:none;

padding:0;

margin:0;

}

.footer-column ul li{

margin-bottom:14px;

}

.footer-column ul li a{

text-decoration:none;

color:#bbb;

transition:.3s;

}

.footer-column ul li a:hover{

color:#d4af37;

padding-left:8px;

}

.footer-column i{

color:#d4af37;

margin-right:10px;

}

.footer-social{

display:flex;

justify-content:center;

gap:18px;

padding-bottom:35px;

}

.footer-social a{

width:52px;

height:52px;

border-radius:50%;

background:#2a2a2a;

display:flex;

justify-content:center;

align-items:center;

color:white;

font-size:20px;

text-decoration:none;

transition:.4s;

}

.footer-social a:hover{

background:#d4af37;

transform:translateY(-8px);

}

.footer-bottom{

border-top:1px solid #2e2e2e;

text-align:center;

padding:25px;

font-size:15px;

color:#999;

}

/*=========================
        HERO SECTION
==========================*/

.loom-hero{

    height:100vh;

    background:url('../images/img1.jpg') center center/cover no-repeat;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    position:relative;

}

.loom-hero::before{

    content:"";

    position:absolute;

    width:100%;

    height:100%;

    background:rgba(0,0,0,.45);

}

.hero-content{

    position:relative;

    z-index:2;

    width:70%;

}

/* Animated Heading */

.hero-title{

    font-size:75px;

    color:white;

    font-weight:700;

    margin-bottom:25px;

    animation:textGlow 4s ease-in-out infinite;

}

/* Description */

.hero-description{

    color:white;

    font-size:23px;

    line-height:1.9;

    margin-bottom:40px;

    animation:textGlow 4s ease-in-out infinite;

}

/* Button */

.hero-btn{

    display:inline-block;

    padding:16px 40px;

    background:#d4af37;

    color:white;

    text-decoration:none;

    border-radius:40px;

    font-size:18px;

    transition:.4s;

}

.hero-btn:hover{

    background:white;

    color:#171717;

}

/* Glow Animation */

@keyframes textGlow{

    0%{

        opacity:1;

        text-shadow:
        0 0 5px #ffffff,
        0 0 15px #ffffff,
        0 0 25px #d4af37;

    }

    50%{

        opacity:.55;

        text-shadow:none;

    }

    100%{

        opacity:1;

        text-shadow:
        0 0 5px #ffffff,
        0 0 15px #ffffff,
        0 0 25px #d4af37;

    }

}

/*=========================
      LOOM GALLERY
==========================*/

.loom-gallery{
    padding:90px 0;
    background:#f8f8f8;
}

.section-title{
    text-align:center;
    font-size:48px;
    font-weight:700;
    color:#171717;
    margin-bottom:60px;
}

.loom-grid{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

.loom-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 15px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.loom-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.loom-card img{

    width:100%;

    height:280px;

    object-fit:cover;

    transition:.5s;

}

.loom-card:hover img{

    transform:scale(1.08);

}

.loom-content{

    padding:25px;

}

.loom-content h3{

    font-size:26px;

    margin-bottom:15px;

    color:#171717;

}

.loom-content p{

    color:#666;

    line-height:1.8;

}
/*=========================
      WHY US
==========================*/

.why-looms{

    background:#171717;

    padding:90px 0;

    text-align:center;

}

.why-looms h2{

    color:white;

    font-size:46px;

    margin-bottom:60px;

}

.why-grid{

    width:90%;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}
.why-box{

    background:#222;

    padding:45px 25px;

    border-radius:18px;

    transition:.4s;

}

.why-box:hover{

    background:#d4af37;

    transform:translateY(-10px);

}

.why-box i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:25px;

    transition:.4s;

}

.why-box:hover i{

    color:white;

}

.why-box h3{

    color:white;

    font-size:24px;

    margin:0;

}
/*=========================
        CTA
==========================*/

.loom-cta{

    padding:100px 20px;

    background:#f8f8f8;

    text-align:center;

}

.loom-cta h2{

    font-size:48px;

    color:#171717;

    margin-bottom:20px;

}

.loom-cta p{

    width:60%;

    margin:auto;

    color:#666;

    line-height:1.8;

    margin-bottom:35px;

}
/*=========================
      RESPONSIVE
==========================*/

@media(max-width:992px){

    .loom-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .hero-title{

        font-size:55px;

    }

}

@media(max-width:768px){

    .loom-grid{

        grid-template-columns:1fr;

    }

    .why-grid{

        grid-template-columns:1fr;

    }

    .hero-title{

        font-size:42px;

    }

    .hero-description{

        font-size:18px;

    }

    .loom-cta p{

        width:90%;

    }

}

/*==============================
    COMPANY HERO
==============================*/

.company-hero{

    height:75vh;

    background:url('../images/img11.jpg') center center/cover no-repeat;

    position:relative;

    display:flex;

    justify-content:center;

    align-items:center;

}

.company-overlay{

    width:100%;

    height:100%;

    background:rgba(0,0,0,.55);

    display:flex;

    justify-content:center;

    align-items:center;

}

.company-content{

    text-align:center;

    width:70%;

    color:white;

    animation:fadeUp 1.5s ease;

}

.company-content h1{

    font-size:70px;

    font-weight:700;

    margin-bottom:20px;

}

.company-content p{

    font-size:22px;

    line-height:1.8;

}

/*==============================
WHO WE ARE
==============================*/

.company-about{

    padding:90px 0;

    background:white;

}

.company-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

}

.company-image img{

    width:100%;

    border-radius:20px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.company-text h2{

    font-size:45px;

    margin-bottom:25px;

    color:#171717;

}

.company-text p{

    font-size:18px;

    color:#666;

    line-height:2;

}

/*==============================
VISION & MISSION
==============================*/

.vision-mission{

    padding:90px 0;

    background:#f8f8f8;

}

.vm-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.vm-card{

    background:white;

    padding:45px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.4s;

}

.vm-card:hover{

    transform:translateY(-10px);

}

.vm-card i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:20px;

}

.vm-card h3{

    font-size:30px;

    margin-bottom:20px;

}

.vm-card p{

    color:#666;

    line-height:1.9;

}

/*==============================
CORE VALUES
==============================*/

.values{

    padding:90px 0;

    background:white;

}

.value-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.value-card{

    background:#fff;

    padding:35px;

    border-radius:18px;

    text-align:center;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.4s;

}

.value-card:hover{

    background:#171717;

    transform:translateY(-10px);

}

.value-card i{

    font-size:55px;

    color:#d4af37;

    margin-bottom:20px;

}

.value-card h3{

    margin-bottom:15px;

}

.value-card p{

    color:#666;

}

.value-card:hover h3,

.value-card:hover p{

    color:white;

}

@media(max-width:992px){

.company-grid{

grid-template-columns:1fr;

}

.vm-grid{

grid-template-columns:1fr;

}

.value-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.value-grid{

grid-template-columns:1fr;

}

.company-content h1{

font-size:45px;

}

.company-content p{

font-size:18px;

}

}

/* ===========================
        GALLERY PAGE
=========================== */

/* Hero Banner */

.gallery-hero{
    height:70vh;
    background:url('../images/OIP (6).jpg') center center/cover no-repeat;
    position:relative;
}

.gallery-overlay{
    width:100%;
    height:100%;
    background:rgba(0,0,0,.55);
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.gallery-content{
    color:#fff;
    width:70%;
}

.gallery-content h1{
    font-size:60px;
    font-weight:700;
    margin-bottom:20px;
}

.gallery-content p{
    font-size:22px;
    line-height:1.8;
}

/* Gallery Sections */

.gallery-section{
    padding:80px 0;
}

.gallery-section:nth-child(even){
    background:#f8f9fa;
}

.gallery-title{
    text-align:center;
    font-size:42px;
    font-weight:700;
    color:#1d1d1d;
    margin-bottom:50px;
    position:relative;
}

.gallery-title::after{
    content:"";
    width:80px;
    height:4px;
    background:#c79b3b;
    display:block;
    margin:15px auto 0;
    border-radius:10px;
}

/* Grid */

.gallery-grid{
    width:90%;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

/* Card */

.gallery-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
}

.gallery-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}

/* Images */

.gallery-card img{
    width:100%;
    height:320px;          /* All images same height */
    object-fit:cover;      /* Crop nicely without stretching */
    display:block;
    transition:.4s;
}

.gallery-card:hover img{
    transform:scale(1.08);
}

/* Optional Caption */

.gallery-card h3{
    text-align:center;
    padding:18px;
    font-size:22px;
    font-weight:600;
    margin:0;
}

/* Responsive */

@media(max-width:992px){

.gallery-grid{
    grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.gallery-grid{
    grid-template-columns:1fr;
}

.gallery-content h1{
    font-size:42px;
}

.gallery-content p{
    font-size:18px;
}

.gallery-card img{
    height:280px;
}

}

/* ===================================
        TABLET RESPONSIVE
=================================== */

@media (max-width:992px){

/* Header */

.header-container{
    gap:20px;
    text-align:center;
}

.main-header nav ul{
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
}

.logo img{
    height:70px;
}

/* Slider */

.slider-img{
    height:500px;
}

.carousel-caption{
    bottom:120px;
}

.carousel-caption h1{
    font-size:42px;
}

.carousel-caption p{
    font-size:18px;
}

/* Products */

.product-grid{
    justify-content:center;
}

.product-card{
    width:300px;
}

/* Contact */

.contact-container{
    flex-direction:column;
}

.contact-form,
.contact-info{
    width:100%;
}

/* Footer */

.footer-container{
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

}

/* ===================================
        MOBILE RESPONSIVE
=================================== */

@media (max-width:768px){

main{
    padding:10px;
}

/* Header */

.header-container{
    padding:12px;
}

.logo img{
    height:60px;
}

.main-header nav ul{
    flex-direction:column;
    gap:12px;
}

/* Slider */

.slider-img{
    height:350px;
}

.carousel-caption{
    bottom:60px;
}

.carousel-caption h1{
    font-size:28px;
}

.carousel-caption p{
    font-size:15px;
}

/* Home */

.section-title{
    font-size:32px;
}

.highlight-grid{
    flex-direction:column;
}

.highlight{
    width:100%;
}

/* Products */

.product-grid{
    flex-direction:column;
    align-items:center;
}

.product-card{
    width:100%;
}

/* Contact */

.contact-title h1{
    font-size:36px;
}

.contact-title p{
    width:90%;
}

.contact-container{
    width:95%;
}

.map-container iframe{
    height:350px;
}

/* Footer */

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-social{
    justify-content:center;
}

.footer-logo{
    margin:auto;
}

/* Company */

.company-content{
    width:90%;
}

.company-content h1{
    font-size:42px;
}

.company-text h2{
    font-size:34px;
}

/* Gallery */

.gallery-content{
    width:90%;
}

.gallery-content h1{
    font-size:42px;
}

.gallery-content p{
    font-size:18px;
}

.gallery-title{
    font-size:34px;
}

.gallery-grid{
    grid-template-columns:1fr;
}

/* Loom */

.hero-content{
    width:90%;
}

.hero-title{
    font-size:42px;
}

.hero-description{
    font-size:18px;
}

.section-title{
    font-size:34px;
}

}

/* ===================================
        SMALL MOBILE
=================================== */

@media (max-width:480px){

.logo img{
    height:50px;
}

.carousel-caption h1{
    font-size:22px;
}

.carousel-caption p{
    display:none;
}

.hero-title{
    font-size:30px;
}

.hero-description{
    font-size:16px;
}

.company-content h1{
    font-size:32px;
}

.gallery-content h1{
    font-size:30px;
}

.contact-title h1{
    font-size:30px;
}

.footer-column h3{
    font-size:24px;
}

.footer-column h4{
    font-size:20px;
}

}
/* ===========================
      HEADER RESPONSIVE
=========================== */

@media (max-width:991px){

.header-container{
    /* flex-direction:column; */
    align-items:center;
    gap:20px;
    padding:15px 0;
}

.logo{
    text-align:center;
}

.logo img{
    height:70px;
    margin-left:0;
}

.main-header nav ul{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:18px;
    padding:0;
}

.main-header nav ul li a{
    font-size:16px;
}

}

@media (max-width:768px){

.logo img{
    height:60px;
}

.main-header nav ul{
    flex-direction:column;
    gap:12px;
}

.main-header nav ul li{
    width:100%;
    text-align:center;
}

.main-header nav ul li a{
    display:block;
    padding:10px 15px;
    font-size:17px;
}

}

@media (max-width:480px){

.logo img{
    height:50px;
}

.main-header nav ul li a{
    font-size:16px;
}

}
/* ===========================
      FOOTER RESPONSIVE
=========================== */

@media (max-width:991px){

.footer-container{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:40px;
}

.footer-column{
    margin-bottom:20px;
}

.footer-logo{
    height:75px;
}

}

@media (max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    text-align:center;
}

.footer-column{
    width:100%;
}

.footer-logo{
    display:block;
    margin:0 auto 20px;
    height:70px;
}

.footer-column p{
    text-align:center;
}

.footer-column ul{
    padding:0;
}

.footer-column ul li{
    list-style:none;
    margin-bottom:12px;
}

.footer-social{
    justify-content:center;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
}

.footer-bottom{
    text-align:center;
    padding-top:20px;
    font-size:14px;
}

}

@media (max-width:480px){

.footer{
    padding:50px 20px 20px;
}

.footer-column h3{
    font-size:24px;
}

.footer-column h4{
    font-size:20px;
}

.footer-column p{
    font-size:15px;
}

.footer-social a{
    width:42px;
    height:42px;
    line-height:42px;
    font-size:18px;
}

.footer-bottom{
    font-size:13px;
}

}

/* =================================
       CONTACT PAGE BANNER
================================= */

.contact-banner{

    position:relative;

    min-height:450px;

    background-image:
        url("../images/ban1.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

    justify-content:center;

    text-align:center;

}

/* Dark overlay */

.contact-banner::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:rgba(0,0,0,0.55);

}

/* Text */

.contact-banner-overlay{

    position:relative;

    z-index:2;

    width:75%;

    color:white;

}

.contact-banner-overlay span{

    color:#c79b3b;

    font-size:16px;

    font-weight:700;

    letter-spacing:4px;

}

.contact-banner-overlay h1{

    font-size:52px;

    font-weight:700;

    margin:15px 0;

}

.contact-banner-overlay p{

    max-width:750px;

    margin:0 auto;

    color:#f1f1f1;

    font-size:18px;

    line-height:1.8;

}

/* =================================
      CONTACT BANNER RESPONSIVE
================================= */

/* Tablet */

@media (max-width: 991px){

    .contact-banner{
        min-height:400px;
        background-position:center;
    }

    .contact-banner-overlay{
        width:85%;
    }

    .contact-banner-overlay span{
        font-size:14px;
        letter-spacing:3px;
    }

    .contact-banner-overlay h1{
        font-size:44px;
        margin:12px 0;
    }

    .contact-banner-overlay p{
        font-size:17px;
        line-height:1.7;
    }

}


/* Mobile */

@media (max-width: 768px){

    .contact-banner{
        min-height:350px;
        background-position:center center;
    }

    .contact-banner-overlay{
        width:90%;
    }

    .contact-banner-overlay span{
        font-size:13px;
        letter-spacing:2px;
    }

    .contact-banner-overlay h1{
        font-size:34px;
        line-height:1.2;
        margin:12px 0;
    }

    .contact-banner-overlay p{
        font-size:15px;
        line-height:1.6;
    }

}


/* Small Mobile */

@media (max-width: 480px){

    .contact-banner{
        min-height:300px;
    }

    .contact-banner-overlay{
        width:92%;
    }

    .contact-banner-overlay span{
        font-size:11px;
        letter-spacing:2px;
    }

    .contact-banner-overlay h1{
        font-size:28px;
    }

    .contact-banner-overlay p{
        font-size:14px;
        line-height:1.5;
    }

}