

/* =========================
GLOBAL RESET
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
line-height:1.6;
background:#f5f7fb;
color:#333;
}

/* =========================
HEADER / NAVBAR
========================= */

.site-header{
position:absolute;
top:0;
left:0;
width:100%;
padding:15px 60px;
display:flex;
justify-content:space-between;
align-items:center;
z-index:1000;

background:rgba(255,255,255,0.15);
backdrop-filter:blur(6px);
}

/* logo */

.logo img{
height:80px;
}

/* navbar */

nav.navbar{
display:flex;
gap:30px;
align-items:center;
}

nav.navbar a,
nav.navbar .dropbtn{
color : black;
/* color:#fff; */
text-decoration:none;
font-weight:500;
font-size:16px;
cursor:pointer;
}

nav.navbar a:hover,
nav.navbar .dropbtn:hover{
color:#ffc107;
}

/* dropdown */

.dropdown{
position:relative;
}

.dropdown-content{
display:none;
position:absolute;
top:100%;
left:0;
background:#fff;
min-width:220px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
border-radius:5px;
}

.dropdown-content a{
display:block;
padding:10px 18px;
color:#333;
text-decoration:none;
}

.dropdown-content a:hover{
background:#f2f2f2;
color:#000;
}

.dropdown:hover .dropdown-content{
display:block;
}
/* Submenu */
.submenu {
  position: relative;
}

.submenu-content {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: white;
  min-width: 200px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
}

/* Show submenu on hover */
.submenu:hover .submenu-content {
  display: block;
}

.submenu-content a {
  padding: 10px 15px;
  display: block;
  color: #333;
}


/* =========================
HERO SECTION
========================= */

.hero{
position:relative;
height:100vh;
overflow:hidden;

}

/* slider */

.hero-slider{
position:absolute;
width:100%;
height:100%;

}

/* slide */

.slide{
position:absolute;
width:100%;
height:100%;
background-size:cover;
background-position:center;
opacity:0;
transform:scale(1.1);
transition:opacity 1.5s ease, transform 6s ease;

}

/* active slide */

.slide.active{
opacity:1;
transform:scale(1);
z-index:1;
}

/* overlay */

.slide::before{
content:"";
position:absolute;
width:100%;
height:100%;
background:rgba(0,0,0,0.45);
}

/* =========================
SLIDE TEXT
========================= */

.slide-caption{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
text-align:center;
color:white;
z-index:5;
width:80%;
}

.slide-caption h2{
font-size:52px;
font-weight:600;
margin-bottom:15px;
}

.slide-caption p{
font-size:20px;
}

/* hide caption if slide not active */

.slide:not(.active) .slide-caption{
display:none;
}

/* =========================
SECTIONS
========================= */

.section{
padding:80px 80px;
}

.section h2{
text-align:center;
font-size:32px;
margin-bottom:30px;
color:#0a2a43;
}


/* =========================
PRODUCT GRID
========================= */

