@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

/* ==========================
ROOT VARIABLES
========================== */

:root{

primary:#0B1F3A;
secondary:#2FA84F;
accent:#1E4D8C;

white:#FFFFFF;
light:#F7F8FA;
gray:#6B7280;
dark:#111827;

shadow:0 10px 30px rgba(0,0,0,0.08);

radius:12px;

}

/* ==========================
RESET
========================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

font-family:'Manrope',sans-serif;
background:#fff;
color:var(dark);
line-height:1.7;
overflow-x:hidden;

}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
}

ul{
list-style:none;
}

.container{

width:90%;
max-width:1200px;
margin:auto;

}

/* ==========================
SECTION DEFAULT
========================== */

section{
padding:100px 0;
}

.section-heading{

text-align:center;
margin-bottom:60px;

}

.section-heading h2{

font-size:42px;
font-weight:800;
color:var(primary);
margin-bottom:15px;

}

.section-heading p{

max-width:700px;
margin:auto;
color:var(gray);
font-size:17px;

}

.light h2{
color:#000000;
}

.light p{
color:#000000;
}

/* ==========================
BUTTONS
========================== */

.primary-btn{

display:inline-block;
padding:15px 30px;

background:var(secondary);
color:#fff;

border-radius:8px;

font-size:16px;
font-weight:700;

transition:.3s;

}

.primary-btn:hover{

transform:translateY(-3px);

}

.secondary-btn{

display:inline-block;

padding:15px 30px;

border:2px solid #fff;

color:#fff;

border-radius:8px;

margin-left:15px;

transition:.3s;

}

.secondary-btn:hover{

background:#fff;
color:var(primary);

}

/* ==========================
HEADER
========================== */

.header{

position:fixed;

top:0;
left:0;

width:100%;

background:#fff;

z-index:999;

box-shadow:0 2px 15px rgba(0,0,0,0.05);

}

.nav-container{

height:90px;

display:flex;

justify-content:space-between;
align-items:center;

}

.logo img{

width:180px;

}

.navbar ul{

display:flex;
align-items:center;
gap:35px;

}

.navbar a{

color:var(primary);

font-weight:600;

font-size:15px;

transition:.3s;

}

.navbar a:hover{

color:var(secondary);

}

.quote-btn{

background:var(primary);

color:#fff;

padding:14px 25px;

border-radius:8px;

font-size:15px;
font-weight:700;

transition:.3s;

}

.quote-btn:hover{

background:var(secondary);

}

.hamburger{

display:none;

cursor:pointer;

}

.hamburger span{

display:block;

width:28px;
height:3px;

background:var(primary);

margin:6px 0;

border-radius:5px;

}

/* ==========================
HERO SECTION
========================== */

.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;

  background: url("images/hero-bg.jpg") center/cover no-repeat;

  padding-top: 90px;
}

.hero-overlay{
    position: absolute;
    top: 0;
    left: 6px;
    width: 100%;
    height: 100%;
    background: rgba(11,31,58,0.78);

}

.hero-content{

position:relative;
z-index:2;

}

.hero-text{

max-width:750px;

}

.hero-text h1{

font-size:64px;

font-weight:800;

line-height:1.1;

color:#fff;

margin-bottom:25px;

}

.hero-text p{

font-size:20px;

color:rgba(255,255,255,0.85);

max-width:650px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
align-items:center;
flex-wrap:wrap;

}

/* ==========================
HERO SMALL TAG
OPTIONAL
========================== */

.hero-tag{

display:inline-block;

padding:10px 20px;

background:rgba(255,255,255,0.1);

border:1px solid rgba(255,255,255,0.15);

border-radius:50px;

color:#fff;

font-size:14px;
font-weight:600;

margin-bottom:25px;

}

/* ==========================
ANIMATION
========================== */

@keyframes fadeUp{

from{

opacity:0;
transform:translateY(30px);

}

to{

opacity:1;
transform:translateY(0);

}

}

.hero-text h1{

animation:fadeUp .8s ease;

}

.hero-text p{

animation:fadeUp 1s ease;

}

.hero-buttons{

animation:fadeUp 1.2s ease;

}
/* ==========================
PRODUCT SECTION
========================== */

.products-section{
    background:#fff;
    padding:80px 20px;
}

.products-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
    margin-top:50px;
}

.product-card{
    background:#fff;
    width:320px;
    min-height:280px;
    padding:35px 25px;
    border-radius:16px;
    box-shadow:0 8px 25px rgba(0,0,0,0.06);
    border:1px solid #edf1f5;
    text-align:center;
    transition:.3s ease;
}

.product-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.12);
}

.product-icon{
    font-size:48px;
    margin-bottom:20px;
}

.product-card h3{
    font-size:22px;
    color:#0D1B3D;
    margin-bottom:18px;
    font-weight:700;
}

