/*--------------------------------------------------------------------- File Name: style.css ---------------------------------------------------------------------*/


/*--------------------------------------------------------------------- import Fonts ---------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Rajdhani:300,400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');
@import url('https://fonts.googleapis.com/css?family=Raleway:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i');

/*--------------------------------------------------------------------- import Files ---------------------------------------------------------------------*/

@import url(font-awesome.min.css);
@import url(owl.carousel.min.css);

/*--------------------------------------------------------------------- basic ---------------------------------------------------------------------*/


html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}



body {
  color: #666666;
  font-size: 14px;
  font-family: 'Raleway', sans-serif;
  line-height: 1.80857;
  font-weight: normal;
}

html {
  scroll-behavior: smooth;
}

a {
  color: #1f1f1f;
  text-decoration: none !important;
  outline: none !important;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  -ms-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
  font-weight: normal;
  position: relative;
  padding: 0;
  font-weight: normal;
  line-height: normal;
  color: #111111;
  margin: 0
}

h1 {
  font-size: 24px
}

h2 {
  font-size: 22px
}

h3 {
  font-size: 18px
}

h4 {
  font-size: 16px
}

h5 {
  font-size: 14px
}

h6 {
  font-size: 13px
}

*,
*::after,
*::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: #212121;
  text-decoration: none !important;
  opacity: 1
}

button:focus {
  outline: none;
}

ul,
li,
ol {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

p {
  margin: 0px;
  padding: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 28px;
}

a {
  color: #222222;
  text-decoration: none;
  outline: none !important;
}

/* section-header */
.section-header {
  position: relative;
  text-align: center;
}

.section-header h2 {
  color: #505866;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1.3px;
}

.section-header h2 span {
  text-transform: lowercase;
}

.section-header p {
  font-size: 16px;
}

/* section-header */
.fix {
  position: relative;
  clear: both;
}

/*=============Style css=========*/


/*-------------------------------------
        2. Header-top
--------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 4rem;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.transparent {
  background-color: rgb(255, 255, 255);
  box-shadow: none;
  /* backdrop-filter: blur(2px); */
}


.logo img {
  width: 40px;
}

nav {
  display: flex;
  gap: 8rem;
  text-transform: uppercase;

}

nav a {
  text-decoration: none;
  color: black;
  /* Default color */
  font-weight: 500;
  padding: 2rem 0rem;
  text-transform: capitalize;
  /* Capitalize text */
  transition: color 0.3s ease;
  /* Smooth transition */
}

nav a:hover {
  color: red;
  /* Hover color */
}


nav a.active {
  color: #ff4c4c;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle div {
  width: 25px;
  height: 3px;
  background-color: #333;
  margin: 4px 0;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    position: absolute;
    right: 20px;
    top: 54px;
    z-index: 1001;
  }

  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 30px 30px;
    gap: 1rem;
    display: none;
    z-index: 1000;
  }

  nav.active {
    display: flex;
  }

  nav a {
    width: 100%;
    font-size: 18px;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .logo img {
    height: 10px;
  }


}




/* HERO SECTION STYLING */
.welcome-hero {
  position: relative;
  background: url(../images/project\ V1.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  margin-top: 10px;
  height: 94vh;
  width: 100vw;
  max-width: 100%;
  overflow-x: hidden;
  z-index: 1;
  transition: transform 1.5s ease;
  transform: scale(1);
  box-sizing: border-box;
}

.welcome-hero.zoomed-in {
  transform: scale(1.1);
}

/* OVERLAY */
.welcome-hero::before {
  position: absolute;
  content: " ";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(65, 73, 89, 0.504);
  z-index: -1;
}

/* TEXT CONTAINER CENTERED */
.welcome-hero-txt {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-align: center;
  margin-top: 250px;
}

/* HEADING */
.welcome-hero-txt h2 {
  font-size: 48px;
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  line-height: 1.4;
  margin: 0;
}

/* PARAGRAPH */
.welcome-hero-txt p {
  font-size: 18px;
  color: #fcfcfc;
  margin-top: 25px;
}

/* BUTTON */
.read-more-wrapper {
  text-align: center;
  margin-top: 15px;
}

.readmore {
  font-size: 14px;
  padding: 8px 16px;
  background-color: #8b1310;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background-color 0.3s, color 0.3s;
}

.readmore:hover {
  background-color: rgba(248, 249, 250, 0.2);
  color: #8b1310;
}

/* MEDIA QUERIES FOR MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  .welcome-hero {
    height: 80vh;
  }

  .welcome-hero-txt h2 {
    font-size: 28px;
    line-height: 1.3;
    letter-spacing: 1px;
    padding: 0 10px;
  }

  .welcome-hero-txt p {
    font-size: 16px;
    margin-top: 15px;
    padding: 0 15px;
  }

  .readmore {
    font-size: 13px;
    padding: 6px 12px;
  }
}




/*ABOUT SECTION*/


/* Top layer positioning */
.top_layer {
  position: relative;
}

/* About section base styles */
.about {
  padding-top: 100px;
  padding-bottom: 100px;
  background-image: url(/images/service_bg.jpg);
}

/* Title styling */
.titlepage {
  padding-bottom: 60px;
  text-align: center;
}

.titlepage h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 46px;
  color: #251d12;
  text-transform: uppercase;
}

