*{
margin:0;
padding:0;
font-size: 20px;
box-sizing:border-box;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
background:#fff;
color:#222;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:5px 3%;
background:#F6F5ED;
position:fixed;
width:100%;
top:0;
left:0;
z-index:1000;
box-shadow:0 2px 10px rgba(0,0,0,0.08);
transition:0.4s;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:35px;
}

nav ul li a{
text-decoration:none;
color:#222;
font-weight:500;
position:relative;
}

nav ul li a::after{
content:'';
width:0%;
height:2px;
background:#0077ff;
position:absolute;
left:0;
bottom:-5px;
transition:0.3s;
}

nav ul li a:hover::after{
width:100%;
}


.hero h1{
font-size:60px;
margin-bottom:20px;
}

.btn{
display:inline-block;
padding:12px 30px;
background:#0077ff;
color:white;
text-decoration:none;
border-radius:4px;
transition:0.3s;
}

.btn:hover{
background:#005ad3;
}

.products{
padding:80px 10%;
text-align:center;
}

.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
margin-top:40px;
}

.product-card{
padding:40px;
border:1px solid #eee;
transition:0.4s;
}

.product-card:hover{
transform:translateY(-10px);
box-shadow:0 10px 20px rgba(0,0,0,0.1);
}

.about{
padding:80px 10%;

line-height:35px ;
text-align:center;
background:#f8f8f8;
}

.cta{
padding:80px;
text-align:center;
background:#0077ff;
color:white;
}

footer{
padding:20px;
text-align:center;
background:#111;
color:white;
}


.hidden{
opacity:0;
transform:translateY(50px);
transition:all 0.8s ease;
}

.show{
opacity:1;
transform:translateY(0);
}

.product-card img{
width:100%;
height:250px;
object-fit:cover;
border-radius:6px;
margin-bottom:15px;
}

/* HERO BASE *//* HERO SECTION CLEAN & OPTIMIZED */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Hero content */
.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    padding: 20px;
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #007bff;
    color: #fff;
    border-radius: 5px;
}

/* Fade animation */
.fade-transition {
    transition: opacity 1s ease-in-out;
}

/* Mobile */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.3rem;
    }
    .hero p {
        font-size: 1rem;
    }
}

/* NAVBAR BASE */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 999;
    transition: background 0.4s ease, box-shadow 0.4s ease;
}

.nav-container {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* LOGO */
.logo img {
    height: 105px;
}

/* NAV LINKS */
.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #f0f0f0;
    transform: translateY(-2px);
}

.contact-btn {
    padding: 8px 16px;
    background: #ffffff;
    color: #000 !important;
    border-radius: 6px;
}

.contact-btn:hover {
    background: #e6e6e6;
}

/* NAVBAR SOLID ON SCROLL */
.navbar.scrolled {
    background: rgba(0,0,0,0.85);
    box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

/* HAMBURGER MENU - MOBILE */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 4px;
    transition: 0.3s;
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 65%;
    height: 100vh;
    background: rgba(0,0,0,0.95);
    display: flex;
    flex-direction: column;
    padding: 120px 30px;
    gap: 25px;
    transition: 0.4s ease;
    z-index: 998;
}

.mobile-menu a {
    color: white;
    font-size: 1.3rem;
    text-decoration: none;
}

.mobile-menu.active {
    right: 0;
}

/* RESPONSIVE */
@media (max-width: 850px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}


/* WHY US SECTION */
.why-us {
    padding: 80px 10%;
    background: #f7f8fc;
    text-align: center;
}

.why-us h2 {
    font-size: 40px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0e1b32;
    position: relative;
}

.why-us h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0077ff;
    display: block;
    margin: 12px auto 0;
    border-radius: 4px;
}

/* LIST LAYOUT */
.why-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 0;
}

/* LIST BOX DESIGN */
.why-list li {
    background: #ffffff;
    padding: 22px 25px;
    border-radius: 12px;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: flex-start;
    color: #333;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    transition: 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

/* HOVER EFFECT */
.why-list li:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* ICON STYLE */
.why-list li i {
    font-size: 28px;
    color: #0077ff;
}

/* FADE-IN ANIMATION */
.why-list li.show {
    opacity: 1;
    transform: translateY(0);
}



.product-details {
    padding: 60px 10%;
}

.product-details h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 35px;
    color: #0e1b32;
    position: relative;
}

