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

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

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px; /* adjust as needed */
  width: auto;
  object-fit: contain;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 2rem;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(10, 10, 10, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(30px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1000px;
    position: relative;
}

.hero-image {
    display: none;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 span {
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: #b0b0b0;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #0066ff;
}

.btn-secondary:hover {
    background: rgba(0, 102, 255, 0.1);
    transform: translateY(-3px);
}

/* Section Styles */
section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: clamp(2rem, 5vw, 3rem);
    color: #fff;
    margin-bottom: 3rem;
    font-weight: 700;
}

.section-title span {
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Companies Cards */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.company-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    padding: 0;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.company-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.company-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.company-card:hover .company-card-image img {
    transform: scale(1.1);
}

.company-card-content {
    padding: 2rem;
}

.company-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(0, 71, 179, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.company-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.3);
    border-color: #0066ff;
}

.company-card:hover::before {
    opacity: 1;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.company-card h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
}

.company-card p {
    color: #b0b0b0;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.company-link {
    color: #0066ff;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.company-link:hover {
    color: #0047b3;
    gap: 1rem;
}

/* Portfolio Section */
.portfolio-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 2vw, 1rem);
    font-weight: 500;
}

.tab-btn.active {
    background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 102, 255, 0.3);
}

.tab-btn:hover {
    background: rgba(0, 102, 255, 0.2);
}

.portfolio-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.portfolio-item {
    display: none;
}

.portfolio-item.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.portfolio-image {
    width: 100%;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
    /* border: 2px solid rgba(255, 0, 0, 0.3); */
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
}

.portfolio-item h3 {
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.portfolio-item h4 {
    color: #0066ff;
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin: 2rem 0 1rem;
}

.portfolio-item ul {
    list-style: none;
    margin-bottom: 2rem;
}

.portfolio-item li {
    color: #b0b0b0;
    padding: 0.7rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.portfolio-item li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
}

.vision-box {
    background: rgba(0, 102, 255, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #0066ff;
    margin: 2rem 0;
}

.vision-box strong {
    color: #fff;
    font-size: 1.2rem;
}

.vision-box p {
    color: #b0b0b0;
    margin-top: 0.5rem;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.about-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-card h3 {
    color: #fff;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-card p {
    color: #b0b0b0;
    font-size: clamp(1rem, 2vw, 1.1rem);
    line-height: 1.8;
}

.about-card ul {
    list-style: none;
    margin-top: 1rem;
}

.about-card li {
    color: #b0b0b0;
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: clamp(1rem, 2vw, 1.1rem);
}

.about-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066ff;
    font-weight: bold;
}

/* Values Section */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 102, 255, 0.2);
    border-color: #0066ff;
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #fff;
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    margin-bottom: 1rem;
}

.value-card p {
    color: #b0b0b0;
    font-size: clamp(0.9rem, 2vw, 1rem);
    line-height: 1.6;
}

/* Contact Section */
.contact-form {
    max-width: 700px;
    margin: 3rem auto;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: clamp(0.9rem, 2vw, 1rem);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: clamp(0.9rem, 2vw, 1rem);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066ff;
    background: rgba(255, 255, 255, 0.08);
}

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

/* Footer */
footer {
    background: #0a0a0a;
    color: #b0b0b0;
    text-align: center;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: clamp(0.9rem, 2vw, 1rem);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

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

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

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

    .hero-image {
        display: none;
    }

    .carousel-dots {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 2rem;
    }

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

    .dot.active {
        background: #0066ff;
        width: 30px;
        border-radius: 6px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* ========================================
   UPDATES.CSS - Additional Styles
   Add this file after your main index.css
   ======================================== */

/* Contact Section - Split Layout with Map */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
}

.contact-form-wrapper {
    width: 100%;
}

/* Override existing .contact-form max-width for split layout */
.contact-form-wrapper .contact-form,
.contact-form-wrapper form {
    max-width: 100%;
    margin: 0;
}

.contact-map-wrapper {
    width: 100%;
    min-height: 600px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 102, 255, 0.2);
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-map-wrapper iframe {
    display: block;
}

/* Footer - Complete Override with New Structure */
footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%) !important;
    color: #fff !important;
    padding: 4rem 2rem 2rem !important;
    margin-top: 5rem;
    text-align: left !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 3rem;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    color: #0066ff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.footer-section a {
    color: #0066ff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    color: #0088ff;
    text-decoration: underline;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.footer-links li a:hover {
    color: #0066ff;
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #b0b0b0;
    font-size: 0.95rem;
}


/* Responsive Design */
@media (max-width: 968px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-map-wrapper {
        min-height: 400px;
        order: 2; /* Map comes after form on mobile */
    }
    
    .contact-form-wrapper {
        order: 1;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links li a:hover {
        transform: translateX(0);
    }
    
    .contact-map-wrapper {
        min-height: 350px;
    }
}