* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-img {
    width: 50px;
    height: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.tagline {
    font-size: 0.75rem;
    color: #666;
    font-style: italic;
}

:root {
    --primary: #000;
    --secondary: #fff;
    --accent: #1d1d1f;
    --light-gray: #1c1c1e;
    --medium-gray: #2c2c2e;
    --dark-gray: #86868b;
    --text: #f5f5f7;
    --text-light: #a1a1a6;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--primary);
    color: var(--text);
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.015em;
}

h2 {
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.2;
}

p {
    font-size: 1.2rem;
    line-height: 1.4;
    color: var(--text-light);
}
.product-image-containerv {
  position: relative;
  width: 100%;
  height: 300px; /* adjust as needed */
  overflow: hidden;
  border-radius: 12px;
}

.product-video video {
  width: 100%;
  height: 300%;
  object-fit: cover;
  display: block;
}

.product-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-video:hover .product-image-overlay {
  opacity: 1;
}

.product-image-content h2 {
  color: #fff;
  font-size: 1.5em;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--secondary);
}

.logo-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--dark-gray);
}

.cta-button {
    background: var(--secondary);
    color: var(--primary);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #e0e0e0;
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
}

.hero h1 {
    margin-bottom: 1rem;
    background: linear-gradient(90deg, #fff, #a1a1a6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.5s;
}

.hero p {
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.7s;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.9s;
}

.btn {
    padding: 0.8rem 1.8rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--primary);
}

.btn-secondary {
    border: 1px solid var(--medium-gray);
    color: var(--secondary);
}

.btn-primary:hover {
    background-color: #e0e0e0;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
}

/* 3D Product Visualization */
.product-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.product-visual {
    width: 600px;
    height: 400px;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.1));
    border-radius: 30px;
    position: relative;
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateY(0deg);
    transition: transform 0.5s;
    box-shadow: 0 0 50px rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.product-visual::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.05) 50%, transparent 70%);
    border-radius: 30px;
    animation: shine 3s infinite linear;
}

.product-card {
    position: absolute;
    width: 250px;
    height: 300px;
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform-style: preserve-3d;
    transition: transform 0.5s;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* .product-card:nth-child(1) {
    transform: translateX(-150px) rotateY(15deg);
    z-index: 3;
}

.product-card:nth-child(2) {
    transform: translateX(150px) rotateY(-15deg);
    z-index: 2;
} */

.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.product-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.product-tagline {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Products Section - Gallery Style */
.products {
    padding: 8rem 0;
    background-color: var(--primary);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    padding: 0 2rem;
}

.section-header h2 {
    color: var(--secondary);
}

.products-gallery {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-item {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-image-container {
    height: 70vh;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.product-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

.product-image-content h2 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.product-image-content p {
    font-size: 1.5rem;
    color: var(--text-light);
}

.product-details {
    padding: 5rem 2rem;
    background: var(--accent);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-details-content {
    max-width: 1000px;
    width: 100%;
}

.product-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--primary);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.product-description {
    margin-bottom: 2rem;
    line-height: 1.6;
    color: var(--text-light);
    font-size: 1.3rem;
}

.product-features {
    list-style: none;
    margin-bottom: 3rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.product-features li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
    font-size: 1.1rem;
}

.product-features i {
    color: var(--secondary);
}

.product-cta {
    display: flex;
    gap: 1rem;
}

.product-cta .btn {
    background: var(--glass);
    color: var(--secondary);
    border: 1px solid var(--glass-border);
}

.product-cta .btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Features Section */
.features {
    padding: 8rem 2rem;
    background: var(--accent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--glass);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s, background 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 1.8rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--secondary);
}

.feature-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* Specifications */
.specs {
    padding: 8rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    background: var(--accent);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.spec-item {
    padding: 1.5rem;
    border-bottom: 1px solid var(--medium-gray);
}

.spec-label {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.spec-value {
    font-size: 1.1rem;
    color: var(--text);
}

/* Purchase Section */
.purchase {
    padding: 8rem 2rem;
    text-align: center;
    background: var(--primary);
}

.price {
    font-size: 2.5rem;
    margin: 2rem 0;
    color: var(--secondary);
}

/* Footer */
footer {
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--medium-gray);
    background: var(--accent);
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--secondary);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.7rem;
}

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--secondary);
}

.copyright {
    margin-top: 3rem;
    text-align: center;
    color: var(--dark-gray);
    font-size: 0.8rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shine {
    0% {
        background-position: -100px;
    }
    100% {
        background-position: 200px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .nav-links {
        display: none;
    }
    
    .product-visual {
        width: 90%;
        height: 300px;
    }
    
    .product-card {
        width: 200px;
        height: 250px;
    }
    
    .product-card:nth-child(1) {
        transform: translateX(-100px) rotateY(15deg);
    }
    
    .product-card:nth-child(2) {
        transform: translateX(100px) rotateY(-15deg);
    }
    
    .product-image-content h2 {
        font-size: 2.5rem;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-cta {
        flex-direction: column;
    }
#demo {
  text-align: center;
  padding: 50px 20px;
  background-color: #111;
}

#demo video {
  width: 80%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}
 


}
/* MOBILE NAVIGATION */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        padding: 12px;
        text-align: center;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin-top: 10px;
    }

    .cta-button {
        margin-top: 12px;
    }
    .hamburger {
    display: block;
    position: absolute;
    right: 20px;
    top: 18px;
    font-size: 28px;
    color: white;
    cursor: pointer;
    z-index: 1000;
}

    /* make nav-links slide from top */
    .nav-links {
        width: 100%;
        left: 0;
        right: 0;
    }

}

/* HERO SECTION */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        text-align: center;
    }

    .product-container,
    .product-visual {
        flex-direction: column;
    }

    .product-card {
        width: 100%;
        margin-bottom: 20px;
    }

    h1 {
        font-size: 2rem;
    }
}