.product-details h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0077ff;
    display: block;
    margin: 12px auto 0;
    border-radius: 4px;
}

/* TABLE DESIGN */
.details-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

.details-table th,
.details-table td {
    padding: 16px 22px;
    border-bottom: 1px solid #eee;
    font-size: 18px;
}

.details-table th {
    background: #f7f9fc;
    width: 35%;
    text-align: left;
    font-weight: 600;
    color: #23395d;
}

.details-table tr:hover {
    background: #f0f7ff;
    transition: 0.3s ease;
}

.details-table tr:last-child td {
    border-bottom: none;
}

/* Section main title */
.section-title {
    text-align: center;
    font-size: 42px;
    margin-top: 40px;
    margin-bottom: 40px;
    color: #0e1b32;
    font-weight: 700;
}

/* Whole product section */
.products-section {
    width: 85%;
    margin: auto;
    padding-bottom: 60px;
}

/* Individual product block */
.product-block {
    margin-bottom: 60px;
    padding: 40px;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 5px 18px rgba(0,0,0,0.06);
    background: #fff;
}

/* Product name */
.product-name {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0077ff;
}

/* Coming soon text */
.coming-soon {
    font-size: 18px;
    color: #777;
    font-style: italic;
}
/* Image + Table Row Layout */
.product-layout {
    display: flex;
    gap: 35px;
    align-items: flex-start;
}

/* Left Image Box */
.product-image img {
    width: 720px;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Right Side Info */
.product-info {
    flex: 1;
}

/* Responsive Fix for Mobile */
@media (max-width: 768px) {
    .product-layout {
        flex-direction: column;
    }

    .product-image img {
        width: 100%;
    }
}

/* Blogs*/
.blogs-container {
    padding: 80px 12%;
    background: #ffffff;
}

.blogs-header {
    text-align: center;
    margin-bottom: 40px;
}

.blogs-header h1 {
    font-size: 48px;
    color: #222;
    letter-spacing: -1px;
}

.blogs-header p {
    font-size: 20px;
    color: #666;
}

/* Table of Contents */
.blog-toc {
    background: #f4f8ff;
    padding: 25px;
    border-left: 6px solid #0077ff;
    border-radius: 8px;
    margin-bottom: 50px;
}

.blog-toc h3 {
    margin-bottom: 12px;
}

.blog-toc ul {
    padding-left: 20px;
}

.blog-toc li {
    margin-bottom: 8px;
}

.blog-toc a {
    color: #0077ff;
    text-decoration: none;
    font-size: 20px;
}

.blog-toc a:hover {
    text-decoration: underline;
}

/* Blog Article Styling */
.blog-article {
    margin-bottom: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e6e6e6;
}

.blog-article h2 {
    font-size: 50px;
    margin-bottom: 12px;
    color: #222;
}

.blog-article p {
    font-size: 20px;
    color: #444;
    line-height: 1.7;
}


/* GLOBAL */
body {
    margin: 0;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* HEADER */
.contact-header {
    text-align: center;
    padding: 60px 20px;
    background: linear-gradient(120deg, #3f72af, #112d4e);
    color: white;
}

.contact-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.contact-header p {
    font-size: 18px;
    opacity: 0.9;
}

/* MAIN CONTACT CONTAINER */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    flex-wrap: wrap;
}

/* CONTACT FORM */
.contact-form {
    flex: 1 1 55%;
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #112d4e;
    font-size: 27px;
}

.input-group {
    margin-bottom: 18px;
}

.input-group label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
}

.input-group textarea {
    height: 120px;
    resize: none;
}

.btn-submit {
    width: 100%;
    background: #112d4e;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-submit:hover {
    background: #3f72af;
}

/* CONTACT INFO */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f7fa;
    color: #333;
}

/* HEADER */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 60px;
    background: #ffffff;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08);
}
/* logo 
header .logo img {
    height: 55px;
}*/

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

nav a.active,
nav a:hover {
    color: #0077cc;
}

/* PAGE HEADING */
.page-header {
    text-align: center;
    margin-top: 60px;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 18px;
    color: #666;
}