.products{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.product-card{
background:#fff;
padding:20px;
text-align:center;
border-radius:10px;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
}

.product-card:hover{
transform:translateY(-6px);
}

.product-card img{
width:100%;
height:200px;
object-fit:cover;
border-radius:8px;
margin-bottom:10px;
}










/* Center the last two cards */
.product-card:nth-last-child(2){
grid-column:2;
}

.product-card:last-child{
grid-column:3;
}
/* =========================
WHY SECTION
========================= */

.why{
background:#0a2a43;
color:white;
}

.why-box{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}
.why h2{
color:white;
}

.why-card{
background:rgba(255,255,255,0.1);
padding:25px;
border-radius:10px;
}









/* GLOBAL MARKET SECTION */

.global{
    padding: 80px 20px;
    background: linear-gradient(to right,#f5f7fa,#e4ecf7);
    text-align: center;
}

/* Heading */

.global h2{
    font-size: 36px;
    color: #1a3c6e;
    margin-bottom: 15px;
    font-weight: bold;
}

/* Paragraph */

.global p{
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
}

/* Map Image */

.global img{
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    transition: transform 0.4s ease;
}

/* Hover Effect */

.global img:hover{
    transform: scale(1.05);
}


.markets{
    margin-top:30px;
}

.markets span{
    display:inline-block;
    background:#1a3c6e;
    color:white;
    padding:8px 18px;
    margin:5px;
    border-radius:20px;
    font-size:14px;
}

.global img{
    width: 80%;
    max-width: 900px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);

}





/* =========================
CTA
========================= */
.cta{
background:
linear-gradient(rgba(11,37,69,0.9),rgba(0,119,255,0.9)),
url("images/worldmap.png");
background-size:cover;
background-position:center;
}


.cta a{
background:white;
color:#00bfff;
padding:12px 25px;
border-radius:5px;
text-decoration:none;
margin-top:20px;
display:inline-block;
}

/* =========================
FOOTER
========================= */

footer{
background:#111;
color:white;
text-align:center;
padding:20px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:900px){

.slide-caption h2{
font-size:32px;
}

.slide-caption p{
font-size:16px;
}

nav.navbar{
gap:18px;
}

.site-header{
padding:10px 25px;
}

}



/* ABOUT SECTION */

.about-section{
padding-top:800px;
padding-bottom:80px;
padding-left:60px;
padding-right:60px;
/*padding:80px 60px;*/
background:#f2f2f2;
}

.about-container{
display:flex;
align-items:center;
justify-content:space-between;
gap:50px;
max-width:1200px;
margin:auto;
}

.about-text{
flex:1;
}

.about-text h2{
font-size:40px;
margin-bottom:25px;
font-weight:600;
text-align:center;
}

.about-text p{
font-size:18px;
line-height:1.8;
color:#333;
text-align:justify;
}




.about-image{
    overflow: hidden;
    border-radius: 12px;
}

.about-image img{
     width: 450px;
    height: auto;

    transform: scale(0.9);
    opacity: 0;
    transition: all 1s ease;
}

/* When image becomes visible */
.about-image.show img{
    transform: scale(1);
    opacity: 1;
}

/* Hover Effect */
.about-image img:hover{
    transform: scale(1.05);
}
















/*
.about-image{
flex:1;
}

.about-image img{
width:100%;
border-radius:5px;
box-shadow:0 5px 20px rgba(0,0,0,0.2);
}
*/

@media(max-width:900px){

.about-container{
flex-direction:column;
}

.about-text h2{
font-size:30px;
}

.about-text p{
font-size:16px;
}

}



/* IMPORT EXPORT SECTION */



.trade-box{
display:grid;
grid-template-columns:repeat(5, 1fr);
gap:20px;
margin-top:30px;
}

.trade-card{
background:#ffffff;
padding:25px;
border-radius:10px;
text-align:center;
box-shadow:0 4px 10px rgba(0,0,0,0.1);
transition:0.3s;
}

.trade-card:hover{
transform:translateY(-5px);
box-shadow:0 8px 18px rgba(0,0,0,0.15);
}











.trade{
    padding:80px 10%;
    background:#f7f7f7;
    text-align:center;
}

.trade h2{
    font-size:36px;
    margin-bottom:50px;
    font-weight:600;
}

/* GRID LAYOUT */
.trade-box{
display:grid;
grid-template-columns:repeat(5, 1fr);
gap:20px;
margin-top:30px;
}

/* CARD DESIGN */
.trade-card{
    background:white;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
    transition:0.3s;
    text-align:left;
}

.trade-card h3{
    font-size:20px;
    margin-bottom:10px;
    color:#0a3d62;
}

.trade-card p{
    font-size:15px;
    color:#555;
    line-height:1.6;
}

/* HOVER EFFECT */
.trade-card:hover{
    transform:translateY(-8px);
    box-shadow:0 10px 25px rgba(0,0,0,0.15);
}























/* SECTION STYLE */

.certifications-section{
background:linear-gradient(135deg,#f7faff,#eef3ff);
padding:80px 20px;
text-align:center;
}

.certifications-section h2{
font-size:36px;
color:#1a2a44;
margin-bottom:20px;
font-weight:700;
}

/* DESCRIPTION TEXT */

.cert-text{
max-width:800px;
margin:0 auto 50px auto;
font-size:16px;
color:#555;
line-height:1.7;
}

/* GRID LAYOUT */

.certifications{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
max-width:1200px;
margin:auto;
}

/* CARD DESIGN */

.cert-card{
background:#ffffff;
padding:30px 25px;
border-radius:15px;
box-shadow:0 8px 20px rgba(0,0,0,0.20);
transition:all 0.35s ease;
position:relative;
overflow:hidden;
}

/* TOP BORDER EFFECT */

.cert-card::before{
content:"";
position:absolute;
top:0;
left:0;
width:100%;
height:5px;
background:linear-gradient(90deg,#0077ff,#00c6ff);
}

/* CARD TEXT */

.cert-card h3{
font-size:20px;
color:#0b2545;
margin-bottom:12px;
}

.cert-card p{
font-size:14px;
color:#555;
line-height:1.6;
}

/* HOVER EFFECT */

.cert-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}

/* RESPONSIVE DESIGN */

@media (max-width:1000px){
.certifications{
grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:600px){
.certifications{
grid-template-columns:1fr;
}
}












/* CTA SECTION */

.cta{
background:linear-gradient(135deg,#0b2545,#0077ff);
padding:80px 20px;
text-align:center;
color:white;
position:relative;
overflow:hidden;
}

/* CTA CONTENT */

.cta-content{
max-width:800px;
margin:auto;
}

.cta h2{
font-size:38px;
margin-bottom:20px;
font-weight:700;
}

.cta p{
font-size:18px;
margin-bottom:35px;
line-height:1.6;
opacity:0.9;
}

/* CTA BUTTON */

.cta-btn{
display:inline-block;
padding:14px 35px;
background:white;
color:#0077ff;
font-size:18px;
font-weight:600;
text-decoration:none;
border-radius:30px;
transition:all 0.3s ease;
}

/* BUTTON HOVER */

.cta-btn:hover{
background:#ffcc00;
color:#000;
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

















/* CONTACT SECTION */

.contact{
background:#f7f9fc;
padding:80px 20px;
text-align:center;
}

.contact h2{
font-size:36px;
margin-bottom:50px;
color:#1a2a44;
font-weight:700;
}


/* CONTACT BOX GRID */

.contact-box{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
max-width:1000px;
margin:auto;
}


/* CONTACT CARDS */

.contact-card{
background:white;
padding:30px;
border-radius:12px;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

/* CARD TITLE */

.contact-card h3{
font-size:20px;
margin-bottom:10px;
color:#0077ff;
}

/* CARD TEXT */

.contact-card p{
font-size:16px;
color:#555;
}

/* HOVER EFFECT */

.contact-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}


/* RESPONSIVE */

@media (max-width:768px){
.contact-box{
grid-template-columns:1fr;
}
}



/* FOOTER SECTION */

.footer{
background:#0b2545;
color:#ffffff;
padding:60px 20px 20px;
font-family:Arial, sans-serif;
}

/* FOOTER CONTAINER */

.footer-container{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:40px;
}

/* FOOTER COLUMN */

.footer-col h3{
font-size:20px;
margin-bottom:20px;
color:#ffcc00;
}

.footer-col p{
font-size:14px;
line-height:1.7;
color:#dcdcdc;
}

/* LINKS */

.footer-col ul{
list-style:none;
padding:0;
margin:0;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
text-decoration:none;
color:#dcdcdc;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#ffcc00;
padding-left:6px;
}

/* CONTACT TEXT */

.footer-col p{
margin-bottom:10px;
}

/* FOOTER BOTTOM */

.footer-bottom{
text-align:center;
margin-top:40px;
padding-top:20px;
border-top:1px solid rgba(255,255,255,0.2);
font-size:14px;
color:#bbbbbb;
}

/* RESPONSIVE DESIGN */

@media (max-width:900px){

.footer-container{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.footer-container{
grid-template-columns:1fr;
text-align:center;
}

}








/* ABOUT BANNER */

.aboutt-banner{
padding-top:70px;

background:linear-gradient(rgba(5,25,60,0.9), rgba(5,25,60,0.9)),
url("/static/images/banner.jpg");
background-size:cover;
background-position:center;
height:350px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
}

.aboutt-banner h2{
font-size:42px;
font-weight:700;
letter-spacing:2px;
}


/* ABOUT SECTION */

.aboutt-section{
padding:80px 20px;
background:#f8f9fc;
}

.container{
max-width:1200px;
margin:auto;
}

/* GRID LAYOUT */

.aboutt-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:50px;
align-items:center;
}

/* IMAGE STYLE */

.aboutt-image img{
width:100%;
border-radius:12px;
box-shadow:0 10px 30px rgba(0,0,0,0.15);
transition:0.3s;
}

.aboutt-image img:hover{
transform:scale(1.03);
}

/* TEXT */

.aboutt-text h2{
font-size:32px;
margin-bottom:20px;
color:#0b2545;
}

.aboutt-text p{
font-size:16px;
line-height:1.8;
color:#555;
margin-bottom:15px;
}


/* MISSION SECTION */

.mission-section{
padding:80px 20px;
background:#ffffff;
}

/* MISSION GRID */

.mission-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

/* MISSION BOX */

.mission-box{
background:#f5f7fb;
padding:40px;
border-radius:12px;
text-align:center;
box-shadow:0 8px 20px rgba(0,0,0,0.08);
transition:0.3s;
}

.mission-box h3{
font-size:24px;
margin-bottom:15px;
color:#blue;
}

.mission-box p{
font-size:16px;
color:#555;
line-height:1.6;
}

/* HOVER EFFECT */

.mission-box:hover{
transform:translateY(-10px);
box-shadow:0 18px 35px rgba(0,0,0,0.15);
}


/* RESPONSIVE DESIGN */

@media (max-width:900px){

.aboutt-grid{
grid-template-columns:1fr;
}

.mission-grid{
grid-template-columns:1fr;
}

.aboutt-banner h2{
font-size:32px;
}

}











/* fruits and vegetables page */


/* GENERAL */

body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
background:#f5f7fa;
color:#333;
}

h2{
text-align:center;
margin-bottom:30px;
}


/* PAGE BANNER */

.productt-banner{
background:linear-gradient(rgba(0,25,70,0.8),rgba(0,45,120,0.8)),
url("/static/images/banner.jpg");
background-size:cover;
background-position:center;
color:white;
padding:150px 20px;
text-align:center;
}

.productt-banner h2{
font-size:45px;
margin-bottom:10px;
}

.productt-banner p{
font-size:18px;
}


/* SECTION */

.productt-section{
padding:70px 8%;
}

.section-title{
font-size:32px;
margin-bottom:40px;
color:#0b2545;
}


/* GRID */



.productts-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
justify-items:center;
}

.productt-card{
background:#fff;
padding:20px;
text-align:center;
border-radius:10px;
transition:0.3s;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
width:250px;        /* add this */
margin:auto;
}



/*

.productts-grid{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
padding:20px;
justify-content:center;
}



/* PRODUCT CARD */
/*
.productt-card{
background:white;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 25px rgba(0,0,0,0.1);
transition:0.4s;
transform:translateY(30px);
opacity:0;
}*/

.productt-card.show{
transform:translateY(0);
opacity:1;
}

.productt-card:hover{
transform:translateY(-10px);
box-shadow:0 15px 40px rgba(0,0,0,0.2);
}


/* IMAGE */

.productt-card img{
width:100%;
height:220px;
object-fit:cover;
transition:0.3s;
}

.productt-card:hover img{
transform:scale(1.08);
}


/* PRODUCT INFO */

.productt-info{
padding:20px;
}

.productt-info h3{
color:#0b2545;
margin-bottom:10px;
}

.productt-info p{
font-size:14px;
color:#555;
margin-bottom:12px;
}


/* SPECIFICATION LIST */

.productt-info ul{
list-style:none;
padding:0;
font-size:13px;
}

.productt-info ul li{
padding:4px 0;
border-bottom:1px solid #eee;
}


/* BUTTON */

.enquiry-btn{
display:inline-block;
margin-top:10px;
padding:8px 16px;
background:#0b2545;
color:white;
text-decoration:none;
border-radius:4px;
font-size:14px;
transition:0.3s;
}

.enquiry-btn:hover{
background:#0077ff;
}


/* RESPONSIVE */

@media(max-width:768px){

.productt-banner h2{
font-size:32px;
}

.section-title{
font-size:26px;
}

}


}













.gallery{
padding:80px 10%;
background:#f5f7fa;
text-align:center;
}

.gallery-heading{
padding-top:150px;
font-size:40px;
margin-bottom:10px;
color:#222;
text-align:center;
}

.gallery-sub{
text-align:center;
color:#777;
margin-bottom:40px;
}

/* Filter Buttons */

.gallery-filter{
margin-bottom:40px;
}

.filter-btn{
padding:10px 25px;
margin:5px;
border:none;
background:#e0e0e0;
cursor:pointer;
border-radius:25px;
transition:0.3s;
font-weight:500;
}

.filter-btn.active,
.filter-btn:hover{
background:#0a7b3e;
color:white;
}





.gallery-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
max-width:1200px;
margin:auto;
padding-bottom:50px;
}

@media(max-width:992px){
.gallery-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:576px){
.gallery-grid{
grid-template-columns:1fr;
}
}










/* Card */

.gallery-card{
position:relative;
overflow:hidden;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.1);
}

