/* Base Styles */


:root {
    /* Brand Colors */
    --primary: #f58964;
    --primary-light: #f9bc96;
    --secondary: #6b9faf;

    /* Neutrals */
    --dark: #333333;
    --light: #ffffff;
    --gray: #f5f5f5;

    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
     /* outline: 1px solid red; */
}
/* Apply Poppins font to all elements */
body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden !important;
    /* padding-top: 80px; */
}


section{
    width: 100%;
    overflow-x: hidden;
}



.top-banner {
    font-size: 0.9rem;
    font-weight: 500;
}

.top-banner a {
    text-decoration: none;
    transition: opacity 0.3s;
}

.top-banner a:hover {
    opacity: 0.8;
}

.top-banner .badge {
    font-size: 0.7rem;
    vertical-align: middle;
}


/* Custom Navbar */
.navbar {
    padding: 10px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 10px 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.nav-link {
    font-weight: 500;
    color: #333 !important;
    position: relative;
    margin: 0 8px;
}

.nav-link:hover {
    color: #f58964 !important;
}


.link-active{
    color: var(--primary) !important;
    border-bottom: 2px solid var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f58964;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-item{
    text-decoration: none;
}

/* Custom Dropdown */


.custom-dropdown-menu {
    border: none;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    margin-top: 10px;
   
}

.custom-dropdown-menu .dropdown-item {
    padding: 8px 20px;
    font-weight: 500;
    color: #333;
    transition: all 0.2s ease;
}

.custom-dropdown-menu .dropdown-item:hover {
    background-color: #f5f5f5;
    color: #f58964;
    transform: translateX(5px);
}

.custom-dropdown-menu i {
    color: #f58964;
    width: 20px;
    text-align: center;
}

.navbar .dropdown-toggle::after {
    content: none !important; /* disable Bootstrap caret */
}

/* Custom Button */
.btn-custom-primary {
    background-color: #f58964;
    color: white;
    border: 2px solid #f58964;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-custom-primary:hover {
    background-color: transparent;
    color: #f58964;
}


/* Phone Link */
.phone-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #f58964;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 0;
    font-size: 1.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (max-width: 992px) {
    .navbar-collapse {
        padding: 20px 0;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .custom-dropdown-menu {
        box-shadow: none;
        padding-left: 15px;
    }
}

/* .sticky-top {
    top: 40px; 
} */


@media (max-width: 768px) {
    .top-banner .offer-text {
        margin-bottom: 0.5rem;
    }
    .top-banner .contact-info {
        justify-content: center !important;
    }
}







/* Hero Section */
.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
    margin-top: 0px; /* Adjust if you have a top banner */
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--light);
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .lead {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-medium);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.hero-buttons .btn {
    min-width: 200px;
    font-size: 1rem;
    font-weight: var(--font-weight-medium);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
}

.btn-outline-light {
    color: var(--light);
    border-color: var(--light);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--light);
}

.slider-controls {
    position: absolute;
    bottom: var(--space-lg);
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-sm);
    z-index: 3;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: var(--light);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background: var(--primary);
}

.dot {
    width: 12px;
    height: 12px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: var(--light);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
}



@media (max-width: 768px){
    .slider-controls{
        display: none;
    }
}



/* Brands  */

/* Brands Section */
.brands-section {
    padding: var(--space-xl) 0;
}

.section-title {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    position: relative;
    display: inline-block;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
}

.brand-item {
    text-align: center;
    padding: var(--space-md);
    background: var(--light);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.brand-logo {
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-sm);
}

.brand-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-item:hover .brand-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-name {
    font-weight: var(--font-weight-semibold);
    color: var(--dark);
    margin-top: auto;
}

/* Owl Carousel Customization */
.brands-section {
    padding: var(--space-xl) 0;
}

.section-title {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--space-sm);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
}

.brand-logo-item {
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.brand-logo-item img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.brand-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Owl Carousel Navigation */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-carousel .owl-nav button {
    pointer-events: all;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light) !important;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: var(--light) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -20px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -20px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .brand-logo-item {
        height: 80px;
    }
    
    .brand-logo-item img {
        max-height: 60px;
    }
    
    .owl-carousel .owl-nav {
        display: none;
    }
}




/* Service Setion */
.services-section {
    background-color: var(--light);
}


