/* ==========================================================================
   CSS Variables & Reset
   ========================================================================== */
:root {
    /* Primary Colors */
    --clr-primary: #0470F6;
    --clr-secondary: #02CAE2;
    --clr-accent: #DA0000;

    /* Neutral Colors */
    --clr-white: #ffffff;
    --clr-black: #111111;
    --clr-gray-100: #f8f9fa;
    --clr-gray-200: #e9ecef;
    --clr-gray-300: #dee2e6;
    --clr-gray-800: #343a40;
    --clr-text-main: #444444;
    --clr-text-light: #777777;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows & Transitions */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 30px rgba(4, 112, 246, 0.15);
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    line-height: 1.6;
    background-color: var(--clr-white);
    overflow-x: hidden;
}

.page-content {
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================================================
   Top Header
   ========================================================================== */
.top-header {
    background-color: var(--clr-accent);
    color: var(--clr-gray-300);
    padding: 10px 0;
    font-size: 14px;
}

.top-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-fast);
}

.contact-item i {
    color: var(--clr-white);
}

.contact-item:hover {
    color: var(--clr-white);
}

.divider {
    width: 1px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.2);
}

.top-social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.follow-text {
    font-weight: 500;
    margin-right: 5px;
}

.social-icon {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    font-size: 13px;
}

.social-icon:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: translateY(-2px);
}

/* ==========================================================================
   Main Header
   ========================================================================== */
.site-header {
    position: relative;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    background-color: var(--clr-white);
}

.main-header {
    padding: 15px 0;
    transition: var(--transition-base);
}

.main-header.sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--clr-white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
    animation: slideDown 0.5s ease forwards;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.main-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-box img {
    height: 55px;

    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--clr-black);
    position: relative;
    padding: 10px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-primary), var(--clr-secondary));
    transition: var(--transition-base);
}

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

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.primary-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 5px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.primary-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--clr-accent);
    z-index: -1;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.primary-btn:hover {
    color: var(--clr-white);
}

.primary-btn:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.primary-btn i {
    transition: transform 0.3s ease;
}

.primary-btn:hover i {
    transform: translateX(5px);
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    font-size: 24px;
    color: var(--clr-primary);
    cursor: pointer;
}

/* ==========================================================================
   Mobile Drawer Menu
   ========================================================================== */
.mobile-menu-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background-color: var(--clr-white);
    z-index: 2000;
    padding: 30px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    overflow-y: auto;
}

.mobile-menu-drawer.active {
    right: 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--clr-gray-200);
}

.drawer-logo {
    height: 45px;
}

.close-drawer {
    background: var(--clr-gray-100);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--clr-accent);
    cursor: pointer;
    transition: var(--transition-fast);
}

.close-drawer:hover {
    background-color: var(--clr-accent);
    color: var(--clr-white);
    transform: rotate(90deg);
}

.drawer-nav {
    margin-bottom: 40px;
}

.drawer-nav ul li {
    margin-bottom: 15px;
}

.drawer-nav ul li a {
    display: block;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    color: var(--clr-black);
    padding: 10px 0;
    border-bottom: 1px dashed var(--clr-gray-200);
}

.drawer-nav ul li a.active,
.drawer-nav ul li a:hover {
    color: var(--clr-primary);
    padding-left: 10px;
    border-bottom-color: var(--clr-primary);
}

.drawer-contact {
    margin-top: auto;
    padding-top: 30px;
    border-top: 1px solid var(--clr-gray-200);
}

.drawer-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--clr-black);
}

.drawer-contact a {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--clr-text-main);
    font-weight: 500;
}

.drawer-contact a i {
    color: var(--clr-secondary);
    width: 20px;
    text-align: center;
}

