/* ==============================
   BuildRock Construction — Styles
   ============================== */

:root {
  --brand-dark: #0f1720;
  --brand-warning: #34bdfd;
  --brand-warning-dark: #34bdfd;
  --muted-gray: #6b7280;
  --light-gray: #f5f5f4;
  --border-gray: #e5e7eb;
}

/* Base */
/* body {
  font-family: 'Inter', system-ui, -Montserrat, sans-serif;
  color: #1f2937;
  line-height: 1.6;
} */

body{
    font-family:"Manrope",sans-serif;
    font-size:16px;
    line-height:1.75;
    color:#374151;
    font-weight:500;
}

.body-wrapper{
    min-height: 100vh;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5 {
  font-family: 'Barlow Condensed', 'Inter', sans-serif;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.py-6 { padding-top: 6rem; padding-bottom: 6rem; }
.bg-light-gray { background: var(--light-gray); }

/* Topbar */
.topbar {
  background: var(--brand-dark);
  color: rgba(255,255,255,0.75);
}
.topbar a {
  color: rgba(255,255,255,0.75);
  transition: color .2s;
}
.topbar a:hover { 
    color: var(--brand-warning); 
}

.topbar span{
    display: flex;
    align-items: center;
    font-size: 14px;
}

/* Navbar */

.navbar{
    background:#fff;
    padding:0;
    min-height:90px;
    transition:.35s ease;
}

.brand-logo{
    width:170px;
    height:auto;
    display:block;
}


.navbar-nav{
    gap:.3rem;
}

.navbar .nav-link{
    color:var(--brand-dark);
    font-size:15px;
    font-weight:600;
    padding:32px 18px !important;
    transition:.35s;
    position:relative;
}


.navbar .nav-link::after{
    content:"";
    position:absolute;
    left:18px;
    right:18px;
    bottom:20px;
    height:2px;
    background:var(--brand-warning);
    color: var(--brand-warning-dark);
    transform:scaleX(0);
    transition:.35s;
}

.navbar .nav-link:hover,
.navbar .nav-link.active,
.navbar .nav-item.dropdown:hover > .nav-link{
    color: var(--brand-warning-dark);
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after,
.navbar .nav-item.dropdown:hover > .nav-link::after{
    transform: scaleX(1);
}

.navbar .dropdown-menu{
    border: none;
    border-radius: 10px;
    padding: 10px 0;
    margin-top: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.12);
}

.navbar .dropdown-item{
    padding: 10px 22px;
    font-weight: 500;
    transition: .3s;
}

.navbar .dropdown-item:hover{
    background: var(--brand-warning);
    color: #fff;
}



@media (min-width:992px){

    .navbar .dropdown-menu{
        margin-top:0;
    }

    .navbar .dropdown:hover > .dropdown-menu{
        display:block;
        opacity:1;
        visibility:visible;
        transform:translateY(0);
    }

}

.dropdown-toggle::after{
    margin-left:.45rem;
    transition:.3s;
}

.dropdown:hover .dropdown-toggle::after{
    transform:rotate(180deg);
}


@media (max-width:991.98px){

.navbar{
    min-height:75px;
    padding:10px 0;
}

.brand-logo{
    width:140px;
}

.navbar-toggler{
    border:none;
    box-shadow:none!important;
}

.navbar-collapse{

    margin-top:15px;

    background:#fff;

    border-radius:15px;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    padding:15px;

}

.navbar-nav{

    gap:0;

}

.navbar .nav-link{

    padding:14px 0!important;

    border-bottom:1px solid #eee;

}

.navbar .nav-link::after{

    display:none;

}

.dropdown-menu{

    border:none;

    box-shadow:none;

    padding-left:18px;

    margin-top:5px;

}

.dropdown-item{

    padding:10px 0;

}

}

@media (max-width:576px){

.brand-logo{

    width:120px;

}

.navbar{

    min-height:70px;

}

}


.dropdown-submenu{
    position: relative;
}

.submenu{
    display: none;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0,0,0,.12);
}

.submenu.show {
    display: block;
}

.submenu-toggle{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.submenu-toggle i{
    transition: .3s ease;
}

.submenu-toggle.active i{
    transform: rotate(180deg);
}

/* Desktop */
/* @media (min-width:992px){

    .submenu{
        position:absolute;
        top:0;
        left:100%;
        min-width:240px;
    }

    .dropdown-submenu:hover>.submenu{
        display:block;
    }

} */

/* Mobile & Tablet */
@media (max-width:991.98px){

    .submenu{
        position:static;
        box-shadow:none;
        border-left:2px solid var(--brand-warning);
        margin-left:15px;
        padding-left:10px;
    }

    .submenu.show{
        display:block;
    }

    .submenu-toggle{
        display:flex;
        justify-content:space-between;
        align-items:center;
    }

    .submenu-toggle i{
        transition:.3s;
    }

    .submenu-toggle.active i{
        transform:rotate(90deg);
    }

}

/* ---------- Desktop ---------- */

@media (min-width:1200px){

    .dropdown-submenu{
        position:relative;
    }

    .submenu{
        position:absolute;
        left:100%;
        top:0;

        min-width:260px;

        background:#fff;

        border-radius:12px;

        box-shadow:0 12px 35px rgba(0,0,0,.12);

        display:none;

        padding:10px 0;
    }

    .dropdown-submenu:hover>.submenu{
        display:block;
    }

}


/* ---------- Tablet + Mobile ---------- */

@media (max-width:1199.98px){

    .navbar-collapse{

        margin-top:15px;

        background:#fff;

        border-radius:16px;

        padding:15px;

        box-shadow:0 10px 35px rgba(0,0,0,.08);

    }

    .dropdown-menu{

        position:static!important;

        transform:none!important;

        border:none;

        box-shadow:none;

        padding-left:15px;

    }

    .submenu{

        display:none;

        padding-left:20px;

        margin-top:8px;

        border-left:2px solid var(--brand-warning);

    }

    .submenu.show{

        display:block;

    }

    .submenu-toggle{

        display:flex;

        justify-content:space-between;

        align-items:center;

    }

    .submenu-toggle i{

        transition:.3s;

    }

    .submenu-toggle.active i{

        transform:rotate(180deg);

    }

}

/* Hero Carousel */
.hero-slide{
    height:92vh;
    min-height:560px;
    background-size: contain;
    background-position:center;
    background-repeat:no-repeat;
    background-color:#000;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(15,23,32,0.85) 0%, rgba(15,23,32,0.55) 60%, rgba(15,23,32,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-slide{
    position:relative;
    overflow:hidden;
}

.hero-img{
    width:100%;
    height:100%;
    object-fit:fill;
    object-position:center;
}

/* Tablet */
@media (max-width: 991px){
    .hero-slide{
        height: 50vh;
        min-height: 500px;
    }

    .hero-img{
        object-position: 65% center;
    }
}

/* Mobile */
@media (max-width: 576px){
    .hero-slide{
        height: 5vh;
        min-height: 300px;
    }

    .hero-img{
        object-position: 75% center;
    }
}

.hero-overlay,
.hero-content{
    position:absolute;
    inset:0;
}

.hero-tag {
  display: inline-block;
  background: rgba(245,165,36,0.15);
  border: 1px solid var(--brand-warning);
  color: var(--brand-warning);
  padding: .4rem 1rem;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
  width: fit-content;
}
.hero-content h1 { font-weight: 800; margin-bottom: 1.25rem; }
.hero-content .lead { margin-bottom: 2rem; }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: .6; }
.carousel-indicators [data-bs-target] {
  width: 40px; height: 4px; border-radius: 2px;
  background: rgba(255,255,255,0.5);
  border: none;
}
.carousel-indicators .active { background: var(--brand-warning); }

/* Stats Strip */
.stats-strip {
  background: var(--brand-dark);
  color: #fff;
  padding: 3rem 0;
}
.stat-item + .stat-item { border-left: 1px solid rgba(255,255,255,0.1); }
@media (max-width: 991px) {
  .stat-item + .stat-item { border-left: none; }
}
.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--brand-warning);
}
.stat-number span { font-size: 2rem; }
.stat-label {
  font-size: .95rem;
  color: rgba(255,255,255,0.7);
  margin-top: .5rem;
}

