
/* ========================================================================= */
/*  Global Styles
   Description: Base styles, CSS variables, and resets for the entire site
*/
/* ========================================================================= */
:root {
    --theme-color: #A00109;
    --secondary: #3297FF; 
    --white: #ffffff; 
    --text: #555555; 
    --shadow: 0 7px 16px rgba(28, 37, 38, 0.2);
    --transition: all 0.3s ease; 
    --section-padding: 50px; 
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
}

/* ========================================================================= */
/* Common Styles
   Description: Shared styles for typography, buttons, and utility classes
*/
/* ========================================================================= */

/* Section Padding */
.section {
    padding: var(--section-padding) 0;
}

/* Links and Buttons */
a, button {
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
}

p{
    position: relative;
    font-size: 16px;
    color: var(--text);
}
.text-uppercase { text-transform: uppercase; }

/* Utility Classes */
.visible-xs { display: none!important; }
.hidden-xs { display: block; }
.text-uppercase { text-transform: uppercase; }

/* Typography */
.title {
    font-size: 30px;
    line-height: 1.3;
    color: var(--secondary);
    font-weight: 700;
    text-shadow: var(--shadow);
}

.sub_title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.5;
    color: var(--secondary);
    position: relative;
}

.sub_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--theme-color);
    margin-top: 10px;
}

/* Button Styles */
.btn {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 26px;
    font-family: 'Barlow', sans-serif;
    font-weight: 700;
    color: #fff !important;
    text-align: center;
    padding: 17px 37px;
    text-transform: uppercase;
    z-index: 1;
    transition: all 500ms ease;
    text-align: center;
}

.btn-solid {
    background: var(--theme-color);
    color: var(--white);
    border: none;
    text-align: center;
}

.btn-solid:hover, .btn-solid:focus {
    background: var(--theme-color); 
    color: var(--white);
}

.btn-outline {
    text-align: center;
    background: transparent;
    color: var(--theme-color)!important;
    border: 2px solid var(--theme-color);
}

.btn-outline:hover, .btn-outline:focus {
    background: var(--theme-color);
    color: var(--white)!important;
}

.group-buttons {
    gap: 20px;
    justify-content: center;
}



/* ========================================================================= */
/* Header
   Description: Styles for the site header, including top bar, navigation, and logo
*/
/* ========================================================================= */
.header {
    width: 100%;
    box-shadow: var(--shadow);
    background: var(--white);
}



/* Top Header Bar */
.top_header {
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid #dddddd;
    width: 100%;
}

.header-contact-info p,
.header-opening-tile p {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    font-size: 19px;
}

.header-contact-info i,
.header-opening-tile i {
    color: var(--theme-color);
}

.header-contact-info a {
    color: var(--theme-color);
    text-decoration: none;
}

.header-contact-info a:hover {
    color: var(--theme-color);
}

.social-icons a {
    color: var(--text);
    margin-left: 10px;
    font-size: 15px;
}

.social-icons a:hover {
    color: var(--theme-color);
}

/* Main Navigation */
.nav_header {
    padding: 15px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    width: 100%;
    height: 70px;
}

.nav_menu {
    display: flex;
    gap: 35px;
    list-style: none;
    margin: 0;
    justify-content: center;
}

.nav_menu a {
    font-weight: 500;
    text-align: center;
    font-size: 18px;
    line-height: 30px;
    opacity: 1;
    color: var(--text);
    z-index: 1;
    text-transform: uppercase;
}

.nav_menu a:hover {
    color: var(--theme-color);
}

.book-button a.btn {
    padding: 10px 10px;
    font-size: 13px;
    background: var(--theme-color);
    color: var(--white) !important;
    border: none;

}

.book-button a.btn i {
    font-size: 14px;
}

.book-button a.btn:hover {
    background: var(--theme-color);
}

/* ========================================================================= */
/*  Hero Section
   Description: Full-screen banner with image, overlay, and centered content
   Dependencies: Owl Carousel for slider functionality
*/
/* ========================================================================= */
.hero_section {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 88vh;
    min-height: 500px;
}

.hero_section .owl-carousel .item {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero_section .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero_section .item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: absolute;
    top: 55%;
    left: 12%;
    transform: translateY(-50%);
    text-align: left;
    color: var(--white);
    max-width: 800px;
    padding: 0 15px;
    z-index: 5;
}



.hero-content p {
    font-size: 18px;
    margin: 15px 0 30px;
    color: var(--white);
}



/* Service Form Styles */
.service-form {
    background: var(--white);
    padding: var(--section-padding);
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 1250px;
    position: relative;
    z-index: 1;
    margin-top: -100px;

}