.category-desc{
    font-size:14px;
    color:#6B7280;
    margin-bottom:15px;
    line-height:1.6;
}

.product-card p{
    color:#6B7280;
    line-height:1.7;
}

.brand-tags{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
    margin-top:15px;
}

.brand-tags span{
    background:#F4F7FA;
    color:#0D1B3D;
    border:1px solid #E5E7EB;
    border-radius:30px;
    padding:8px 14px;
    font-size:13px;
    font-weight:600;
    transition:.3s;
}

.brand-tags span:hover{
    background:#28A745;
    color:#fff;
    border-color:#28A745;
}

@media(max-width:768px){

    .products-grid{
        flex-direction:column;
        align-items:center;
    }

    .product-card{
        width:100%;
        max-width:350px;
    }

}

/* Mobile */

@media(max-width:768px){

    .products-grid{
        flex-direction:column;
        align-items:center;
    }

    .product-card{
        width:100%;
        max-width:350px;
    }

}
/* ==========================
SERVICES SECTION
========================== */

.services-section{

background:var(primary);

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

gap:30px;

margin-top:50px;

}

.service-card{

background:#13284A;

padding:35px;

border-radius:16px;

transition:.35s;

}

.service-card:hover{

transform:translateY(-8px);

background:#17345f;

}

.service-icon{

font-size:42px;

margin-bottom:20px;

}

.service-card h3{

color:#fff;

font-size:22px;

font-weight:700;

margin-bottom:15px;

}

.service-card p{

color:rgba(255,255,255,.75);

font-size:15px;

line-height:1.8;

}

/* ==========================
ABOUT SECTION
========================== */

.about-section{

background:#fff;

}

.about-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:70px;

align-items:center;

}

.about-image img{

width:100%;

height:550px;

object-fit:cover;

border-radius:20px;

box-shadow:var(shadow);

}

.section-tag{

display:inline-block;

padding:8px 18px;

background:rgba(47,168,79,.12);

color:var(secondary);

font-size:14px;

font-weight:700;

border-radius:50px;

margin-bottom:20px;

}

.about-content h2{

font-size:42px;

font-weight:800;

line-height:1.2;

color:var(primary);

margin-bottom:25px;

}

.about-content p{

font-size:17px;

color:var(gray);

line-height:1.9;

margin-bottom:35px;

}

.about-features{

display:grid;

grid-template-columns:1fr 1fr;

gap:15px;

}

.feature-item{

background:#f8fafc;

padding:16px 18px;

border-radius:10px;

font-size:15px;

font-weight:600;

color:var(primary);

border-left:4px solid var(secondary);

}

/* ==========================
MISSION SECTION
========================== */

.mission-section{

background:#f7f8fa;

}

.mission-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}

.mission-card{

background:#fff;

padding:40px 35px;

border-radius:18px;

box-shadow:0 8px 25px rgba(0,0,0,.05);

transition:.3s;

}

.mission-card:hover{

transform:translateY(-8px);

}

.mission-card h3{

font-size:24px;

font-weight:800;

color:var(primary);

margin-bottom:20px;

position:relative;

padding-bottom:15px;

}

.mission-card h3::after{

content:"";

position:absolute;

left:0;
bottom:0;

width:60px;
height:4px;

background:var(secondary);

border-radius:10px;

}

.mission-card p{

font-size:15px;

line-height:1.9;

color:var(gray);

}

/* ==========================
SECTION ENTRY ANIMATION
========================== */

.product-card,
.service-card,
.mission-card,
.about-image,
.about-content{

animation:fadeUp .8s ease;

}/* ==========================
WHY CHOOSE US
========================== */

.why-section{
    background:#fff;
    padding:60px 20px;
}

.why-section h2{
    text-align:center;
    font-size:32px;
    font-weight:700;
    margin-bottom:10px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
    gap:20px;
    margin-top:40px;
    justify-items:center;
}

.why-card{
    background:#fff;
    padding:25px 20px;   /* reduced size */
    border-radius:16px;
    text-align:center;
    box-shadow:0 8px 25px rgba(0,0,0,.05);
    transition:.3s;
    border:1px solid #edf1f5;
    max-width:220px;     /* IMPORTANT: keeps boxes small */
    width:100%;
}

.why-card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 35px rgba(0,0,0,.1);
}

.why-icon{
    width:60px;          /* slightly smaller */
    height:60px;
    margin:auto;
    margin-bottom:15px;
    background:var(--secondary);
    color:#fff;
    font-size:26px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
}

.why-card h3{
    font-size:18px;
    font-weight:700;
    color:var(--primary);
    margin-bottom:10px;
}

.why-card p{
    font-size:14px;
    color:var(--gray);
    line-height:1.6;
}
/* ==========================
INDUSTRIES
========================== */

.industries-section{
background:#f7f8fa;
}

