/* ===== DELTA STRUCTURES LTD - Main Stylesheet ===== */
/* Color Scheme: Navy (#1B2A4A), Orange (#E8871E), Grey/Steel Blue (#3D6B8E) */

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER / NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #1B2A4A;
    transition: background 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 55px;
    width: auto;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: #fff;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 5px;
}

.main-nav a {
    color: #fff;
    padding: 10px 15px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.main-nav a:hover {
    color: #E8871E;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(45deg);
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a::after {
    transform: rotate(-135deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1B2A4A;
    min-width: 240px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
}

.dropdown-menu a:hover {
    background: rgba(232, 135, 30, 0.1);
    color: #E8871E;
}

.nav-cta {
    background: #E8871E;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: background 0.3s ease, transform 0.3s ease !important;
}

.nav-cta:hover {
    background: #d47818;
    transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, #2C5F8A 0%, #1B2A4A 50%, #1B2A4A 100%);
    z-index: 1;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #8B6D4A 0%, #B8956A 30%, #D4B896 60%, #A0C4E0 100%);
    z-index: 0;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(27,42,74,0.95) 0%, rgba(27,42,74,0.7) 40%, rgba(27,42,74,0.3) 70%, rgba(27,42,74,0.1) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 60px;
}

.hero-sidebar {
    width: 240px;
    flex-shrink: 0;
    padding-top: 20px;
}

.hero-sidebar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
    cursor: pointer;
}

.hero-sidebar-item:hover {
    color: #E8871E;
}

.hero-sidebar-item .icon {
    width: 40px;
    height: 40px;
    background: rgba(100,160,220,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero-sidebar-item .icon img {
    width: 22px;
    height: 22px;
    filter: brightness(0) invert(1);
}

.hero-sidebar-item .line {
    width: 30px;
    height: 2px;
    background: #fff;
    opacity: 0.5;
}

.hero-main {
    flex: 1;
    padding-left: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-tagline {
    color: #E8871E;
    font-size: 0.95rem;
    font-weight: 700;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero h1 {
    color: #fff;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 1.15rem;
    margin-bottom: 30px;
}

.hero-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 40px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.hero-feature img {
    width: 22px;
    height: 22px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background: transparent;
    color: #E8871E;
    border-color: #E8871E;
}

.btn-primary:hover {
    background: #E8871E;
    color: #fff;
}

.btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border-color: rgba(255,255,255,0.3);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.btn-secondary img {
    width: 18px;
    height: 18px;
}

.btn-orange {
    background: #E8871E;
    color: #fff;
    border-color: #E8871E;
}

.btn-orange:hover {
    background: #d47818;
    border-color: #d47818;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232,135,30,0.4);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-outline-white:hover {
    background: #fff;
    color: #1B2A4A;
}

.hero-google-review {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-google-review img {
    height: 50px;
}

/* ===== NEWS TICKER ===== */
.news-ticker {
    background: #1B2A4A;
    color: #fff;
    padding: 12px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.news-ticker-inner {
    display: flex;
    align-items: center;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.news-ticker-label {
    background: #E8871E;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
}

.news-ticker-text {
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    background: #1B2A4A;
    color: #fff;
    padding: 80px 0;
}

.why-choose-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-choose-left h2 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.why-choose-left p {
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
    margin-bottom: 15px;
}

.why-choose-left .highlight {
    color: #E8871E;
    font-weight: 700;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.why-choose-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.08);
}

.why-choose-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.why-choose-card h4 {
    color: #E8871E;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.why-choose-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ===== INDUSTRIES CAROUSEL ===== */
.industries-section {
    background: #1B2A4A;
    padding: 60px 0;
}

.industries-section .section-header {
    text-align: center;
    color: #fff;
    margin-bottom: 40px;
    padding: 0 30px;
}

.industries-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.industries-carousel::-webkit-scrollbar {
    display: none;
}

.industry-card {
    min-width: 280px;
    height: 400px;
    position: relative;
    overflow: hidden;
    scroll-snap-align: start;
    flex-shrink: 0;
    cursor: pointer;
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 25px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
}

.industry-card-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.industry-card-overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
    line-height: 1.4;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: #E8871E;
    border-color: #E8871E;
}

/* ===== STATS SECTION ===== */
.stats-section {
    padding: 80px 0;
    background: #fff;
}

.stats-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.stats-text h3 {
    color: #E8871E;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-weight: 700;
}

.stats-text h2 {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.stats-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.stats-numbers {
    display: flex;
    gap: 40px;
    margin: 30px 0;
}

.stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #3D6B8E;
    line-height: 1;
}

.stat-number sup {
    font-size: 0.5em;
    vertical-align: super;
}

.stat-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    line-height: 1.4;
}

.stats-image {
    border-radius: 12px;
    overflow: hidden;
}

.stats-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== WHY CHOOSE CTA SECTION ===== */
.why-cta {
    background: #E8F4FD;
    padding: 80px 0;
}

.why-cta-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-cta-left {
    position: relative;
}

.why-cta-left img {
    width: 100%;
    border-radius: 12px;
}

.why-cta-right h3 {
    color: #E8871E;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.why-cta-right h2 {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.why-cta-right p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* ===== PRODUCTS SECTION ===== */
.products-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.products-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
}

.products-left h3 {
    color: #E8871E;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 700;
}

.products-left h2 {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.products-left p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.7;
}

.product-tabs {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-tab {
    padding: 15px 20px;
    border: 2px solid #ddd;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    color: #1B2A4A;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
}

.product-tab::before {
    content: '';
    display: inline-block;
    width: 25px;
    height: 2px;
    background: #1B2A4A;
    transition: all 0.3s ease;
}

.product-tab:hover,
.product-tab.active {
    border-color: #E8871E;
    color: #fff;
    background: #1B2A4A;
}

.product-tab.active::before,
.product-tab:hover::before {
    background: #E8871E;
}

.products-right {
    position: relative;
}

.product-content {
    display: none;
}

.product-content.active {
    display: block;
}

.product-content h3 {
    color: #1B2A4A;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.product-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.product-content .btn {
    margin-top: 10px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 80px 0;
    background: #1B2A4A;
    color: #fff;
}

.testimonials-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.testimonials h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
}

.testimonial-item {
    display: none;
    padding: 30px 0;
}

.testimonial-item.active {
    display: block;
}

.testimonial-quote {
    font-size: 1.15rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    position: relative;
    padding: 0 40px;
}

.testimonial-quote::before {
    content: '\201C';
    font-size: 4rem;
    color: #E8871E;
    position: absolute;
    top: -20px;
    left: 0;
    line-height: 1;
}

.testimonial-author {
    font-weight: 600;
    color: #E8871E;
    font-size: 1rem;
}

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

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: background 0.3s ease;
    border: none;
}

.testimonial-dot.active {
    background: #E8871E;
}

/* ===== CLIENT LOGOS ===== */
.client-logos {
    padding: 60px 0;
    background: #fff;
}

.client-logos-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.client-logos h2 {
    text-align: center;
    color: #1B2A4A;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.logos-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px 40px;
}

.logos-grid img {
    height: 45px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logos-grid img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* ===== CONTACT CTA SECTION ===== */
.contact-cta {
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(232,135,30,0.9);
}

.contact-cta-inner {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-cta-left h2 {
    color: #fff;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.contact-cta-left p {
    color: rgba(255,255,255,0.9);
    line-height: 1.7;
}

.contact-cta-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-cta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    font-size: 1rem;
}

.contact-cta-item img {
    width: 20px;
    height: 20px;
}

.contact-cta-item a {
    color: #fff;
    font-weight: 600;
}

.contact-cta-item a:hover {
    text-decoration: underline;
}

/* ===== FOOTER ===== */
.footer {
    background: #2D5F8A;
    color: #fff;
    padding: 60px 0 0;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-top {
    display: grid;
    grid-template-columns: 280px 1fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.footer-brand .footer-logo {
    height: 55px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
    margin-bottom: 15px;
}

.footer-brand a {
    color: rgba(255,255,255,0.7);
    display: block;
    margin-bottom: 5px;
    font-size: 0.85rem;
}

.footer-brand .phone-btn {
    display: inline-block;
    border: 1px solid #E8871E;
    color: #E8871E;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.footer-brand .phone-btn:hover {
    background: #E8871E;
    color: #fff;
}

.footer-col h4 {
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.65);
    font-size: 0.85rem;
    padding: 4px 0;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #E8871E;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 30px 0;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #E8871E;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.15);
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
}

/* ===== ACCREDITATIONS ===== */
.accreditations {
    padding: 40px 0;
    background: #fff;
}

.accreditations-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.accreditations-inner img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* ===== PAGE BANNER ===== */
.page-banner {
    background: #1B2A4A;
    padding: 140px 30px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(27,42,74,0.5));
}

.page-banner h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ===== ABOUT PAGE ===== */
.about-intro {
    padding: 80px 0;
}

.about-intro-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-intro-text h2 {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-intro-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.about-intro-image img {
    width: 100%;
    border-radius: 12px;
}

.about-features {
    padding: 60px 0;
    background: #f9f9f9;
}

.about-features-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.about-feature-card {
    text-align: center;
    padding: 30px 20px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-feature-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 15px;
}

.about-feature-card h4 {
    color: #1B2A4A;
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.about-feature-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 80px 0;
}

.team-section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.team-section h2 {
    text-align: center;
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: top;
}

.team-card-info {
    padding: 20px;
}

.team-card-info h4 {
    color: #1B2A4A;
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.team-card-info p {
    color: #E8871E;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ===== BUILDINGS PAGE ===== */
.buildings-grid {
    padding: 80px 0;
    background: #f9f9f9;
}

.buildings-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.building-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    align-items: center;
}

.building-card-large:nth-child(even) {
    direction: rtl;
}

.building-card-large:nth-child(even) > * {
    direction: ltr;
}

.building-card-large img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.building-card-content {
    padding: 40px;
}

.building-card-content h3 {
    color: #1B2A4A;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.building-card-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* ===== INDUSTRIES PAGE ===== */
.industries-grid {
    padding: 80px 0;
}

.industries-grid-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.industry-card-page {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
}

.industry-card-page img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.industry-card-page:hover img {
    transform: scale(1.05);
}

.industry-card-page .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    background: linear-gradient(transparent, rgba(27,42,74,0.9));
    color: #fff;
}

.industry-card-page .overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.industry-card-page .overlay p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.8);
}

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 80px 0;
}

.contact-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    color: #1B2A4A;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-detail-item .icon-circle {
    width: 40px;
    height: 40px;
    background: #E8871E;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #fff;
    font-size: 1rem;
}

.contact-detail-item .detail-text h4 {
    color: #1B2A4A;
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-detail-item .detail-text p,
.contact-detail-item .detail-text a {
    color: #666;
    font-size: 0.9rem;
}

.contact-detail-item .detail-text a:hover {
    color: #E8871E;
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 30px;
}

.office-card {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.office-card h4 {
    color: #1B2A4A;
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.office-card p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
}

.contact-form {
    background: #1B2A4A;
    padding: 40px;
    border-radius: 12px;
}

.contact-form h3 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    margin-bottom: 6px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    color: #fff;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255,255,255,0.4);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #E8871E;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-group select option {
    background: #1B2A4A;
    color: #fff;
}

.form-submit {
    background: #E8871E;
    color: #fff;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.form-submit:hover {
    background: #d47818;
    transform: translateY(-2px);
}

/* ===== FINANCE SECTION ===== */
.finance-section {
    padding: 80px 0;
    background: #E8F4FD;
}

.finance-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.finance-inner h2 {
    color: #1B2A4A;
    font-size: 2rem;
    margin-bottom: 15px;
}

.finance-inner > p {
    color: #666;
    margin-bottom: 40px;
}

.finance-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.finance-stat {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.finance-stat .number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #E8871E;
    margin-bottom: 10px;
}

.finance-stat p {
    color: #666;
    font-size: 0.9rem;
}

/* ===== SECTION HEADERS ===== */
.section-tag {
    color: #E8871E;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
}

.section-title {
    color: #1B2A4A;
    font-size: 2.2rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

    .hero-sidebar {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        padding-top: 0;
        margin-bottom: 20px;
    }

    .hero-sidebar-item {
        padding: 8px 12px;
        font-size: 0.8rem;
    }

    .hero-main {
        padding-left: 0;
    }

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

    .why-choose-inner,
    .stats-inner,
    .why-cta-inner,
    .contact-cta-inner {
        grid-template-columns: 1fr;
    }

    .products-inner {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-intro-inner {
        grid-template-columns: 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;
    }

    .building-card-large {
        grid-template-columns: 1fr;
    }

    .building-card-large:nth-child(even) {
        direction: ltr;
    }

    .industries-grid-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: #1B2A4A;
        flex-direction: column;
        align-items: flex-start;
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        overflow-y: auto;
        gap: 0;
    }

    .main-nav.active {
        right: 0;
        box-shadow: -5px 0 30px rgba(0,0,0,0.5);
    }

    .main-nav a {
        padding: 12px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 15px;
        display: none;
    }

    .nav-dropdown.open .dropdown-menu {
        display: block;
    }

    .hero {
        min-height: auto;
        padding-top: 80px;
    }

    .hero-content {
        padding: 100px 20px 40px;
    }

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

    .hero-features {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-sidebar {
        display: none;
    }

    .why-choose-left h2 {
        font-size: 1.8rem;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

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

    .about-features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .finance-stats {
        grid-template-columns: 1fr;
    }

    .offices-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid-inner {
        grid-template-columns: 1fr;
    }

    .industry-card {
        min-width: 85vw;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }

    .about-features-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .logos-grid img {
        height: 30px;
    }
}