/* Section tag & title */
.section-tag {
  display: inline-block;
  color: var(--brand-warning-dark);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  position: relative;
  padding-left: 2.5rem;
}
.section-tag::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 2px;
  background: var(--brand-warning);
}
.text-center .section-tag { padding-left: 0; }
.text-center .section-tag::before { display: none; }
.section-title {
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--brand-dark);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
@media (min-width: 768px) {
  .section-title { font-size: 3rem; }
}

/* About */
.about-image-wrap { position: relative; padding-bottom: 3rem; padding-right: 3rem; }
.about-img-main { width: 85%; }
.about-img-sub {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  border: 8px solid #fff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.about-badge {
  position: absolute;
  top: 20px; left: -20px;
  background: var(--brand-warning);
  color: #111;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 15px 30px rgba(245,165,36,0.3);
}
.badge-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text { font-size: .8rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.about-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.about-list li { padding: .4rem 0; font-weight: 500; }

/* Services */
.service-card {
  background: #fff;
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid var(--border-gray);
  transition: all .3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--brand-warning);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15,23,32,0.1);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  background: rgba(245,165,36,0.12);
  color: var(--brand-warning-dark);
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  transition: all .3s ease;
}
.service-card:hover .service-icon {
  background: var(--brand-warning);
  color: #111;
}
.service-card h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  margin-bottom: .75rem;
  color: var(--brand-dark);
}
.service-card p { color: var(--muted-gray); margin-bottom: 1rem; }
.service-link {
  color: var(--brand-dark);
  font-weight: 600;
  text-decoration: none;
  font-size: .9rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.service-link:hover { color: var(--brand-warning-dark); }
.service-link i { transition: transform .2s; }
.service-link:hover i { transform: translate(2px,-2px); }

/* Projects */
.project-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.project-card:hover img { transform: scale(1.08); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,32,0.9) 0%, rgba(15,23,32,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  color: #fff;
  opacity: 1;
  transition: all .3s ease;
}
.project-overlay span {
  display: inline-block;
  background: var(--brand-warning);
  color: #111;
  font-size: .7rem;
  font-weight: 700;
  padding: .25rem .75rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
  width: fit-content;
}
.project-overlay h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  margin: 0;
  font-size: 1.4rem;
}

/* CTA Strip */
.cta-strip {
  background: var(--brand-dark);
  background-image: linear-gradient(135deg, #0f1720 0%, #1a2632 100%);
  padding: 3.5rem 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: var(--brand-warning);
  opacity: 0.08;
  border-radius: 50%;
}
.cta-strip h3 { font-size: 2rem; font-weight: 700; }

/* Team */
.team-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.team-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover img { transform: scale(1.05); }
.team-info {
  position: absolute;
  bottom: 1rem; left: 1rem; right: 1rem;
  background: #fff;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  border-left: 4px solid var(--brand-warning);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.team-info h6 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0;
  color: var(--brand-dark);
}
.team-info span { font-size: .8rem; color: var(--muted-gray); font-weight: 500; }

/* Contact */
.contact-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.contact-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-gray);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list i {
  width: 44px; height: 44px;
  background: var(--brand-warning);
  color: #111;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-form {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: 12px;
}
.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid var(--border-gray);
  background: #fff;
}
.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--brand-warning);
  box-shadow: 0 0 0 0.2rem rgba(245,165,36,0.2);
}
.form-label { font-weight: 600; font-size: .9rem; color: var(--brand-dark); }

/* Footer */
/*==================================================
                PREMIUM FOOTER
==================================================*/

.site-footer{

    position:relative;

    background: url("../images/footer.webp") center/cover no-repeat;

    color:var(--brand-dark); 

    padding:90px 0 25px;

    overflow:hidden;

}

/* Mobile */
@media (max-width: 768px){
    .site-footer{
        background: url("../images/footer.webp") center/cover no-repeat;
    }
}

.site-footer::before{

    content:"";

    position:absolute;

    left:0;
    top:0;

    width:100%;
    height:4px;

    background:linear-gradient(90deg,
    transparent,
    var(--brand-warning),
    transparent);

}

/* Logo */

.site-footer .brand-logo{

    width:300px;

    margin-bottom:20px;

}

/* Titles */

.footer-title{

    font-size:18px;

    font-weight:700;

    margin-bottom:22px;

    position:relative;

    color:var(--brand-dark); 

    text-transform:uppercase;

    letter-spacing:1px;

}

.footer-title::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-8px;

    width:45px;

    height:3px;

    background:var(--brand-warning);

    border-radius:50px;

}

/* Links */

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:var(--brand-dark); 
    text-decoration:none;

    transition:.35s;

    display:inline-block;

    position:relative;

}