.drawer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.drawer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--clr-gray-100);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.drawer-social a:hover {
    background-color: var(--clr-primary);
    color: var(--clr-white);
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 991px) {
    .main-nav {
        display: none;
    }

    .header-action {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .top-header {
        display: none;
        /* Hide top header on small screens for cleaner look */
    }
}

/* ==========================================================================
   Hero Carousel Section
   ========================================================================== */
.hero-slider-section {
    position: relative;
    overflow: hidden;
}

.slide-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


/* Custom Carousel Controls */
.custom-control {
    width: 60px;
    height: 60px;
    background-color: var(--clr-accent);
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease;
    margin: 0 30px;
}

.carousel:hover .custom-control {
    opacity: 1;
}

.custom-control:hover {
    background-color: var(--clr-primary);
}

.control-icon {
    font-size: 24px;
    color: var(--clr-white);
}

/* Custom Indicators */
.custom-indicators {
    margin-bottom: 30px;
}

.custom-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    background-color: var(--clr-accent);
    border: none;
    border-radius: 2px;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.custom-indicators .active {
    opacity: 1;
    width: 40px;
    background-color: var(--clr-secondary);
}

/* ==========================================================================
   About Us Section
   ========================================================================== */
.about-section {
    background-color: var(--clr-white);
}

.experience-badge {
    z-index: 2;
    transition: transform 0.3s ease;
}

.experience-badge:hover {
    transform: translateY(-5px);
}

.icon-box i {
    transition: transform 0.3s ease;
}

.icon-box:hover i {
    transform: scale(1.1);
}

/* ==========================================================================
   About Us Section Premium Design
   ========================================================================== */
.about-section {
    background-color: var(--clr-gray-100);
}

.about-image-wrapper {
    position: relative;
    padding-right: 50px;
    padding-bottom: 50px;
    z-index: 1;
}

.about-img-main {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.about-img-sub {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    border: 10px solid var(--clr-white);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.experience-card {
    position: absolute;
    top: 50px;
    left: -30px;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(4, 112, 246, 0.3);
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

.exp-icon {
    font-size: 40px;
    color: var(--clr-white);
}

.exp-content {
    color: var(--clr-white);
}

.exp-number {
    font-size: 36px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 0;
    line-height: 1;
}

.exp-text {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0;
    margin-top: 5px;
}

.about-feature-list {
    padding-left: 0;
    list-style: none;
}

.about-feature-list li {
    font-size: 16px;
    font-weight: 500;
    color: var(--clr-black);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-list li i {
    color: var(--clr-secondary);
    font-size: 20px;
}

.about-divider {
    border-color: rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(4, 112, 246, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary);
    font-size: 24px;
    transition: var(--transition-base);
}

.about-contact-box:hover .icon-circle {
    background-color: var(--clr-primary);
    color: var(--clr-white);
    transform: scale(1.1);
}

/* ==========================================================================
   Generic Titles & Subtitles
   ========================================================================== */
.subtitle {
    color: var(--clr-accent);
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    padding-left: 50px;
}

.subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 2px;
    background-color: var(--clr-accent);
}

.title {
    color: var(--clr-black);
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.icon-box-primary {
    width: 65px;
    height: 65px;
    background-color: rgba(4, 112, 246, 0.1);
    color: var(--clr-primary);
    font-size: 26px;
}

.icon-box-secondary {
    width: 65px;
    height: 65px;
    background-color: rgba(2, 202, 226, 0.1);
    color: var(--clr-secondary);
    font-size: 26px;
}

.counter-number {
    color: var(--clr-black);
    font-family: var(--font-heading);
}

.counter-text {
    letter-spacing: 1px;
}

.para-cus {
    color: var(--clr-black);

}



/* ==========================================================================
   Footer Section
   ========================================================================== */
.site-footer {
    background-color: var(--clr-black);
    color: var(--clr-gray-300);
    position: relative;
    overflow: hidden;
}

/* Footer Top */
.footer-top {
    position: relative;
    z-index: 1;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-text {
    color: var(--clr-gray-300);
    font-size: 15px;
    line-height: 1.8;
}

.footer-title {
    color: var(--clr-white);
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--clr-accent);
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--clr-white);
    border-radius: 5px;
    transition: var(--transition-base);
}

.footer-social a:hover {
    background-color: var(--clr-primary);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links a {
    color: var(--clr-gray-300);
    font-size: 16px;
    display: flex;
    align-items: center;
    transition: var(--transition-base);
}

.footer-links a i {
    color: var(--clr-accent);
    font-size: 12px;
    margin-right: 10px;
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--clr-secondary);
}

.footer-links a:hover i {
    transform: translateX(5px);
    color: var(--clr-secondary);
}

/* Footer Contact */
.footer-contact {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-contact li {
    display: flex;
    margin-bottom: 20px;
}

.footer-contact li:last-child {
    margin-bottom: 0;
}

.footer-contact li i {
    color: var(--clr-primary);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 5px;
}

.footer-contact li span {
    display: block;
    font-weight: 700;
    color: var(--clr-white);
    font-size: 16px;
    margin-bottom: 5px;
}

.footer-contact li p {
    margin: 0;
    color: var(--clr-gray-300);
    font-size: 15px;
}

.footer-contact li a {
    color: var(--clr-gray-300);
}

.footer-contact li a:hover {
    color: var(--clr-secondary);
}

/* Footer Newsletter */
.footer-newsletter .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--clr-white);
    padding: 12px 20px;
    height: 55px;
}

.footer-newsletter .form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--clr-primary);
    box-shadow: none;
}

.footer-newsletter .btn {
    background-color: var(--clr-primary);
    border: none;
    color: var(--clr-white);
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-newsletter .btn:hover {
    background-color: var(--clr-accent);
}

/* Footer Bottom */
.footer-bottom {
    background-color: #0b0b0b;
}

.copyright-text {
    font-size: 15px;
    color: var(--clr-gray-300);
}

.copyright-text strong {
    color: var(--clr-white);
}

.footer-bottom-links {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (min-width: 768px) {
    .footer-bottom-links {
        justify-content: flex-end;
    }

}

.footer-bottom-links a {
    color: var(--clr-gray-300);
    font-size: 15px;
    position: relative;
}

.footer-bottom-links a:hover {
    color: var(--clr-secondary);
}

.footer-bottom-links li:not(:last-child) {
    position: relative;
    padding-right: 20px;
}

.footer-bottom-links li:not(:last-child)::after {
    content: '|';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.2);
}

/* ==========================================================================
   Quote Modal Styling
   ========================================================================== */
.bg-primary-gradient {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
}

.custom-input {
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: none !important;
}

.custom-input:focus {
    border-color: var(--clr-primary);
}

.form-floating>label {
    color: var(--clr-text-light);
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
    color: var(--clr-primary);
}

/* ==========================================================================
   Services Section Styling
   ========================================================================== */
.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--clr-primary);
}

