/* ==========================================================================
   Vahani Enterprises - Main Stylesheet
   ========================================================================== */

/* CSS Variables */
:root {
    --primary-color: #E31E24;
    --primary-dark: #B81920;
    --primary-light: #FF3B41;
    --secondary-color: #1A237E;
    --secondary-dark: #0D1652;
    --secondary-light: #283593;
    --dark-color: #1a1a1a;
    --text-color: #555;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 15px 40px rgba(0, 0, 0, 0.15);
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

html,
body {
    max-width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

.container,
.container-fluid {
    overflow: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--dark-color);
    line-height: 1.3;
}

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

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

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

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

/* ==========================================================================
   Top Bar
   ========================================================================== */
.top-bar {
    background: var(--secondary-color);
    color: var(--white);
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 3px solid var(--primary-color);
}

.top-bar-info {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.top-bar-info li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-info i {
    color: var(--primary-light);
    font-size: 14px;
}

.top-bar-info a {
    color: var(--white);
}

.top-bar-info a:hover {
    color: var(--primary-light);
}

.top-bar-social {
    list-style: none;
    display: flex;
    gap: 12px;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-radius: 50%;
    font-size: 14px;
}

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

/* ==========================================================================
   Header / Navbar
   ========================================================================== */
.main-header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar-brand img {
    height: 80px;
    transition: var(--transition);
}

.navbar-nav .nav-link {
    color: var(--dark-color);
    font-weight: 500;
    font-size: 15px;
    padding: 10px 18px !important;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

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

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

.btn-call {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}

.btn-call:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.4);
}

.navbar-toggler {
    border: 2px solid var(--primary-color);
    padding: 4px 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

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

.carousel-item {
    height: 550px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.2) 100%);
}

.carousel-caption {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    right: 0;
    bottom: auto;
    padding: 0 15px;
    text-align: left;
    max-width: 700px;
}

.hero-tagline {
    display: inline-block;
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 22px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-family: var(--font-display);
}

.carousel-caption h1 {
    color: var(--white);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 25px;
    text-transform: uppercase;
    font-family: var(--font-display);
    letter-spacing: 1px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-caption p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    margin-bottom: 35px;
    max-width: 600px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    box-shadow: 0 5px 18px rgba(227, 30, 36, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-primary-custom:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--white);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-outline-custom:hover {
    background: var(--white);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    height: 60px;
    background: rgba(227, 30, 36, 0.8);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    margin: 0 30px;
    transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: var(--primary-color);
}

.carousel-indicators {
    margin-bottom: 30px;
}

.carousel-indicators button {
    width: 35px !important;
    height: 4px !important;
    border-radius: 2px;
    background: var(--white) !important;
    opacity: 0.5;
}

.carousel-indicators button.active {
    opacity: 1;
    background: var(--primary-color) !important;
    width: 50px !important;
}

/* ==========================================================================
   Section Heading
   ========================================================================== */
.section-heading {
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-block;
    background: rgba(227, 30, 36, 0.1);
    color: var(--primary-color);
    padding: 6px 18px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 15px;
    font-family: var(--font-display);
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 16px;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.text-center .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background: var(--light-bg);
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding: 30px 30px 30px 0;
}

.about-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.about-experience {
    position: absolute;
    top: 30px;
    left: -20px;
    background: var(--primary-color);
    color: var(--white);
    padding: 22px 28px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-experience h3 {
    color: var(--white);
    font-size: 38px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}

.about-experience p {
    color: var(--white);
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.about-lead {
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 18px;
    line-height: 1.6;
}

.about-text {
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-feature {
    padding: 22px;
    background: var(--white);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.about-feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-left-color: var(--secondary-color);
}

.about-feature i {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 12px;
    display: block;
}

.about-feature h5 {
    font-size: 17px;
    margin-bottom: 6px;
    color: var(--dark-color);
}

.about-feature p {
    margin: 0;
    font-size: 14px;
    color: var(--text-color);
}

/* ==========================================================================
   Services Section
   ========================================================================== */
.services-section {
    background: var(--white);
    position: relative;
}

.services-section .section-heading {
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

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

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

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

.service-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 126, 0.3) 100%);
}

.service-icon {
    position: absolute;
    bottom: 10px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 26px;
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.4);
    z-index: 2;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--secondary-color);
    transform: rotate(360deg);
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.4);
}

.service-content {
    padding: 35px 25px 28px;
}

.service-content h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark-color);
    text-transform: uppercase;
    transition: var(--transition);
}

