:root {
    --primary-orange: #FF6B00;
    --primary-orange-dark: #cc5600;
    --secondary-blue: #0056D2;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-footer: #111111;
    --border-color: #e5e5e5;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px; /* For sticky navbar */
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-orange);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-orange-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--text-dark);
    transform: translateY(-2px);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px; /* Adjust based on actual logo ratio */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.nav-links li a:hover {
    color: var(--primary-orange);
}

.mobile-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../assets/images/hero-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    margin-top: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 80px; /* To account for sticky navbar if needed */
}

.hero h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
    line-height: 1.1;
}

.hero p {
    font-size: 1.5rem;
    color: #f0f0f0;
    margin-bottom: 40px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* --- Clients Section --- */
.clients {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #e9ecef);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.clients h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
    color: var(--text-light);
    font-weight: 600;
}

.client-slider {
    width: 100%;
    overflow: hidden; /* Hide scrollbar */
    position: relative;
    padding: 20px 0;
    white-space: nowrap;
}

.client-track {
    display: inline-flex;
    align-items: center;
    gap: 80px;
    width: fit-content;
    white-space: nowrap;
    /* Animation removed - handled by JS */
}

.client-logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.client-logo-img:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .client-track {
        gap: 40px;
    }

    .client-logo-img {
        height: 60px;
    }
}



/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--primary-orange);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Our Offering --- */
.offering {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-orange);
}

.service-card .icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 25px;
    transition: var(--transition);
}

.service-card h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.service-card:hover .icon {
    transform: scale(1.1);
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: var(--transition);
}

.service-card:hover::after {
    width: 100%;
}

/* --- Industries Section --- */
.industries {
    height: 50vh;
    min-height: 400px;
    background-color: var(--primary-orange); /* Solid Orange */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.industries h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: white;
}

.scrolling-wrapper {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: hidden; /* Hide scrollbar for auto-scroll */
    gap: 40px; /* Increased gap for better spacing */
    padding: 20px 0;
    width: 100%;
    position: relative;
    white-space: nowrap;
}

/* Hide Scrollbar completely */
.scrolling-wrapper::-webkit-scrollbar {
    display: none;
}
.scrolling-wrapper {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

.industry-tag {
    flex: 0 0 auto;
    background: white; /* White tag for contrast on orange */
    color: var(--primary-orange);
    padding: 15px 50px;
    border-radius: 50px;
    font-size: 1.5rem;
    font-weight: 700;
    cursor: default;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.industry-tag:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* No media query centering needed for infinite scroll layout */

/* --- About Us --- */
.about {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.about .features i {
    color: var(--primary-orange);
}

/* --- FAQ Section --- */
.faq {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    color: var(--primary-orange);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 20px;
}

.accordion-body p {
    padding-bottom: 20px;
}

/* --- Contact Us --- */
.contact {
    padding: 100px 0;
    background-color: #f0f4f8; /* Very light blue/gray */
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.contact-info {
    background-color: var(--secondary-blue);
    padding: 50px;
    color: white;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
}

.info-item h5 {
    color: white;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.info-item p {
    color: rgba(255,255,255,0.8);
    font-size: 0.95rem;
}

.contact-person {
    margin-top: 50px;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 20px;
}

.contact-person p {
    color: white;
}

.contact-form-container {
    padding: 50px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.contact-form .btn-primary {
    width: 100%;
}

/* --- Footer --- */
footer {
    background-color: var(--bg-footer);
    color: white;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: #999;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #999;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 30px;
}

.footer-bottom p {
    color: #555;
    font-size: 0.9rem;
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    z-index: 2000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
}

/* --- Media Queries --- */
@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: var(--shadow-md);
        text-align: center;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

/* --- Service Page Strict Layout --- */
.service-header {
    padding: 120px 0 60px; /* Space for fixed navbar */
    background-color: var(--bg-light);
    text-align: center;
}

.service-header h1 {
    font-size: 3rem;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.service-header p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.service-main-split {
    padding: 80px 0;
    background-color: white;
}

.service-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.service-image-col img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    aspect-ratio: 4/3; /* Consistent aspect ratio */
}

.service-content-col h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.service-content-col h3 {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 20px;
    margin-bottom: 15px;
}

.service-content-col p {
    margin-bottom: 20px;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.service-bottom-section {
    padding: 60px 0 100px;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
}

.service-bottom-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

/* Responsive */
@media (max-width: 968px) {
    .service-split-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-image-col {
        order: -1; 
    }
}
