@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --primary: #1A2232;
  --secondary: #EB1B23;
  --ternary: #00000080;
  --black:#000000;
  --white: #FFFFFF;
  --gray: #555555;
  --gray-light: #666666;
  --warning: #EA9F48;
  --success: #4AB37B;
  --success-medium: #A9CCB9;
  --success-light: #CCEBDA;
  --error: #EF717D;
  --error-light: #FFF6F7;
  --gardient-1: linear-gradient(135deg, #FF5C00, #EB1B23);
  --gardient-2: linear-gradient(135deg, #1A2232, #1d3056e8);
  --white-light: #f2f2f291;

}

body {
  font-family: "Noto Sans", sans-serif;;
  background-color: var(--white);
}
h1,h2,h3,h4,h5,h6{
    line-height: 1;
    font-family: "Noto Sans", sans-serif;;
}
h1 {
    font-size : 4.75rem;
    font-weight: 500;
    color: var(--white);
}
h2{
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
}
h3{
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--white);
}
h4 {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--primary);
}
h5 {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--white);
}
h6 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-light);
}
.text-gd{
    background: var(--gardient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
p {
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: var(--gray);
}
.padding-top { padding-top: 5rem; }
.padding-bottom { padding-bottom: 5rem; }
.mendatory { color: var(--error); }

.middled {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
}
.centered {
    display: flex;
    align-items: center;
    justify-content: center;
}
.fixed {
    position: fixed;
    top: 0;
}
.col-form-label {
    text-align: right;
}
/* Make bootstrap-select match Bootstrap 5 form-select */
.bootstrap-select .dropdown-toggle {
    background-color: #fff !important;
    border: 1px solid #ced4da !important;
    border-radius: 0.375rem !important;
    font-size: .8rem !important;
    color: #212529 !important;
}
.container-fluid {
    padding-right: 0rem !important;
    padding-left: 0rem !important;
}

.row {
    margin-right: 0rem !important;
    margin-left: 0rem !important;
}

.card{
    border-radius: .5rem;
    box-shadow: 0px 0px 9px 0px #28A9E03B;
}
.card .card-title{
    color: var(--primary);
}
.card .card-subtitle{
    color: var(--grey);
}
.card p{
    color: var(--grey);
}
.card-footer {
    background-color: var(--white);
    height: 100%;
}
.card-footer:last-child {
    border-radius: 0 0 calc(1rem - 1px) calc(1rem - 1px);
}

/*************** Navbar Css ***************/

.main-header {
    position: relative;
    width: 100%;
    z-index: 999;
    transition: all .3s ease;
    padding: 1rem 0; 
    background-color: var(--white-light);
}

.navbar { padding: 0; }

.nav-logo { max-width: 7.5rem; }

.main-menu .nav-link {
    margin: 0 .75rem;
    padding: .75rem 1rem;
    color: var(--primary);
    transition: .3s ease;
}

.main-menu .nav-link.active,
.main-menu .nav-link:hover {
    color: var(--secondary);
}

.scrolled {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white) !important;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    padding: .7rem 0 !important;
}
/* Mobile Menu */
#navMenu {
    background: var(--primary);
    padding: 1rem 1rem;
    border-radius: .5rem;
}

#navMenu.show .nav-link {
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.2);
}

#navToggle {
    border: 1px solid;
    background: none;
    color: var(--black);
}

.navbar-nav {
    text-align: left;
}

@media (min-width: 992px) {
    #navMenu {
        background: transparent;
        padding: 0;
    }
}

/*************** End Navbar Css ***************/

/*************** start Common CSS ***************/
.page-banner {
    color: #fff;
}
.page-banner .banner-wrapper {
    position: relative;
}
.page-banner .banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 850px;
    padding: 2.5rem;
    color: #fff; 
    background: #2b1c1c54;
    border-radius: 2rem;
}
.page-banner .banner-content h1{
    font-weight: 300;
}
.page-banner .banner-content h1 strong{
    background: var(--gardient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    font-weight: 600;
}
.btn {
    padding: 1rem 1.5rem;
    margin: 1rem 1rem;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 2rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn_primary {
    background: var(--gardient-1);
    border: none;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(255, 92, 0, 0.3);
}

.btn_primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 92, 0, 0.5);
    gap: 14px;
}

