/********** Template CSS **********/
:root {
    --primary: #FDA12B;
    --secondary: #8D9297;
    --light: #F8F9FA;
    --dark: #182333;
}

/* .back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
} */

       .hero1-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(24, 35, 51, 0.75), rgba(24, 35, 51, 0.85)), 
                        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=1920');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            padding: 80px 0;
            overflow: hidden;
        }

        /* Left Side: Carousel */
        .hero-slider .carousel-item {
            background: transparent;
        }

        .hero-slider .tagline {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 0.9rem;
            margin-bottom: 10px;
            display: block;
        }

        .hero-slider h3 {
            color: #fff;
            font-size: clamp(2.5rem, 5vw, 3.8rem);
            font-weight: 700;
            line-height: 1.1;
            font-family: 'Poppins', sans-serif;
            margin-bottom: 20px;
        }

        .hero-slider p {
            color: var(--light);
            font-size: 1.1rem;
            max-width: 500px;
            opacity: 0.9;
        }

        /* Carousel Fade Transition */
        .carousel-fade .carousel-item {
            opacity: 0;
            transition-duration: 0.8s;
            transition-property: opacity;
        }
        .carousel-fade .carousel-item.active {
            opacity: 1;
        }

        /* Right Side: Glassmorphism Form */
      .glass-form {
    background: #fda12b29;
    backdrop-filter: blur(12px);
    /* backdrop-filter: blur(12px); */
    border: 1px solid rgb(253 161 43);
    border-radius: 20px;
    padding: 21px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

        .glass-form h3 {
    color: #fff;
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 19px;
}

        .glass-form p {
            color: var(--primary);
            font-size: 0.9rem;
            margin-bottom: 25px;
        }

        .form-label {
            color: #fff;
            font-weight: 500;
            font-size: 0.85rem;
            margin-bottom: 5px;
        }

        .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff !important;
            padding: 10px 15px;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .form-control:focus {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--primary);
            box-shadow: 0 0 15px rgba(253, 161, 43, 0.4);
            outline: none;
        }

        /* CTA Button */
        .btn-quote {
            background-color: var(--primary);
            border: none;
            color: var(--dark);
            font-weight: 700;
            text-transform: uppercase;
            padding: 15px;
            width: 100%;
            border-radius: 8px;
            margin-top: 15px;
            transition: all 0.3s ease;
            letter-spacing: 1px;
        }

        .btn-quote:hover {
            background-color: #fff;
            color: var(--dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        }

        /* Hide Carousel indicators for a cleaner look */
        .carousel-indicators {
            justify-content: flex-start;
            margin-left: 0;
            bottom: -50px;
        }
        
        .carousel-indicators [data-bs-target] {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background-color: var(--primary);
        }

.carousel-caption {
    background: rgba(0, 0, 0, 0.45);
    /* padding: 20px; */
    border-radius: 8px;
    width: 100%;
    height: 100%;

    position: absolute;
    /* right: 15%; */
    bottom: 1.25rem;
    /* left: 15%; */
    padding-top: 1.25rem;
    /* padding-bottom: 1.25rem; */
    color: #fff;
    text-align: center;
}
        /* Mobile Adjustments */
        @media (max-width: 991px) {
            .hero-section {
                text-align: center;
                min-height: auto;
            }
            .hero-slider p {
                margin: 0 auto 30px;
            }
            .glass-form {
                margin-top: 50px;
                padding: 30px 20px;
            }
            .carousel-indicators {
                justify-content: center;
            }
        }
        .hero-slider img{
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
}

.carousel-caption{
    background: rgba(0,0,0,0.45);
    padding: 20px;
    border-radius: 8px;
}

.tagline{
    color: #FDA12B;
    font-weight: 600;
    letter-spacing: 1px;
}
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}
.logo img
    {
    height: 60px !important;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-outline-primary:hover {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-nav .nav-link {
    margin-left: 30px;
    padding: 25px 0;
    color: var(--secondary);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-left: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        margin-top: 25px;
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        right: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/


@media (max-width: 768px) {
    #header-carousel .carousel-item {
        position: relative;
        min-height: 450px;
    }
    
    #header-carousel .carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
        border-width: 12px;
    }
    .logo{
        font-size: 31px;
    }
}
@media (max-width: 1024px){
  .navbar .navbar-nav .nav-link {
  
    font-size: 11px !important;
}
}

@media (max-width: 425px) {
    .logo {
        font-size: 17px !important;
    }}
    @media (max-width: 380px) {
    .logo {
        font-size: 12px;
    }}
.page-header {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), 
    url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
    height: 425px;
    padding-top: 10% !important;
}

