/* ========================= */
/* ✅ Import Google Fonts */
/* ========================= */
@import url('https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Roboto:wght@300;400;700&display=swap');

/* ========================= */
/* ✅ Root Variables */
/* ========================= */
:root {
    --default-font: 'Roboto', sans-serif;
    --heading-font: 'Raleway', sans-serif;
    --primary-color: #0563bb;
    --secondary-color: #45505b;
    --accent-color: #e74c3c;
    --background-light: #f9f9f9;
    --background-dark: #060606;
    --text-light: #ffffff;
    --text-dark: #272829;
}

/* ========================= */
/* ✅ General Styling */
/* ========================= */
body {
    font-family: var(--default-font);
    color: var(--text-dark);
    background-color: var(--background-light);
    scroll-behavior: smooth;
}


/* ========================= */
/* ✅ Increase Space Between Sections for Better Readability */
/* ========================= */
section {
    padding: 120px 0;
    /* Increased from 100px */
}

/* ✅ Adjust Specific Sections */
.hero-section {
    padding-bottom: 140px;
}

.about-section {
    padding: 140px 0;
}

.services {
    padding: 140px 0;
}

.work-process {
    padding: 140px 0;
}

.marquee-section {
    padding: 50px 0;
    /* Keep marquee section smaller */
}

.project-gallery {
    padding: 140px 0;
}

.testimonials {
    padding: 140px 0;
}

.contact-section {
    padding: 140px 0;
}

/* ✅ Add Margin Between Sections (Optional) */
section {
    margin-bottom: 50px;
}

/* ========================= */
/* ✅ Responsive Adjustments for Mobile */
/* ========================= */
@media (max-width: 768px) {
    section {
        padding: 80px 0;
        /* Reduce padding on mobile */
    }

    .hero-section {
        padding-bottom: 80px;
    }

    .about-section,
    .services,
    .work-process,
    .project-gallery,
    .testimonials,
    .contact-section {
        padding: 100px 0;
    }
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: #060606;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
}

/* Animated Text */
.preloader-text {
    font-size: 24px;
    font-weight: bold;
    color: white;
    display: flex;
    gap: 5px;
}

.letter {
    opacity: 0;
    transform: translateY(10px);
    animation: letterFade 1.5s forwards;
}

/* Apply animation delay for each letter */
.letter:nth-child(1) {
    animation-delay: 0s;
}

.letter:nth-child(2) {
    animation-delay: 0.1s;
}

.letter:nth-child(3) {
    animation-delay: 0.2s;
}

.letter:nth-child(4) {
    animation-delay: 0.3s;
}

.letter:nth-child(5) {
    animation-delay: 0.4s;
}

.letter:nth-child(6) {
    animation-delay: 0.5s;
}

.letter:nth-child(7) {
    animation-delay: 0.6s;
}

.letter:nth-child(8) {
    animation-delay: 0.7s;
}

.letter:nth-child(9) {
    animation-delay: 0.8s;
}

.letter:nth-child(10) {
    animation-delay: 0.9s;
}

.letter:nth-child(11) {
    animation-delay: 1s;
}

.letter:nth-child(12) {
    animation-delay: 1.1s;
}

.letter:nth-child(13) {
    animation-delay: 1.2s;
}

.letter:nth-child(14) {
    animation-delay: 1.3s;
}

.letter:nth-child(15) {
    animation-delay: 1.4s;
}

/* Animation Effect */
@keyframes letterFade {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hide Preloader When Page Loads */
.hide-preloader {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out;
}

/* ========================= */
/* ✅ Typography */
/* ========================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    color: var(--secondary-color);
}

p {
    font-size: 1rem;
    line-height: 1.6;
}

/* ========================================
   PROFESSIONAL MOBILE MENU - IMPROVED
======================================== */

/* Navbar Base Styling */
.navbar {
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    background: white !important;
}

.navbar-brand {
    z-index: 1031;
}

.navbar-toggler {
    padding: 0.5rem 0.75rem;
    font-size: 1.25rem;
    border: 2px solid #007bff;
    border-radius: 8px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    outline: none;
}

/* Desktop Navigation */
@media (min-width: 992px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 1.25rem;
        margin: 0 0.25rem;
        border-radius: 8px;
        transition: all 0.3s ease;
        font-weight: 500;
        color: #2c3e50;
    }
    
    .navbar-nav .nav-link:hover {
        background: #f8f9fa;
        color: #007bff;
        transform: translateY(-2px);
    }
    
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
    }
    
    .navbar-nav .nav-link i {
        display: none;
    }
}