/* CONTACT SECTION *//* CONTACT PAGE LAYOUT */
.contact-section {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    padding: 50px 8%;
    background: #f7f9fc;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* CONTACT FORM BOX */
.contact-form {
    flex: 1;
    min-width: 350px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form h2 {
    margin-bottom: 20px;
    color: #1a1a1a;
    font-size: 26px;
}

/* INPUT STYLES */
.input-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
    font-size: 15px;
    outline: none;
    transition: 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: #0866ff;
    box-shadow: 0 0 5px rgba(8,102,255,0.3);
}

textarea {
    height: 120px;
}

/* SUBMIT BUTTON */
.btn-submit {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 8px;
    background: #0866ff;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-submit:hover {
    background: #004cd1;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: block;
    margin-top: 20px;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    background: #25d366;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.whatsapp-btn:hover {
    background: #1ebd5a;
}

/* CONTACT INFO BOX */
.contact-info {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-info h2 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.6;
}

/* SOCIAL LINKS */
.social-links a {
    display: inline-block;
    margin-right: 12px;
    margin-top: 10px;
    text-decoration: none;
    padding: 8px 12px;
    background: #e8f0fe;
    border-radius: 6px;
    font-weight: 600;
    color: #1a73e8;
    transition: 0.3s ease;
}

.social-links a:hover {
    background: #d2e3fc;
}

.wa-icon {
    width: 22px;
    height: 22px;
    vertical-align: middle;
    margin-right: 8px;
}

/* About us */
.about-hero {
    height: 60vh;
    background: url('../images/about-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    padding-top: 80px;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
}

.about-hero h1 {
    position: relative;
    color: #fff;
    font-size: 48px;
    margin-bottom: 10px;
}

.about-hero p {
    position: relative;
    color: #eaeaea;
    font-size: 20px;
}

/* SECTION */
.about-section, .why-choose, .global {
    padding: 80px 10%;
    text-align: center;
}

.about-section h2,
.why-choose h2,
.global h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.about-section p {
    max-width: 950px;    
    margin: 10px auto;
    line-height: 1.7;
    font-size: 20px;
}

/* MISSION VISION BOXES */
.mv-container {
    display: flex;
    gap: 20px;
    padding: 60px 10%;
    justify-content: center;
    flex-wrap: wrap;
}

.mv-box {
    background: white;
    padding: 25px;
    border-radius: 12px;
    width: 300px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    text-align: center;
}

.mv-box h3 {
    margin-bottom: 10px;
    color: #0a84ff;
}

/* WHY CHOOSE US */
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 30px;
}

.feature-box {
    padding: 16px 22px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    font-weight: 500;
    width: 250px;
    text-align: center;
}

/* MANUFACTURING */
.manufacturing {
    display: flex;
    align-items: center;
    padding: 80px 10%;
    gap: 40px;
}

.manufacturing .mfg-text {
    flex: 1;
}

.mfg-img {
    width: 45%;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.1);
}

/* GLOBAL LIST */
.global ul {
    margin-top: 20px;
    list-style: none;
    font-size: 18px;
    line-height: 32px;
}

/* FOOTER */
footer {
    background: #111;
    color: #fff;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}


/* FOOTER */
.footer {
    background: #0a0f1c;
    color: #fff;
    padding: 60px 8% 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* LOGO */
.footer-logo {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* COLUMN */
.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
    color: #ffffff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

/* LINKS */
.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-col ul li a {
    color: #ccc;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* WHATSAPP BUTTON */
.footer-whatsapp {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 18px;
    background: #25d366;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    transition: 0.3s;
}

.footer-whatsapp:hover {
    background: #1ebe5d;
}

/* BOTTOM */
.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
}

/* SOCIAL ICONS */
.social-icons {
    margin-bottom: 10px;
}

.social-icons a {
    margin: 0 8px;
    font-size: 18px;
    text-decoration: none;
    color: #ccc;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 500px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}


.social-icons a{
    color: #eeeaea;
    margin: 0 0px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}
.social-links a {
    color: #141414;
    margin: 0 0px;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.social-icons a:hover,
.social-links a:hover {
    color: #00bcd4;
    transform: scale(1.2);
}