.service-card:hover .service-content h4 {
    color: var(--primary-color);
}

.service-content p {
    margin-bottom: 18px;
    font-size: 15px;
    color: var(--text-color);
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-color);
    gap: 12px;
}

/* ==========================================================================
   Why Choose Section
   ========================================================================== */
.why-choose-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section .container {
    position: relative;
    z-index: 1;
}

.why-choose-item {
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
    backdrop-filter: blur(10px);
    height: 100%;
}

.why-choose-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.why-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 24px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.3);
    transition: var(--transition);
}

.why-choose-item:hover .why-icon {
    transform: rotate(15deg) scale(1.1);
}

.why-choose-item h5 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.why-choose-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

.why-image-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.why-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

/* ==========================================================================
   Counter Section
   ========================================================================== */
.counter-section {
    background: var(--primary-color);
    padding: 70px 0;
    position: relative;
    background-image: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.counter-box {
    text-align: center;
    color: var(--white);
    padding: 20px 10px;
    position: relative;
}

.counter-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
    margin-bottom: 18px;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.counter-box:hover .counter-icon {
    background: var(--white);
    color: var(--primary-color);
    transform: scale(1.1);
}

.counter-number {
    color: var(--white);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 5px;
    font-family: var(--font-display);
}

.counter-number::after {
    content: '+';
    color: var(--white);
}

.counter-box p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background: var(--light-bg);
}