.btn_secondary {
    background: var(--primary);
    color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(65, 63, 63, 0.3);
}
.btn_secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(65, 63, 63, 0.3);
    gap: 14px;
}
.btn_ternary {
    background: var(--secondary);
    color: var(--white);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(65, 63, 63, 0.3);
}
.btn_ternary:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 34, 50, 0.2);
    gap: 14px;
}

.btn_transprant {
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 4px 15px rgba(65, 63, 63, 0.3);
}

.btn_transprant:hover {
    background: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.4);
}

.learn-more, .view-details {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.learn-more:hover, .view-details:hover {
    gap: 12px;
}
.service-section, .featured-projects-section,
.mission-vision-section, .why-choose-section, 
.testimonials-section, .map-section, .pro-numbers-section{
    background: #FBFCFD;
}
.section-header {
    margin-bottom: 3rem;
}
.section-title {
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.section-subtitle {
    color: var(--gray);
    font-weight: 500;
    margin-bottom: 1rem;
}
.section-description {
    color: var(--gray-light);
    margin-bottom: 1.2rem;
}
.bg-1 {
    background: var(--gardient-1);
}

.bg-2 {
    background: var(--gardient-2);
}
/*************** End Common CSS ***************/

/*************** Home Page ***************/

/* Stats Cards Styling */
.stat-card {
    border-radius: 1rem;
    padding: 1.5rem;
    color: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-5px);
}
.stat-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: .25rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Service Card Styling */
.service-card {
    border-radius: 1rem;
    padding: 2.5rem 1.85rem;
    height: 100%;
    color: white;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-title {
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 1.5px;
    line-height: 1.5;
}

.service-description {
    color: var(--white);
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-link {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 12px;
}

/* Process Card Styling */
.process-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 1rem;
    padding: 2.5rem 1.85rem;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.process-card:hover {
    box-shadow: 
    0 6px 10px -3px rgba(0, 0, 0, 0.10),
    0 12px 15px -6px rgba(0, 0, 0, 0.10);
    border-color: #eee;
}

.step-number {
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 1.5rem;
}

.step-title {
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--black);
}

.step-desc {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Project Card Styling */
.project-card {
    background: var(--white);
    border: 1px solid #eee;
    border-radius: 1rem;
    padding: 2.5rem;
    height: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.project-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #ddd;
    transform: translateY(-5px);
}

.project-category {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.project-title {
    font-weight: 500;
    color: #000;
    margin-bottom: 1rem;
}

.project-desc {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.client-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.client-track {
    display: flex;
    width: max-content;
    animation: marquee 60s linear infinite;
}

.client-item {
    flex: 0 0 auto;
    padding: 0 1.85rem; 
    height: 5rem; 
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-item img {
    max-width: 11.25rem; 
    max-height: 100%; 
    width: auto;
    height: auto;
    object-fit: contain;
    transition:  .5s ease-in-out;
}

.client-item img:hover {
    transform: scale(1.1);
}
/* Smooth infinite scroll */
@keyframes marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
.client-slider:hover .client-track {
    animation-play-state: paused;
}

/* Swiper Container Padding */
.swiper {
    width: 100%;
    padding: 30px 10px 60px 10px !important;
}
.swiper-slide {
    height: auto;
    display: flex; 
}

.testimonial-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2.5rem 1.85rem;
    width: 100%; /* Fill the slide width */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f1f1;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); /* Ultra smooth lift */
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border-color: #e2e2e2;
}

.quote-text {
    color: #444;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1; /* Pushes the footer to the bottom of the card */
}

.divider {
    height: 1px;
    background-color: #eee;
    margin-bottom: 25px;
}

.client-info h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.client-info span {
    font-size: 0.9rem;
    color: #6c757d;
}
.client-name {
    font-weight: 500;
    font-size: 1.1rem;
    color: #000;
    margin-bottom: 5px;
}

.client-role {
    font-size: 0.9rem;
    color: #6c757d;
}
/* Pagination Styling */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--secondary) !important; /* Your brand color */
    width: 30px; /* Long pill shape for active bullet */
    border-radius: 10px;
}

/* CTA Section Styles */
.cta-section {
    position: relative;
    padding: 100px 0;
    background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&q=80&w=2070'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Optional: Creates a parallax effect */
    color: white;
    text-align: center;
}

/* The Blue Overlay */
.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 34, 50, 0.9); /* #1A2232 with 90% opacity */
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2; /* Ensures content sits above the overlay */
}