.footer-links a::before{

    content:"";

    position:absolute;

    left:0;
    bottom:-2px;

    width:0;

    height:2px;

    background:var(--brand-warning);

    transition:.35s;

}

.footer-links a:hover{

    color:var(--brand-dark); 

    transform:translateX(8px);

}

.footer-links a:hover::before{

    width:100%;

}

/* Contact */

.footer-links li i{

    width:36px;

    height:36px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:inline-flex;

    justify-content:center;

    align-items:center;

    color:var(--brand-warning);

    margin-right:12px;

    flex-shrink:0;

}

/* Social */

.social-btn{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--brand-dark); 

    background:rgba(255,255,255,.08);

    transition:.35s;

    text-decoration:none;

    font-size:18px;

}

.social-btn:hover{

    background:var(--brand-warning);

    color:#111;

    transform:translateY(-8px) rotate(360deg);

}

/* Divider */

.footer-divider{
    border: 0;
    height: 2px;
    margin: 60px 0 30px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0,0,0,.18),
        rgba(255,193,7,.9),
        rgba(0,0,0,.18),
        transparent
    );
}

/* Bottom */

.site-footer-bottom{

    padding-top:10px;

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:15px;

    font-size:15px;

    color:#4b5563;

}

.site-footer-bottom span{

    font-weight:500;

}

.site-footer-bottom a{

    color:var(--brand-dark);

    text-decoration:none;

    font-weight:700;

    position:relative;

    transition:.35s;

}

.site-footer-bottom a::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-3px;

    width:0;

    height:2px;

    background:var(--brand-warning);

    transition:.35s;

}

.site-footer-bottom a:hover{

    color:var(--brand-dark);

}

/* Responsive */

@media(max-width:991px){

.site-footer{

    text-align:center;

    padding:70px 0 20px;

}

.footer-title::after{

    left:50%;

    transform:translateX(-50%);

}

.footer-links li i{

    margin-right:10px;

}

.social-btn{

    margin:auto;

}

}


/* Utility buttons */
.btn-warning {
  background: var(--brand-warning);
  border-color: var(--brand-warning);
  color: #111;
}
.btn-warning:hover {
  background: var(--brand-warning-dark);
  border-color: var(--brand-warning-dark);
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 767px) {
  .py-6 { padding-top: 4rem; padding-bottom: 4rem; }
  .section-title { font-size: 2rem; }
  .hero-content h1 { font-size: 2.5rem; }
  .about-image-wrap { padding-bottom: 0; padding-right: 0; }
  .about-badge { position: static; margin-top: 1rem; display: inline-flex; }
}

.back-to-top{
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 52px;
  height: 52px;
  background:linear-gradient(135deg,var(--brand-warning),#000000);
  border-radius: 50%;
  display: flex;
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  opacity: 0;
  visibility: hidden;
  z-index:9999;
  transform:translateY(20px);
  transition:all .35s ease;
}

.back-to-top.show{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.back-to-top:hover{
    color:#fff;
    transform:translateY(-6px);
    box-shadow:0 18px 35px rgba(0,0,0,.3);

}

.back-to-top i{
    transition:.35s;
}

.back-to-top:hover i{
    transform:translateY(-3px);
}

/* Mobile */

@media(max-width:768px){
  
.back-to-top{
    width:46px;
    height:46px;
    right:18px;
    bottom:18px;
    font-size:18px;
}

}


/*=========================================
            PAGE BANNER
=========================================*/

.page-banner{

    position:relative;

    padding:120px 0 90px;

    /* background:url("../images/banner1.webp") center center/cover no-repeat; */

    overflow:hidden;

}



.banner-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(68, 68, 68, 0.75),
        rgba(5,15,28,.75)
    );

}

.page-banner .container{

    position:relative;

    z-index:2;

}

.page-title{

    color:#fff;

    font-size:3rem;

    font-weight:800;

    margin-bottom:15px;

    letter-spacing:.5px;

}

.breadcrumb{

    margin:0;

}

.breadcrumb-item{

    font-size:15px;

    font-weight:500;

}

.breadcrumb-item a{

    color:rgba(255,255,255,.8);

    text-decoration:none;

    transition:.3s;

}

.breadcrumb-item a:hover{

    color:var(--brand-warning);

}

.breadcrumb-item.active{

    color:var(--brand-warning);

}

.breadcrumb-item+.breadcrumb-item::before{

    color:rgba(255,255,255,.5);

}

/* Responsive */

@media(max-width:991px){

.page-banner{

    padding:90px 0 70px;

}

.page-title{

    font-size:2.3rem;

}

}

@media(max-width:576px){

.page-banner{

    padding:70px 0 55px;

}

.page-title{

    font-size:1.8rem;

}

.breadcrumb-item{

    font-size:14px;

}

}

/*===============================
        CONTACT CARDS
================================*/

.contact-cards{

    padding:90px 0;

    background:#f8fafc;

}

.section-title{

    font-size:42px;

    font-weight:800;

    color:var(--brand-dark);

    margin-bottom:15px;

}

.section-description{

    color:#6b7280;

    font-size:16px;

    line-height:1.8;

}

.contact-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    overflow:hidden;

    border:2px solid transparent;

    transition:.4s;

    box-shadow:0 10px 35px rgba(0,0,0,.06);

}

.contact-card::before{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:0;

    height:4px;

    background:var(--brand-warning);

    transition:.4s;

}

.contact-card:hover{

    border-color:var(--brand-warning);

    box-shadow:
        0 15px 35px rgba(0,0,0,.12),
        0 0 20px rgba(255,193,7,.35);

}



.contact-icon{

    width:75px;

    height:75px;

    margin:0 auto 25px;

    border-radius:50%;

    background:rgba(255,193,7,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    color:var(--brand-warning);

    font-size:30px;

    transition:.4s;

}

.contact-card:hover .contact-icon{

    background:var(--brand-warning);

    color:#fff;

    transform:rotateY(180deg);

}

.contact-card h5{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

    color:var(--brand-dark);

}

.contact-card p{

    margin:0;

    color:#6b7280;

    line-height:1.8;

    font-size:15px;

}

/* Responsive */

@media(max-width:991px){

.section-title{

    font-size:34px;

}

.contact-card{

    padding:35px 25px;

}

}

@media(max-width:576px){

.contact-cards{

    padding:70px 0;

}

.section-title{

    font-size:28px;

}

.contact-icon{

    width:65px;

    height:65px;

    font-size:26px;

}

}

/* GALLERY */
.gallery-cards{
    padding:90px 0;
}

.gallery-card{

    position:relative;

    border-radius:18px;

    overflow:hidden;

    cursor:pointer;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.4s;

}

.gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.6s;

}

