/* ===================================
   CSS Reset & Base Styles
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-blue: #2B2D85;
    --primary-blue-dark: #1f2060;
    --primary-blue-light: #3d3fa5;
    --accent-orange: #F28A1C;
    --accent-orange-dark: #d47615;
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E9ECEF;
    --medium-gray: #F28A1C;
    --dark-gray: #2B2D85;
    --text-dark: #2B2D85;

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing (8px system) */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-xxl: 64px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-hover: 0 12px 40px rgba(43, 45, 133, 0.2);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
    opacity: 1;
    transition: opacity 0.5s ease-in-out;
}

body.fade-out {
    opacity: 1;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

/* ===================================
   Container & Layout
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===================================
   Typography
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ===================================
   Buttons
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-normal);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    background: linear-gradient(135deg, var(--primary-blue-dark), var(--primary-blue));
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===================================
   Header
   =================================== */
#header {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    background: var(--white);
    z-index: 1000;
    transition: var(--transition-normal);
}

#header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--text-dark);
    padding: var(--spacing-xs) 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(43, 45, 133, 0.1);
}

.nav-link.btn-book {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
}

.nav-link.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.nav-link.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    padding: 10px 15px;
    border-radius: var(--radius-md);
}

.nav-link.btn-whatsapp:hover {
    background: #20ba5a;
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ===================================
   Hero Section
   =================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(43, 45, 133, 0.9), rgba(43, 45, 133, 0.7)),
        url('hero-bg.png') center/cover no-repeat;
    color: var(--white);
    text-align: center;
    padding-top: 180px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.3));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: var(--spacing-xxl) var(--spacing-md) var(--spacing-xl) var(--spacing-md);
}

.hero-title {
    color: var(--white);
    margin-bottom: var(--spacing-md);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    margin-bottom: var(--spacing-xl);
    opacity: 0.98;
    line-height: 1.9;
    color: var(--white);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    text-justify: inter-word;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 1;
        top: 30px;
    }
}

/* ===================================
   Section Styles
   =================================== */
section {
    padding: var(--spacing-xxl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
}

.title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-orange), var(--primary-blue));
    margin: 0 auto;
    border-radius: 2px;
}

/* ===================================
   About Section
   =================================== */
.about {
    background: var(--off-white);
}

.about-text {
    font-size: 1.125rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
    color: var(--dark-gray);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.highlight-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.highlight-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.highlight-item h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

.industries {
    background: var(--off-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
}

.industry-item {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.industry-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, var(--accent-orange), var(--accent-orange-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.industry-item h3 {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* ===================================
/* ===================================
   Testimonials Section
   =================================== */
.testimonials {
    background-color: var(--primary-blue);
    padding: 80px 0;
}

.testimonials-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.testimonials-text {
    flex: 1;
    min-width: 300px;
}

.section-label {
    color: var(--accent-orange);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.testimonials .section-title {
    color: var(--white);
    text-align: left;
    margin-bottom: 20px;
}

.section-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.about-btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-blue);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-btn:hover {
    background-color: transparent;
    color: var(--white);
    border-color: var(--accent-orange);
}

.testimonials-slider-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.testimonials-slider {
    overflow: hidden;
    border-radius: var(--radius-lg);
    position: relative;
}

.testimonial-track {
    display: flex;
    transition: transform 0.4s ease;
    gap: 30px;
}

.testimonial-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    flex: 0 0 calc(50% - 15px);
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-orange);
}

.quote-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    color: var(--accent-orange);
    font-size: 2rem;
    opacity: 0.8;
}

.client-info {
    display: flex;
    align-items: flex-start;
    /* Better alignment for wrapping text */
    margin-bottom: 20px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    /* Prevent avatar from shrinking */
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
}

.client-details {
    flex: 1;
    min-width: 0;
}

.client-name {
    color: var(--primary-blue);
    font-size: 1.1rem;
    margin-bottom: 2px;
    line-height: 1.2;
    word-wrap: break-word;
    font-weight: 700;
}

.client-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.client-role {
    color: rgba(43, 45, 133, 0.8);
    font-size: 0.8rem;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.client-location {
    color: rgba(43, 45, 133, 0.5);
    font-size: 0.75rem;
    display: block;
}

.client-rating {
    color: var(--accent-orange);
    margin: 10px 0 15px;
}

.testimonial-text {
    color: var(--dark-gray);
    font-style: italic;
    line-height: 1.7;
    font-size: 1rem;
}

.slider-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
}

.slider-arrow {
    background-color: var(--white);
    color: var(--primary-blue);
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    margin: 0 10px;
}

.slider-arrow:hover {
    background-color: var(--accent-orange);
    color: var(--white);
}

.slider-indicators {
    display: flex;
    gap: 10px;
    margin: 0 20px;
}

.slider-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-indicator.active {
    background-color: var(--accent-orange);
    transform: scale(1.2);
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition-normal);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
}

/* ===================================
   Modal
   =================================== */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 1;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: var(--light-gray);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.modal-close:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: rotate(90deg);
}