.cta-title {
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta-description {
    color: var(--white);
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/*************** End Home Page ***************/

/*************** Start About Page ***************/

/* Value Card Styling */
    .value-card {
        background: #fff;
        border: 1px solid #f1f1f1;
        border-radius: 20px;
        padding: 40px;
        height: 100%;
        transition: all 0.3s ease;
        text-align: left;
    }

    .value-card:hover {
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-color: #eee;
        transform: translateY(-5px);
    }

    .value-icon {
        color: var(--secondary); 
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        display: inline-block;
    }

    .value-title {
        font-weight: 500;
        margin-bottom: 1rem;
    }

    .value-desc {
        color: var(--gray);
        line-height: 1.7;
        margin-bottom: 0;
    }

    /* Belief Item Styling */
    .belief-item {
        display: flex;
        align-items: center;
        background: var(--white);
        border: 1px solid #f1f1f1;
        border-radius: 1rem;
        padding: 1.5rem 1.85rem;
        margin-bottom: 1.5rem;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    }

    .belief-item:hover {
        transform: translateX(10px);
        border-color: var(--secondary); 
        box-shadow: 0 10px 25px rgba(230, 57, 70, 0.08);
    }

    /* Number Circle */
    .belief-number {
        min-width: 50px;
        height: 50px;
        background-color: #f8f9fa;
        color: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.2rem;
        margin-right: 1.5rem;
        transition: all 0.3s ease;
    }

    .belief-item:hover .belief-number {
        background-color: var(--secondary);
        color: var(--white);
    }

    .belief-text {
        font-weight: 500;
        color: var(--gray-light);
        margin: 0;
    }

    .work-together-section {
        text-align: center;
    }

    /* --- Button Styling --- */
    .btn-group-custom {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

/*************** End About Page CSS ***************/

/*************** Services Page ***************/
/* --- Detailed Service Blocks --- */
.service-detail-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 1rem;
    padding: 2.5rem;
    margin-bottom: 1.85rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.service-detail-card p {
    color: var(--gray);
    margin-bottom: 1.85rem;
}

.service-include-title {
    font-weight: 500;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.service-list {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}

.service-list li {
    color: var(--gray);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list li i {
    color: var(--secondary); /* Brand Red */
    font-size: 0.8rem;
}

/* --- Why Choose Us Section --- */

.why-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem 1.85rem;
    height: 100%;
    border: 1px solid #f1f1f1;
    transition: 0.3s;
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.why-card h4 {
    font-weight: 600;
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--gray-light);
    line-height: 1.6;
    margin: 0;
}

/*************** End Services Page CSS ***************/

/*************** Portfolio CSS ***************/
/* --- Filter Buttons --- */
.filter-btn {
    border: none;
    padding: .5rem 1.5rem;
    border-radius: 1rem;
    background-color: var(--white-light);
    color: var(--gray);
    font-weight: 600;
    transition: 0.3s;
    margin: 5px;
}
.filter-btn.active {
    background-color: var(--secondary);
    color: var(--white);
}
.filter-btn:hover:not(.active) {
    background-color: var(--gray-light);
    color: var(--white);
}

/* --- Project Cards --- */
.portfolio-card {
    border: 1px solid #eee;
    border-radius: 20px;
    overflow: hidden;
    height: 100%;
    transition: 0.3s;
    background: var(--white);
}
.portfolio-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

/* Top Gradient Area */
.card-image-placeholder {
    height: 220px;
    background: linear-gradient(135deg, #E63946 0%, #1A2232 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.85rem;
}
.card-image-placeholder h4 {
    color: var(--white);
    font-weight: 500;
    text-align: center;
}

/* Card Content */
.card-body-custom { padding: 1.5rem; }
.category-label {
    color: var(--secondary);
    text-transform: uppercase;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: .75rem;
    display: block;
}
.client-name { font-weight: 500; font-size: 1rem; margin-bottom: .75rem; }
.project-desc { color: var(--gray); font-size: 0.9rem; line-height: 1.6;}

.portfolio-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Ensure the red active state from previous sections is maintained */
.filter-btn.active {
    background-color: var(--secondary) !important;
    color: var(--white) !important;
}

/* --- Project Hero Section --- */
        .project-hero {
            padding: 100px 0 60px;
            background: var(--gardient-2);
            color: white;
            margin-bottom: 60px;
        }

        .category-badge {
            background-color: var(--secondary);
            color: var(--white);
            padding: .5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            margin-bottom: 1.25rem;
            display: inline-block;
        }

        /* --- Info Sidebar --- */
        .project-info-card {
            background: #fff;
            border: 1px solid #eee;
            border-radius: 1rem;
            padding: 1.85rem;
            position: sticky;
            top: 100px;
        }

        .info-label { color: #888; font-size: 0.85rem; text-transform: uppercase; font-weight: 600; margin-bottom: 2px; }
        .info-value { color: #000; font-weight: 600; font-size: 1.1rem; margin-bottom: 1.25rem; }

        /* --- Gallery Styling --- */
        .gallery-item {
            border-radius: 1rem;
            overflow: hidden;
            margin-bottom: 1.5rem;
            cursor: pointer;
            border: 1px solid #eee;
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .line { position: relative; padding-bottom: .75rem; }
        .line::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: #E63946;
        }
/*************** End Portfolio Page ***************/

/*************** Contact Page ***************/
/* --- Global Card Styling --- */
    .contact-card {
        background: var(--white);
        border: 1px solid #f1f1f1;
        border-radius: 1rem;
        padding: 2.5rem;
        height: 100%;
        box-shadow: 0 10px 30px rgba(0,0,0,0.02);
    }

    .card-title { font-weight: 500; margin-bottom: 1.5rem; }

    /* --- Form Styling --- */
    .form-label { font-weight: 500; font-size: 0.9rem; color: #444; }
    .form-control, .form-select {
        border-radius: .75rem;
        padding: .75rem 1rem;
        border: 1px solid #e0e0e0;
        background-color: #fdfdfd;
    }
    .form-control:focus {
        border-color: var(--secondary);
        box-shadow: 0 0 0 0.25rem rgba(230, 57, 70, 0.1);
    }

    .btn-send {
        background-color: var(--secondary);
        color: var(--white);
        border: none;
        padding: 1rem;
        border-radius: .75rem;
        font-weight: 600;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        transition: 0.3s;
    }
    .btn-send:hover { background-color: #c02a35; transform: translateY(-2px); }

    /* --- Info Side Styling --- */
    .info-item { display: flex; gap: 20px; margin-bottom: 1.5rem; }
    .info-icon {
        min-width: 50px; height: 50px;
        background-color: var(--secondary);
        color: var(--white);
        border-radius: 1rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
    }
    .info-content a { color: var(--gray); }
    .info-content h6 { font-weight: 700; margin-bottom: 5px; }
    .info-content p { color: var(--gray); font-size: 0.95rem; margin: 0; line-height: 1.5; }

    /* Why Contact Us List */
    .why-list { list-style: none; padding: 0; }
    .why-list li { display: flex; align-items: center; gap: 10px; margin-bottom: .75rem; color: var(--gray-light); font-size: 0.95rem; }
    .why-list li i { color: var(--secondary); font-size: 0.8rem; }

    .map {
        width: 100%;
        height: 300px;
        border-radius: 1rem;
    }

/*************** End Contact Page ***************/

/*************** Footer CSS ***************/

/* --- Footer Styles --- */
.main-footer {
    background-color: #1A2232; /* SolveStone Dark Navy */
    color: #ffffff;
}

.footer-logo img{
    width: 7.5rem;
    margin-bottom: 1.25rem;
    text-decoration: none;
}

.footer-logo span { color: var(--secondary); }

.footer-desc {
    color: var(--white-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: .75rem;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--secondary);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: .75rem;
}

.footer-links a {
    color: var(--white-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
    padding: 0;
}

.contact-info li {
    display: flex;
    gap: 15px;
    margin-bottom: 1rem;
    color: var(--white-light);
}
.contact-info li a{
    color: var(--white-light);
}
.contact-info i {
    color: var(--secondary);
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: .75rem;
    color: var(--white);
    text-decoration: none;
    transition: 0.3s;
}

.social-btn:hover {
    background: var(--secondary);
    color: #1A2232;
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    color: var(--white-light);;
    font-size: 0.9rem;
}
/*************** Footer CSS ***************/

/*************** Responsive CSS ***************/

@media screen and (max-width: 991px) {
    h1 {
      font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.75rem;
    }

    h4 {
        font-size: 1.5rem;
    }
    p {
        font-size: .95rem;
    }
    .padding-top {
        padding-top: 3rem;
    }

    .padding-bottom {
        padding-bottom: 3rem;
    }
    .nav-buttons{
        flex-direction: row;
        margin-top: 1rem;
    }
    .about-text{
        padding-bottom: 2rem;

    }

}

@media screen and (max-width: 768px) {
    

}

@media screen and (max-width: 500px) {
    .nav-logo {
        max-width: 7rem;
    }
    h1{
        font-size: 1.5rem;
    }
    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.25rem;
    }
    h4 {
        font-size: 1.12rem;
    }
    h5{
        font-size: .95rem;
    }
    h6 {
        font-size: .8rem;
    }
    .banner-wrapper img{
        height: 250px;
    }
    .btn {
        font-size: .85rem;
        margin: .25rem .5rem;
        padding: .5rem .75rem;
    }
    .page-banner .banner-content {
        max-width: 380px;
        padding: 1rem;
    }
    .page-banner .banner-content h5{
        font-size: .85rem;
    }
    .section-header {
        margin-bottom: 2rem;
    }
    .stat-card {
        padding: .75rem;
    }
    .stat-icon {
        font-size: 1.75rem;
        margin-bottom: .25rem;
    }

    .stat-number {
        font-size: 1.75rem;
        font-weight: 800;
        margin-bottom: .25rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .process-card {
        padding: 1rem 1rem;
    }
    .step-number {
        font-size: 2rem;
        margin-bottom: .75rem;
    }
    .step-title {
        font-size: .85rem;
        margin-bottom: .75rem;
    }
    .step-desc {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    .cta-section {
        padding: 50px 0;
    }
    .belief-item {
        padding: 0.75rem .75rem;
        margin-bottom: .75rem;
    }
    .service-card {
        padding: 1.5rem 1rem;
    }
    .service-title {
        margin-bottom: .35rem;
    }
    .service-description {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    .service-link {
        font-size: 0.85rem;
    }
    .service-detail-card {
        padding: 1.75rem 1.5rem;
    }
    .service-list {
        grid-template-columns: repeat(1, 1fr);
        margin-bottom: 0rem;
    }
    .why-card {
        padding: 1.5rem 1.5rem;
    }
    .filter-btn {
        padding: .5rem .75rem;
        border-radius: .75rem;
        font-size: 0.8rem;
    }
    .contact-card {
        padding: 1.5rem;
    }
}
@media screen and (max-width: 375px) {

}
@media screen and (max-width: 320px) {

}

/*************** End Responsive CSS ***************/