.gallery-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.85),
        rgba(0,0,0,.15),
        transparent
    );

    transition:.4s;

}

.gallery-card-body{

    position:absolute;

    left:25px;

    right:25px;

    bottom:22px;

    display:flex;

    justify-content:space-between;

    align-items:end;

    color:#fff;

    z-index:2;

}

.gallery-card-body h5{

    margin:0;

    font-size:24px;

    font-weight:700;

}

.gallery-count{

    width:60px;

    height:60px;

    border-radius:50%;

    background:var(--brand-warning);

    color:#111;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    font-weight:700;

    transition:.4s;

}

.gallery-count i{

    font-size:18px;

    margin-bottom:2px;

}

.gallery-card:hover{

    transform:translateY(-10px);

    box-shadow:0 22px 50px rgba(0,0,0,.18);

}

.gallery-card:hover img{

    transform:scale(1.12);

}



.gallery-card:hover .gallery-count{

    transform:rotate(360deg);

    background:#fff;

}

.gallery-card a{

    text-decoration:none;

}

.gallery-card::after{

    content:"";

    position:absolute;

    inset:0;

    border:3px solid transparent;

    transition:.35s;

    border-radius:18px;

}

@media(max-width:991px){

.gallery-card img{

    height:280px;

}

}

@media(max-width:576px){

.gallery-card img{

    height:240px;

}

.gallery-card-body h5{

    font-size:20px;

}

.gallery-count{

    width:52px;

    height:52px;

    font-size:14px;

}

}

/*=================================
        QUALITY POLICY
=================================*/

.quality-policy-section{

    padding:90px 0;

    background:#fff;

}

.quality-content{

    margin:auto;

    padding:40px;

}

.quality-content p{

    color:#555;

    font-size:16px;

    line-height:1.9;

    margin-bottom:22px;

    text-align:justify;

}

.quality-list{

    list-style:none;

    padding:0;

    margin:0;

}

.quality-list li{

    display:flex;

    align-items:flex-start;

    gap:15px;

    margin-bottom:18px;

    color:#444;

    line-height:1.8;

}

.quality-list i{

    color:var(--brand-warning);

    font-size:20px;

    flex-shrink:0;

}

@media(max-width:768px){

.quality-policy-section{

    padding:70px 0;

}

.quality-content{

    padding:25px;

}

.quality-content p{

    font-size:15px;

    text-align:left;

}

}


/* PROJECT SECURITY SECTION */

.project-security-section{
    padding:90px 0;
    background:#fff;
}

.security-content{
    margin:auto;
    padding:40px;
}

.security-content p{
    color:#555;
    font-size:16px;
    line-height:1.9;
    margin-bottom:22px;
    text-align:justify;
}

.security-content h3{
    color:var(--brand-warning);
    margin-bottom:22px;
    text-align:justify;
}

.policy-item-list{
    list-style:none;
    padding:0;
    margin:0;
}

.policy-item-list li{
    display:flex;
    align-items:flex-start;
    gap:15px;
    margin-bottom:18px;
    color:#444;
    line-height:1.8;
}

.policy-item-list i{
    color:var(--brand-warning);
    font-size:20px;
    flex-shrink:0;
}

@media(max-width:768px){

.project-security-section{

    padding:70px 0;

}

.security-content{

    padding:25px;

}

.security-content p{

    font-size:15px;

    text-align:left;

}

}


/* PROJECTS EXECUTED */

.projects-executed-section{
    padding: 90px 0;
}

.projects-card{

    background:#fff;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    border:1px solid #ececec;

    height:100%;

    display:flex;

    flex-direction:column;

}

.projects-card img{

    width:100%;

    height:260px;

    object-fit:cover;

}

.projects-card-body{

    padding:30px;

    flex:1;

}

.projects-card-body h3{

    font-size:20px;

    font-weight:700;

    color:var(--brand-dark);

    margin-bottom:15px;

    position:relative;

    padding-bottom:12px;

}

.projects-card-body h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    background:var(--brand-warning);

    border-radius:50px;

}

.projects-card-body>p:first-of-type{

    color:#666;

    line-height:1.8;

    margin-bottom:25px;

    text-align:justify;

}

.projects-card-body h5{

    font-size:15px;

    font-weight:700;

    color:var(--brand-dark);

    margin:18px 0 5px;

    display:flex;

    align-items:center;

}

.projects-card-body h5::before{

    content:"";

    width:6px;

    height:6px;

    border-radius:50%;

    background:var(--brand-warning);

    margin-right:10px;

}

.projects-card-body h5+p{

    margin:0;

    color:#555;

    font-size:15px;

}

@media(max-width:991px){

.projects-card img{

    height:230px;

}

.projects-card-body{

    padding:25px;

}

}

@media(max-width:576px){

.projects-executed-section{

    padding:70px 0;

}

.projects-card img{

    height:210px;

}

.projects-card-body{

    padding:20px;

}

.projects-card-body h3{

    font-size:18px;

}

.projects-card-body p{

    font-size:14px;

}

}

.project-image{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.10);

}

.project-image img{

    width:100%;

    height: 500px;

    object-fit:cover;

    display:block;

}

/*======================================
        CIVIL WORKS
======================================*/

.civil-works-section{

    padding:90px 0;

    background:#fff;

}

.civil-works-section .row{

    margin-bottom:90px;

}

.civil-works-section .row:last-child{

    margin-bottom:0;

}

/* Image */

.civil-work-image{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}


.civil-work-image img{

    width:100%;

    height:450px;

    object-fit:cover;

    display:block;

}

.civil-work-body h3{

    font-size:34px;

    font-weight:700;

    color:var(--brand-dark);

    margin-bottom:25px;

    position:relative;

    padding-bottom:15px;

}

.civil-work-body h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:70px;

    height:4px;

    background:var(--brand-warning);

    border-radius:50px;

}

.civil-work-body p{

    color:#555;

    line-height:1.9;

    font-size:16px;

    text-align:justify;

    margin-bottom:18px;

}

/* List */

.civil-list{

    list-style:none;

    padding:0;

    margin:0;

}

.civil-list li{

    display:flex;

    align-items:flex-start;

    gap:12px;

    padding:5px 0;

    color:#555;

}

.civil-list li:last-child{

    border-bottom:none;

}

.civil-list li i{

    color:var(--brand-warning);

    font-size:18px;

    margin-top:3px;

    flex-shrink:0;

}