.service-card-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.1);
}

.service-icon-wrapper {
    position: absolute;
    bottom: 15px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--clr-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 4px 10px rgba(4, 112, 246, 0.4);
    z-index: 2;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon-wrapper {
    background: var(--clr-secondary);
    transform: rotateY(360deg);
}

.service-card-content {
    padding: 40px 30px 30px;
}

.service-card-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card:hover .service-card-title {
    color: var(--clr-primary);
}

.service-card-text {
    color: var(--clr-black);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-read-more {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--clr-black);
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-read-more i {
    margin-left: 8px;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.service-read-more:hover {
    color: var(--clr-primary);
}

.service-read-more:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   Working Process Section Styling
   ========================================================================== */
.process-section {
    background-color: #f8faff;
    position: relative;
}

.process-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.process-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 500px;
}

.process-badge {
    position: absolute;
    bottom: 30px;
    left: -30px;
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 5px solid var(--clr-primary);
    z-index: 2;
}

@media (max-width: 991px) {
    .process-badge {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }
}

.process-badge-icon {
    width: 60px;
    height: 60px;
    background: rgba(4, 112, 246, 0.1);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
}

.process-badge-content h4 {
    font-size: 32px;
    font-weight: 800;
    color: var(--clr-black);
    margin-bottom: 0;
    line-height: 1;
}

.process-badge-content span {
    color: var(--clr-text-light);
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
}

.process-list {
    margin-top: 40px;
}

.process-item {
    display: flex;
    margin-bottom: 30px;
    position: relative;
}

.process-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    bottom: -20px;
    width: 2px;
    background: rgba(4, 112, 246, 0.2);
    border-style: dashed;
    z-index: 1;
}

.process-number {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border: 2px solid var(--clr-primary);
    color: var(--clr-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
    margin-right: 25px;
    z-index: 2;
    position: relative;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.process-item:hover .process-number {
    background: var(--clr-primary);
    color: #ffffff;
}

.process-content h4 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 10px;
}

.process-content p {
    color: var(--clr-black);
    margin-bottom: 0;
    line-height: 1.6;
}

/* Owl Carousel Custom Controls */
.owl-theme .owl-nav {
    margin-top: 30px;
    text-align: center;
}

.owl-theme .owl-nav [class*=owl-] {
    background: #ffffff;
    color: var(--clr-primary);
    border: 1px solid rgba(4, 112, 246, 0.2);
    width: 45px;
    height: 45px;
    line-height: 43px;
    border-radius: 50%;
    margin: 0 5px;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 0;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--clr-primary);
    color: #ffffff;
    border-color: var(--clr-primary);
    box-shadow: 0 5px 15px rgba(4, 112, 246, 0.3);
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: rgba(4, 112, 246, 0.2);
    display: block;
    transition: opacity 200ms ease, background 200ms ease, width 200ms ease;
    border-radius: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--clr-primary);
    width: 25px;
}


