   /* =========================
   HERO SECTION
========================= */

.hero_section {
  position: relative;
}

.hero-img {
  height: 100vh;
  /* object-fit: cover; */
}

.hero_overlay {
  position: absolute;
  inset: 0;
  background:linear-gradient(to left,rgba(255, 255, 255, 0.036),rgba(255, 255, 255, 0.036),rgba(32, 59, 109, 0.721),rgb(22, 33, 62));
  z-index: 1;
}

.hero_content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 550px;
}

.sub_heading {
  color: #d89b3c;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero_content h1 {
  font-size: 70px;
  line-height: 1.1;
  font-weight: 700;
  margin: 15px 0;
  font-family: Georgia, serif;
}

.hero_content h1 span {
  color: #d89b3c;
}

.hero_content p {
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero_btns {
  display: flex;
  gap: 15px;
}

.theme_btn {
  display: inline-block;
  background: #d89b3c;
  color: #fff;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  text-decoration: none;
  transition: .3s;
}

.theme_btn:hover {
  background: #b67d28;
  color: #fff;
}

.outline_btn {
  display: inline-block;
  border: 1px solid #d89b3c;
  color: #fff;
  padding: 14px 30px;
  border-radius: 4px;
  text-decoration: none;
  transition: .3s;
}

.outline_btn:hover {
  background: #d89b3c;
  color: #fff;
}


/* =========================
   ABOUT SECTION
========================= */

.modern_about_section {
  padding: 100px 0;
  background: #fff;
}

.about_img img {
  border-radius: 10px;
}

.section_subtitle {
  color: #d89b3c;
  font-weight: 600;
  letter-spacing: 1px;
}

.about_content h2 {
  font-size: 50px;
  font-weight: 700;
  margin: 15px 0 25px;
  color: #16213e;
  font-family: Georgia, serif;
}

.about_content p {
  color: #666;
  line-height: 1.9;
}

.about_features {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 25px;
  margin-top: 40px;
}

.feature_box {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.feature_box i {
  color: #d89b3c;
  font-size: 40px;
  margin-bottom: 10px;
}

.feature_box h5 {
  font-weight: 700;
  margin-bottom: 8px;
}

.feature_box p {
  margin: 0;
  font-size: 14px;
}


/* =========================
   PROJECTS
========================= */

.featured_projects {
  padding: 100px 0;
  background: #f9f9f9;
}

.section_title h2 {
  font-size: 45px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #16213e;
  font-family: Georgia, serif;
}

.project_card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: .3s;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.project_card:hover {
  transform: translateY(-8px);
}

.project_img img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project_content {
  padding: 20px;
}

.project_content h5 {
  font-weight: 700;
  margin-bottom: 5px;
}

.project_content p {
  color: #777;
}


/* =========================
   SERVICES
========================= */

.modern_services {
  padding: 100px 0;
  background: #fff;
}

.service_card {
  background: #fff;
  padding: 40px 25px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: .3s;
  margin-bottom: 30px;
}

.service_card:hover {
  transform: translateY(-10px);
}

.service_icon {
  width: 80px;
  height: 80px;
  background: #16213e;
  color: #d89b3c;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  margin-bottom: 25px;
  font-size: 32px;
}

.service_card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
}

.service_card p {
  color: #666;
  line-height: 1.8;
}

.service_card a {
  color: #d89b3c;
  font-weight: 600;
  text-decoration: none;
}


/* =========================
   STATS
========================= */

.stats_section {
  padding: 80px 0;
  background: #16213e;
}

.stat_box {
  padding: 30px;
}

.stat_box h2 {
  color: #d89b3c;
  font-size: 55px;
  font-weight: 700;
}

.stat_box p {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

  .hero_content h1{
    font-size:50px;
  }

  .about_content{
    margin-top:40px;
  }

}

@media(max-width:768px){

  .hero-img{
    height:90vh;
  }
.feature_box {
  background: #fff;
  padding: 20px;
  width: 45%;
  /* font-size: 16px; */
  /* text-align: center; */
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.feature_box h5{
  font-size: 14px;
}
  .hero_content{
    left:5%;
    right:5%;
  }

  .hero_content h1{
    font-size:42px;
  }

  .hero_btns{
    flex-direction:column;
  }

  .about_features{
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap:wrap;
    /* border: 1px solid #3d3232; */
    width: 100%;
  }

  .section_title h2,
  .about_content h2{
    font-size:35px;
  }
  .stat_box p{
    text-align: center;
  }

}
/* MOBILE RESPONSIVE */

@media(max-width:991px){

    .hero_section{
        min-height:100vh;
    }

    .hero-img{
        height:100vh;
        object-fit:cover;
    }

    .hero_overlay{
        background:linear-gradient(
            to bottom,
            rgba(8,15,30,0.88),
            rgba(18,30,60,0.80),
            rgba(18,30,60,0.55)
        );
    }

    .hero_content{
        width:100%;
        max-width:100%;
        left:0;
        top:55%;
        transform:translateY(-50%);
        padding:0 24px;
        text-align:left;
    }

    .sub_heading{
        font-size:15px;
        letter-spacing:1px;
    }

    .hero_content h1{
        font-size:48px;
        line-height:1.15;
        margin:15px 0;
    }

    .hero_content p{
        font-size:17px;
        line-height:1.8;
        margin-bottom:28px;
    }

    .hero_btns{
        flex-direction:column;
        width:100%;
        gap:14px;
    }

    .theme_btn,
    .outline_btn{
        width:100%;
        text-align:center;
        padding:15px 20px;
    }

}
/* =========================
        NAVBAR
========================= */

.header_section{
    width:100%;
    padding:18px 0;
    position:absolute;
    top:0;
    left:0;
    z-index:999;
    background:rgba(15,20,30,0.35);
    backdrop-filter:blur(5px);
    border-bottom:none;
    
}

.custom_nav-container{
    padding:0 40px;
}

/* LOGO */

.navbar-brand img{
    width:190px;
}

/* NAVBAR MENU */

.navbar-nav{
    gap:22px;
    align-items:center;
    
}

/* MENU DESIGN */

.navbar-nav .nav-link{
    color:#fff !important;
    font-size:16px;
    font-weight:500;
    padding:14px 30px !important;
    background:rgba(40, 45, 60, 0.229);
    transition:0.3s ease;
    letter-spacing:0.5px;
    border-radius: 6px;
}

/* HOVER */

.navbar-nav .nav-link:hover{
    background:#292f43;
    color:#fff ;
}

/* ACTIVE MENU */

.nav-item.active .nav-link{
    background:#292f43;
    color:#fff !important;
}

/* MOBILE TOGGLE */

.navbar-toggler{
    border:none;
    outline:none;
    box-shadow:none;
}

.navbar-toggler i{
    font-size:34px;
    color:#fff;
}

/* MOBILE VIEW */


@media(max-width:991px){

    /* HEADER */

    .header_section{
        background:rgba(10,15,25,0.96);
        padding:12px 0;
    }

    .custom_nav-container{
        padding:0 15px;
    }

    /* LOGO */

    .navbar-brand img{
        width:140px;
    }

    /* TOGGLER */

    .navbar-toggler{
        padding:0;
        margin-left:auto;
    }

    .navbar-toggler i{
        font-size:32px;
        color:#fff;
    }

    /* MOBILE MENU */

    .navbar-collapse{
        margin-top:20px;
        background:rgba(40, 45, 60, 0);
        padding:20px;
        border-radius:8px;
    }

    .navbar-nav{
        width:100%;
        gap:12px;
    }

    .navbar-nav .nav-item{
        width:100%;
    }

    .navbar-nav .nav-link{
        width:100%;
        text-align:center;
        padding:14px 20px !important;
        font-size:15px;
    }
  }
  @media(max-width:576px){

    .hero_content{
        padding:0 18px;
    }

    .hero_content h1{
        font-size:42px;
    }

    .hero_content p{
        font-size:16px;
        line-height:1.7;
    }

}

.info_section {
  background-color: #262939;
  color: #ffffff;
  padding: 160px 0 70px 0;
}

.info_section.innerpage_info_section {
  padding: 50px 0;
}

.info_section h4 {
  margin-bottom: 15px;
}

.info_section .info_contact a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #ffffff;
  margin-bottom: 10px;
}

.info_section .info_contact a i {
  margin-right: 5px;
  width: 25px;
}

.info_section .info_contact a:hover:hover {
  color: #e45441;
}

.info_section .social_box {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.info_section .social_box a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff;
  color: #ffffff;
  margin-right: 10px;
  margin-bottom: 10px;
}

.info_section .social_box a:hover {
  color: #e45441;
  border-color: #e45441;
}

/* footer section*/
.footer_section {
  position: relative;
  text-align: center;
}

.footer_section p {
  color: #000000;
  padding: 25px 0;
  margin: 0;
}

.footer_section p a {
  color: inherit;
}
/*# sourceMappingURL=style.css.map */
