/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: 'Inter', sans-serif;
    color: #1e1e2a;
    background: #faf9f8;
    line-height: 1.6;
    overflow-x: hidden;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: -0.02em;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
.section-padding {
    padding: 80px 0;
}
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fc981c;
    background: rgba(181, 141, 107, 0.12);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 12px;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}
.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 12px;
}
.section-header h2 span {
    color: #fc981c;
}
.section-header p {
    color: #4a4a5a;
    font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 34px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    font-family: 'Inter', sans-serif;
}
.btn-primary {
    background: #fc981c;
    color: #fff;
    border-color: #fc981c;
}
.btn-primary:hover {
    background: #9f7858;
    border-color: #9f7858;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(181, 141, 107, 0.3);
}
.btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}
.btn-outline:hover {
    background: #fff;
    color: #1e1e2a;
    transform: translateY(-2px);
}
.btn-sm {
    padding: 8px 22px;
    font-size: 0.98rem;
}
.btn-lg {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===== HEADER / NAV ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    padding: 16px 0;
}
.site-header.scrolled {
    padding: 10px 0;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}
.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1e1e2a;
}
.logo-icon {
    color: #fc981c;
    font-size: 1.6rem;
}
.logo-text span {
    color: #fc981c;
}
.main-nav ul {
    display: flex;
    gap: 52px;
}
.main-nav a {
    font-weight: 500;
    font-size: 0.95rem;
    color: #2d2d3a;
    transition: color 0.2s;
    position: relative;
    text-transform: uppercase;
}
.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fc981c;
    transition: width 0.3s;
}
.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}
.main-nav a.active {
    color: #fc981c;
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.mobile-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: #1e1e2a;
    transition: 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: #0b0b12;
    overflow: hidden;
    padding: 120px 0 80px;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 40%, rgba(181,141,107,0.25) 0%, transparent 70%);
}
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0b0b12 0%, #1a161a 100%);
    z-index: -1;
}
.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
}
.hero-content {
    max-width: 700px;
    color: #fff;
}
.hero-badge {
    display: inline-block;
    background: rgba(181, 141, 107, 0.2);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: #d4b69a;
    margin-bottom: 24px;
    border: 1px solid rgba(181,141,107,0.25);
}
.hero h1 {
    font-size: 4.2rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero h1 span {
    color: #fc981c;
}
.hero-sub {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
}
.hero-stats div {
    text-align: center;
}
.hero-stats span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
}
.hero-stats small {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    animation: bounceDown 2s infinite;
}
@keyframes bounceDown {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== INTRO ===== */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.intro-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}
.intro-text p {
    color: #3d3d4a;
    margin-bottom: 16px;
    font-size: 1.05rem;
}
.intro-image-placeholder {
    background: linear-gradient(145deg, #f0ebe6, #e3dbd4);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    min-height: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fc981c;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid rgba(181,141,107,0.15);
}
.intro-image-placeholder i {
    font-size: 4rem;
    margin-bottom: 16px;
}

/* ===== SERVICES OVERVIEW ===== */
.services-overview {
    background: #fff;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.service-card {
    background: #f8f6f4;
    padding: 32px 24px;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    text-align: center;
}
.service-card:hover {
    transform: translateY(-8px);
    border-color: #fc981c;
    box-shadow: 0 20px 40px rgba(0,0,0,0.04);
    background: #fff;
}
.service-icon {
    font-size: 2.6rem;
    color: #fc981c;
    margin-bottom: 16px;
}
.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}
.service-card p {
    color: #4a4a5a;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.service-link {
    font-weight: 600;
    color: #fc981c;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}
.service-link:hover {
    gap: 12px;
}
.services-cta {
    text-align: center;
    margin-top: 48px;
}
.services-cta .btn-outline {
    color: #fc981c;
    border-color: #fc981c;
}
.services-cta .btn-outline:hover {
    background: #fc981c;
    color: #fff;
}

/* ===== WHY CHOOSE ===== */
.why-choose {
    background: #f8f6f4;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.why-item {
    background: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}
.why-item:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0,0,0,0.04);
}
.why-icon {
    font-size: 2.4rem;
    color: #fc981c;
    margin-bottom: 16px;
}
.why-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}
.why-item p {
    color: #4a4a5a;
    font-size: 0.95rem;
}

/* ===== INDUSTRIES ===== */
.industries {
    background: #fff;
}
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.industry-item {
    background: #f8f6f4;
    padding: 24px 16px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 500;
    transition: 0.3s;
    border: 1px solid transparent;
}
.industry-item:hover {
    border-color: #fc981c;
    background: #fff;
}
.industry-item i {
    font-size: 1.6rem;
    color: #fc981c;
    width: 32px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: #f8f6f4;
}
.testimonial-slider {
    overflow: hidden;
    position: relative;
}
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}
.testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    padding: 32px 28px;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.02);
    border: 1px solid #eee;
}
.testimonial-stars {
    color: #f5b342;
    margin-bottom: 12px;
    letter-spacing: 2px;
}
.testimonial-card p {
    font-size: 1rem;
    color: #2d2d3a;
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: #1e1e2a;
}
.testimonial-author span {
    font-size: 0.85rem;
    color: #6a6a7a;
}
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}
.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #ddd;
    background: #fff;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
    color: #1e1e2a;
}
.slider-btn:hover {
    background: #fc981c;
    border-color: #fc981c;
    color: #fff;
}