/* Mobile Navigation - ENHANCED */
@media (max-width: 991px) {
    /* Dropdown Menu Container */
    .navbar-collapse {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 15px;
        right: 15px;
        background: white;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
        border-radius: 16px;
        padding: 1.25rem 0;
        z-index: 1000;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    /* Menu Items Container */
    .navbar-nav {
        padding: 0 1.25rem;
    }
    
    /* Individual Menu Items */
    .navbar-nav .nav-item {
        margin: 0.4rem 0;
    }
    
    /* Menu Links */
    .navbar-nav .nav-link {
        padding: 1rem 1.5rem;
        border-radius: 12px;
        font-size: 1.05rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        color: #2c3e50;
        position: relative;
        overflow: hidden;
    }
    
    /* Icon Styling */
    .navbar-nav .nav-link i {
        font-size: 1.3rem;
        width: 35px;
        transition: transform 0.3s ease;
    }
    
    /* Hover Effect */
    .navbar-nav .nav-link:hover {
        background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
        color: #007bff;
        transform: translateX(8px);
    }
    
    .navbar-nav .nav-link:hover i {
        transform: scale(1.1);
    }
    
    /* Active State */
    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white !important;
        box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
    }
    
    .navbar-nav .nav-link.active i {
        color: white;
    }
    
    /* Smooth Slide Animation */
    .navbar-collapse.collapsing {
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .navbar-collapse.show {
        animation: slideDown 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    /* Close animation */
    .navbar-collapse.collapsing[style*="height: 0px"] {
        animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
}

/* Animations */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slideUp {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-20px);
    }
}

/* Hamburger Icon - Custom Colors */
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23007bff' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Active/Open State for Hamburger */
.navbar-toggler[aria-expanded="true"] {
    background: #007bff;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='white' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Extra Small Screens */
@media (max-width: 576px) {
    .navbar-brand img {
        height: 38px !important;
        max-width: 110px !important;
    }
    
    .navbar-collapse {
        left: 10px;
        right: 10px;
    }
    
    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.9rem 1.25rem;
    }
}

/* Z-index Management */
.navbar {
    z-index: 1030;
}

.navbar-collapse {
    z-index: 1029;
}

/* Backdrop for mobile menu */
@media (max-width: 991px) {
    .navbar-collapse.show::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* ========================= */
/* ✅ Hero Section */
/* ========================= */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    /* Moves text down */
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    padding-bottom: 80px;
}

/* Dark Overlay for Readability */
.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    /* Darker overlay for better contrast */
}

/* Adjust Text Position */
.hero-section .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding-bottom: 20px;
}

/* Tagline Styling */
.hero-section .tagline {
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Title Styling */
.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--text-light);
}

/* Highlighted Word */
.hero-section .highlight {
    color: var(--accent-color);
}

/* Description */
.hero-section p {
    font-size: 1.2rem;
    margin-top: 10px;
    color: var(--text-light);
}

/* Scroll Arrow Animation */
.scroll-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--text-light);
    animation: bounce 2s infinite;
}

@keyframes bounce {

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

    50% {
        transform: translateY(10px);
    }
}