@media(max-width:767px) {
    .title {
        font-size: 25px;
    }

    .process-content h4 {
        font-size: 18px;
    }
}

/* ==========================================================================
   Features (Why Choose Us) Section Styling
   ========================================================================== */
.features-section {
    background-color: #ffffff;
}

.feature-box {
    padding: 40px 30px;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(4, 112, 246, 0.1), rgba(2, 202, 226, 0.1));
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    transition: all 0.4s ease;
}

.feature-box:hover .feature-icon {
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(4, 112, 246, 0.3);
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 15px;
}

.feature-desc {
    color: var(--clr-text-light);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ==========================================================================
   Call To Action Banner Section
   ========================================================================== */
.cta-banner-section {
    position: relative;
    padding: 100px 0;
    background-color: var(--clr-primary);
}

.cta-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/cta_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: 1;
}

.cta-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(4, 112, 246, 0.9) 0%, rgba(2, 202, 226, 0.8) 100%);
    z-index: 2;
}

.cta-banner-content {
    position: relative;
    z-index: 3;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white {
    background-color: #ffffff;
    color: var(--clr-primary);
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-white:hover {
    background-color: transparent;
    color: #ffffff;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    font-weight: 600;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid #ffffff;
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--clr-primary);
}

/* ==========================================================================
   Testimonial Section Styling
   ========================================================================== */
.testimonial-section {
    background-color: #f8faff;
}

.testimonial-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    position: relative;
    margin: 15px 10px;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.quote-icon {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 60px;
    color: rgba(4, 112, 246, 0.05);
    line-height: 1;
}

.rating-stars {
    color: #ffc107;
    font-size: 14px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    color: var(--clr-text-light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(4, 112, 246, 0.1);
    color: var(--clr-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
}

.client-details h5 {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-black);
    margin-bottom: 2px;
}

.client-details span {
    font-size: 13px;
    color: var(--clr-text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media(max-width: 767px) {
    .cta-title {
        font-size: 32px;
    }

    .testimonial-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   Page Banner Section
   ========================================================================== */
.page-banner {
    padding: 80px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, var(--clr-primary), var(--clr-secondary));
    position: relative;
    overflow: hidden;
    color: var(--clr-white);
    margin-bottom: 10px;
}

.page-banner::before,
.page-banner::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.page-banner::before {
    width: 300px;
    height: 300px;
    top: -100px;
    left: -100px;
}

.page-banner::after {
    width: 400px;
    height: 400px;
    bottom: -150px;
    right: -100px;
}

.page-banner .container {
    position: relative;
    z-index: 2;
}

.page-banner-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-banner-desc {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.breadcrumb-wrap {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.breadcrumb-wrap a {
    color: var(--clr-white);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition-fast);
}

.breadcrumb-wrap a:hover {
    color: var(--clr-black);
}

.breadcrumb-wrap i {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 12px;
    font-size: 12px;
}

.breadcrumb-wrap .current {
    color: var(--clr-white);
    font-weight: 600;
    font-size: 15px;
}

@media(max-width: 767px) {
    .page-banner {
        padding: 80px 0 60px;
    }

    .page-banner-title {
        font-size: 2rem;
    }
}

/* ==========================================================================
   Contact Page & Component Utilities
   ========================================================================== */
.contact-info-item {
    border-color: rgba(0, 0, 0, 0.05) !important;
    transition: transform 0.3s ease;
}

.contact-info-item:hover {
    transform: translateY(-5px);
}

.contact-icon-box {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    font-size: 24px;
}

.contact-info-title {
    font-family: var(--font-heading);
}

.contact-info-link {
    transition: color 0.3s ease;
}

.contact-info-link:hover {
    color: var(--clr-primary) !important;
}

.contact-form-wrapper {
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-form-title {
    font-family: var(--font-heading);
}

.contact-submit-btn {
    border-radius: 8px;
    font-size: 16px;
}

.map-wrapper {
    height: 450px;
}

/* About Page Utilities */
.mv-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
}

.mv-icon-bg {
    font-size: 120px;
    opacity: 0.05;
    transform: translate(20%, -20%);
    pointer-events: none;
}

.mv-icon-bg-primary {
    color: var(--clr-primary);
}

.mv-icon-bg-secondary {
    color: var(--clr-secondary);
}

.mv-icon-circle {
    width: 70px;
    height: 70px;
    font-size: 30px;
}

.mv-icon-circle-primary {
    background: rgba(4, 112, 246, 0.1);
    color: var(--clr-primary);
}

.mv-icon-circle-secondary {
    background: rgba(2, 202, 226, 0.1);
    color: var(--clr-secondary);
}

.mv-title {
    font-size: 28px;
}

.border-bottom-primary {
    border-bottom: 4px solid var(--clr-primary) !important;
}

.border-bottom-secondary {
    border-bottom: 4px solid var(--clr-secondary) !important;
}

/* ==========================================================================
   Services Page UI
   ========================================================================== */
.srv-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.srv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.srv-img-box img {
    transition: transform 0.6s ease;
}

.srv-card:hover .srv-img-box img {
    transform: scale(1.08);
}

.srv-icon-badge {
    width: 65px;
    height: 65px;
    bottom: 20px;
    right: 30px;
    z-index: 2;
    transition: background-color 0.3s ease;
}

.srv-card:hover .srv-icon-badge {
    background-color: var(--clr-primary) !important;
}

.srv-card:hover .srv-icon-badge i {
    color: var(--clr-white) !important;
}

.srv-title {
    font-family: var(--font-heading);
    margin-top: 15px;
    transition: color 0.3s ease;
}

.srv-card:hover .srv-title {
    color: var(--clr-primary);
}

.srv-link {
    color: var(--clr-primary);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.srv-link:hover {
    color: var(--clr-secondary);
}

.srv-link:hover i {
    transform: translateX(5px);
}