.service-card {
    height: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    background: var(--light);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    overflow: hidden;
    height: 200px;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-content {
    padding: var(--space-md);
}

.service-title {
    color: var(--dark);
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: var(--space-sm);
}

.service-desc {
    color: var(--dark);
    opacity: 0.8;
    font-size: 0.9rem;
    margin-bottom: var(--space-md);
}

.btn-service {
    /* background-color: var(--primary); */
    color: var(--primary);
    border: none;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    border: 2px solid var(--primary);
}

.btn-service:hover {
    background-color: var(--primary);
    color: var(--light);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-img {
        height: 160px;
    }
}




/* About  */

.about-section {
    background-color: var(--light);
}

.about-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.about-image-container img {
    transition: transform 0.5s ease;
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: cover;
}

.about-image-container:hover img {
    transform: scale(1.03);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: var(--primary) !important;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .about-content {
        padding-left: 0 !important;
        margin-top: 3rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
        bottom: -15px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .about-image-container img {
        min-height: 300px;
    }
}

.text-primary{
    color: var(--primary) !important;
}





/* Testimonial */

.testimonial-section {
    position: relative;
}

.testimonial-item {
    padding: 15px;
}

.testimonial-content {
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    color: var(--dark);
    font-style: italic;
    line-height: 1.6;
    position: relative;
}

.testimonial-text:before,
.testimonial-text:after {
    content: '"';
    font-size: 2rem;
    color: var(--primary);
    opacity: 0.3;
    line-height: 1;
}

.testimonial-text:before {
    margin-right: 5px;
}

.testimonial-text:after {
    margin-left: 5px;
}

.client-info{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.client-info img {
    border: 3px solid var(--primary-light);
    object-fit: cover;
    width: 100px !important;
    height: 100px !important;
}

/* Owl Carousel Customization */
.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.owl-carousel .owl-nav button {
    pointer-events: all;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light) !important;
    color: var(--primary) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    font-size: 1.5rem;
}

.owl-carousel .owl-nav button:hover {
    background: var(--primary) !important;
    color: var(--light) !important;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: -25px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: -25px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--primary);
    transform: scale(1.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .owl-carousel .owl-nav {
        display: none;
    }
    
    .testimonial-item {
        padding: 10px;
    }
    
    .testimonial-content {
        padding: 20px !important;
    }
}


/* cTA */

.cta-section {
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.cta-background img {
    object-position: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* background: rgba(0, 0, 0, 0.6); */
    /* background: linear-gradient(135deg, rgba(245,137,100,0.9) 0%, rgba(107,159,175,0.9) 100%); */
}

.cta-content {
    z-index: 2;
}

.cta-title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-text {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline-light:hover {
    color: var(--primary);
    background-color: var(--light);
}

.object-fit-cover {
    object-fit: cover;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .cta-section {
        height: 350px !important;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .cta-buttons .btn:last-child {
        margin-bottom: 0;
    }
}




/* Faq section */

.faq-section {
    background-color: var(--light);
}


.accordion-button {
    font-weight: var(--font-weight-semibold);
    background-color: var(--light);
    color: var(--dark);
}

.accordion-button:not(.collapsed) {
    background-color: var(--primary-light);
    color: var(--dark);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-light);
}

.accordion-body {
    background-color: var(--light);
    color: var(--dark);
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .accordion-button {
        padding: 12px 15px;
        font-size: 1rem;
    }
    
    .faq-section {
        padding: 3rem 0;
    }
}


/* Footer */

.footer-section {
    background-color: var(--dark) !important;
    color: var(--light) !important;
    
}

.footer-heading {
    color: var(--light);
    font-size: 1.2rem;
    font-weight: var(--font-weight-semibold);
    position: relative;
    padding-bottom: 10px;
}

.footer-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.footer-contact a {
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--primary) !important;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
    
}
.text-white{
    text-decoration: none !important;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-section {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .footer-heading:after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links a:hover {
        transform: none;
    }
    
    .footer-contact li {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center !important;
    }
}



/* Breadcumb */

.breadcrumb-hero {
    height: 300px;
    overflow: hidden;
}

.breadcrumb-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.breadcrumb-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.breadcrumb-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(245,137,100,0.7) 0%, rgba(107,159,175,0.7) 100%);
}

.breadcrumb-content {
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-title {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* Breadcrumb Styles */
.breadcrumb {
    background: transparent;
    padding: 0;
    font-size: 1.1rem;
}

.breadcrumb-item a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--light);
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary-light);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: rgba(255,255,255,0.8);
    padding: 0 0.5rem;
    font-weight: normal;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .breadcrumb-hero {
        height: 250px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .breadcrumb-hero {
        height: 200px;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .breadcrumb {
        font-size: 1rem;
    }
}




/* process section */

.process-section {
    background-color: var(--light);
}



.section-title:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary);
}

.section-subtitle {
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: var(--font-weight-medium);
    opacity: 0.8;
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    display: flex;
    margin-bottom: 2rem;
    position: relative;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    flex-shrink: 0;
    margin-right: 1.5rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    flex-grow: 1;
    position: relative;
    border-left: 4px solid var(--primary);
}

.step-title {
    color: var(--dark);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-semibold);
}