.gallery-card img{
width:100%;
height:260px;
object-fit:cover;
transition:0.4s;
}

/* Hover Effect */

.gallery-card:hover img{
transform:scale(1.1);
}

.overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
background:rgba(0,0,0,0.6);
color:white;
padding:15px;
transform:translateY(100%);
transition:0.3s;
}

.gallery-card:hover .overlay{
transform:translateY(0);
}









/* CONTACT BANNER */

.contact-banner{
background:linear-gradient(rgba(5,25,60,0.85),rgba(5,25,60,0.85)),
url("/static/images/banner.jpg");
background-size:cover;
background-position:center;
padding:120px 20px;
text-align:center;
color:white;
}

.contact-banner h1{
font-size:44px;
margin-bottom:10px;
}

.contact-banner p{
font-size:18px;
opacity:0.9;
}


/* CONTACT SECTION */

.contact-section{
padding:80px 10%;
background:#f7f9fc;
}

.contact-wrapper{
max-width:1200px;
margin:auto;
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}


/* LEFT SIDE */

.contact-left h2{
font-size:34px;
margin-bottom:15px;
color:#0b2545;
}

.contact-description{
color:#555;
line-height:1.7;
margin-bottom:30px;
}

/* CONTACT INFO ITEMS */

.info-item{
display:flex;
gap:15px;
margin-bottom:20px;
align-items:flex-start;
}