.form-inner {
    margin-top: 20px;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 12px;
    font-size: 14px;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    border-color: var(--theme-color);
    box-shadow: 0 0 5px rgba(243, 104, 39, 0.3);
    outline: none;
}

.form-control.wide {
    flex: 1; 
}

.form-inner .btn-solid {
    padding: 12px 20px;
    font-size: 14px;
    height: 100%; 
    white-space: nowrap; 
}

.service-form .title-inner .text h2 {
    position: relative;
    display: inline-block;
    font-size: 36px;
    line-height: 44px;
    color: #222;
    font-weight: 600;
    margin-bottom: 2px;
}

.service-form .title-inner .text p {
    position: relative;
    font-family: 'Barlow', sans-serif;
    color: #555555;
    font-weight: 400;
    margin: 0px;
    transition: all 500ms ease;
}


.link a{
    border: 1px dashed #f36827;
    position: relative;
    display: inline-block;
    font-size: 16px;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 17.5px;
    text-align: center;
}
/* ========================================================================= */
/* Process Section css */
/* ========================================================================= */
.process-item {
    text-align: center;
    position: relative;
    margin-bottom: 32px;
    border-left: 2px solid #f36827;
    padding: 0 50px 0 60px;
    transition: all 500ms ease;
    min-height: 200px;
    height: auto; 
}

/* Icon Circle */
.icon-circle {
    border: 2px dashed var(--theme-color);
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px 20px; 
    transition: var(--transition);
}

.icon-circle i {
    display: inline-block;
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 48px;
    color: var(--white);
    background: var(--secondary);
    border-radius: 50%;
    transition: var(--transition);
}

.icon-circle:hover {
    border-color: var(--secondary);
}

.icon-circle:hover i {
    background: var(--theme-color);
}

.process-title {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text);
    text-align: justify;
}

.process-item p {
    font-size: clamp(14px, 2vw, 16px);
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

.read_more {
    position: absolute;
    bottom: 0;
    left: 24%;
    transform: translateX(-50%); 
    opacity: 0;
    visibility: hidden;
    transition: all 500ms ease;
}

.read_more a {
    position: relative;
    display: inline-block;
    font-size: 18px;
    line-height: 18px;
    color: #222;
    font-weight: 600;
    border-bottom: 2px solid #f36827;
    text-decoration: none;
}

/* Hover Effect */
.process-item:hover .read_more {
    opacity: 1;
    visibility: visible;
    bottom: 10px; 
}

.process-item:hover {
    height: auto; 
    padding-bottom: 30px; 
}


/* ========================================================================= */
/* Info Section css */
/* ========================================================================= */

.info-section .img-fluid {
    width: 100%;
    max-width: 600px;
    min-height: 500px;
    object-fit: cover;
}

.project-count {
    position: absolute;
    top: 20px;
    left: -30px;
    display: flex;
    gap: 10px;
    background: var(--white);
    width: clamp(250px, 80%, 310px);
    padding: 17px 20px 23px 30px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--theme-color);
    z-index: 10;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-count:hover {
    transform: translateY(-5px);
    box-shadow: 0px 15px 50px 15px rgba(0, 0, 0, 0.15);
}

.project-count .count-number {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--theme-color);
}

.project-count .count-text {
    font-size: clamp(1rem, 3vw, 1.2rem);
    font-weight: 500;
    color: var(--text-primary);
}

.info-text{
    margin-left: 50px;
}

.info-text blockquote {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    font-style: italic;
    color: var(--text-primary);
    background: var(--white);
    border-left: 4px solid var(--theme-color);
    padding: 15px 20px;
    margin: 1.5rem 0;
    box-shadow: var(--shadow);
}

.info-text p {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}


/*we are cover section css*/
.city-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.city-card h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}
.city-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(28, 37, 38, 0.3);
    border-color: var(--theme-color);
}







/* ========================================================================= */
/* Contact Form Section
   Description: Styles for the contact form layout
*/
/* ========================================================================= */

.contact-section {
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

.contact-info {
  background: var(--secondary);
  color: var(--white);
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 400px;
  border-radius: 20px 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

@media only screen and (max-width:767px){
    .contact-info {
      padding: 15px;
      max-width: 96%;
  }
}

.contact-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-info p {
  font-size: 1rem;
  margin: 0.25rem 0;
  line-height: 1.5;
  color: var(--white);
}

.contact-info .phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-info .phone i {
  font-size: 1.25rem;
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  flex: 2 1 400px;
  max-width: 600px;
  border-radius: 0 20px 20px 0;
  box-shadow: var(--shadow);
}

@media only screen and (max-width:767px){
    .contact-form {
        padding: 15px;
        max-width: 96%;
        margin-bottom: 35px;
    }
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-color);
  margin-bottom: 0.25rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
  transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--theme-color);
}