.step-description {
    color: var(--dark);
    opacity: 0.8;
    margin-bottom: 0;
}

.step-connector {
    position: absolute;
    left: 25px;
    top: 50px;
    bottom: -2rem;
    width: 2px;
    background-color: var(--primary-light);
    z-index: 1;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
    }
    
    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .step-connector {
        left: 25px;
        top: 50px;
        bottom: -2rem;
        height: calc(100% + 2rem);
    }
    
    .section-title {
        font-size: 2rem;
    }
}





/* Services Cards Section */
.services-cards-section {
    background-color: var(--light);
}


.service-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img img {
    transform: scale(1.05);
}

.service-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-title {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: var(--font-weight-semibold);
}

.service-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-features li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li i {
    position: absolute;
    left: 0;
    top: 5px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-light);
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .service-img {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .service-img {
        height: 160px;
    }
}




/* Enquiry Design */
.enquiry-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.enquiry-card:hover {
    transform: translateY(-5px);
}

.form-header {
    padding: 1.5rem;
}

.form-body {
    padding: 2rem;
}

.floating-input {
    position: relative;
    margin-bottom: 0.5rem;
}

.floating-input .form-control,
.floating-input .form-select {
    height: 55px;
    padding: 1rem 1rem 1rem 3.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #f9f9f9;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 1rem;
    color: #333;
}

.floating-input textarea.form-control {
    height: 120px !important;
    padding-top: 1.5rem;
    resize: vertical;
}

.floating-input label {
    position: absolute;
    top: 1rem;
    left: 3.5rem;
    color: #777;
    transition: all 0.3s ease;
    pointer-events: none;
    background-color: #f9f9f9;
    padding: 0 0.5rem;
}

.floating-input .icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 137, 100, 0.1);
    border-radius: 50%;
}

.floating-input textarea ~ .icon {
    top: 1.5rem;
    transform: none;
}

/* Floating Label Effect */
.floating-input input:focus ~ label,
.floating-input input:not(:placeholder-shown) ~ label,
.floating-input select:focus ~ label,
.floating-input select:not([value=""]) ~ label,
.floating-input textarea:focus ~ label,
.floating-input textarea:not(:placeholder-shown) ~ label {
    top: -0.6rem;
    left: 2.5rem;
    font-size: 0.8rem;
    color: var(--primary);
    background-color: white;
}

.floating-input input:focus,
.floating-input select:focus,
.floating-input textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(245, 137, 100, 0.2);
    background-color: white;
    outline: none;
}

/* Custom Select Dropdown Styling */
.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23777' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
}

/* Style for select options */
.form-select option {
    padding: 10px 15px;
    background-color: white;
    color: #333;
    font-size: 1rem;
}

.form-select option:hover {
    background-color: var(--primary-light) !important;
    color: white;
}

.form-select option:checked {
    background-color: var(--primary);
    color: white;
}

.form-select option:disabled {
    color: #999;
    background-color: #f9f9f9;
}

/* Submit Button */
.btn-submit {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(245, 137, 100, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 137, 100, 0.4);
}

.btn-submit i {
    transition: transform 0.3s ease;
}

.btn-submit:hover i {
    transform: translateX(3px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .form-body {
        padding: 1.5rem;
    }
    
    .floating-input .form-control,
    .floating-input .form-select {
        padding-left: 3rem;
    }
    
    .floating-input .icon {
        left: 0.8rem;
    }
    
    .floating-input label {
        left: 3rem;
    }
}




/* Contact Page */

.contact-section {
  padding: var(--space-lg);
  background-color: var(--gray);
  font-family: var(--font-main);
}

.contact-row {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--light);
  border-radius: 12px;
  padding: var(--space-lg);
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.contact-column {
  flex: 1;
  min-width: 200px;
  padding: 0 var(--space-md);
  text-align: center;
  margin-bottom: var(--space-sm);
}

.contact-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(245, 137, 100, 0.1);
  border-radius: 50%;
  padding: var(--space-xs);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-title {
  font-size: 1rem;
  font-weight: var(--font-weight-semibold);
  color: var(--dark);
  margin-bottom: var(--space-xs);
}

.contact-text {
  font-size: 0.9rem;
  color: var(--dark);
  line-height: 1.4;
  margin: 0;
}

.contact-text a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-text a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .contact-column {
    min-width: 45%;
  }
}

@media (max-width: 500px) {
  .contact-column {
    min-width: 100%;
  }
}



/* Enquiry modal */

/* Modal Specific Styles */
#enquiryModal .modal-dialog {
    max-width: 800px;
}

#enquiryModal .modal-content {
    border: none;
}

/* Make sure floating inputs work in modal */
