/* Basic Resets and Body Styles */
:root {
    --primary-black: #000000;
    --primary-white: #ffffff;
    --gradient-start: #FAA71F; /* Start color for text and button gradients */
    --gradient-end: #DC6927; /* End color for text and button gradients */
    --text-color: #ffffff;
    --nav-link-hover: #FAA71F; /* Using the start color for navigation link hover */

    --main-gradient: linear-gradient(to right, var(--gradient-start), var(--gradient-end));

    /* Slider specific variables */
    --projects-slider-gap: 40px; /* Gap between project cards in the projects slider */
    --testimonial-slider-gap: 30px; /* Gap between testimonial cards */

    /* Testimonial dot active color */
    --testimonial-dot-active: #FFB347; /* Orange-yellow as requested */

    /* Services Section - Mobile Specific Variable (This variable is now only used in services.css) */
    --service-card-mobile-width: 90%;
}

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

html {
    scroll-behavior: smooth; /* Smooth scrolling for anchor links */
}

body {
    font-family: 'Montserrat', sans-serif; /* General text font throughout the body */
    background-color: var(--primary-black); /* Solid black background */
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll from overflow content */
    position: relative; /* Positioning context for absolute elements like bokeh light */
    cursor: auto; /* Default cursor for the rest of the page */
}

/* Global Bokeh Light Effect (REMOVED from HTML, so these CSS rules effectively do nothing, but are kept for completeness) */
.bokeh-light {
    display: none; /* Explicitly hide if HTML element is still present for some reason */
}

@keyframes pulseBokeh {
    /* No longer needed if .bokeh-light is removed or hidden */
}


/* Header/Navbar Styling */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
}

.logo img {
    height: 40px;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    position: relative;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    pointer-events: auto;
}

.nav-links a.active {
    color: var(--gradient-start);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--gradient-start);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--gradient-start);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active::after {
    width: 100%;
}

/* Dropdown Menu Styling (Desktop) */
.dropdown {
    position: relative;
    display: inline-block; /* Allows dropdown to sit next to other nav items */
}

.dropdown-content {
    display: none; /* Hidden by default */
    position: absolute;
    background-color: #1a1a1a; /* Dark background for dropdown */
    min-width: 220px; /* Adjust width as needed */
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1; /* Ensure it appears above other content */
    border-radius: 8px;
    overflow: hidden; /* Ensures rounded corners apply to content */
    top: calc(100% + 10px); /* Position below the Services link */
    left: 50%; /* Center dropdown relative to parent li */
    transform: translateX(-50%); /* Adjust for left: 50% to truly center */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    padding: 10px 0; /* Vertical padding for items */
    display: flex; /* Use flex to stack items vertically */
    flex-direction: column;
}

.dropdown-content a {
    color: var(--primary-white); /* White text for dropdown items */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 0.95rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.dropdown-content a:hover {
    background-color: #333; /* Darker background on hover */
    color: var(--gradient-start); /* Highlight color on hover */
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: flex; /* Show as flex column */
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0); /* Reset Y transform on hover */
}


/* Hamburger Button Styling (Hidden on desktop) */
.hamburger-button {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--primary-white);
    cursor: pointer;
    z-index: 101; /* Above navbar content */
}

/* Free Consultation Button */
.consultation-btn button {
    background-image: var(--main-gradient);
    color: var(--primary-white);
    border: none;
    padding: 12px 25px;
    border-radius: 5px; /* Note: Original request was for 'glassy' button with more rounded corners, this is basic gradient */
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: auto;
}

.consultation-btn button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 167, 31, 0.4);
}


/* Main Hero Section Styling */
.hero-section {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100vh;
    padding: 0 5%;
    gap: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: var(--primary-black); /* Restore solid background */
}

.hero-content {
    flex: 1;
    max-width: 600px;
    z-index: 1;
    text-align: left;
}

.hero-content h1 {
    font-family: 'Krona One', sans-serif;
    font-size: 6.5vw; /* Desktop base font size */
    line-height: 0.9;
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary-white);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-content h1 .first-line {
    color: var(--primary-white);
    line-height: 1;
}