.contact-form input:invalid[required]:focus,
.contact-form textarea:invalid[required]:focus {
  border-color: #dc3545; 
}

.contact-form textarea {
  min-height: 80px;
  resize: vertical;
}


/* Footer Section */
.footer-section {
  background: var(--secondary);
  color: var(--white);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-section .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0 1rem;
}

.footer-content h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: justify;
}

@media only screen and (max-width:767px) {
    .footer-content h3 {
        font-size: 20px;
    }
}

.footer-content p {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--white);
}



.social-links {
  display: flex;
  list-style: none;
  padding: 0;
}

.social-links a {
  color: var(--white);
  font-size: 1.5rem;
  padding: 0.5rem;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--theme-color);
}


/*scroll back to top*/
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--theme-color); 
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary); 
    transform: translateY(-5px);
}






/* Mobile Menu */
.mobile-menu {
    position: sticky;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--theme-color); 
    backdrop-filter: blur(10px); 
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(191, 142, 71, 0.2); 
    justify-content: space-around; 
    align-items: center;
    padding: 4px 0px;
}

.mobile-menu a {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 23%;
    padding: 3px 0 !important;
    border-radius: 15px;
    position: relative;
    color: var(--white); 
    text-decoration: none;
    font-size: 10px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.mobile-menu a i {
    font-size: 28px;
    margin-bottom: 8px;
    color: var(--white); 
    text-shadow: 0 0 10px rgba(191, 142, 71, 0.5); 
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}

.mobile-menu a span {
    font-size: 11px;
    font-weight: 500;
    color: var(--white); 
    text-shadow: 0 0 5px rgba(21, 30, 36, 0.3);
    transition: color 0.3s ease;
}

.mobile-menu {
    animation: slideUp 0.5s ease-out forwards;
}

@keyframes slideUp {
    0% { transform: translateY(100%); }
    100% { transform: translateY(0); }
}


.offcanvas {
    width: 100%;
    background-color: var(--white);
    box-shadow: var(--shadow);
}

.offcanvas-header {
    background-color: var(--secondary);
    color: var(--white);
    padding: 1.5rem;
}

.offcanvas-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-close-custom {
    color: var(--white);
    opacity: 1;
    font-size: 1.25rem;
    transition: var(--transition);
}

.btn-close-custom:hover {
    color: var(--theme-color);
}

.offcanvas-nav .nav-list-mb {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offcanvas-nav .nav-link {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text);
    font-size: 1.1rem;
    font-weight: 500;
    transition: var(--transition);
    text-decoration: none;
}

.offcanvas-nav .nav-link i {
    margin-right: 0.75rem;
    font-size: 1.2rem;
    color: var(--theme-color);
}

.offcanvas-nav .nav-link:hover {
    background-color: var(--theme-color);
    color: var(--white);
}

.offcanvas-nav .nav-link:hover i {
    color: var(--white);
}

.offcanvas-footer {
    padding: 1.5rem;
    border-top: 1px solid #dee2e6;
}

.offcanvas-contact-info p {
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.offcanvas-contact-info i {
    margin-right: 0.5rem;
    color: var(--theme-color);
}

.offcanvas-contact-info a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.offcanvas-contact-info a:hover {
    color: var(--theme-color);
    text-decoration: underline;
}

.offcanvas-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.offcanvas-social-links a {
    color: var(--secondary);
    font-size: 1.5rem;
    transition: var(--transition);
}

.offcanvas-social-links a:hover {
    color: var(--theme-color);
}

.navbar-toggler {
    border: none;
    font-size: 1.5rem;
    color: var(--theme-color);
    transition: var(--transition);
}

.navbar-toggler:hover {
    color: var(--secondary);
}



.forft {
    padding: 60px 0;
}

@media only screen and (max-width:767px) {
    .forft {
        padding: 0;
    }
}


.portpd {
    padding: 25px;
}

@media only screen and (max-width:767px) {
    .portpd {
        padding: 15px;
    }
}

.section5 {
    padding: 45px 0px 0px 0px;
}


.video-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding: 0 16px;
}
.video-section-title h1 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: #1a1a1a; 
}
.video-section-title .btn-solid .yt-icon {
  font-size: 1.25rem;
}