/* PRODUCT GALLERY STACKS ON MOBILE */
@media (max-width: 900px) {
    .products-gallery {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }

    .product-item {
        width: 100%;
    }

    .product-image-container {
        height: 260px;
    }
}

/* FEATURES GRID */
@media (max-width: 768px) {
    .features-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 20px;
    }
}

/* SPECS GRID */
@media (max-width: 768px) {
    .specs-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Hide hamburger on desktop */
.hamburger {
    display: none;
    font-size: 26px;
    cursor: pointer;
    color: white;
}

/* Desktop nav stays normal */
.nav-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

/* Mobile contact button hidden on desktop */
.mobile-btn {
    display: none;
}

/* ============================
   MOBILE NAVIGATION
============================ */
@media (max-width: 768px) {

    /* Show hamburger on mobile */
    .hamburger {
        display: block;
    }

    /* Hide desktop button */
    .desktop-btn {
        display: none;
    }

    nav {
        position: relative;
    }

    /* Mobile Menu Hidden Initially */
    .nav-links {
        position: absolute;
        top: 65px;
        right: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        gap: 18px;
        display: none;
        animation: slideDown 0.3s ease;
    }

    /* Show menu when active */
    .nav-links.open {
        display: flex;
    }

    /* Make mobile contact button visible */
    .mobile-btn {
        display: block;
        width: 80%;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
/* --- BASIC HAMBURGER ICON (Always hidden on desktop) --- */
.hamburger {
    display: none;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    padding: 10px;
}

/* Desktop button visible only on desktop */
.desktop-btn {
    display: inline-block;
}

/* Mobile button hidden on desktop */
.mobile-btn {
    display: none;
}

/* --- MOBILE MENU BREAKPOINT --- */
@media (max-width: 768px) {

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Hide desktop Contact button */
    .desktop-btn {
        display: none;
    }

    /* Hide links by default */
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 0;
        top: 70px;
        width: 100%;
        background: rgba(0,0,0,0.95);
        text-align: center;
        padding: 20px 0;
        gap: 20px;
        animation: slideDown 0.25s ease;
        z-index: 99;
    }

    /* When opened */
    .nav-links.open {
        display: flex;
    }

    /* Mobile Contact Sales button */
    .mobile-btn {
        display: block;
        width: 80%;
        margin: 0 auto;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
}
/* hamburger and close icon */
.hamburger i {
    transition: 0.3s ease;
}

.hamburger.active i {
    transform: rotate(90deg);
    content: "\f00d"; /* FontAwesome X icon */
}
/* RESET NAV STRUCTURE ON ALL SCREENS */
nav {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* LOGO stays on the left always */
nav .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Make sure logo image doesn't center itself */
.logo-img {
    display: block;
}

/* MOBILE FIX */
@media (max-width: 768px) {
    /* Ensure nav still stays horizontal */
    nav {
        padding: 14px 20px;
    }

    .nav-links {
        width: 100%;
        text-align: center;
    }
}
.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
@media (max-width: 768px) {
    /* Make logo smaller on mobile */
    .logo-img {
        width: 28px;     /* adjust as needed */
        height: auto;
    }

    .logo-text .brand-name {
        font-size: 1rem;
    }

    .logo-text .tagline {
        font-size: 0.6rem;
    }
}
/* HERO MOBILE FIX */
@media (max-width: 768px) {

    .hero {
        padding-top: 120px; /* creates space under navbar */
        text-align: center;
    }

    .product-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 20px;
        width: 100%;
    }

    .product-visual {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .product-card {
        width: 90%;
        margin: 0 auto;
        position: static !important; /* REMOVE floating behavior */
        transform: none !important;
    }

    .hero h1 {
        margin-top: 20px;
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 20px;
    }
}
/* FIX overlapping product cards on mobile */
@media (max-width: 768px) {

    .product-container,
    .product-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-top: 0;
    }

    .product-card {
        position: static !important;
        transform: none !important;
        margin: 20px auto !important;
        width: 90%;
        z-index: 1;
    }
}
@media (max-width: 768px) {

    .hero {
        min-height: auto !important;
        padding-top: 140px;
        padding-bottom: 60px;
        overflow: visible !important;
    }
}
.hero p {
    line-height: 1.5;
}

@media (max-width: 768px) {
    .hero p {
        padding: 0 16px;
        font-size: 1rem;
    }
}
@media (max-width: 768px) {
    .product-card {
        background: rgba(0,0,0,0.6);
        backdrop-filter: none !important;
    }
}
/* FIX product container absolute positioning */
@media (max-width: 768px) {
    .product-container {
        position: static !important;
        height: auto !important;
        margin-bottom: 30px;
    }

    .product-visual {
        position: static !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        box-shadow: none !important;
        border: none !important;
    }
}

/* Fix hero height & clipping */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        overflow: visible !important;
        padding-top: 180px !important;
        padding-bottom: 80px !important;
        display: block !important;
    }
}
@media (max-width: 768px) {
    .product-card {
        position: relative !important;
        width: 90% !important;
        height: auto !important;
        transform: none !important;
        margin: 10px auto !important;
        z-index: auto !important;
        top: 0 !important;
        left: 0 !important;
    }
}
/* FINAL HERO HEIGHT FIX */
@media (max-width: 768px) {
    .hero {
        height: auto !important;
        min-height: auto !important;
        padding-top: 40px !important;
        padding-bottom: 40px !important;
        overflow: visible !important;
    }

    /* Remove absolute positioned 3D container */
    .product-container {
        position: static !important;
        height: auto !important;
        margin-top: 20px !important;
    }

    .product-visual {
        position: static !important;
        height: auto !important;
        width: 100% !important;
        transform: none !important;
        box-shadow: none !important;
    }

    .product-card:nth-child(1),
    .product-card:nth-child(2) {
        transform: none !important;
        position: relative !important;
        margin: 10px auto !important;
    }
}
/* FINAL NAVBAR FIX (forces logo + hamburger on same line) */
@media (max-width: 768px) {
    nav {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 12px 20px !important;
        width: 100% !important;
    }

    .logo {
        flex-direction: row !important;
        align-items: center !important;
        gap: 6px !important;
    }

    .hamburger {
        position: static !important; /* remove forced absolute positioning */
        margin-left: auto !important;
    }

    /* Prevent nav-links from affecting layout */
    .nav-links {
        position: absolute !important;
        top: 70px !important;
        right: 0 !important;
        width: 100% !important;
    }
}
/* SERVICE PAGE HERO */
.service-hero {
    padding: 120px 20px 60px;
    text-align: center;
    background: radial-gradient(circle at top, #0d0d0d, #000);
}

.page-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.page-subtitle {
    color: #bbb;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}


/* SERVICE SECTION */
.services-section {
    padding: 60px 20px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 20px;
    border-radius: 12px;
    backdrop-filter: blur(6px);
    color: white;
}

.service-card h3 {
    margin: 15px 0 8px;
    font-size: 1.2rem;
}

.service-card p {
    font-size: 0.95rem;
    color: #ccc;
}

.service-icon {
    font-size: 2rem;
    color: #1e90ff;
}


/* MOBILE FIXES */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-hero {
        padding-top: 140px;
    }

    .page-title {
        font-size: 1.8rem;
    }
}
/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #0d0d0d;
  color: #fff;
  line-height: 1.7;
}

/* NAVBAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5%;
  background: rgba(0,0,0,0.4);
  position: fixed;
  width: 100%;
  z-index: 999;
  backdrop-filter: blur(8px);
}

.logo {
  display: flex;
  align-items: center;
}
.logo-img {
  width: 50px;
  margin-right: 10px;
}
.brand-name {
  font-size: 1.3rem;
  font-weight: 700;
}
.tagline {
  font-size: 0.7rem;
  opacity: 0.7;
}

.nav-links a {
  color: #fff;
  margin: 0 14px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #1e90ff;
}

 
 
/* HERO SECTION */
.hero {
  padding-top: 140px;
  text-align: center;
  padding-bottom: 90px;
  background: radial-gradient(circle at center, #1a1a1a, #0a0a0a);
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero p {
  max-width: 700px;
  margin: auto;
  opacity: 0.8;
  font-size: 1rem;
}

.hero-buttons {
  margin-top: 26px;
}

 

.btn-primary:hover {
  background: #e2e2e2;
}

/* SECTIONS */
.section {
  padding: 80px 5%;
  text-align: center;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.section-subtitle {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 40px;
}

/* EXPERTISE GRID */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.expertise-item {
  background: #111;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s;
}

.expertise-item:hover {
  transform: translateY(-5px);
  border-color: #1e90ff;
}

.icon i {
  font-size: 2rem;
  color: #1e90ff;
  margin-bottom: 12px;
}

/* TECH EXPERTISE */
.tech-expertise-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.tech-category {
  background: #111;
  padding: 20px 25px;
  border-radius: 10px;
  min-width: 220px;
}

.tech-category h4 {
  margin-bottom: 8px;
  color: #1e90ff;
}

/* OUR WORK */
.work-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.work-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
}

.work-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.7);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.work-item:hover img {
  transform: scale(1.1);
}

.work-item:hover .work-overlay {
  opacity: 1;
}

/* FOOTER */
footer {
  background: #111;
  padding: 50px 5% 20px;
  color: #bbb;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-column h4 {
  color: #fff;
  margin-bottom: 12px;
}

.footer-column a {
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
  transition: 0.3s;
}

.footer-column a:hover {
  color: #1e90ff;
}

.copyright {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 15px;
  font-size: 0.9rem;
  opacity: 0.6;
}
.career-hero {
    padding: 160px 5% 120px;
    text-align: center;
    background: url("media/career-hero.jpg") center;
    position: relative;
}

/* Add a dark overlay so text stays readable */
.career-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* adjust brightness by changing 0.55 */
}

.career-hero h1,
.career-hero p {
    position: relative;
    z-index: 1;
}

