/* --- RESET --- */
* {margin:0;padding:0;box-sizing:border-box;font-family:'Segoe UI',sans-serif;}
body {background:#0b0f14;color:#fff;}

/* ================= NAVBAR ================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 80px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.logo img {
    height: 55px;
}

/* Nav Links */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #111;
    font-weight: 600;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #22d3ee;
}

/* ================= DROPDOWN ================= */
.dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 180px;
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: none;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li a {
    color: #111;
    font-weight: 500;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ================= HAMBURGER ================= */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    width: 30px;
    height: 22px;
    position: relative;
}

.hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: #22d3ee;
    border-radius: 3px;
    transition: 0.4s ease;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 9px; }
.hamburger span:nth-child(3) { bottom: 0; }

/* X Animation */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 9px;
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 9px;
}

/* ================= MOBILE ================= */
@media(max-width: 900px) {

    .navbar {
        padding: 15px 30px;
    }

    .nav-links {
        position: fixed;
        top: 75px;
        right: -100%;
        width: 260px;
        height: 100vh;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        gap: 20px;
        transition: 0.4s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        color: #111;
    }

    .dropdown-menu {
        position: relative;
        top: 0;
        box-shadow: none;
        padding-left: 10px;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }

    .hamburger {
        display: flex;
    }
}

/* --- HERO --- */
.hero {
    height:90vh;
    background:url('images/Home.jpeg') center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.hero-content {
    background:rgba(0,0,0,0.6);
    padding:40px;
    border-radius:10px;
}

.hero h1 {color:#FFFFFF;font-size:60px;}

/* ================= HERO ANIMATION ================= */

.hero-content h1 {
    opacity: 0;
    transform: translateX(-80px);
    animation: slideFromLeft 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

@keyframes slideFromLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* --- INTRO --- */
.intro-section {
    max-width:1000px;
    margin:60px auto;
    padding:0 20px;
    text-align:center;
    line-height:1.8;
}

/* --- STATS --- */
.stats {
    display:flex;
    justify-content:space-around;
    padding:40px 40px;
    background:linear-gradient(135deg,#0e141b,#111b24);
    flex-wrap:wrap;
}

.stat-box {text-align:center;margin:20px;}
.stat-box img {width:70px;margin-bottom:15px;}
.stat-box h2 {color:#ff7a18;font-size:36px;}

/* --- SECTIONS --- */

.advanced-section h2,
.industries-section h2 {
    margin-bottom: 40px;
}

.advanced-section {
    padding: 20px 50px 0px 50px;   /* bottom smaller */
text-align:center;
}

.industries-section {
    padding: 20px 50px 20px 50px;   /* top smaller */
text-align:center;
}
    

.card-grid {
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.info-card,
.industry-card {
    background:#151c24;
    padding:40px 25px;
    border-radius:12px;
    transition:0.4s;
}

.info-card:hover,
.industry-card:hover {
    transform:translateY(-8px);
    box-shadow:0 0 20px rgba(34,211,238,0.3);
}

.info-card i,
.industry-card i {
    font-size:35px;
    margin-bottom:15px;
    color:#22d3ee;
}

/* --- FOOTER --- */
/* ================= WHITE FOOTER ================= */

footer {
    background: #ffffff;
    color: #111;
    padding: 50px 80px;   /* extra side padding */
}

/* Main container */
.footer-container {
    display: flex;
    justify-content: space-between;  /* pushes left & right */
    align-items: flex-start;
    width: 100%;
}

/* Left side (Address) */
.footer-left {
    text-align: left;
}

/* Right side (Follow Us) */
.footer-right {
    text-align: right;
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #111;
    font-size: 22px;
    margin-left: 15px;   /* spacing between icons */
    transition: 0.3s ease;
}

.social-icons a:hover {
    color: #22d3ee;
}

/* Bottom */
.footer-bottom {
    margin-top: 30px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
    text-align: center;
    color: #555;
}

/* Active Nav Link */
.nav-links a.active {
    color: #1E6F78;
    font-weight: 600;
    position: relative;
}