.hero-content h1 .highlight-line {
    display: inline-block;
    line-height: 1;
    position: relative;
    min-width: 100%;
    overflow: hidden;
}

.hero-content h1 .highlight {
    background-image: var(--main-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;

    display: inline-flex;
    flex-wrap: nowrap;
}

/* Styling for individual letters within the highlight span for typing effect */
.hero-content h1 .highlight span {
    display: inline-block;
    opacity: 0;
}

.hero-content .tagline {
    font-size: 2.5vw;
    font-weight: 700;
    color: var(--primary-white);
    margin-bottom: 20px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
}

.hero-content .description {
    font-size: 1.1rem;
    color: var(--primary-white);
    margin-bottom: 40px;
    max-width: 400px;
    opacity: 0.8;
    font-family: 'Montserrat', sans-serif;
}

/* Explore Our Work Button (with gradient border using pseudo-element) */
.explore-btn {
    background-color: transparent;
    color: var(--primary-white);
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    pointer-events: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.explore-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--main-gradient);
    border-radius: inherit;
    padding: 2px;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.explore-btn:hover {
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 167, 31, 0.4);
}

.explore-btn:hover::before {
    transform: scale(1.05);
    opacity: 1;
    -webkit-mask: none;
    mask: none;
    background: var(--main-gradient);
}


/* Hero Image Container - Positioning context for play button, and custom cursor */
.hero-image-container {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 50%;
    overflow: hidden;
}

.hero-image-container img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    filter: grayscale(10%);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background-image: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
    pointer-events: auto;
    transition: transform 0.15s ease-out, top 0.15s ease-out, left 0.15s ease-out, right 0.15s ease-out, bottom 0.15s ease-out, box-shadow 0.3s ease;
    opacity: 1;
}
/* Revert to static position when not following */
.play-button:not(.is-following) {
    right: 15%;
    bottom: 15%;
    left: auto;
    top: auto;
    transform: none;
}

.play-button.is-following {
    right: auto;
    bottom: auto;
    transform: translate(-50%, -50%);
}

.play-button:hover {
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.play-button.is-following:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.play-button:not(.is-following):hover {
    transform: scale(1.05);
}

.play-button svg {
    fill: var(--primary-black);
    width: 30px;
    height: 30px;
    margin-left: 5px;
}


/* Scrolling Outline Text Section Styling */
.scrolling-text-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
    background-color: var(--primary-black); /* Restore solid background */
    position: relative;
    z-index: 1;
}

.scrolling-text-container {
    white-space: nowrap;
    font-family: 'Krona One', sans-serif;
    font-size: 8vw;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-white);
    text-stroke: 1px var(--primary-white);
    pointer-events: none;
}

.scrolling-text-content {
    display: inline-block;
    will-change: transform;
    animation: scrollText 30s linear infinite;
}

.scrolling-text-content span {
    display: inline-block;
}