.titlepage p {
  font-size: 18px;
  padding-top: 3vh;
  color: #666;
}

/* Outer box for the about section */
/* .about_outer_box {
    background: #fff;
    border-radius: 20px;
    padding: 50px 100px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
} */

.about_row {
  margin-bottom: 40px;
}

.about_text {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.about_text h3 {
  font-size: 28px;
  font-weight: 700;
  color: #251d12;
  margin-bottom: 15px;
}

.about_text p {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
}

.about_icon {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 15px;
}

/* Responsive: Stack vertically on small screens */
@media (max-width: 767.98px) {
  .about_row {
    flex-direction: column;
  }

  .about_text {
    margin-bottom: 30px;
  }
}


@media (min-width: 1200px) {
  .container {
    max-width: 1300px;
    /* default Bootstrap is 1140px */
  }
}



/** end about **/







/** building **/

.building {
  padding-top: 120px;
  /* Reduced from 323px */
  padding-bottom: 100px;
  /* Reduced from 223px */
  background: url(../images/project1.jpg);
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.building::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.286);
  /* shadow overlay */
  z-index: 0;
}

.building>* {
  position: relative;
  z-index: 1;
}





.building .titlepage h2 {
  color: #fff;
}

.building .titlepage p {
  color: #fff;
  line-height: 30px;
  padding-top: 30px;
  display: block;
}

.building .titlepage .yello {
  color: #fe9a0c;
  font-size: 40px;
  line-height: 23px;
  display: block;
  margin-top: 15px;
  margin-bottom: 15px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .building .titlepage .yello {
    font-size: 28px;
    line-height: 20px;
    text-align: center;
    /* Optional: Center text on small screens */
  }
}

@media (max-width: 480px) {
  .building .titlepage .yello {
    font-size: 24px;
    line-height: 18px;
  }
}



/** end building **/


/** services **/

.services_main {
  padding: 90px 0 100px;
  background: url(../images/service_bg.jpg) center center / cover no-repeat;
}

.titlepage h2 {
  font-size: 36px;
  font-weight: bold;
  color: #333;
}

.titlepage span {
  display: block;
  margin-top: 15px;
  color: #0f0f0e;
  font-size: 17px;
  line-height: 23px;
}

.project_card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  height: 100%;
}

.project_card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.icon_wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.icon_wrapper img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.project_card p {
  font-size: 16px;
  color: #333;
  margin: 0;
}

/* Responsive Fixes */
@media (max-width: 767px) {
  .project_card {
    margin-bottom: 20px;
  }
}


/** end services **/


/** instant **/

.instant {
  background: url(../images/service_bg.jpg);
  position: relative;
}

.titlepage {
    text-align: center;
    float: none;
    margin: 0 auto;
}


.estimate-heading {
  font-size: 2.5rem; /* Larger for desktop */
  font-weight: 700;
  text-align: center;
}

@media (max-width: 768px) {
  .estimate-heading {
    font-size: 1.8rem; /* Slightly smaller on mobile */
  }
}

.estimate-heading span {
  display: block;
  margin-top: 15px;
  color: #0f0f0e;
  font-size: 40px;
  line-height: 23px;
}

.line-top {
    font-size: 72px;
    font-weight: 600;
    color: #000;
    line-height: 1.2;
    display: block;
    margin-bottom: 10px;
}


.line-bottom {
    font-size: 100px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    display: block;
    margin-bottom: 20px;
}


.read_more {
         background-color: #ff4c4c;
         color: #fff;
         padding: 10px 20px;
         text-decoration: none;
         border-radius: 5px;
         transition: background-color 0.3s ease;
      }

/* Hover effect */
.instant .titlepage .read_more:hover {
  background: rgba(255, 0, 0, 0.605);
  color: white;
}

.instant_img {
  margin-top: 10px;
  /* z-index: 999; */
  position: relative;
  padding-bottom: 70px;
}

.instant_img figure {
  margin: 0;
}

.instant_img figure img {
  width: 100%;
}

/* -------------------------------
   Responsive Adjustments
---------------------------------*/


/* Mobile Phones */
@media (max-width: 576px) {
  .instant .titlepage .line-top {
    font-size: 32px;
  }

  .instant .titlepage .line-bottom {
    font-size: 42px;
  }

  .instant_img {
    padding-bottom: 40px;
  }
}


/** end instant **/


.footer {
  background: url('../images/background1.png') no-repeat center center;
  background-size: cover;
  width: 100%;
  font-family: 'Rogan', sans-serif;
}

.footer-overlay {
  padding: 10px 0 20px;
  overflow: hidden;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  padding-left: 20px;
  display: inline-block;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background-color: #fff;
  border-radius: 50%;
}

.footer-links a:hover {
  color: #fd990c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .footer .row>div {
    text-align: center;
  }

  .d-flex.justify-content-between {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .footer-overlay {
    padding: 40px 0 10px;
  }
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}