.gallery-section .section-heading {
    margin-bottom: 50px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    aspect-ratio: 1 / 1;
}

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

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.85) 0%, rgba(26, 35, 126, 0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 50px;
    transform: scale(0);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-section {
    background: var(--white);
}

.faq-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faq-image img {
    width: 100%;
    display: block;
}

.custom-accordion .accordion-item {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 10px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.custom-accordion .accordion-button {
    background: var(--white);
    color: var(--dark-color);
    font-weight: 600;
    font-size: 16px;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.custom-accordion .accordion-button::after {
    background-image: none;
    content: '\F4FE';
    font-family: 'bootstrap-icons';
    font-size: 18px;
    transition: var(--transition);
    transform: rotate(0);
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    content: '\F2EA';
    color: var(--white);
    transform: rotate(0);
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.custom-accordion .accordion-body {
    padding: 22px 25px;
    color: var(--text-color);
    line-height: 1.8;
    background: var(--light-bg);
    font-size: 15px;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.contact-info-card:hover::before {
    transform: scaleX(1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 28px;
    margin-bottom: 18px;
    box-shadow: 0 6px 20px rgba(227, 30, 36, 0.3);
    transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
    transform: rotateY(180deg);
}

.contact-info-card h5 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.contact-info-card p {
    margin-bottom: 5px;
    font-size: 14px;
    color: var(--text-color);
    line-height: 1.6;
}

.contact-info-card a {
    color: var(--text-color);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    font-size: 26px;
    color: var(--dark-color);
    text-transform: uppercase;
}

.contact-form .form-control,
.contact-form .form-select {
    height: 52px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    padding: 12px 18px;
    font-size: 15px;
    background: var(--light-bg);
    transition: var(--transition);
    font-family: var(--font-body);
}

.contact-form textarea.form-control {
    height: auto;
    min-height: 130px;
    resize: vertical;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-color);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(227, 30, 36, 0.1);
}

.contact-form .btn-primary-custom {
    padding: 14px;
    box-shadow: 0 5px 18px rgba(227, 30, 36, 0.35);
    justify-content: center;
}

.contact-form .btn-primary-custom:hover {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(26, 35, 126, 0.4);
}

.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
    border: 6px solid var(--white);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
    display: block;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.main-footer {
    background: var(--dark-color);
    color: rgba(255, 255, 255, 0.75);
    padding: 80px 0 0;
    position: relative;
}

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

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    background: var(--white);
    padding: 12px;
    border-radius: 8px;
}

.footer-widget p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-widget h5 {
    color: var(--white);
    font-size: 19px;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a i {
    color: var(--primary-color);
    font-size: 12px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-links a:hover i {
    color: var(--white);
}

.footer-contact {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    gap: 12px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 4px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 16px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-color);
    transform: translateY(-4px) rotate(10deg);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.4);
    padding: 22px 0;
    margin-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-bottom strong {
    color: var(--primary-color);
}

/* ==========================================================================
   Floating Icons
   ========================================================================== */
.floating-whatsapp,
.floating-call {
    position: fixed;
    bottom: 130px;
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--white);
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.floating-whatsapp {
    left: 25px;
    background: #25D366;
}

.floating-call {
    right: 25px;
    background: var(--primary-color);
}

.floating-whatsapp:hover,
.floating-call:hover {
    color: var(--white);
    transform: scale(1.12);
    animation: none;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    50% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 18px rgba(37, 211, 102, 0);
    }
}

.floating-call {
    animation-name: pulseRed;
}

@keyframes pulseRed {

    0%,
    100% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(227, 30, 36, 0.6);
    }

    50% {
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25), 0 0 0 18px rgba(227, 30, 36, 0);
    }
}

/* ==========================================================================
   Back to Top
   ========================================================================== */
.back-to-top {
    position: fixed;
    bottom: 10px;
    right: 25px;
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}
.cu-ds-nn{
	display:none!important
}
/* ==========================================================================
   Responsive Design
   ========================================================================== */

/* Large devices (laptops, less than 1200px) */
@media (max-width: 1199.98px) {
    .carousel-caption h1 {
        font-size: 58px;
    }

    .section-title {
        font-size: 38px;
    }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
    .section-padding {
        padding: 70px 0;
    }

    .navbar {
        padding: 12px 0;
    }

    .navbar-brand img {
        height: 80px;
    }

    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        margin-top: 12px;
        border-radius: 8px;
        box-shadow: var(--shadow-md);
        border: 1px solid var(--border-color);
    }

    .navbar-nav .nav-link {
        padding: 10px 5px !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .btn-call {
        margin-top: 10px;
        display: inline-block;
    }

    .carousel-item {
        height: 550px;
    }

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

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

    .carousel-control-prev,
    .carousel-control-next {
        width: 45px;
        height: 45px;
        margin: 0 10px;
    }

    .section-title {
        font-size: 32px;
    }

    .about-image-wrapper {
        margin-bottom: 30px;
        max-width: 500px;
    }

    .about-experience {
        padding: 18px 22px;
    }

    .about-experience h3 {
        font-size: 32px;
    }

    .counter-number {
        font-size: 38px;
    }

    .contact-map {
        min-height: 350px;
    }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
	.cu-jf-cntr{
		justify-content:center!important;
	}
	.cu-ds-nn{
		display:block!important
	}
	.cu-ds-nn1{
		display:none!important
	}
    .section-padding {
        padding: 60px 0;
    }

    .top-bar {
        padding: 8px 0;
        text-align: center;
    }

    .top-bar-social {
        justify-content: center;
        margin-top: 0;
    }

    .carousel-item {
        height: 500px;
    }

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

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

    .hero-tagline {
        font-size: 12px;
        padding: 6px 16px;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        padding: 11px 22px;
        font-size: 13px;
    }

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

    .section-heading {
        margin-bottom: 25px;
    }

    .about-image-wrapper {
        padding: 20px 20px 20px 0;
    }

    .about-experience {
        top: 20px;
        left: -10px;
        padding: 15px 18px;
    }

    .about-experience h3 {
        font-size: 26px;
    }

    .about-experience p {
        font-size: 11px;
    }

    .about-lead {
        font-size: 16px;
    }

    .service-image {
        height: 220px;
    }

    .counter-section {
        padding: 50px 0;
    }

    .counter-icon {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }

    .counter-number {
        font-size: 32px;
    }

    .counter-box p {
        font-size: 13px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }

    .main-footer {
        padding: 60px 0 0;
    }

    .footer-bottom {
        margin-top: 40px;
        text-align: center;
    }

    .footer-bottom .col-md-6 {
        margin-bottom: 5px;
    }

    .floating-whatsapp,
    .floating-call {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 120px;
    }

    .floating-whatsapp {
        left: 15px;
    }

    .floating-call {
        right: 15px;
    }

    .back-to-top {
        bottom: 10px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .custom-accordion .accordion-button {
        font-size: 14px;
        padding: 16px 18px;
    }

    .custom-accordion .accordion-body {
        padding: 18px;
        font-size: 14px;
    }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    .carousel-item {
        height: 460px;
    }

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

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .section-title {
        font-size: 24px;
    }

    .about-img-secondary {
        display: none;
    }

    .about-image-wrapper {
        padding: 0;
    }

    .about-experience {
        top: 15px;
        left: 15px;
    }

    .service-content {
        padding: 30px 20px 25px;
    }

    .contact-form-wrapper h3 {
        font-size: 22px;
    }
}