.mechanical-works-section{

    padding:90px 0;

    background:#fff;

}


.mechanical-body-heading h2{

    font-size:52px;

    font-weight:800;

    line-height:1.15;

    color:var(--brand-dark);

    margin-bottom:22px;

}

.mechanical-body-heading h2 span{

    color:var(--brand-warning);

}

.mechanical-body-heading p{

    font-size:17px;

    color:#666;

    line-height:1.9;

    margin-bottom:35px;

    max-width:600px;

}



@media(max-width:991px){

.mechanical-works-section{

    padding:70px 0;

}

.mechanical-body-heading{

    text-align:center;

}

.mechanical-body-heading h2{

    font-size:40px;

}

.heading-features{

    justify-content:center;

}

}

@media(max-width:576px){

.mechanical-body-heading h2{

    font-size:32px;

}

.mechanical-body-heading p{

    font-size:15px;

}


}


/*====================================
    MECHANICAL PROJECTS
====================================*/

.mechanical-projects-cards{

    padding:90px 0;

    background:#f8fafc;

}

.mechanical-project-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    height:100%;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    /* transition:.35s ease; */

}

.mechanical-project-image{

    overflow:hidden;

}

.mechanical-project-image img{

    width:100%;

    height:250px;

    object-fit:cover;

    /* transition:.6s; */

}

.mechanical-project-card-body{

    padding:28px;

}

.mechanical-project-card-body h3{

    font-size:24px;

    font-weight:700;

    color:var(--brand-dark);

    margin-bottom:18px;

    position:relative;

    padding-bottom:12px;

}

.mechanical-project-card-body h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    border-radius:50px;

    background:var(--brand-warning);

}

.mechanical-project-card-body p{

    color:#666;

    line-height:1.85;

    font-size:15px;

    text-align:justify;

    margin-bottom:15px;

}

/* .mechanical-project-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.12);

}

.mechanical-project-card:hover img{

    transform:scale(1.08);

} */

@media(max-width:991px){

.mechanical-project-image img{

    height:220px;

}

}

@media(max-width:576px){

.mechanical-projects-cards{

    padding:70px 0;

}

.mechanical-project-card-body{

    padding:22px;

}

.mechanical-project-card-body h3{

    font-size:20px;

}

.mechanical-project-image img{

    height:200px;

}

}


/*====================================
        BRANDING WORKS
====================================*/

.branding-works{

    padding:90px 0;

    background:#f8fafc;

}

.branding-image{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:16px;

    padding:20px;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 8px 25px rgba(0,0,0,.05);

}

.branding-image img{

    width:100%;

    height:220px;

    object-fit:contain;

    display:block;

}

/* Tablet */

@media(max-width:991px){

.branding-works{

    padding:70px 0;

}

.branding-image{

    padding:18px;

}

.branding-image img{

    height:180px;

}

}

/* Mobile */

@media(max-width:576px){

.branding-image{

    padding:15px;

    border-radius:12px;

}

.branding-image img{

    height:150px;

}

}


.facilities-details-section{
    padding:90px 0;
    background:#f8fafc;
}

.section-heading{
    max-width:700px;
    margin:auto;
}

.section-heading h2{
    font-size:42px;
    font-weight:700;
    color:var(--brand-dark);
    margin:15px 0;
}

.section-heading p{
    color:#666;
    line-height:1.8;
}

.facility-box{
    background:#fff;
    border:1px solid #ececec;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.facility-box i{
    font-size:42px;
    color:var(--brand-warning);
    margin-bottom:20px;
}

.facility-box h5{
    font-size:20px;
    font-weight:700;
    color:var(--brand-dark);
    margin-bottom:10px;
}

.facility-box span{
    color:#666;
    font-size:17px;
    font-weight:500;
}

@media(max-width:991px){

    .facilities-details-section{
        padding:70px 0;
    }

    .section-heading h2{
        font-size:34px;
    }

}

@media(max-width:576px){

    .section-heading h2{
        font-size:28px;
    }

    .facility-box{
        padding:28px 20px;
    }

}


/*====================================
        FACILITIES GALLERY
====================================*/

.facilities-photos{

    background:#f8fafc;

}

.facility-image{

    background:#fff;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    height:100%;

}

.facility-image img{

    width:100%;

    height:260px;

    object-fit:cover;

    display:block;

}

/* Tablet */

@media(max-width:991px){

.facilities-photos{

    padding:70px 0;

}

.facility-image img{

    height:220px;

}

}

/* Mobile */

@media(max-width:576px){

.facilities-photos{

    padding:60px 0;

}

.facility-image{

    border-radius:14px;

}

.facility-image img{

    height:180px;

}

}


/*====================================
        CAREERS
====================================*/

.careers-details-section{

    padding:90px 0;

    background:#f8fafc;

}

.careers-card{

    background:#fff;

    border:1px solid #e9ecef;

    border-radius:18px;

    padding:35px;

    height:100%;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

}

.careers-card h5{

    font-size:28px;

    font-weight:700;

    color:var(--brand-dark);

    margin-bottom:20px;

    position:relative;

    padding-bottom:12px;

}

.careers-card h5::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:60px;

    height:3px;

    background:var(--brand-warning);

    border-radius:50px;

}

.careers-card p{

    color:#666;

    line-height:1.8;

    margin-bottom:18px;

}

.careers-card span{

    display:block;

    font-size:17px;

    font-weight:700;

    color:var(--brand-dark);

    margin-bottom:12px;

    text-transform:uppercase;

    letter-spacing:.5px;

}

.careers-card ul{

    list-style:none;

    padding:0;

    margin:0 0 25px;

}

.careers-card ul li{

    display:flex;

    align-items:flex-start;

    gap:10px;

    margin-bottom:12px;

    color:#555;

    line-height:1.7;

}

.careers-card ul li i{

    color:var(--brand-warning);

    font-size:16px;

    margin-top:4px;

}

.job-email{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:12px 18px;

    border-radius:10px;

    background:#fff8eb;

    color:var(--brand-dark);

    font-weight:600;

    text-decoration:none;

    word-break:break-all;

}

.job-email i{

    color:var(--brand-warning);

    font-size:18px;

}

@media(max-width:991px){

    .careers-details-section{

        padding:70px 0;

    }

    .careers-card{

        padding:28px;

    }

}

@media(max-width:576px){

    .careers-card{

        padding:22px;

    }

    .careers-card h5{

        font-size:24px;

    }

}