.modal-title {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
    text-align: center;
}

.modal-subtitle {
    text-align: center;
    color: var(--accent-orange);
    margin-bottom: var(--spacing-lg);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.required {
    color: var(--accent-orange);
}

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(43, 45, 133, 0.1);
}

.btn-submit {
    margin-top: var(--spacing-sm);
    width: 100%;
}

.success-message {
    display: none;
    text-align: center;
    padding: var(--spacing-lg);
}

.success-message.active {
    display: block;
}

.success-message i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: var(--spacing-md);
}

.success-message p {
    font-size: 1.125rem;
    color: var(--dark-gray);
    margin: 0;
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transition: var(--transition-normal);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        padding: var(--spacing-lg);
        gap: var(--spacing-sm);
    }

    .nav-link {
        width: 100%;
        text-align: center;
        padding: var(--spacing-md);
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        text-align: left;
        line-height: 1.8;
        padding: 0 var(--spacing-sm);
    }

    .btn {
        width: 100%;
    }

    .slider-btn.prev {
        left: 10px;
    }

    .slider-btn.next {
        right: 10px;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.75rem;
    }

    .modal-content {
        padding: var(--spacing-lg);
    }

    .testimonials-content {
        flex-direction: column;
        gap: 30px;
    }

    .testimonials-text {
        text-align: left;
        margin-bottom: 10px;
        width: 100%;
    }

    .testimonials-slider-container {
        width: 100%;
        overflow: hidden;
    }

    .testimonial-card {
        flex: 0 0 100%;
        margin-right: 0;
        max-width: 100%;
    }

    .slider-arrow {
        display: none;
    }

    .slider-indicators {
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 32px;
        --spacing-xxl: 48px;
    }

    .logo img {
        height: 65px;
    }

    .about-highlights,
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--secondary-color);
    color: var(--white);
    transform: translateY(-3px);
}

/* ===================================
   Floating Social Menu
   =================================== */
.floating-social-menu {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 15px;
}

.social-menu-toggle {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
    z-index: 2;
}

.social-menu-toggle:hover {
    transform: scale(1.1);
    background: var(--primary-blue-light);
}

.social-menu-toggle .fa-times {
    display: none;
    position: absolute;
}

.social-menu-toggle.active .fa-at {
    display: none;
}

.social-menu-toggle.active .fa-times {
    display: block;
}

.social-menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1;
    visibility: visible;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: absolute;
    bottom: 70px;
}

