*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Segoe UI,sans-serif;
    }
    
    :root{
    --primary:#f39c12;
    --dark:#1e1e1e;
    --light:#f4f4f4;
    }
    
    html{scroll-behavior:smooth;}
    
    body{
    padding-top:72px;
    }
    
    /* COMMON */
    .center-text{
    text-align:center;
    max-width:800px;
    margin:0 auto 30px;
    }
    
    /* NAVBAR */
    .navbar{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:14px 6%;
    background:linear-gradient(180deg,#0a2540 0%,#071b2f 100%);
    box-shadow:0 8px 25px rgba(0,0,0,.25);
    z-index:1000;
    }
    
    .logo-box{
    display:flex;
    align-items:center;
    gap:10px;
    }
    
    .logo-img{
    width:38px;
    height:38px;
    border-radius:6px;
    }
    
    .logo-box span{
    color:#f5a623;
    font-weight:700;
    font-size:20px;
    letter-spacing:.5px;
    }
    
    .nav-links{
    list-style:none;
    display:flex;
    gap:22px;
    }
    
    .nav-links li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
    position:relative;
    padding:6px 0;
    transition:.3s;
    }
    
    .nav-links li a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#f5a623;
    transition:.3s;
    }
    
    .nav-links li a:hover,
    .nav-links li a.active{
    color:#f5a623;
    }
    
    .nav-links li a:hover::after,
    .nav-links li a.active::after{
    width:100%;
    }
    
    .menu-toggle{
    display:none;
    font-size:24px;
    color:#fff;
    cursor:pointer;
    }
    
    /* HERO */
    .hero{
    min-height:100vh;
    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url('images/heroimage.png') center/cover;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    text-align:center;
    padding:0 10%;
    }
    
    .hero h1{font-size:48px;}
    .hero p{margin:15px 0;}
    
    .btn{
    background:var(--primary);
    padding:12px 25px;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    }
    
    /* SECTIONS */
    .section{padding:90px 10%;}
    .gray{background:var(--light);}
    
    .section-title{
    text-align:center;
    font-size:28px;
    font-weight:700;
    margin-bottom:50px;
    color:#0a2540;
    }
    
    /* ABOUT */
    .about-section{background:#ffffff;}
    
    .about-wrapper{
    max-width:1100px;
    margin:auto;
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:flex-start;
    }
    
    .ceo-card{
    background:#fff;
    padding:25px;
    border-radius:12px;
    text-align:center;
    box-shadow:0 6px 18px rgba(0,0,0,.08);
    }
    
    .ceo-img{
    width:100%;
    max-width:220px;
    border-radius:10px;
    margin-bottom:15px;
    }
    
    .ceo-name{
    font-size:18px;
    font-weight:600;
    color:#0a2540;
    }
    
    .ceo-designation{
    font-size:14px;
    color:#777;
    margin-bottom:10px;
    }
    
    .about-content h3{color:#0a2540;}
    
    .about-content p{
    margin:12px 0;
    color:#444;
    line-height:1.6;
    }
    
    .ceo-message{
    font-style:italic;
    border-left:4px solid #f5a623;
    padding-left:15px;
    margin-top:10px;
    }
    
   
    /* COMMITMENT */
    .commit-list{
        max-width:700px;
        margin:0 auto 20px;
        }
        
        .commit-list li{
        margin-bottom:10px;
        }
    
    /* PRODUCTS */
    #products{padding:70px 5%;}
    
    .product-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1200px;
    margin:auto;
    }
    
    .product-card{
    background:#fff;
    padding:28px 25px;
    border-radius:18px;
    border:1px solid #e5e7eb;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:flex;
    flex-direction:column;
    transition:.3s;
    }
    
    .product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 22px 40px rgba(0,0,0,.15);
    }
    
    .product-card h3{
    font-size:18px;
    font-weight:700;
    color:#0a2540;
    margin-bottom:15px;
    }
    
    .product-details{
    list-style:none;
    margin:0 0 25px;
    padding:0;
    }
    
    .product-details li{
    font-size:14.5px;
    padding:9px 0;
    border-bottom:1px dashed #ddd;
    }
    
    .product-details span{
    font-weight:600;
    color:#0a2540;
    display:inline-block;
    min-width:110px;
    }
    
    .product-btn{
    margin-top:auto;
    text-align:center;
    padding:11px 0;
    border-radius:30px;
    font-weight:600;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,#f5a623,#e67e22);
    }
    
    /* GALLERY */
    .gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
    }
    
    .gallery-grid img{
    width:100%;
    border-radius:12px;
    }
    
    /* SOCIALS */
    .socials{
    margin-top:25px;
    display:flex;
    justify-content:center;
    gap:15px;
    }
    
    .social-icon{
    width:48px;
    height:48px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    text-decoration:none;
    box-shadow:0 6px 15px rgba(0,0,0,.2);
    transition:.3s;
    }
    
    .social-icon:hover{
    transform:translateY(-4px) scale(1.05);
    }
    
    .social-icon.facebook{background:#1877f2;}
    .social-icon.instagram{background:#e4405f;}
    .social-icon.linkedin{background:#0077b5;}
    .social-icon.whatsapp{background:#25d366;}
    
    /* FOOTER */
    footer{
    text-align:center;
    padding:20px;
    background:#000;
    color:#fff;
    }
    
    /* RESPONSIVE FIXES */
    @media(max-width:768px){
    
    .menu-toggle{display:block;}
    
    .nav-links{
    position:absolute;
    top:70px;
    left:0;
    width:100%;
    background:#071b2f;
    flex-direction:column;
    align-items:center;
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
    }
    
    .nav-links.show{
    max-height:350px;
    padding:15px 0;
    }
    
    .nav-links li{
    width:100%;
    text-align:center;
    }
    
    .nav-links li a{
    display:block;
    padding:12px 0;
    font-weight:600;
    }
    
    .about-wrapper{
    grid-template-columns:1fr;
    text-align:center;
    }
    
    .ceo-message{text-align:left;}
    }
    
    /* SMALL DEVICES */
    @media(max-width:480px){
    .hero h1{font-size:28px;}
    .hero p{font-size:14px;}
    .section{padding:70px 6%;}
    }
    