@keyframes scrollText {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Scrolling Client Logos Section Styling */
.client-logos-section {
    width: 100%;
    padding: 60px 0;
    background-color: var(--primary-black); /* Restore solid background */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.client-logos-track {
    display: flex;
    white-space: nowrap;
    animation: scrollLogos 60s linear infinite;
    will-change: transform;
    pointer-events: none;
}

.logo-group {
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 40px;
    flex-shrink: 0;
}

.client-logos-track img {
    height: 60px;
    max-width: 150px;
    object-fit: contain;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.6;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.client-logos-track img:hover {
    filter: grayscale(0%) brightness(100%);
    opacity: 1;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}


/* Featured Projects Slider Section Styling */
.projects-section {
    padding: 80px 5%;
    background-color: var(--primary-white);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

/* Floating Bokeh Lights for this section's background (REMOVED from HTML, so these CSS rules are explicitly hidden) */
.floating-bokeh-container {
    display: none;
}
.floating-bokeh-light {
    display: none;
}
@keyframes floatBokeh {
    /* No longer needed */
}

.projects-section .section-title {
    margin-bottom: 60px;
    color: var(--primary-black);
}

.slider-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 40px;
}

.projects-grid {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--projects-slider-gap);
    transition: transform 0.5s ease-in-out;
    padding-bottom: 15px;
}

.project-card {
    background-color: #111;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;

    flex-shrink: 0;
    width: calc(33.33% - (2 * var(--projects-slider-gap) / 3));
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(250, 167, 31, 0.4);
}

.project-thumbnail-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 60%;
    overflow: hidden;
}

.project-thumbnail-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.project-card:hover .project-thumbnail-wrapper img {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.view-case-study-btn {
    background-image: var(--main-gradient);
    color: var(--primary-white);
    padding: 10px 25px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.view-case-study-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(250, 167, 31, 0.5);
}

.project-info {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.project-title {
    font-family: 'Krona One', sans-serif;
    font-size: 1.35rem;
    color: var(--primary-white);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.project-client-industry {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--gradient-start);
    margin-bottom: 15px;
    font-weight: 600;
}

.project-summary {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: var(--primary-white);
    line-height: 1.5;
    opacity: 0.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.project-tech-icons {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

.project-tech-icons i {
    font-size: 24px;
    color: var(--primary-white);
    opacity: 0.6;
    transition: opacity 0.2s ease, color 0.2s ease;
}

.project-tech-icons i:hover {
    opacity: 1;
    color: var(--gradient-start);
}

.slider-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.1);
    color: var(--primary-black);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 24px;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    z-index: 10;
}

.slider-button:hover {
    background-color: var(--gradient-start);
    color: var(--primary-black);
    transform: translateY(-50%) scale(1.1);
}

.slider-button.prev-button {
    left: 0;
}

.slider-button.next-button {
    right: 0;
}

.slider-button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: rgba(0, 0, 0, 0.05);
}


/* About Us Section Styling */
.about-us-section {
    padding: 80px 5%;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('path/to/your/image.jpg'); /* Replace with your image path */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--primary-black);
    color: var(--primary-white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-us-section .section-title {
    color: var(--primary-white);
    margin-bottom: 20px;
    font-size: 4vw;
}

.about-us-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--primary-white);
    max-width: 900px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
    opacity: 0.9;
}

.about-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
    text-align: left;
}

.about-text-content {
    flex: 1;
    min-width: 300px;
}

.about-text-content h3 {
    font-family: 'Krona One', sans-serif;
    font-size: 2.2rem;
    color: var(--primary-white);
    margin-bottom: 25px;
    line-height: 1.3;
}

.about-text-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.about-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-portfolio {
    background-image: var(--main-gradient);
    color: var(--primary-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: inline-block;
}

.btn-portfolio:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(250, 167, 31, 0.5);
}

.btn-start-project {
    background-color: transparent;
    color: var(--primary-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-start-project:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-white);
    transform: translateY(-3px);
}

.about-stats-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    min-width: 300px;
}

.stat-card {
    background-color: #1a1a1a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3),
                0 0 15px rgba(250, 167, 31, 0.2);
}

.stat-icon {
    font-size: 3rem;
    color: var(--gradient-start);
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Krona One', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-white);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* NEW SECTION: Work with Us Scrolling Section Styling (Similar to Scrolling Outline Text) */
/* Using ID to target it specifically if needed, but classes work if unique */
#work-with-us-section {
    width: 100%;
    overflow: hidden;
    padding: 40px 0; /* Consistent with other scrolling text section */
    background-color: var(--primary-black); /* Consistent background */
    position: relative;
    z-index: 1;
}

#work-with-us-section .scrolling-text-container {
    white-space: nowrap;
    font-family: 'Krona One', sans-serif;
    font-size: 8vw; /* Large, responsive font size */
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--primary-white);
    text-stroke: 1px var(--primary-white);
    pointer-events: none;
}

#work-with-us-section .scrolling-text-content {
    display: inline-block;
    will-change: transform;
    animation: scrollText 30s linear infinite; /* Reuses the existing scrollText animation */
}


/* Testimonials Section Styling */
.testimonials-section {
    padding: 80px 5%;
    background-color: var(--primary-white);
    color: var(--primary-black);
    text-align: center;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-title {
    color: var(--primary-black);
    margin-bottom: 60px;
}

.testimonials-slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding-bottom: 40px;
}