.icon{
font-size:22px;
background:#0077ff;
color:white;
padding:10px;
border-radius:50%;
}

.info-item h4{
margin:0;
font-size:16px;
color:#0b2545;
}

.info-item p{
margin:4px 0 0;
color:#555;
font-size:14px;
}


/* RIGHT SIDE */

.contact-right img{
width:100%;
border-radius:12px;
box-shadow:0 10px 25px rgba(0,0,0,0.2);
margin-bottom:20px;
}

.contact-highlight{
background:white;
padding:25px;
border-radius:10px;
box-shadow:0 8px 20px rgba(0,0,0,0.1);
}

.contact-highlight h3{
margin-bottom:10px;
color:#0077ff;
}

.contact-highlight p{
color:#555;
line-height:1.6;
}


/* MAP */

.contact-map{
margin-top:40px;
}


/* RESPONSIVE */

@media(max-width:900px){

.contact-wrapper{
grid-template-columns:1fr;
}

.contact-banner h1{
font-size:34px;
}

}

/*
body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background: #0b1622;
    color: #fff;
}*/

.testimonial-section {
    text-align: center;
    padding: 80px 20px;
}

.testimonial-section h2 {
    font-size: 40px;
    font-weight: 700;
}

.testimonial-section span {
    color: #4da3ff;
}