/*====================================
        BROCHURE SECTION
====================================*/

.brochure-section{

    padding:90px 0;

    background:#f8fafc;

}

.brochure-link{

    text-decoration:none;

}

.brochure-card{

    position:relative;

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    border:1px solid #ececec;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.35s ease;

    height:100%;

}

.brochure-card img{

    width:100%;

    height:420px;

    object-fit:cover;

    transition:.5s;

}

.brochure-body{

    padding:22px;

    text-align:center;

}

.brochure-body h5{

    margin:0;

    font-size:22px;

    font-weight:700;

    color:var(--brand-dark);

}

.brochure-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    color:#fff;

    opacity:0;

    transition:.35s;

}

.brochure-overlay i{

    font-size:60px;

    margin-bottom:15px;

    color:#ff3b30;

}

.brochure-overlay span{

    font-size:18px;

    font-weight:600;

}

.brochure-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.brochure-card:hover img{

    transform:scale(1.05);

}

.brochure-card:hover .brochure-overlay{

    opacity:1;

}

/* Responsive */

@media(max-width:991px){

.brochure-section{

    padding:70px 0;

}

.brochure-card img{

    height:360px;

}

}

@media(max-width:576px){

.brochure-section{

    padding:60px 0;

}

.brochure-card img{

    height:300px;

}

.brochure-body{

    padding:18px;

}

.brochure-body h5{

    font-size:20px;

}

.brochure-overlay i{

    font-size:50px;

}

}

/*==============================
      Facility Showcase
==============================*/

.facility-showcase{

    padding:100px 0;

    background:transparent;

}

.facility-content h2{

    font-size:42px;

    font-weight:700;

    margin:20px 0;

    color:var(--brand-warning);

}

.facility-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:18px;

}


/*==============================
        Bento Grid
==============================*/

.bento-gallery{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    grid-auto-rows:170px;

    gap:18px;

}

.bento-item{

    overflow:hidden;

    border-radius:18px;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.bento-item img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

/* Hover */

.bento-item:hover img{

    transform:scale(1.08);

}


/* Different Sizes */

.large{

    grid-column:span 2;

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}


/* Tablet */

@media(max-width:991px){

.facility-showcase{

    padding:80px 0;

}

.facility-content{

    text-align:center;

}

.facility-content h2{

    font-size:34px;

}

.bento-gallery{

    margin-top:30px;

}

}


/* Mobile */

@media(max-width:767px){

.bento-gallery{

    grid-template-columns:repeat(2,1fr);

    grid-auto-rows:150px;

}

.large{

    grid-column:span 2;

    grid-row:span 2;

}

.wide{

    grid-column:span 2;

}

}


/* Small Mobile */

@media(max-width:576px){

.facility-showcase{

    padding:60px 0;

}

.facility-content h2{

    font-size:28px;

}

.bento-gallery{

    grid-template-columns:1fr;

    grid-auto-rows:240px;

}

.large,

.wide{

    grid-column:span 1;

    grid-row:span 1;

}

}

/*======================================
    COMPLETED PROJECTS
======================================*/

.completed-projects-section{

    padding:100px 0;

}

.country-project-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    height:100%;

    border:1px solid #ececec;

    transition:.35s;

}

.country-project-card:hover{

    transform:translateY(-8px);

    border-color:var(--brand-warning);

    box-shadow:0 20px 45px rgba(0,0,0,.08);

}

.country-project-card h3{

    color:var(--brand-warning-dark);

    font-size:28px;

    font-weight:700;

    margin-bottom:25px;

    position:relative;

    padding-bottom:12px;

}

.country-project-card h3::after{

    content:"";

    position:absolute;

    left:0;

    bottom:0;

    width:55px;

    height:3px;

    background:var(--brand-warning);

    border-radius:30px;

}

.country-project-card ul{

    list-style:none;

    margin:0;

    padding:0;

}

.country-project-card ul li{

    position:relative;

    padding-left:28px;

    margin-bottom:14px;

    line-height:1.7;

    color:#555;

}

.country-project-card ul li::before{

    content:"";

    position:absolute;

    left:0;

    top:10px;

    width:10px;

    height:10px;

    border-radius:50%;

    background:var(--brand-warning);

}

/* Responsive */

@media(max-width:991px){

.completed-projects-section{

    padding:80px 0;

}

}

@media(max-width:576px){

.completed-projects-section{

    padding:60px 0;

}

.country-project-card{

    padding:25px;

}

.country-project-card h3{

    font-size:24px;

}

}

.product-section{
    padding:90px 0;
}

.product-section:nth-child(even){
    background:#f8f9fa;
}

.product-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #e9ecef;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.35s;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.product-card img{
    width:100%;
    height:280px;
    object-fit:contain;
    padding:25px;
    display:block;
}

@media(max-width:991px){

.product-section{
    padding:70px 0;
}

.product-card img{
    height:220px;
}

}

@media(max-width:576px){

.product-card img{
    height:180px;
    padding:18px;
}

}


/*==========================
      CLIENTS SECTION
===========================*/

.clients-section{

    padding:90px 0;

    background:#f8f9fb;

    overflow:hidden;

}

.client-slider{

    position:relative;

    /* overflow:hidden; */

    width:100%;

}

.client-track{

    display:flex;

    align-items:center;

    width:max-content;

    animation:scrollClients 30s linear infinite;

}

.client-slider:hover .client-track{

    animation-play-state:paused;

}

.client-logo{

    width:220px;

    height:130px;

    margin:0 18px;

    background:#fff;

    border-radius:18px;

    display:flex;

    align-items:center;

    justify-content:center;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

    border:1px solid #ececec;

    transition:.35s;

}

.client-logo img{

    max-width:140px;

    max-height:70px;

    object-fit:contain;

    /* filter:grayscale(100%); */

    opacity:.7;

    transition:.35s;

}

.client-logo:hover{

    transform:translateY(-8px);

    border-color:var(--brand-warning);

    box-shadow:0 18px 45px rgba(0,0,0,.12);

}

.client-logo:hover img{

    filter:none;

    opacity:1;

    transform:scale(1.05);

}

@keyframes scrollClients{

    from{

        transform:translateX(0);

    }

    to{

        transform:translateX(-50%);

    }

}

/* Responsive */

@media(max-width:768px){

.client-logo{

    width:170px;

    height:100px;

    margin:0 10px;

}

.client-logo img{

    max-width:100px;

    max-height:55px;

}

.client-track{

    animation-duration:30s;

}

}

