/* GLOBAL RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Inter', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

/********************************
 NAVIGATION
********************************/
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(10px);
}

.nav-left {
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 65px;        /* Adjust size as needed */
    width: auto;
    filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
}

.logo {
    font-size: 24px;
    font-weight: 600;
}
.logo span {
    color: #c61414;
}

.menu {
    display: flex;
    gap: 30px;
    list-style: none;
}

.menu li a {
    transition: .3s;
}
.menu li a:hover {
    color: #ff3b3b;
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/********************************
 FULL-SCREEN HERO BACKGROUND
********************************/
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    animation: slideShow 18s infinite;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: fadeSlide 18s infinite;
}

/* 18s / 4 = 4.5s */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 4.5s; }
.slide:nth-child(3) { animation-delay: 9s; }
.slide:nth-child(4) { animation-delay: 13.5s; }

@keyframes fadeSlide {
    0% { opacity: 0; }
    8% { opacity: 1; }
    33% { opacity: 1; }
    41% { opacity: 0; }
    100% { opacity: 0; }
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* CONTENT WRAPPER */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

/* Logo styling */
.hero-logo {
    width: 300px;
    max-width: 85%;
    margin-bottom: 25px;

   
    background: rgba(0,0,0,0.55);
    padding: 20px 25px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 24px rgba(0,0,0,0.6);
}
.hero-logo-top {
    position: absolute;
    top: 50px;
    left: 40px;
    z-index: 2;
    width: 180px;
    filter: drop-shadow(0 0 8px rgba(0,0,0,0.7));
}
.hero-text {
    position: absolute;
    bottom: 17%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: white;
    animation: fadeUp 1.2s ease-out;
}

.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 8px;
}
.company-sub {
    font-size: 1.5rem;
    font-weight: 600;
}
.tagline {
    font-size: 1.2rem;
    margin-top: 5px;
    opacity: 0.9;
}

/* Main heading */
.hero-heading {
    font-size: 3.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #f5f2f2;
    text-shadow: 0 0 12px rgba(255, 59, 59, 0.7);
}

.glow-text {
    color: #aaabc7;
    text-shadow: 0 0 12px #96c9f3;
}
/* Subtitle */
.company-sub {
    font-size: 1.4rem;
    margin-top: 25px;
    opacity: 0.95;
    text-shadow: 0 0 6px rgba(0,0,0,0.7);
}

.glow-pulse {
    animation: pulseGlow 3s infinite;
}

@keyframes pulseGlow {
    0%, 100% { text-shadow: 0 0 12px rgba(59, 126, 255, 0.8); }
    50% { text-shadow: 0 0 20px rgba(59, 126, 255, 1); }
}
.fade-in {
    animation: fadeIn 1.5s ease-in forwards;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translate(-50%, 20px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* Main button */
.btn-main {
    padding: 14px 30px;
    background: #17568a;
    color: #fff;
    border-radius: 6px;
    font-weight: 700;
    margin-top: 45px;
    display: inline-block;
    transition: .3s;
}
.btn-main:hover {
    background: #607ef3;;
}
.company-sub {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 20px;
    color: #ffffff;
}

.call-link {
    color: #c61414;
    text-decoration: none;
    font-weight: 900;
    padding-left: 8px;
}

.call-link:hover {
    text-decoration: underline;
    color: #b0b2d6;
}

/********************************
 SERVICES
********************************/
.services {
    padding: 100px 40px;
    background: #111;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.service-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background: #1b1b1b;
    padding: 30px;
    width: 260px;
    border-radius: 10px;
    border: 1px solid #222;
    transition: .3s;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: #607ef3;
}

/********************************
 GALLERY
********************************/
.gallery {
    padding: 100px 40px;
    text-align: center;
    background: #0c0c0c;
}

.gallery-preview {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 20px;
}

.gallery-preview img {
    width: 260px;
    border-radius: 8px;
}

.btn-secondary {
    padding: 10px 24px;
    border: 1px solid #9a9b9c;
    border-radius: 6px;
    color: #73aedf;;
    transition: .3s;
}
.btn-secondary:hover {
    background: #607ef3;
    color: #000;
}

/********************************
 ABOUT
********************************/
.about {
    padding: 100px 40px;
    background: #111;
    text-align: center;
}

.about-text {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    opacity: 0.9;
}

.other-services {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.other-card {
    background: #1b1b1b;
    padding: 20px;
    width: 260px;
    border-radius: 10px;
    border: 1px solid #222;
}

/********************************
 CONTACT
********************************/
.contact {
    padding: 100px 40px;
    text-align: center;
}

.contact-info {
    margin-bottom: 20px;
    line-height: 1.8;
}

/********************************
 FOOTER
********************************/
.footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #787878;
}
@media (max-width: 900px) {
    .hero-logo-top {
        width: 140px;
        top: 15px;
        left: 20px;
    }

    .hero-heading { font-size: 2.2rem; }
    .company-sub { font-size: 1.2rem; }
    .tagline { font-size: 1rem; }
}