/* ===== FAQ ===== */
.faq {
    background: #fff;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.faq-item {
    border-bottom: 1px solid #eee;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1e1e2a;
    transition: 0.2s;
}
.faq-question:hover {
    color: #fc981c;
}
.faq-question i {
    transition: transform 0.3s;
}
.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 0 0 0;
}
.faq-answer p {
    padding-bottom: 20px;
    color: #4a4a5a;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 0 8px 0;
}

/* ===== CTA ===== */
.cta-section {
    background: #0b0b12;
}
.cta-box {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(145deg, #1a161a, #0b0b12);
    border-radius: 32px;
    border: 1px solid rgba(181,141,107,0.15);
}
.cta-box h2 {
    font-size: 2.8rem;
    color: #fff;
    margin-bottom: 16px;
}
.cta-box h2 span {
    color: #fc981c;
}
.cta-box p {
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0f0f16;
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 3fr 2fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .logo a {
    color: #fff;
    font-size: 1.6rem;
}
.footer-brand p {
    margin: 16px 0 20px;
    font-size: 0.95rem;
    max-width: 300px;
}
.footer-social {
    display: flex;
    gap: 14px;
}
.footer-social a {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    color: #fff;
}
.footer-social a:hover {
    background: #fc981c;
    transform: translateY(-3px);
}
.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}
.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}
.footer-links a,
.footer-contact a {
    transition: color 0.2s;
}
.footer-links a:hover,
.footer-contact a:hover {
    color: #fc981c;
}
.footer-contact ul li i {
    width: 24px;
    color: #fc981c;
}
.footer-newsletter p {
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.newsletter-form {
    display: flex;
    gap: 8px;
}
.newsletter-form input {
    flex: 1;
    padding: 12px 18px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.06);
    color: #fff;
    font-family: 'Inter', sans-serif;
    outline: none;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}
.newsletter-form button {
    background: #fc981c;
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 1.2rem;
}
.newsletter-form button:hover {
    background: #9f7858;
}
.newsletter-note {
    font-size: 0.75rem;
    opacity: 0.4;
    margin-top: 8px;
}
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.9rem;
}
.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: 0.2s;
}
.footer-bottom a:hover {
    color: #fc981c;
}
.footer-legal {
    display: flex;
    gap: 24px;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fc981c;
    color: #fff;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(181,141,107,0.3);
    z-index: 999;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
}
.back-to-top:hover {
    background: #9f7858;
    transform: translateY(-4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .industries-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .testimonial-card { flex: 0 0 calc(50% - 15px); }
}
@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    .main-nav {
        position: fixed;
        top: 30px;
        left: 0;
        width: 100%;
        background: rgba(255,255,255,0.98);
        padding: 24px 32px;
        box-shadow: 0 12px 40px rgba(0,0,0,0.06);
        transform: translateY(-120%);
        transition: transform 0.35s ease;
        backdrop-filter: blur(8px);
    }
    .main-nav.open {
        transform: translateY(0);
        top: 80px;
    }
    .main-nav ul {
        flex-direction: column;
        gap: 6px;
    }

     .main-nav ul li {
        border-bottom: 1px dotted #333;
        padding: 16px 0;

    }
    .hero h1 { font-size: 2.8rem; }
    .hero-stats { gap: 24px; flex-wrap: wrap; }
    .intro-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr!important; }
    .why-grid { grid-template-columns:1fr!important }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns:1fr!important }
    .testimonial-card { flex: 0 0 100%; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .section-header h2 { font-size: 2.2rem; }
    .cta-box h2 { font-size: 2rem; }
    .cta-box { padding: 40px 24px; }
    .header-actions a { display: none; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .hero-buttons { flex-direction: column; }
    .hero-stats span { font-size: 1.6rem; }
    .industries-grid { grid-template-columns: 1fr; }
}




/* Inline override for hero background image – you can move to style.css if preferred */
        .hero {
            background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center center / cover no-repeat;
            position: relative;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.65); /* dark overlay for readability */
            z-index: 1;
        }
        .hero-bg-gradient {
            display: none; /* hide the gradient since we have image */
        }
        .hero-container {
            position: relative;
            z-index: 2;
        }
        /* If you prefer a gradient overlay instead of solid, adjust the .hero-overlay background */


.logo img { width:150px; }




.internal-banner {
    padding: 180px 0 100px;
    background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1600&q=80') center center / cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
}

.about-banner {
    padding: 180px 0 100px;
    background: url('../img/about_inner_banner.jpg') center bottom; / cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
}

.services-banner {
    padding: 180px 0 100px;
    background: url('../img/inner_services.jpg') center top; / cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
}


.contact-banner {
    padding: 180px 0 100px;
    background: url('../img/innger_banner_contact.jpg') center center / cover no-repeat;
    position: relative;
    color: #fff;
    text-align: center;
}


.internal-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}
.internal-banner .container {
    position: relative;
    z-index: 2;
}
.internal-banner h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 12px;
}
.internal-banner h1 span {
    color: #fc981c;
}
.internal-banner .breadcrumb {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
}
.internal-banner .breadcrumb a {
    color: #fc981c;
    text-decoration: none;
    transition: color 0.2s;
}
.internal-banner .breadcrumb a:hover {
    color: #d4b69a;
    text-decoration: underline;
}
.internal-banner .breadcrumb .sep {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.3);
}
.internal-banner .breadcrumb .current {
    color: #fff;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 768px) {
    .internal-banner {
        padding: 140px 0 60px;
    }
    .internal-banner h1 {
        font-size: 2.4rem;
    }
}


.intro-image img { width: 100%; overflow: hidden; border-radius: 5px; }