.testimonial-track {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--testimonial-slider-gap);
    transition: transform 0.5s ease-in-out;
    padding-bottom: 15px;
}

.testimonial-card {
    background-color: #f8f8f8;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    width: calc(33.33% - (2 * var(--testimonial-slider-gap) / 3));
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(250, 167, 31, 0.1);
}

.client-info-top {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.company-initials {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Krona One', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--primary-white);
    margin-right: 15px;
    flex-shrink: 0;
}

.company-details {
    display: flex;
    flex-direction: column;
}

.company-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 5px;
}

.industry-tag {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 5px;
    text-transform: uppercase;
    display: inline-block;
    align-self: flex-start;
}

.stars {
    color: gold;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.client-feedback {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    flex-grow: 1;
}

.client-signature {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-black);
    text-align: right;
    opacity: 0.8;
}

.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot.active {
    background-color: var(--testimonial-dot-active);
    transform: scale(1.2);
}

.btn-all-testimonials {
    background-image: var(--main-gradient);
    color: var(--primary-white);
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    display: inline-block;
    margin-top: 50px;
}

.btn-all-testimonials:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(250, 167, 31, 0.5);
}


/* Contact Us Section Styling */
.contact-us-section {
    padding: 80px 5%;
    background-color: var(--primary-black); /* Restore solid background */
    color: var(--primary-white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.contact-us-section .section-title {
    color: var(--primary-white);
    margin-bottom: 60px;
    font-size: 4vw;
}

.contact-content-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    text-align: left;
}

.contact-form-container {
    flex: 1;
    min-width: 320px;
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Custom form elements styling (re-enabled) */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}
.form-group {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #222;
    border-radius: 8px;
    padding: 10px 15px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    border: 1px solid #444;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.form-group:focus-within {
    border-color: var(--gradient-start);
    box-shadow: 0 0 0 3px rgba(250, 167, 31, 0.3);
}
.input-icon {
    font-size: 1.2rem;
    color: #bbb;
    margin-right: 10px;
    flex-shrink: 0;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form input[type="text"],
.contact-form textarea {
    width: 100%;
    padding: 5px 0;
    border: none;
    background: transparent;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    color: var(--primary-white);
    outline: none;
}
.contact-form textarea {
    resize: vertical;
    min-height: 100px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
    opacity: 1;
}
.contact-form input:focus::placeholder,
.contact-form textarea:focus::placeholder {
    color: transparent;
}
.submit-btn {
    background-color: #FF6F00;
    color: var(--primary-white);
    padding: 15px 30px;
    border-radius: 25px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    align-self: flex-start;
}
.submit-btn:hover {
    background-color: #e06000;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 0, 0.6);
}


/* Social Media Icons below form (keep as is) */
.social-icons-contact {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-contact a {
    color: #ccc;
    font-size: 1.8rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons-contact a:hover {
    color: var(--gradient-start);
    transform: translateY(-3px);
}

/* WhatsApp CTA Button (Optional, if uncommented in HTML) */
.whatsapp-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #25D366;
    color: var(--primary-white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-cta:hover {
    background-color: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-cta i {
    margin-right: 8px;
    font-size: 1.2rem;
}


/* Google Maps Container (Left Side in HTML, but flex order determines visual) */
.map-container {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-bottom: 45%;
    height: 0;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


/* Footer Section Styling */
.footer {
    background-color: var(--primary-black); /* Restore solid background */
    color: var(--primary-white);
    padding: 80px 5% 30px 5%;
    position: relative;
    z-index: 1;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
    text-align: left;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-family: 'Krona One', sans-serif;
    font-size: 1.2rem;
    color: var(--gradient-start);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-branding .footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-branding .branding-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
    justify-content: flex-start;
}

.footer-social-icons a {
    color: var(--primary-white);
    font-size: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-social-icons a:hover {
    color: var(--gradient-start);
    transform: translateY(-3px);
}

.footer-nav ul {
    list-style: none;
    padding-left: 0;
}

.footer-nav ul li {
    margin-bottom: 10px;
}

.footer-nav ul li a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-nav ul li a:hover {
    color: var(--primary-white);
}

.footer-contact-info p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.footer-contact-info p i {
    color: var(--gradient-start);
    font-size: 1.1rem;
    margin-right: 10px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-newsletter p {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 10px 15px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--primary-white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form input:focus {
    border-color: var(--gradient-start);
}

.newsletter-form button {
    background-image: var(--main-gradient);
    color: var(--primary-white);
    padding: 10px 20px;
    border-radius: 5px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(250, 167, 31, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 60px;
    padding-top: 30px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-legal-links {
    margin-top: 10px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    margin: 0 10px;
    transition: color 0.3s ease;
}

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

/* Responsive Design Adjustments */
@media (max-width: 1200px) {
    .projects-grid {
        gap: var(--projects-slider-gap);
    }
    .project-card {
        width: calc(33.33% - (2 * var(--projects-slider-gap) / 3));
    }

    .testimonial-card {
        width: calc(33.33% - (2 * var(--testimonial-slider-gap) / 3));
    }
}

@media (max-width: 1024px) {
    .section-title {
        font-size: 4rem; /* Adjusted from 5vw to fixed rem */
    }
    .hero-content h1 {
        font-size: 4.5rem; /* Adjusted from 4.5vw to fixed rem */
    }

    /* .services-grid related rules were removed as the section is gone. */

    .client-logos-section {
        padding: 40px 0;
    }

    .logo-group {
        gap: 50px;
        padding: 0 20px;
    }

    .client-logos-track img {
        height: 40px;
        max-width: 100px;
    }

    @keyframes scrollLogos {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .projects-section .section-title {
        font-size: 3rem;
    }

    .slider-container {
        padding: 0 10px;
    }

    .projects-grid {
        gap: var(--projects-slider-gap);
    }
    .project-card {
        width: calc(50% - (1 * var(--projects-slider-gap) / 2));
    }

    .about-content-wrapper {
        flex-direction: column;
        gap: 50px;
    }

    .about-text-content, .about-stats-grid {
        min-width: unset;
        width: 100%;
    }

    .about-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .testimonial-card {
        width: calc(50% - (1 * var(--testimonial-slider-gap) / 2));
    }

    .company-initials {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .stat-icon {
        font-size: 2.8rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .play-button {
        display: none;
    }

    .hero-image-container {
        cursor: auto;
    }

    body {
        cursor: auto;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .navbar .logo {
        margin-right: auto;
    }

    .navbar .consultation-btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(0, 0, 0, 0.95);
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .nav-links.open {
        transform: translateX(0);
    }

    .nav-links ul {
        flex-direction: column;
        text-align: center;
        gap: 25px;
    }

    .nav-links ul li {
        width: 100%;
    }

    .nav-links a {
        font-size: 1.5rem;
        padding: 10px 0;
        display: block;
        color: var(--primary-white);
    }

    .nav-links a::after {
        display: none;
    }

    .hamburger-button {
        display: block;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        height: auto;
    }

    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 10px;
        align-items: center;
    }

    .explore-btn {
        display: block; /* Make it a block element */
        margin: 0 auto; /* Center it horizontally */
    }

    .hero-content .tagline {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .hero-content .description {
        font-size: 0.9rem;
        margin-bottom: 30px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-image-container {
        max-width: 90%;
        margin-top: 40px;
    }

    /* Our Services Section Styling (REMOVED from HTML, so these CSS rules effectively do nothing, but are kept for reference) */
    /*
    .services-section {
        padding: 50px 0;
    }

    .services-grid {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        padding: 0 5%;
        gap: 20px;
        margin: 0;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .services-grid::-webkit-scrollbar {
        display: none;
    }

    .service-card {
        flex-shrink: 0;
        width: var(--service-card-mobile-width);
        scroll-snap-align: start;
    }
    */

    .scrolling-text-container {
        font-size: 2rem;
        padding: 20px 0;
    }

    @keyframes scrollText {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    .projects-section .section-title {
        font-size: 3rem;
    }

    .slider-container {
        padding: 0 10px;
    }

    .projects-grid {
        gap: 20px;
    }
    .project-card {
        width: calc(100% - 20px);
    }

    .slider-button {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .about-us-tagline {
        font-size: 1.2rem;
        margin-bottom: 40px;
    }

    .about-text-content h3 {
        font-size: 1.8rem;
    }

    .about-text-content p {
        font-size: 0.9rem;
    }

    .about-buttons {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .btn-portfolio, .btn-start-project {
        width: 100%;
        text-align: center;
        padding: 10px 20px;
    }

    .about-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-card {
        padding: 25px;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }

    .testimonials-section .section-title {
        font-size: 3rem;
    }

    .testimonials-slider-container {
        padding: 0 10px;
    }

    .testimonial-track {
        gap: 20px;
    }

    .testimonial-card {
        width: calc(100% - 20px);
    }

    .company-initials {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .company-name {
        font-size: 1rem;
    }
    .industry-tag {
        font-size: 0.75rem;
    }
    .stars {
        font-size: 1rem;
    }
    .client-feedback {
        font-size: 0.9rem;
    }
    .client-signature {
        font-size: 0.8rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-col {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .footer-social-icons, .newsletter-form {
        justify-content: center;
    }

    .footer-col h4 {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .footer-bottom {
        margin-top: 40px;
        padding-top: 20px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .nav-links ul {
        gap: 10px;
        font-size: 0.9rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content .tagline {
        font-size: 1.3rem;
    }

    .service-card { /* Applies here for responsiveness of any element named service-card if exists */
        padding: 15px;
    }

    .card-icon { /* This applies to other sections now */
        width: 50px;
        height: 50px;
    }
    .card-icon i { /* This applies to other sections now */
        font-size: 25px;
    }
    .card-title { /* This applies to other sections now */
        font-size: 1.3rem;
    }
    .card-content h4, .card-content ul li { /* This applies to other sections now */
        font-size: 0.9rem;
    }

    .client-logos-track img {
        height: 30px;
        max-width: 80px;
    }

    .logo-group {
        gap: 30px;
    }

    .projects-section .section-title {
        font-size: 2.5rem;
    }

    .project-info {
        padding: 15px;
    }
    .project-title {
        font-size: 1.1rem;
    }

    .about-us-section .section-title {
        font-size: 2.5rem;
    }

    .testimonials-section .section-title {
        font-size: 2.5rem;
    }
    .client-feedback {
        font-size: 0.85rem;
    }

    .footer-branding .footer-logo {
        height: 40px;
    }

    .footer-branding .branding-tagline, .footer-nav ul li a, .footer-contact-info p, .newsletter-form p {
        font-size: 0.85rem;
    }

    .footer-social-icons a {
        font-size: 1.3rem;
    }

    .newsletter-form input, .newsletter-form button {
        width: 100%;
        flex-grow: unset;
    }

    .footer-bottom .footer-legal-links a {
        display: block;
        margin: 5px 0;
    }
}
/* Services Page Specific Styling */

/* Services Page Hero Section */
.page-hero-section {
    background-color: var(--primary-black); /* Dark background for hero */
    color: var(--primary-white);
    padding: 120px 5% 80px 5%; /* Adjust padding for hero section */
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 40vh; /* Minimum height for hero */
    position: relative;
    overflow: hidden;
}

.page-hero-section.services-page-hero {
    /* Specific background if needed, otherwise inherits from .page-hero-section */
    /* Example: background-image: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('path/to/services-hero-image.jpg'); */
    /* background-size: cover; */
    /* background-position: center; */
}

.page-hero-content {
    max-width: 800px;
    z-index: 10; /* Ensure content is above any background effects */
}

.page-title {
    font-family: 'Krona One', sans-serif;
    font-size: 5vw; /* Responsive font size for page title */
    color: var(--primary-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    line-height: 1.1;
}

.page-tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Our Services Section (Detailed on Services Page) */
.services-section-detailed {
    padding: 80px 5%;
    background-color: var(--primary-black); /* Consistent dark background */
    color: var(--primary-white);
    text-align: center;
    position: relative;
    z-index: 1;
}

.services-section-detailed .section-title {
    font-family: 'Krona One', sans-serif;
    font-size: 4vw;
    color: var(--primary-white);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.services-section-detailed .section-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

.services-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive grid columns */
    gap: 40px; /* Space between cards */
    max-width: 1200px;
    margin: 0 auto;
}

.service-card-detailed {
    background-color: #1a1a1a; /* Darker background for cards */
    border-radius: 15px;
    padding: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #333; /* Subtle border */
    position: relative;
    overflow: hidden;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6),
                0 0 30px rgba(250, 167, 31, 0.4);
}

.card-icon-detailed {
    width: 70px; /* Slightly larger icon */
    height: 70px;
    background-image: var(--main-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    flex-shrink: 0;
}

.card-icon-detailed i {
    font-size: 35px; /* Larger icon size */
    color: var(--primary-white);
}

.card-title-detailed {
    font-family: 'Krona One', sans-serif;
    font-size: 1.8rem; /* Larger title */
    color: var(--primary-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    line-height: 1.2;
}

.card-text-detailed {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.card-list-detailed {
    list-style: none;
    padding-left: 0;
    margin-top: auto; /* Pushes list to bottom if card content varies */
}

.card-list-detailed li {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
    line-height: 1.4;
    display: flex;
    align-items: flex-start;
}

.card-list-detailed li::before {
    content: "•"; /* Custom bullet point */
    color: var(--gradient-start); /* Gradient color for bullet */
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    font-weight: bold;
    margin-right: 5px;
}


/* Responsive Adjustments for Services Page */
@media (max-width: 1024px) {
    .page-hero-section {
        padding: 100px 5% 60px 5%;
    }
    .page-title {
        font-size: 4rem; /* Fixed rem for tablets */
    }
    .page-tagline {
        font-size: 1.2rem;
    }
    .services-section-detailed .section-title {
        font-size: 3.5rem;
    }
    .services-section-detailed .section-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    .services-grid-detailed {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjust min-width */
        gap: 30px;
    }
    .service-card-detailed {
        padding: 30px;
    }
    .card-icon-detailed {
        width: 60px;
        height: 60px;
    }
    .card-icon-detailed i {
        font-size: 30px;
    }
    .card-title-detailed {
        font-size: 1.6rem;
    }
    .card-text-detailed {
        font-size: 0.95rem;
    }
    .card-list-detailed li {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 80px 5% 50px 5%;
    }
    .page-title {
        font-size: 3rem; /* Further reduced for mobile */
    }
    .page-tagline {
        font-size: 1rem;
    }
    .services-section-detailed .section-title {
        font-size: 2.5rem; /* Further reduced for mobile */
    }
    .services-section-detailed .section-description {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    .services-grid-detailed {
        grid-template-columns: 1fr; /* Stack cards vertically on mobile */
        gap: 25px;
        padding: 0 3%; /* Add some horizontal padding to the grid itself */
    }
    .service-card-detailed {
        padding: 25px;
    }
    .card-title-detailed {
        font-size: 1.4rem;
    }
    .card-text-detailed {
        font-size: 0.9rem;
    }
    .card-list-detailed li {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .page-hero-section {
        padding: 60px 5% 40px 5%;
    }
    .page-title {
        font-size: 2.5rem; /* Even smaller for very small phones */
    }
    .page-tagline {
        font-size: 0.9rem;
    }
    .services-section-detailed .section-title {
        font-size: 2rem;
    }
    .services-section-detailed .section-description {
        font-size: 0.85rem;
        margin-bottom: 25px;
    }
    .service-card-detailed {
        padding: 20px;
    }
    .card-icon-detailed {
        width: 50px;
        height: 50px;
    }
    .card-icon-detailed i {
        font-size: 25px;
    }
    .card-title-detailed {
        font-size: 1.2rem;
    }
    .card-text-detailed {
        font-size: 0.85rem;
    }
    .card-list-detailed li {
        font-size: 0.8rem;
    }
}

/* Add this to your existing CSS */
.services-section-detailed { /* Or the specific class/ID for your "OUR EXPERTISE" section */
    background-image: url('http://googleusercontent.com/image_collection/image_retrieval/14224828812077380054_0');
    background-size: cover; /* This will make the image cover the entire section */
    background-position: center; /* This will center the image */
    background-repeat: no-repeat; /* This will prevent the image from repeating */
    color: #ffffff; /* Example: Change text color for better contrast if needed */
}