/* Responsive Hero Section */
@media (max-width: 768px) {
    .hero-section {
        padding-bottom: 50px;
    }

    .hero-section .container {
        padding-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .tagline {
        font-size: 1.2rem;
    }
}

/* 🌐 Clients Section Background */
.clients-section {
    background: linear-gradient(135deg, #f1f4f9, #e2ecf7);
    position: relative;
    overflow: hidden;
}

.clients-section .overlay {
    pointer-events: none;
    opacity: 0.95;
}

/* 🖼️ Uniform Client Logo Container */
.client-logo-wrapper {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

/* 🧩 Logo Image: Clean & Consistent */
.client-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    aspect-ratio: 1 / 1;
    /* Force square ratio */
}

/* ✨ Carousel Card Enhancements */
.client-card {
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: none !important;
}

.client-card:hover {
    transform: none !important;
}



/* ========================= */
/* ✅ About Us Section Fixes */
/* ========================= */
.about-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    /* Prevent content overflow */
}

/* ✅ Images: Improve Layering & Positioning */
.about-images {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.about-images .main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.about-images .small-img {
    position: absolute;
    bottom: -20px;
    left: 60px;
    width: 40%;
    max-width: 180px;
    border-radius: 12px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border: 5px solid white;
}

/* ✅ Text & Stats Styling */
.about-text {
    padding-left: 40px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #0563bb;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    line-height: 1.3;
}

.about-text p {
    font-size: 16px;
    color: #555;
}

/* ✅ Stats Grid */
.stats-container {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
}

/* 🟢 Stats Box with Icon & Image */
.stat-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    /* Remove background */
    padding: 0;
    /* Remove padding */
    border-radius: 0;
    /* Remove border radius */
    box-shadow: none;
    /* Remove box shadow */
    min-width: auto;
    /* Remove fixed width */
    justify-content: flex-start;
}

.stat-box img {
    width: 40px;
    height: 40px;
    border-radius: 0;
    /* Remove rounded corners if needed */
    object-fit: cover;
}

/* 🟢 Icons */
.stat-box i {
    font-size: 28px;
    color: #0563bb;
}

/* 🟢 Stats Numbers */
.stat-box h3 {
    font-size: 24px;
    font-weight: bold;
    margin: 0;
}

/* 🟢 Stats Text */
.stat-box p {
    font-size: 14px;
    margin: 0;
    color: #666;
}

/* ✅ Additional Images for Stats */
.stat-box img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

/* ✅ Button Styling */
.btn-primary {
    background: #0563bb;
    border: none;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 6px;
    transition: 0.3s;
    display: inline-block;
    margin-top: 25px;
}

.btn-primary:hover {
    background: #034a8d;
}

/* ✅ Responsive Fixes */
@media (max-width: 768px) {
    .about-images {
        flex-direction: column;
        align-items: center;
    }

    .about-images .main-img {
        width: 90%;
    }

    /* 📱 Responsive: Float small image to right on smaller screens */
    @media (max-width: 768px) {
        .about-images .small-img {
            width: 50%;
            max-width: 140px;
            left: auto;
            right: 20px;
            bottom: -10px;
            /* adjust if needed */
        }

        .about-text {
            padding-left: 0;
            margin-top: 2rem;
            text-align: center;
        }

        .about-text .stats-container {
            justify-content: center;
            flex-direction: column;
            gap: 20px;
        }
    }

    .about-text {
        padding-left: 0;
        text-align: center;
    }

    .stats-container {
        flex-direction: column;
        gap: 20px;
    }

    .stat-box {
        justify-content: center;
        text-align: center;
    }
}

/* Testimonials */
.testimonial-card {
    text-align: center;
    max-width: 600px;
    margin: auto;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    background: white;
    padding: 20px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.testimonial-card h5 {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Project Gallery */
.project-card img {
    width: 100%;
    max-height: 200px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.project-card h5 {
    margin-top: 10px;
}


/* ========================= */
/* ✅ Team Section Styling */

/* 🔵 Team Image Styling */
.team-img {
    border-radius: 12px;
    border: 4px solid #007bff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.2);
}

.team-img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.25);
}

/* 🏷️ Optional Name Badge */
.team-name-badge {
    display: inline-block;
    background: linear-gradient(to right, #e0f0ff, #f0f9ff);
    color: #007bff;
    padding: 6px 18px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.1);
}

/* 🔍 Bootstrap Card Hover Enhancement */
.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
}

/* 📱 Responsive Adjustments */
@media (max-width: 768px) {
    .team-img {
        width: 180px;
        height: 180px;
    }
}




/* Modal Styling */
.modal-content {
    border-radius: 10px;
}

/* ========================= */
/* ✅ Services Section */
/* ========================= */
.services {
    text-align: center;
    padding: 60px 0;
}

.services .service-item {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

.services .service-item:hover {
    transform: translateY(-5px);
}

.services .service-item i {
    font-size: 2rem;
    color: var(--primary-color);
}

.services .service-item h3 {
    margin-top: 15px;
    font-size: 1.3rem;
}




/* Work Process Section */
.work-process {
    background-color: #f8fafa;
}

.process-card {
    position: relative;
    background: white;
    border-radius: 10px;
    padding: 30px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

/* Number Text Styling */
.process-number {
    font-size: 14px;
    text-transform: uppercase;
    display: block;
    margin-top: 10px;
}

/* Hover Effect - Blue Slide */
.hover-overlay {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 123, 255, 0.2);
    transition: left 0.4s ease-in-out;
}

.process-card:hover .hover-overlay {
    left: 0;
}


/* banner */
/* 🌟 Banner Section */
.marquee-section {
    position: relative;
    width: 100%;
    height: 150px;
    /* Increased height */
    background: url('../storage/banner.jpg') center/cover no-repeat;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    opacity: 0.9;
    /* Add opacity to the background */
}

/* Overlay for better text readability */
.marquee-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Dark overlay for contrast */
    z-index: 1;
}

/* 🟦 Marquee Content */
.marquee-content {
    display: flex;
    align-items: center;
    gap: 30px;
    /* Increased gap */
    font-size: 2.5rem;
    /* Larger font size */
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    animation: marquee 10s linear infinite;
    z-index: 2;
    /* Ensure text is above the overlay */
}

/* 🌟 Stars */
.star {
    font-size: 2.5rem;
    /* Larger stars */
    margin: 0 15px;
    /* Increased spacing */
}

.full-star {
    color: white;
}

.empty-star {
    color: transparent;
    -webkit-text-stroke: 1px white;
    /* Empty star effect */
}

/* 🔠 Text Alternating */
.full-text {
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Add shadow for better readability */
}

.empty-text {
    color: transparent;
    -webkit-text-stroke: 1px white;
    /* Hollow text effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    /* Add shadow for better readability */
}

/* 🎥 Marquee Animation */
@keyframes marquee {
    from {
        transform: translateX(100%);
    }

    to {
        transform: translateX(-100%);
    }
}

/* ========================= */
/* ✅ Contact Section */
/* ========================= */
/* Contact Page Styling */
.contact-section {
    background-color: #f8f9fa;
}

.contact-info-box {
    background: #fff;
}

.section-subtitle {
    font-size: 14px;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
}

.contact-item {
    display: flex;
    gap: 15px;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: #ecf0f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.icon-box i {
    font-size: 20px;
    color: #3498db;
}

.contact-form {
    background: #fff;
}

.contact-form label {
    font-weight: 600;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 5px;
}

.contact-form .btn-primary {
    background: #3498db;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
}

.contact-form .btn-primary:hover {
    background: #2980b9;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================= */
/* ✅ Footer */
/* ========================= */

/* 🟢 Footer Styling */
.footer-section {
    position: relative;
    background-color: #111;
    color: #fff;
    padding: 60px 0;
    font-size: 14px;

}

/* Social Media Icons */
.social-list {
    display: flex;
    gap: 15px;
    padding: 0;
    list-style: none;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    /* Increased size */
    height: 45px;
    /* Increased size */
    border-radius: 50%;
    background-color: #222;
    color: #fff;
    font-size: 18px;
    /* Increased icon size */
    transition: background 0.3s, color 0.3s;
}

.social-list li a:hover {
    background-color: #3498db;
    color: #fff;
}

/* Newsletter Section */
.widget-header {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.3);
}



/* Align the newsletter form */
.footer-form {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-form input {
    border-radius: 30px;
    padding: 12px 15px;
    background-color: #dfd9d9;
    color: #fff;
    border: none;
    flex-grow: 1;
    max-width: 280px;
}

.footer-form .submit {
    border-radius: 30px;
    padding: 12px 20px;
    font-weight: bold;
    background-color: #3498db;
    color: #fff;
    border: none;
    margin-left: 10px;
    transition: background 0.3s;
}

.footer-form .submit:hover {
    background-color: #fff;
    color: #111;
}

/* Copyright */
.copyright-area {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px 0;
    font-size: 13px;
    color: #ccc;
}

/* 🟢 Mobile-Friendly Adjustments */
@media (max-width: 768px) {
    .footer-wrap {
        flex-direction: column;
        text-align: center;
    }

    .footer-form {
        flex-direction: column;
    }

    .footer-form input {
        max-width: 100%;
        margin-bottom: 10px;
    }

    .social-list {
        justify-content: center;
    }
}

.avatar-circle {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.3s ease;
}

/* Hide hero background image on mobile */

.social-list li a {
    text-decoration: none !important;
}

/*chatbot*/


/* Back to Top Button */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.4);
}

.back-to-top-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.back-to-top-btn:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(102, 126, 234, 0.6);
}

/* Social Links Styling */
.social-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 15px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 18px;
    color: white;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-link.whatsapp {
    background: #25d366;
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    color: white;
}



/* ========================= */
/* ✅ Responsive Styles */
/* ========================= */
@media (max-width: 992px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .services .service-item {
        padding: 20px;
    }
}