/*=====================================
      Functional Areas
======================================*/

.functional-areas-section{

    padding:90px 0;

    background:#fff;

}

.functional-image{

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.functional-image img{

    width:100%;

    height:520px;

    object-fit:cover;

    transition:.5s;

}

.functional-image:hover img{

    transform:scale(1.05);

}

.functional-list{

    list-style:none;

    margin:0;

    padding:0;

}

.functional-list li{

    display:flex;

    align-items:flex-start;

    gap:14px;

    margin-bottom:18px;

    font-size:16px;

    font-weight:500;

    color:#444;

    line-height:1.7;

}

.functional-list li i{

    color:var(--brand-warning);

    font-size:20px;

    margin-top:2px;

    flex-shrink:0;

}

@media(max-width:991px){

    .functional-areas-section{

        padding:70px 0;

    }

    .functional-image img{

        height:350px;

    }

}

/*=========================
        SERVICES
=========================*/

.services-section{
    padding:100px 0;
    background:#f8f9fb;
}

.service-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    height:100%;
    border:1px solid rgba(0,0,0,.06);
    transition:.4s;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 50px rgba(0,0,0,.12);
}

.service-image{
    overflow:hidden;
    height:260px;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.6s;
}

.service-card:hover .service-image img{
    transform:scale(1.08);
}

.service-content{
    padding:30px;
}

.service-content h3{
    font-size:1.45rem;
    font-weight:700;
    margin-bottom:15px;
    color:var(--brand-dark);
}

.service-content p{
    color:#666;
    line-height:1.8;
    margin-bottom:25px;
}

.service-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    text-decoration:none;
    color:var(--brand-warning-dark);
    font-weight:600;
    transition:.3s;
}

.service-btn i{
    transition:.3s;
}

.service-btn:hover{
    color:var(--brand-warning);
}

.service-btn:hover i{
    transform:translateX(6px);
}

/* Button */

.theme-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:15px 34px;
    border-radius:50px;
    background:var(--brand-warning);
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:.35s;
}

.theme-btn:hover{
    background:var(--brand-warning-dark);
    color:#fff;
    transform:translateY(-3px);
}

/* Responsive */

@media(max-width:991px){

    .services-section{
        padding:80px 0;
    }

    .service-image{
        height:230px;
    }

}

@media(max-width:767px){

    .service-image{
        height:210px;
    }

    .service-content{
        padding:24px;
    }

    .service-content h3{
        font-size:1.3rem;
    }

}

/*==========================
        WHY US
==========================*/

.why-us-section{
    padding:100px 0;
    background:#fff;
}

.why-us-image{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
}

.why-us-image img{
    width:100%;
    height:100%;
    display:block;
    object-fit:cover;
    transition:.5s;
}

.why-us-image:hover img{
    transform:scale(1.05);
}

.why-us-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

.why-point{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 18px;
    background:#fff;
    border:1px solid #ececec;
    border-radius:12px;
    transition:.35s;
}

.why-point i{
    font-size:22px;
    color:var(--brand-warning);
}

.why-point span{
    font-weight:600;
    color:var(--brand-dark);
}