.underline {
    width: 60px;
    height: 4px;
    background: #4da3ff;
    margin: 10px auto 40px;
    border-radius: 5px;
}

/* CONTAINER */
.testimonial-container {
    position: relative;
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}


.testimonial-wrapper{
    overflow: hidden;
    scroll-behavior: smooth;
}





/* SLIDER */
.testimonial-slider {
    display: flex;
    gap: 25px;
    transition: transform 0.5s ease;
}

/* CARD */
.card {
    min-width: 320px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.quote {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.stars {
    color: gold;
    margin-bottom: 15px;
}

/* CLIENT */
.client {
    display: flex;
    align-items: center;
    gap: 12px;
}

.client img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
}

.client h4 {
    margin: 0;
    font-size: 16px;
}

.client span {
    font-size: 13px;
    color: #4da3ff;
}

/* NAV BUTTONS */
.nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 22px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.prev {
    left: -10px;
}

.next {
    right: -10px;
}

.nav:hover {
    background: #4da3ff;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .card {
        min-width: 90%;
    }
}




.history-section {
    padding: 80px 20px;
    background: #f4f7fb;
    text-align: center;
}

.history-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #0b1c2c;
}

/* GRID */
.history-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: auto;
}

/* CARD */
.history-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s;
}

.history-card span {
    color: orange;
    font-size: 20px;
}

.history-card p {
    margin: 0;
    color: #333;
    line-height: 1.6;
}

/* HOVER EFFECT */
.history-card:hover {
    transform: translateY(-5px);
}

/* MOBILE */
@media(max-width: 768px){
    .history-grid {
        grid-template-columns: 1fr;
    }
}