.floating-social-menu.active .social-menu-items {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.social-menu-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-menu-item:hover {
    transform: scale(1.1);
    color: var(--white);
}

.social-menu-item.facebook {
    background-color: #3b5998;
}

.social-menu-item.instagram {
    background-color: #e1306c;
}

.social-menu-item.linkedin {
    background-color: #0077b5;
}

.social-menu-item.youtube {
    background-color: #ff0000;
}

@media (max-width: 768px) {
    .floating-social-menu {
        bottom: 90px;
        right: 20px;
    }

    .social-menu-toggle {
        width: 55px;
        height: 55px;
    }

    .social-menu-item {
        width: 45px;
        height: 45px;
    }
}

/* ===================================
   Service Page Specific Styles
   =================================== */
.page-header {
    background: linear-gradient(135deg, rgba(43, 45, 133, 0.9), rgba(43, 45, 133, 0.7)), url('hero-bg.png') center/cover no-repeat;
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.breadcrumb {
    font-size: 0.9rem;
    opacity: 0.8;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.service-detail {
    padding: 60px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #757575;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-orange);
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background-color: var(--off-white);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-image-placeholder {
        height: 250px;
    }
}

/* ===================================
   Services Timeline Section
   =================================== */
.services {
    background: var(--off-white);
    position: relative;
    padding: var(--spacing-xxl) 0;
}

.services-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Central Line */
.services-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Left Side */
.timeline-item:nth-child(odd) {
    left: 0;
}

/* Right Side */
.timeline-item:nth-child(even) {
    left: 50%;
}

/* Connecting Dots */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--accent-orange);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* Content Card */
.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Service Icon/Image */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* View More Button */
.btn-view-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.service-detail {
    padding: 60px 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.service-image-placeholder {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #757575;
    font-size: 1.2rem;
    font-weight: 500;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.service-info h2 {
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-features {
    margin: 20px 0;
    list-style: none;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-features i {
    color: var(--accent-orange);
}

.cta-section {
    text-align: center;
    margin-top: 40px;
    padding: 40px;
    background-color: var(--off-white);
    border-radius: 10px;
}

@media (max-width: 768px) {
    .service-content {
        grid-template-columns: 1fr;
    }

    .service-image-placeholder {
        height: 250px;
    }
}

/* ===================================
   Services Timeline Section
   =================================== */
.services {
    background: var(--off-white);
    position: relative;
    padding: var(--spacing-xxl) 0;
}

.services-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

/* Central Line */
.services-timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: var(--primary-blue);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

/* Timeline Item */
.timeline-item {
    padding: 10px 40px;
    position: relative;
    background-color: inherit;
    width: 50%;
    box-sizing: border-box;
}

/* Left Side */
.timeline-item:nth-child(odd) {
    left: 0;
}

/* Right Side */
.timeline-item:nth-child(even) {
    left: 50%;
}

/* Connecting Dots */
.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    right: -10px;
    background-color: var(--white);
    border: 4px solid var(--accent-orange);
    top: 20px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-item:nth-child(even)::after {
    left: -10px;
}

/* Content Card */
.timeline-content {
    padding: 20px 30px;
    background-color: var(--white);
    position: relative;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    text-align: center;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* Service Icon/Image */
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-blue);
}

.timeline-content h3 {
    font-size: 1.25rem;
    color: var(--primary-blue);
    margin-bottom: 10px;
}

.timeline-content p {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* View More Button */
.btn-view-more {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--primary-blue);
    color: var(--white);
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    font-size: 0.9rem;
}

.btn-view-more:hover {
    background-color: var(--primary-blue-dark);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .services-timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-item::after {
        left: 21px;
        right: auto;
        /* Reset right property from desktop styles */
    }

    .timeline-item:nth-child(even) {
        left: 0%;
    }

    /* Override specificity for even items */
    .timeline-item:nth-child(even)::after {
        left: 21px;
    }
}

/* ===================================
   Refined Footer Styles
   =================================== */
.footer {
    background: var(--primary-blue);
    color: #e0e0e0;
    padding: 60px 0 30px;
    font-family: 'Inter', sans-serif;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-section p {
    color: #b0b0b0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.tagline {
    font-style: italic;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: #808080;
}

.footer-bottom a {
    color: #808080;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #ffffff;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* ===================================
   Service Detail Image Styles
   =================================== */
.service-detail-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .service-detail-image {
        height: 250px;
    }
}

/* ===================================
   Mobile Footer Optimization
   =================================== */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }

    .footer-section h4 {
        font-size: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding-top: 15px;
    }
}

/* ===================================
   Contact Bar Above Footer
   =================================== */
.contact-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
    color: var(--white);
    padding: 15px 0;
    border-bottom: 3px solid var(--accent-orange);
}

.contact-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item a:hover {
    color: var(--accent-orange);
}

.phone-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-numbers .separator {
    color: var(--accent-orange);
    font-weight: bold;
}

.social-links-bar {
    gap: 15px;
}

.social-label {
    font-weight: 600;
    color: var(--white);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(242, 138, 28, 0.4);
}

@media (max-width: 768px) {
    .contact-bar {
        padding: 20px 0;
    }

    .contact-bar-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .contact-item {
        flex-direction: column;
        gap: 8px;
    }

    .phone-numbers {
        flex-direction: column;
        gap: 5px;
    }

    .phone-numbers .separator {
        display: none;
    }

    .social-links-bar {
        flex-direction: column;
        gap: 10px;
    }
}

/* Hide contact bar on mobile/tablet */
@media (max-width: 992px) {
    .contact-bar {
        display: none !important;
    }

    #header {
        top: 0 !important;
    }
}

/* Override Floating Social Menu Styles to make it permanent */
.floating-social-menu {
    position: fixed;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 998;
    display: flex;
    flex-direction: column !important;
    align-items: center;
    gap: 15px;
}

.social-menu-toggle {
    display: none !important;
}

.social-menu-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    position: static !important;
}

/* Adjust Floating Social Menu position to avoid overlap with WhatsApp button */
.floating-social-menu {
    bottom: 90px !important;
}

/* WhatsApp Integration into Social Menu */
.social-menu-item.whatsapp {
    background-color: #25d366;
}

/* Hide separate WhatsApp float */
.whatsapp-float {
    display: none !important;
}

/* Reset Floating Social Menu position since WhatsApp button is gone */
.floating-social-menu {
    bottom: 30px !important;
}

/* Services List Layout (Rectangular Boxes) */
.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 20px 0;
}