.page-header .breadcrumb-item+.breadcrumb-item::before {
    color: #999999;
}


/*** Facts ***/
.facts-overlay {
    position: absolute;
    padding: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(0, 0, 0, .65);
}

.facts-overlay h1 {
    font-size: 120px;
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

.facts-overlay a:hover {
    color: var(--primary) !important;
}
.facts-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*** Service ***/
.service-text::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: var(--primary);
    opacity: 0;
    transition: .5s;
}

.service-item:hover .service-text::before {
    height: 100%;
    opacity: 1;
}

.service-text * {
    position: relative;
    transition: .5s;
    z-index: 1;
}

.service-item:hover .service-text * {
    color: #FFFFFF !important;
}


/*** Appointment ***/
.appointment {
    background: linear-gradient(rgba(0, 0, 0, .65), rgba(0, 0, 0, .65)), url(../img/carousel-2.jpg) center center no-repeat;
    background-size: cover;
}


/*** Team ***/
.team-text {
    position: absolute;
    width: 75%;
    bottom: 30px;
    left: 0;
    transition: .5s;
}

.team-item:hover .team-text {
    width: 100%;
}

.team-text * {
    transition: .5s;
}

.team-item:hover .team-text * {
    letter-spacing: 2px;
}

.testimonial-item{
    width: 100% !important;
    height: 500px !important;
}
/*** Testimonial ***/
.testimonial-carousel .owl-item img {
    width: 400px;
    height:400px;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: start;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin-right: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 18px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    color: #999999;
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #999999;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #999999;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--light);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}




/* responsive */


@media (max-width: 919px) {

  .carousel-caption h1 {
    font-size: 40px;
  }

  .carousel-caption p {
    font-size: 16px;
  }

  .appointment .col-lg-5 p {
    font-size: 18px !important;
  }

  .navbar-brand h1 {
    font-size: 22px;
  }

  .navbar-brand img {
    height: 50px !important;
  }

  .facts-overlay h1 {
    font-size: 60px;
  }

}



@media (max-width: 768px) {

  /* Carousel */
  .carousel-item img {
    height: 500px !important;
  }

  .carousel-caption h1 {
    font-size: 28px;
  }

  .carousel-caption h5 {
    font-size: 14px;
  }

  .carousel-caption p {
    font-size: 14px;
  }

  .carousel-caption .btn {
    padding: 10px 20px;
    font-size: 14px;
  }

  /* About Section */
  .about img {
    height: 300px;
  }

  /* Service Image */
  .facts-overlay {
    padding: 20px;
  }

  /* Contact Section */
  .appointment iframe {
    height: 300px;
  }

  .appointment .col-lg-5 p {
    font-size: 16px !important;
  }

}



@media (max-width: 420px) {

  /* Navbar */
  .navbar-brand h1 {
    font-size: 18px;
  }

  .navbar-brand img {
    height: 40px !important;
  }

  /* Carousel */
  .carousel-item img {
    height: 400px !important;
  }

  .carousel-caption {
    padding: 10px;
  }

  .carousel-caption h1 {
    font-size: 20px;
  }

  .carousel-caption p {
    font-size: 13px;
  }

  .breadcrumb {
    display: none;
  }

  /* Services */
  .facts-overlay h1 {
    font-size: 40px;
  }

  .facts-overlay h4 {
    font-size: 16px;
  }

  .facts-overlay p {
    font-size: 12px;
  }

  /* Contact */
  .appointment iframe {
    height: 250px;
  }

}

@media (max-width: 320px) {
  .logo img
    {
    height: 35px !important;
}


    .navbar-brand h1 {
        font-size: 11px !important;
    }

}
@media (max-width: 375px) {

  .carousel-item img {
    height: 350px !important;
  }

  .carousel-caption h1 {
    font-size: 18px;
  }

  .carousel-caption h5 {
    font-size: 12px;
  }

  .carousel-caption p {
    font-size: 12px;
  }

  .carousel-caption .btn {
    padding: 8px 15px;
    font-size: 12px;
  }

  .navbar-brand h1 {
    font-size: 13px;
  }

  .facts-overlay h1 {
    font-size: 30px;
  }
  
 .btn-primary {
    padding: 2px 0px !important;
}

}


.carousel-item img {
  height: 800px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .carousel-caption {
    text-align: center;
  }

  .border-start {
    border-left: none !important;
  }
}








 /* ======================service===================?  */




 /* --- 5. CTA Section --- */
        .cta-section {
            background-color:white !important;
            color: white;
            padding: 60px 0;
        }

.section-padding { padding: 80px 0; }
        .btn-primary { 
            background-color: var(--primary); 
            border-color: var(--primary); 
            color: #fff; 
            font-weight: 600;
            padding: 12px 30px;
        }
        .btn-primary:hover { 
            background-color: #e58e1a; 
            border-color: #e58e1a; 
        }

        /* --- 1. Hero Banner --- */
        .hero-banner {
            background: linear-gradient(rgba(24, 35, 51, 0.85), rgba(24, 35, 51, 0.7)), 
                        url('../img/ser_bnr.jpg') no-repeat center center/cover;
            height: 450px;
            display: flex;
            align-items: center;
            color: white;
        }

        /* --- 2. Services Grid --- */
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: all 0.4s ease;
            height: 100%;
            background: #fff;
        }
        .service-card:hover {
            transform: translateY(-10px);
        }
        .service-img-wrapper {
            position: relative;
            overflow: hidden;
        }
        .service-img-wrapper img {
            transition: transform 0.5s ease;
            width: 100%;
            height: 220px;
            object-fit: cover;
        }
        .service-card:hover .service-img-wrapper img {
            transform: scale(1.1);
        }
        .service-icon-box {
            position: absolute;
            bottom: -25px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--primary);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 5px;
            font-size: 1.5rem;
            z-index: 2;
        }
        .service-card .card-body {
            padding: 40px 25px 30px;
        }

        /* --- 3. Why Choose Us --- */
        .why-choose-bg { background-color: var(--light); }
        .feature-item { display: flex; align-items: center; margin-bottom: 1.5rem; }
        .feature-icon-small {
            width: 45px;
            height: 45px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* --- 4. Process Section --- */
        .process-step { text-align: center; position: relative; }
        .process-icon {
            width: 90px;
            height: 90px;
            line-height: 90px;
            background: white;
            border: 2px dashed var(--primary);
            border-radius: 50%;
            display: inline-block;
            margin-bottom: 20px;
            font-size: 2rem;
            color: var(--dark);
            transition: 0.3s;
        }
        .process-step:hover .process-icon {
            background: var(--primary);
            color: white;
            border-style: solid;
        }

        /* --- 5. CTA Section --- */
        .cta-section {
       background-color: #ffffff;
       padding: 60px 0;
}
.cta-section h2{
       color: #182333 !important;
}
.cta-section p{
       color: #182333 !important;
}



/* ========================FAQ======================== */



.faq-hero {
            background: linear-gradient(rgba(24, 35, 51, 0.9), rgba(24, 35, 51, 0.7)), 
                        url('../img/faq.jpg') no-repeat center center/cover;
            height: 350px;
            display: flex;
            align-items: center;
            color: white;
            text-align: center;
            height: 450px;
        }
        .breadcrumb-item + .breadcrumb-item::before { color: var(--secondary); }
        .breadcrumb-item a { color: var(--primary); text-decoration: none; }

        /* --- 2. FAQ Accordion --- */
        .section-padding { padding: 80px 0; }
        
        .accordion-item {
            border: none;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border-radius: 8px !important;
            overflow: hidden;
        }

        .accordion-button {
            font-weight: 600;
            color: var(--dark);
            padding: 20px;
        }

        .accordion-button:not(.collapsed) {
            background-color: var(--primary);
            color: white;
            box-shadow: none;
        }

        .accordion-button::after {
            background-size: 1.25rem;
        }

        .accordion-button:not(.collapsed)::after {
            filter: brightness(0) invert(1);
        }

        /* --- 3. CTA Section --- */
        .cta-box {
            background-color: var(--dark);
            border-radius: 15px;
            padding: 50px;
            color: white;
        }

        /* --- 4. Contact Details --- */
        .contact-info-card {
            padding: 30px;
            height: 100%;
            background: var(--light);
            border-bottom: 4px solid var(--primary);
            transition: 0.3s;
        }
        .contact-info-card:hover {
            transform: translateY(-5px);
        }
        .info-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
        }

        /* --- Footer --- */
        footer { background: #0f1722; color: #fff; padding: 40px 0; }
        .btn-primary { 
            background-color: var(--primary); 
            border-color: var(--primary);
            font-weight: 600;
        }
        .btn-primary:hover { background-color: #e58e1a; border-color: #e58e1a; }
   



        /* ===========================contact======================= */

  
        /* --- 1. Hero Banner --- */
        .contact-hero {
            background: linear-gradient(rgba(24, 35, 51, 0.85), rgba(24, 35, 51, 0.85)), 
                        url('../img/con_hero.jpg') no-repeat center center/cover;
            height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            height: 450px;
        }

        .breadcrumb-item + .breadcrumb-item::before { color: #fff; }
        .breadcrumb-item a { color: var(--primary); text-decoration: none; }

        /* --- 2. Contact Info Cards --- */
        .info-card {
            padding: 40px 30px;
            background: #fff;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            text-align: center;
            height: 100%;
            border-bottom: 3px solid transparent;
        }
        .info-card:hover {
            transform: translateY(-10px);
            border-bottom: 3px solid var(--primary);
        }
        .info-card i {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }

        /* --- 3. Contact Form --- */
        .form-control {
            padding: 12px 15px;
            border: 1px solid #dee2e6;
            border-radius: 5px;
        }
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25 dark-grey;
        }
        .contact-sidebar-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        .sidebar-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        /* --- 4. Google Map --- */
        .map-container {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: -50px;
            position: relative;
            z-index: 5;
        }

        /* --- 5. CTA Section --- */
        /* .cta-section {
            background-color: var(--dark);
            color: white;
            padding: 120px 0 80px;
        } */
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            padding: 12px 35px;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #e58e1a;
            border-color: #e58e1a;
        }

        /* --- Footer --- */
        footer {
            background-color: #0f1722;
            color: var(--secondary);
            padding: 60px 0 20px;
        }
        footer h5 { color: white; margin-bottom: 20px; }
        footer a { color: var(--secondary); text-decoration: none; transition: 0.3s; }
        footer a:hover { color: var(--primary); }

        .section-padding { padding: 80px 0; }





.service-wrapper{
position: relative;
}

.service-dropdown{
position:absolute;
top:100%;
left:0;
background:#fff;
width:250px;
box-shadow:0 10px 30px rgba(0,0,0,0.1);
border-radius:6px;
padding:10px 0;

opacity:0;
visibility:hidden;
transform:translateY(10px);
transition:0.3s;
z-index:999;
}

.service-dropdown a{
display:block;
padding:10px 20px;
text-decoration:none;
color:#333;
font-size:15px;
transition:0.3s;
}

.service-dropdown a:hover{
background:#e58e1a;
color:#fff;
padding-left:25px;
}

.service-wrapper:hover .service-dropdown{
opacity:1;
visibility:visible;
transform:translateY(0);
}



/* --- Variables --- */


.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background-color: var(--light-bg);
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

/* --- Hero Banner --- */
.hero-banner {
    background: linear-gradient(rgba(24, 35, 51, 0.85), rgba(24, 35, 51, 0.85)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.breadcrumb-item.active {
    opacity: 0.8;
}

/* --- Buttons --- */
.btn-primary-custom {
    background-color: var(--primary-color);
    border: none;
    color: var(--white);
    padding: 15px 35px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-primary-custom:hover {
    background-color: #e58e1a;
    color: var(--white);
    transform: translateY(-3px);
}

/* --- Section Title Line --- */
.heading-line {
    width: 70px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 20px;
}

/* --- Service Cards --- */
.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    transition: 0.4s;
    height: 100%;
}

.service-card:hover {
    background: var(--dark-blue);
    transform: translateY(-10px);
}

.service-card:hover h4, .service-card:hover p {
    color: #fda12b !important;
}

.service-card i {
    font-size: 45px;
    color: var(--primary-color);
    margin-bottom: 25px;
}

/* --- Process Timeline --- */
.process-item {
    position: relative;
}
        .btn-outline-primary {
    color: #FDA12B !important;
    border-color: #FDA12B !important;
    border-radius: 0px !important;
}
.btn.btn-primary, .btn.btn-outline-primary:hover {
    color: #FDA12B !important;
    background-color: #fff;
}
.process-number {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Why Choose Us --- */
.why-icon {
    min-width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

/* --- CTA Section --- */
.cta-section {
    background: var(--dark-blue);
}



       .bg-light-custom { background-color: var(--light-bg); }
        .btn-primary-custom {
            background-color: var(--primary-color);
            border-color: var(--primary-color);
            color: #fff;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 5px;
            transition: 0.3s;
        }
        .btn-primary-custom:hover {
            background-color: #e58e1a;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Hero Banner */
        .hero-banner {
            background: linear-gradient(rgba(24, 35, 51, 0.8), rgba(24, 35, 51, 0.8)), 
                        url('./img/relokacja.jpg');
            background-size: cover;
            background-position: center;
            height: 450px;
            display: flex;
            align-items: center;
            color: #fff;
        }
        .breadcrumb-item + .breadcrumb-item::before { color: #fff; }
        .breadcrumb-item a { color: var(--primary-color); text-decoration: none; }

        /* Section Headings */
        .heading-line {
            width: 70px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px 0;
        }

        /* Service Cards */
        .service-card {
            background: #fff;
            padding: 40px 30px;
            border-radius: 10px;
            border-bottom: 4px solid transparent;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.4s;
            height: 100%;
        }
        .service-card:hover {
            border-bottom: 4px solid var(--primary-color);
            transform: translateY(-10px);
        }
        .service-card i {
            font-size: 45px;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        /* Why Choose Us */
        .feature-list-item {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        .feature-list-item i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 20px;
        }

        /* Process Steps */
        .process-step {
            text-align: center;
            position: relative;
        }
        .step-icon {
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: var(--primary-color);
            color: #fff;
            border-radius: 50%;
            font-size: 30px;
            margin: 0 auto 20px;
            z-index: 2;
            position: relative;
        }
        .step-number {
            position: absolute;
            top: 0;
            right: 10%;
            background: var(--dark-blue);
            width: 25px;
            height: 25px;
            border-radius: 50%;
            font-size: 14px;
            line-height: 25px;
        }

        /* CTA Section */
        .cta-section {
            background-color: var(--dark-blue);
            padding: 60px 0;
            color: #fff;
        }

        /* Footer */
        footer {
            background-color: #111a26;
            color: #adb5bd;
            padding: 80px 0 20px;
        }
        .footer-title {
            color: #fff;
            margin-bottom: 25px;
            font-weight: 700;
        }
        .btn-outline-primary {
    color: #FDA12B !important;
    border-color: #FDA12B !important;
}
.btn.btn-primary, .btn.btn-outline-primary:hover {
    color: #FDA12B !important;
    background-color: #fff;
}
  /* Fine Art Hero Background Specifics */
.fine-art-bg {
    background: linear-gradient(rgba(24, 35, 51, 0.85), rgba(24, 35, 51, 0.85)), 
                url('https://images.unsplash.com/photo-1549490349-8643362247b5?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
}

/* Helper class for card text readability */
.text-small {
    font-size: 0.9rem;
    line-height: 1.4;
}

























/* Project: Royal Packers & Movers
    Theme Colors:
    Primary: #FDA12B (Yellow)
    Secondary/Dark: #182333 (Dark Blue)
    Background: #F8F9FA (Light Gray)
*/

/* --- 2. Shared Layout Components --- */
.section-padding {
    padding: 100px 0;
}

.bg-light-custom {
    background-color: #F8F9FA;
}

.heading-line {
    width: 70px;
    height: 4px;
    background-color: #FDA12B;
    margin-bottom: 20px;
}

/* --- 3. Custom Buttons --- */
.btn-primary-custom {
    background-color: #FDA12B;
    border: 2px solid #FDA12B;
    color: #ffffff;
    padding: 12px 35px;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.4s;
}

.btn-primary-custom:hover {
    background-color: transparent;
    color: #FDA12B;
    transform: translateY(-3px);
}

/* --- 4. Hero Banner System --- */
.hero-banner {
    padding: 120px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Specific Hero Overlays for different pages */
.fine-art-bg {
    background: linear-gradient(rgba(24, 35, 51, 0.85), rgba(24, 35, 51, 0.85)), 
                url('https://images.unsplash.com/photo-1549490349-8643362247b5?auto=format&fit=crop&q=80&w=2000');
}

.loading-bg {
    background: linear-gradient(rgba(24, 35, 51, 0.85), rgba(24, 35, 51, 0.85)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&q=80&w=2000');
}

.breadcrumb-item a {
    color: #FDA12B;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #ffffff;
}

/* --- 5. Service Cards --- */
.service-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.4s ease-in-out;
    height: 100%;
    border-bottom: 4px solid transparent;
}

.service-card:hover {
    border-bottom: 4px solid #FDA12B;
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card i {
    font-size: 45px;
    color: #FDA12B;
    margin-bottom: 25px;
}

/* --- 6. Process Timeline Components --- */
.process-item {
    position: relative;
    text-align: center;
}

.process-icon-wrap {
    width: 90px;
    height: 90px;
    line-height: 90px;
    background: #ffffff;
    border: 2px dashed #FDA12B;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    font-size: 28px;
    color: #182333;
}

.process-number {
    position: absolute;
    top: 0;
    right: 0;
    background: #182333;
    color: #ffffff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #FDA12B;
}

/* --- 7. Call To Action (CTA) --- */
.cta-section {
    background-color: #182333;
    color: #ffffff;
}

/* --- 8. Responsive Adjustments --- */
@media (max-width: 991px) {
    .section-padding {
        padding: 60px 0;
    }
    .hero-banner {
        padding: 80px 0;
    }
    .display-3 {
        font-size: 2.5rem;
    }
}

/* Color Palette */
:root {
    --primary-color: #FDA12B;
    --dark-color: #182333;
    --light-bg: #f8f9fa;
}

/* Typography & General */
.dark-text {
    color: var(--dark-color);
}

.text-primary {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #e88f1a;
    border-color: #e88f1a;
    transform: translateY(-3px);
}

.divider {
    height: 4px;
    width: 70px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(24, 35, 51, 0.8), rgba(24, 35, 51, 0.8)), 
                url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&q=80&w=1600');
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: #fff;
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Service Cards */
.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    border-bottom: 3px solid var(--primary-color);
}

/* Process Timeline */
.bg-dark {
    background-color: var(--dark-color) !important;
}

.process-step {
    position: relative;
    padding: 20px;
}

.step-num {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 4px solid rgba(255,255,255,0.1);
}

/* Icons */
.icon-box {
    font-size: 2rem;
    min-width: 50px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .process-step:not(:last-child) {
        margin-bottom: 30px;
    }
}

.hero-section {
            padding: 60px 0;
            background-color: var(--white);
        }

        /* Left Side: Carousel Styling */
        .carousel-item {
            height: 550px;
            border-radius: 20px;
            overflow: hidden;
        }

        .carousel-item img {
            object-fit: cover;
            height: 100%;
            width: 100%;
            filter: brightness(0.7); /* Dark overlay effect */
        }

        .carousel-caption {
    /* bottom: 20%; */
    text-align: left;
    left: 0%;
    right: 10%;
    padding: 26% 6% 0% 6%;
}

        .carousel-caption h3 {
            font-weight: 700;
            font-size: 2.5rem;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
        }

        .carousel-fade .carousel-item {
            transition-duration: 0.8s;
        }

        /* Right Side: Form Card Styling */
        .quote-card {
            background: var(--white);
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
            border: none;
        }

        .quote-card h2 {
            color: var(--dark);
            font-weight: 700;
            margin-bottom: 5px;
        }

        .quote-card p {
            color: var(--secondary);
            margin-bottom: 25px;
        }

        .form-label {
            font-weight: 600;
            color: var(--dark);
            font-size: 0.9rem;
        }

      .form-control {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    transition: all 0.3s ease;
    font-size: 12px;
}

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(253, 161, 43, 0.25);
            outline: none;
        }

        /* CTA Button */
        .btn-quote {
            background-color: var(--primary);
            color: var(--white);
            font-weight: 700;
            padding: 15px;
            border-radius: 8px;
            width: 100%;
            border: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            margin-top: 10px;
        }

        .btn-quote:hover {
            background-color: #e68e1a;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(253, 161, 43, 0.4);
            color: var(--white);
        }

        /* Responsive Fixes */
        @media (max-width: 991px) {
            .hero-section {
                padding: 30px 0;
            }
            .carousel-item {
                height: 350px;
                margin-bottom: 30px;
            }
            .carousel-caption h3 {
                font-size: 1.5rem;
            }
        }
        /* footer style */

.footer{
background:#06122a;
color:#ccc;
}

.footer h4{
font-weight:600;
margin-bottom:20px;
}

.footer p{
color:#bbb;
line-height:1.7;
}

.footer .btn-link{
display:block;
color:#bbb;
text-decoration:none;
padding:5px 0;
transition:0.3s;
}

.footer .btn-link:hover{
color:#00c16e;
padding-left:8px;
}

.footer-contact{
display:flex;
align-items:flex-start;
margin-bottom:15px;
font-size:15px;
}

.footer-contact i {
    color: #feab2b;
    font-size: 16px;
    margin-top: 5px;
}

.footer .btn-square{
width:40px;
height:40px;
display:flex;
align-items:center;
justify-content:center;
border-radius:50%;
transition:0.3s;
}

.footer .btn-square:hover{
background:#feab2b;
border-color:#feab2b;
color:#fff;
}

.copyright{
background:#040c1c;
padding:15px 0;
font-size:14px;
}

.copyright a{
color:#feab2b;
text-decoration:none;
}
/* Back to top button */

.back-to-top{
position: fixed;
right: 30px;
bottom: 30px;
display: none;
z-index: 99;
/* border-radius: 50%; */
width: 45px  !important;
height: 45px !important;
align-items: center;
justify-content: center;
border: #feab2b 2px solid ;

}
.facts-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}