.current-section {
    padding: 80px 20px;
    background: #ffffff;
}

/* FLEX */
.current-container {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1100px;
    margin: auto;
}

/* LEFT DESIGN (NO IMAGE) */
.design-box {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    background: linear-gradient(135deg, #0b1c2c, #1e3c72);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* GLASS CARD */
.glass-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.glass-card h3 {
    margin-bottom: 10px;
}

/* RIGHT CONTENT */
.content-box {
    flex: 1;
}

.content-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0b1c2c;
}

.content-box ul {
    list-style: none;
    padding: 0;
}

.content-box li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 25px;
    color: #444;
}

/* CUSTOM BULLET */
.content-box li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 10px;
    height: 10px;
    background: orange;
    border-radius: 50%;
}

/* RESPONSIVE */
@media(max-width: 768px){
    .current-container {
        flex-direction: column;
    }
}






body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Section */
.wwd-sec {
  background: #0b0f14;
  padding: 80px 20px;
  color: #fff;
}

/* Center content */
.wwd-container {
  max-width: 1100px;
  margin: auto;
}

/* Title */
.wwd-title {
  text-align: center;
  font-size: 40px;
  margin-bottom: 60px;
}

.wwd-title span {
  color: orange;
}

/* Row */
.wwd-row {
  display: flex;
  gap: 60px;
}

/* Columns */
.wwd-col {
  flex: 1;
}

/* Item */
.wwd-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 40px;
}

/* Icons */
.wwd-icon {
  width: 70px;
  height: 70px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

/* Colors */
.wwd-icon.brown {
  background: #3a2a1c;
  color: orange;
}

.wwd-icon.dark {
  background: #1c2229;
}

/* Text */
.wwd-item h3 {
  margin: 0 0 8px;
}

.wwd-item p {
  margin: 0;
  color: #bbb;
}

/* Mobile fix */
@media (max-width: 768px) {
  .wwd-row {
    flex-direction: column;
  }
}


/* Reset (safe minimal) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Section */
.cu-section {
    background: #f8f9fa;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container */
.cu-container {
    background: #ffffff;
    padding: 40px;
    width: 400px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    text-align: center;
    font-family: Arial, sans-serif;
}

/* Titles */
.cu-title {
    margin-bottom: 10px;
    color: #333;
}

.cu-subtitle {
    margin-bottom: 25px;
    color: #777;
    font-size: 14px;
}

/* Form */
.cu-form .cu-group {
    position: relative;
    margin-bottom: 20px;
}

.cu-form input,
.cu-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    outline: none;
    border-radius: 6px;
    font-size: 14px;
}

/* Labels */
.cu-form label {
    position: absolute;
    left: 12px;
    top: 12px;
    color: #999;
    background: #fff;
    padding: 0 5px;
    transition: 0.3s;
    pointer-events: none;
}

/* Floating effect */
.cu-form input:focus + label,
.cu-form input:valid + label,
.cu-form textarea:focus + label,
.cu-form textarea:valid + label {
    top: -8px;
    font-size: 12px;
    color: #2c5364;
}

/* Button */
.cu-btn {
    width: 100%;
    padding: 12px;
    border: none;
    background: #2c5364;
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.cu-btn:hover {
    background: #203a43;
}












/* Footer */
.cu-footer {
    background: #0f2027;
    padding: 20px 0;
    text-align: center;
}

/* Social Icons Container */
.cu-social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

/* Icon Style */
.cu-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
    text-decoration: none;
}

/* Individual Colors */
.cu-icon.fb { background: #3b5998; }
.cu-icon.tw { background: #1da1f2; }
.cu-icon.ig { background: #e1306c; }
.cu-icon.yt { background: #ff0000; }
.cu-icon.li { background: #0077b5; }

/* Hover Effect */
.cu-icon:hover {
    transform: translateY(-5px);
    opacity: 0.8;
}



































.certificate-section {
    background: #f5f6f8;
    text-align: center;
    padding: 80px 20px;
}

/* TITLE */


/* PARAGRAPH */
.certificate-desc {
    max-width: 700px;
    margin: 0 auto 50px;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

/* GRID */
.certificate-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 30px;
    max-width: 900px;
    margin: auto;
}

/* CARD */
.certificate-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
}

/* HOVER EFFECT */
.certificate-card:hover {
    transform: translateY(-8px);
}

/* IMAGE */
.certificate-card img {
    width: 100%;
    max-height: 120px;
    object-fit: contain;
}
