/* ===============================
   GLOBAL
================================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#ffffff;
    color:#111;
    line-height:1.6;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

section{
    padding:100px 8%;
}

/* ===============================
   NAVBAR (Premium Clean)
================================= */

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 8%;
    background:#ffffff;
    border-bottom:1px solid #f0f0f0;
    position:sticky;
    top:0;
    z-index:1000;
}

.logo{
    font-size:24px;
    font-weight:700;
    letter-spacing:1px;
    color:#b00020;
}

.logo span{
    color:#000;
    font-weight:500;
}

.navbar nav a{
    margin-left:30px;
    font-weight:500;
    color:#333;
    position:relative;
    transition:0.3s;
}

.navbar nav a::after{
    content:"";
    position:absolute;
    width:0%;
    height:2px;
    background:#b00020;
    left:0;
    bottom:-6px;
    transition:0.3s;
}

.navbar nav a:hover::after,
.navbar nav a.active::after{
    width:100%;
}

/* ===============================
   HERO (Semiconductor Feel)
================================= */

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
    background:linear-gradient(135deg,#ffffff 60%, #f8f8f8 100%);
}

.hero-title{
    font-size:56px;
    font-weight:700;
    line-height:1.2;
    margin-bottom:20px;
}

.hero-title span{
    color:#b00020;
    text-shadow:0 0 12px rgba(176,0,32,0.3);
}

.hero p{
    font-size:18px;
    color:#555;
    max-width:750px;
    margin:auto;
}

/* Subtle chip-grid background effect */
.hero::before{
    content:"";
    position:absolute;
    width:100%;
    height:100%;
    background-image:
        linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size:60px 60px;
    z-index:0;
}

.hero-content{
    position:relative;
    z-index:2;
}

/* ===============================
   BUTTONS (Luxury Style)
================================= */

.btn{
    padding:14px 34px;
    border-radius:40px;
    font-weight:600;
    display:inline-block;
    margin:12px;
    transition:0.3s ease;
    letter-spacing:0.5px;
}

.primary{
    background:#b00020;
    color:#fff;
    box-shadow:0 8px 25px rgba(176,0,32,0.25);
}

.primary:hover{
    background:#8e0019;
    transform:translateY(-3px);
}

.outline{
    border:2px solid #b00020;
    color:#b00020;
}

.outline:hover{
    background:#b00020;
    color:#fff;
}

/* ===============================
   ABOUT (Corporate Layout)
================================= */

.about{
    background:#fafafa;
    text-align:center;
}

.about h2{
    font-size:36px;
    margin-bottom:20px;
    color:#b00020;
}

.about p{
    max-width:800px;
    margin:auto;
    color:#555;
}

.stats{
    display:flex;
    justify-content:center;
    gap:40px;
    margin-top:60px;
    flex-wrap:wrap;
}

.stat-box{
    background:#ffffff;
    border:1px solid #eee;
    padding:40px;
    border-radius:16px;
    width:220px;
    transition:0.3s;
}

.stat-box h3{
    font-size:32px;
    color:#b00020;
}

.stat-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,0.08);
}

/* ===============================
   SERVICES (High-End Cards)
================================= */

.services{
    background:#ffffff;
    text-align:center;
}

.services h2{
    font-size:36px;
    color:#b00020;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
    margin-top:60px;
}

.service-card{
    background:#fff;
    padding:40px;
    border-radius:18px;
    border:1px solid #eee;
    transition:0.4s ease;
}

.service-card h3{
    color:#b00020;
    margin-bottom:15px;
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,0.08);
}

/* ===============================
   CTA (Strong Red Premium)
================================= */

.cta{
    background:#b00020;
    color:white;
    text-align:center;
}

.cta h2{
    font-size:32px;
    margin-bottom:15px;
}

.cta .btn{
    background:white;
    color:#b00020;
}

.cta .btn:hover{
    background:#f5f5f5;
}


/* ===============================
   SECTIONS
================================= */

.people-section {
    padding: 80px 8%;
}

.interns {
    background: linear-gradient(135deg, #10182c, #0b0f1a);
}

.container {
    max-width: 1300px;
    margin: auto;
}

/* ===============================
   SECTION TITLE
================================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
}

.section-title p {
    color: #aaa;
    margin-top: 10px;
    font-size: 16px;
}


/* ===============================
   PEOPLE SECTION
================================= */

.people-section{
    background:#fafafa;
}

.people-section.interns{
    background:#ffffff;
}

/* ===============================
   GRID
================================= */

.people-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:40px;
}

/* ===============================
   PERSON CARD
================================= */

.person-card{
    background:#ffffff;
    border-radius:18px;
    overflow:hidden;
    border:1px solid #eee;
    transition:0.4s ease;
    box-shadow:0 10px 25px rgba(0,0,0,0.05);
}

.person-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(176,0,32,0.15);
}

/* Image */
.person-card img{
    width:100%;
    height:260px;
    object-fit:cover;
}

/* Info */
.person-info{
    padding:25px;
}

.person-info h3{
    font-size:20px;
    margin-bottom:6px;
}

.person-info span{
    display:block;
    font-size:14px;
    font-weight:600;
    color:#b00020;
    margin-bottom:12px;
}

.person-info p{
    font-size:14px;
    color:#555;
    margin-bottom:15px;
}

/* ===============================
   SOCIAL ICONS
================================= */

.person-social{
    display:flex;
    gap:12px;
}

.person-social a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:35px;
    height:35px;
    border-radius:50%;
    background:#b00020;
    color:white;
    font-size:16px;
    transition:0.3s;
}

.person-social a:hover{
    background:#8e0019;
    transform:scale(1.1);
}




/* ===============================
   FOOTER
================================= */

footer{
    background:#111;
    color:#aaa;
    text-align:center;
    padding:25px;
    font-size:14px;
}

/* ===============================
   RESPONSIVE
================================= */

@media(max-width:768px){

    .navbar{
        flex-direction:column;
        gap:15px;
    }

    .hero-title{
        font-size:36px;
    }

    .stats{
        flex-direction:column;
        align-items:center;
    }
    
     .person-card img{
        height:220px;
    }
}