.service-row {
    display: flex;
    align-items: center;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition-normal);
}

.service-row:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-row:nth-child(even) {
    flex-direction: row-reverse;
}

.service-img {
    width: 50%;
    height: 300px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.service-row:hover .service-img img {
    transform: scale(1.05);
}

.service-text {
    width: 50%;
    padding: 40px;
}

.service-text h3 {
    color: var(--primary-blue);
    margin-bottom: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}

.service-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1rem;
}

.btn-view-more {
    display: inline-block;
    padding: 12px 25px;
    background: var(--accent-orange);
    color: var(--white);
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
}

.btn-view-more:hover {
    background: var(--accent-orange-dark);
    color: var(--white);
}

@media (max-width: 992px) {

    .service-row,
    .service-row:nth-child(even) {
        flex-direction: column;
    }

    .service-img,
    .service-text {
        width: 100%;
    }

    .service-img {
        height: 250px;
    }

    .service-text {
        padding: 30px;
        text-align: center;
    }
}

/* ===================================
   New Footer Design
   =================================== */
.footer {
    background-color: var(--white);
    color: var(--text-dark);
    padding: 0;
    position: relative;
    width: 100%;
}

/* CTA Section */
.footer-cta {
    background: var(--white);
    padding: 60px 0 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.footer-cta .btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: var(--primary-blue);
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-md);
}

.footer-cta .btn:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* Main Footer */
.footer-main {
    padding: 40px 0 60px;
    background-color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

.footer-col h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--primary-blue);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
    font-weight: 700;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 3px;
    background-color: var(--accent-orange);
}

.footer-desc {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Social Links in Footer */
.footer-col .social-links {
    margin-top: 0;
}

.footer-col .social-links a {
    background-color: var(--off-white);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}

.footer-col .social-links a:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-3px);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 8px;
    color: var(--accent-orange);
    transition: margin-right 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

/* Contact Info */
.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    gap: 15px;
}

.contact-info-item i {
    color: var(--accent-orange);
    font-size: 1.2rem;
    margin-top: 5px;
}

.contact-info-item h5 {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-info-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-info-item a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-item a:hover {
    color: var(--accent-orange);
}

/* Footer Bottom */
.footer-bottom {
    background-color: var(--off-white);
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 40px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .brand-col {
        grid-column: span 1;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-col .social-links {
        justify-content: center;
    }

    .contact-info-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info-item i {
        margin-top: 0;
        margin-bottom: 10px;
    }

    .footer-links a {
        justify-content: center;
    }
}