.industries-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(100px,1fr));
gap:25px;
margin-top:30px;
}

.industry-card{
background:#fff;
padding:20px;
border-radius:14px;
text-align:center;
font-size:18px;
font-weight:700;
color:var(primary);
box-shadow:0 6px 20px rgba(0,0,0,.05);
transition:.3s;
}

.industry-card:hover{
background:var(primary);
color:#fff;
transform:translateY(-6px);
}


/* ==========================
CONTACT
========================== */

.contact-section{
background:#fff;
}

.contact-wrapper{
display:grid;
grid-template-columns:40% 60%;
gap:40px;
margin-top:50px;
}

.contact-info{
display:flex;
flex-direction:column;
gap:20px;
}

.contact-card{
padding:25px;
background:#f7f8fa;
border-radius:12px;
}

.contact-card h4{
font-size:18px;
color:var(primary);
margin-bottom:10px;
}

.contact-card p{
font-size:15px;
color:var(gray);
line-height:1.8;
}

.map-container{
overflow:hidden;
border-radius:16px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.map-container iframe{
display:block;
}

/* ==========================
FOOTER
========================== */

.footer{
background:#08172c;
padding-top:80px;
color:#fff;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1.5fr;
gap:50px;
padding-bottom:50px;
}

.footer-col h3,
.footer-col h4{
margin-bottom:20px;
font-size:22px;
font-weight:700;
}

.footer-col p{
color:rgba(255,255,255,.7);
line-height:1.8;
font-size:15px;
margin-bottom:10px;
}

.footer-col ul li{
margin-bottom:12px;
}

.footer-col ul li a{
color:rgba(255,255,255,.7);
transition:.3s;
}

.footer-col ul li a:hover{
color:var(secondary);
}

.footer-bottom{
border-top:1px solid rgba(255,255,255,.08);
padding:25px 0;
text-align:center;
}

.footer-bottom p{
color:rgba(255,255,255,.6);
font-size:14px;
}

/* ==========================
WHATSAPP FLOAT
========================== */

.whatsapp-float{
position:fixed;
right:25px;
bottom:25px;
width:65px;
height:65px;
background:#25D366;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
box-shadow:0 10px 25px rgba(0,0,0,.2);
z-index:999;
transition:.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
}

.whatsapp-float img{
width:35px;
height:35px;
}

/* ==========================
TABLET
========================== */

@media(max-width:992px){

.hero-text h1{
font-size:50px;
}

.about-wrapper,
.quotation-wrapper,
.contact-wrapper{
grid-template-columns:1fr;
}

.mission-grid{
grid-template-columns:1fr;
}

.footer-grid{
grid-template-columns:1fr;
}

.about-image img{
height:400px;
}

}

/* ==========================
MOBILE
========================== */

@media(max-width:768px){

.navbar{
display:none;
position:absolute;
top:90px;
left:0;
width:100%;
background:#fff;
padding:20px;
}

.nav-buttons{
display:none;
}

.hamburger{
display:block;
}

.logo img{
width:140px;
}

.hero{
height:auto;
padding:140px 0 100px;
}

.hero-text h1{
font-size:38px;
}

.hero-text p{
font-size:16px;
}

.hero-buttons{
flex-direction:column;
align-items:flex-start;
gap:15px;
}

.secondary-btn{
margin-left:0;
}

.section-heading h2{
font-size:32px;
}

.about-content h2{
font-size:32px;
}

.quotation-info h2{
font-size:36px;
}

.about-features{
grid-template-columns:1fr;
}

.products-grid,
.services-grid,
.why-grid,
.industries-grid{
grid-template-columns:1fr;
}

.contact-wrapper{
grid-template-columns:1fr;
}

.whatsapp-float{
width:58px;
height:58px;
right:18px;
bottom:18px;
}

.whatsapp-float img{
width:30px;
height:30px;
}

}

/* ==========================
SMALL MOBILE
========================== */

@media(max-width:480px){

.hero-text h1{
font-size:32px;
}

.primary-btn,
.secondary-btn,
.quote-btn{
width:100%;
text-align:center;
}

.section-heading h2{
font-size:28px;
}

}/* MOBILE MENU ACTIVE */

.navbar.active{
display:block;
position:absolute;
top:90px;
left:0;
width:100%;
background:#fff;
padding:20px;
box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.navbar.active ul{
flex-direction:column;
gap:20px;
}

.navbar a.active{
color:#2FA84F;
font-weight:700;
}
/* Navigation Menu Color */

.navbar a{
  color:#000000 !important;
}

.navbar a:hover{
  color:#000000 !important;
}

.navbar a.active{
  color:#000000 !important;
}
/* Right Align Navigation */

.logo{
  margin-right:auto;
}

.navbar{
  margin-left:auto;
}

.navbar a{
  color:#000000 !important;
}

.navbar a:hover{
  color:#000000 !important;
}