.why-point:hover{
    border-color:var(--brand-warning);
    transform:translateY(-4px);
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

/* Responsive */

@media(max-width:991px){

    .why-us-section{
        padding:80px 0;
    }

    .why-us-image{
        margin-bottom:20px;
    }

}

@media(max-width:767px){

    .why-point{
        padding:12px 15px;
    }

    .why-point span{
        font-size:15px;
    }

}

.mission-vision-section{
    padding:100px 0;
}

.mv-image img{
    width:100%;
    border-radius:20px;
    display:block;
}

.mv-card{
    background:#fff;
    border:1px solid #e9e9e9;
    border-radius:16px;
    padding:25px;
    margin-bottom:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.mv-title{
    display:flex;
    align-items:center;
    gap:15px;
    margin-bottom:15px;
}

.mv-title img{
    width:42px;
}

.mv-title h3{
    margin:0;
}

.mv-card p{
    margin:0;
    text-align:justify;
    line-height:1.8;
}

@media (max-width:991px){

    .mission-vision-section{
        padding:70px 0;
    }

    .mv-image{
        margin-bottom:30px;
    }

}

@media (max-width:576px){

    .mv-card{
        padding:20px;
    }

    .mv-title img{
        width:34px;
    }

    .mv-title h3{
        font-size:1.25rem;
    }

}

/*==================================================
  CHAIRMAN SECTION
==================================================*/

.chairman-section{
    padding:100px 0;
    background:#fff;
}

.chairman-image{
    position:relative;
    overflow:hidden;
    border-radius:24px;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.chairman-image img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
    transition:.5s;
}

.chairman-image:hover img{
    transform:scale(1.04);
}

/* Decorative Border */

.chairman-image::before{
    content:"";
    position:absolute;
    top:18px;
    left:18px;
    right:18px;
    bottom:18px;
    border:2px solid rgba(255,255,255,.35);
    border-radius:18px;
    z-index:2;
    pointer-events:none;
}

/* Heading */

.chairman-section .section-title{
    font-size:2.6rem;
    font-weight:700;
    margin-bottom:30px;
    color:var(--brand-dark);
}

.chairman-section p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    text-align:justify;
}

.chairman-name{
    margin-top:40px;
    padding-top:25px;
    border-top:1px solid rgba(0,0,0,.08);
}

.chairman-name h5{
    font-weight:700;
    color:var(--brand-dark);
    margin-bottom:5px;
}

.chairman-name span{
    color:var(--brand-warning);
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    font-size:.9rem;
}

/* Responsive */

@media(max-width:991px){

    .chairman-section{
        padding:70px 0;
    }

    .chairman-image img{
        height:420px;
    }

    .chairman-section .section-title{
        font-size:2rem;
        margin-top:30px;
    }

}

.bench-gallery-section{
    padding:90px 0;
}

.gallery-block{
    margin-bottom:50px;
}

.gallery-banner{
    width:100%;
    display:block;
    border-radius:20px;
    border:6px solid var(--brand-warning);
}

.gallery-img{
    width:100%;
    display:block;
    object-fit:cover;
    border-radius:18px;
}

.h-450{
    height:450px;
}

.h-400{
    height:400px;
}

.h-350{
    height:350px;
}

.h-300{
    height:300px;
}

/* Mobile */

@media(max-width:991px){

    .bench-gallery-section{
        padding:60px 0;
    }

    .gallery-block{
        margin-bottom:30px;
    }

    .gallery-banner{
        border-width:3px;
        border-radius:12px;
    }

    .gallery-img{

        height:auto !important;

        min-height:220px;

        border-radius:12px;

    }

}

.catalog-section{
    padding:90px 0;
    background:#fff;
}

.catalog-block{
    margin-bottom:90px;
}

.catalog-block:last-child{
    margin-bottom:0;
}

.catalog-img,
.catalog-banner{

    width:100%;
    display:block;
    border-radius:20px;
    background:#fff;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;

}

.catalog-img:hover,
.catalog-banner:hover{

    transform:translateY(-8px);
    box-shadow:0 22px 55px rgba(0,0,0,.15);

}

.catalog-banner{

    margin-top:40px;

}

.catalog-block .section-heading{

    margin-bottom:45px;

}

.catalog-block .section-heading h2{

    font-size:2rem;
    font-weight:700;
    color:var(--brand-dark);

}

.catalog-block .section-tag{

    margin-bottom:12px;

}

/* Responsive */

@media(max-width:991px){

.catalog-section{

    padding:70px 0;

}

.catalog-block{

    margin-bottom:70px;

}

.catalog-banner{

    margin-top:25px;

}

.catalog-block .section-heading{

    margin-bottom:30px;

}

.catalog-block .section-heading h2{

    font-size:1.6rem;

}

}


/*==========================
CARPET PAGE
===========================*/

.carpet-intro{
    background:#fff;
}

.carpet-info-card{

    margin-top:40px;

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;
}

.info-item{

    background:#fff;

    border-radius:18px;

    padding:35px;

    border:1px solid #ececec;

    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.info-item h5{

    color:var(--brand-warning-dark);

    font-weight:700;

    margin-bottom:15px;
}

.info-item p{

    margin:0;

    line-height:1.8;

    color:#666;
}


/*==========================
SHOWCASE
===========================*/

.carpet-showcase{

    padding:90px 0;
}

.carpet-main-image{

    overflow:hidden;

    border-radius:20px;

    background:#fff;

    box-shadow:0 18px 45px rgba(0,0,0,.08);
}

.carpet-main-image img{

    width:100%;

    display:block;
}

.carpet-card{

    overflow:hidden;

    border-radius:18px;

    background:#fff;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;
}

.carpet-card img{

    width:100%;

    display:block;
}

.carpet-card.vertical img{

    height:500px;

    object-fit:contain;

    padding:20px;
}

.carpet-card:hover{

    transform:translateY(-8px);

    box-shadow:0 25px 45px rgba(0,0,0,.12);
}


/*==========================
Responsive
===========================*/

@media(max-width:991px){

.carpet-showcase{

padding:70px 0;

}

.carpet-info-card{

grid-template-columns:1fr;

}

.carpet-card.vertical img{

height:320px;

}

}

@media(max-width:576px){

.carpet-showcase{

padding:50px 0;

}

.carpet-card.vertical img{

height:240px;

}

.info-item{

padding:25px;

}

}

.wallpaper-section{
    padding:90px 0;
}

.product-title{
    font-size:48px;
    font-weight:700;
    color:#682b08;
}

.product-title span{
    display:block;
    font-size:28px;
    margin-top:10px;
}

.product-subtitle{
    font-size:20px;
    color:#555;
    max-width:800px;
    margin:20px auto 40px;
}

.catalog-btn{
    display:inline-block;
    padding:14px 34px;
    background:#682b08;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.35s;
    font-weight:600;
}

.catalog-btn:hover{
    background:#8d3d12;
    color:#fff;
    transform:translateY(-3px);
}

.section-heading{
    color:#682b08;
    font-size:34px;
    font-weight:700;
    margin-bottom:45px;
}

.wallpaper-main{
    width:100%;
    border-radius:20px;
}

.wallpaper-thumb{
    width:100%;
    height:170px;
    object-fit:cover;
    border-radius:15px;
}

.premium-img{
    width:100%;
    height:200px;
    object-fit:cover;
    border-radius:15px;
}

.embo-center{
    width:100%;
    height:800px;
    object-fit:contain;
}

.wallpaper-section img{
    border-radius:16px;
    transition:.4s;
}

.wallpaper-section img:hover{
    transform:scale(1.03);
}

@media(max-width:991px){

.wallpaper-section{
padding:70px 0;
}

.product-title{
font-size:34px;
}

.product-title span{
font-size:22px;
}

.product-subtitle{
font-size:16px;
}

.section-heading{
font-size:28px;
text-align:center;
}

.wallpaper-thumb,
.premium-img{
height:auto;
}

.embo-center{
height:auto;
}

}

/* ---------- Product Section ---------- */

.product-section{
    padding:80px 0;
}

.section-heading{
    font-family:'Open Sans',sans-serif;
    font-weight:600;
    color:#682b08;
    margin-bottom:40px;
}

.product-main-img,
.thumb-img,
.marble-img{
    width:100%;
    display:block;
    border-radius:12px;
    transition:.35s;
}

.product-main-img:hover,
.thumb-img:hover,
.marble-img:hover{
    transform:scale(1.02);
}

.marble-img{
    height:220px;
    object-fit:cover;
}

/* Mobile */

@media(max-width:991px){

    .product-section{
        padding:60px 0;
    }

    .section-heading{
        text-align:center;
        margin-bottom:30px;
        font-size:28px;
    }

    .marble-img{
        height:auto;
    }

}

@media(max-width:576px){

    .product-section{
        padding:45px 0;
    }

    .section-heading{
        font-size:24px;
    }

}

.section-space{
    padding:80px 0;
}

.section-heading{
    color:#682b08;
    font-family:'Open Sans',sans-serif;
    font-weight:600;
    margin-bottom:40px;
}

.gallery-img{
    width:100%;
    border-radius:15px;
    transition:.35s;
}

.gallery-img:hover{
    transform:scale(1.03);
    box-shadow:0 12px 30px rgba(0,0,0,.15);
}

.gallery-small{
    height:160px;
    object-fit:cover;
}

.gallery-medium{
    height:250px;
    object-fit:cover;
}

.gallery-large{
    height:500px;
    object-fit:contain;
}

@media (max-width:991px){

    .section-space{
        padding:60px 0;
    }

    .gallery-small,
    .gallery-medium,
    .gallery-large{
        height:auto;
    }

    .section-heading{
        text-align:center;
        font-size:28px;
    }
}

@media (max-width:576px){

    .section-space{
        padding:40px 0;
    }

    .section-heading{
        font-size:24px;
    }
}