/* ===================================
GOOGLE FONT
=================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:wght@700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Herr+Von+Muellerhoff&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tangerine:wght@400;700&display=swap');
/* ===================================
RESET
=================================== */

/* ===================================
RESET
=================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Inter',sans-serif;
    background:#f8f8f6;
    overflow-x:hidden;
}

/* ===================================
NAVBAR
=================================== */

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#ffffff;
    box-shadow:0 2px 15px rgba(0,0,0,.08);
    z-index:9999;
    transition:.35s ease;
}

.navbar.scrolled{
    background:#ffffff;
    box-shadow:0 8px 25px rgba(0,0,0,.12);
}

/* ===================================
CONTAINER
=================================== */

.navbar .container{

    width:92%;
    max-width:1400px;

    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:7px 0;

}

/* ===================================
LOGO
=================================== */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:170px;
    max-width:100%;
    height:auto;
    display:block;
    transition:.3s;
}

.logo img:hover{
    transform:scale(1.03);
}

/* ===================================
NAVIGATION
=================================== */

.nav-menu{
    display:flex;
    align-items:center;
    transition:.4s ease;
}

.nav-menu ul{

    display:flex;
    align-items:center;

    gap:35px;

    list-style:none;

}

.nav-menu ul li{
    position:relative;
}

.nav-menu ul li a{

    text-decoration:none;

    color:#0A2540;

    font-size:16px;

    font-weight:700;

    transition:.3s;

    position:relative;

}

/* Underline */

.nav-menu ul li>a::after{

    content:"";

    position:absolute;

    left:50%;
    bottom:-6px;

    width:0;
    height:2px;

    background:#0077B6;

    transform:translateX(-50%);

    transition:.3s;

}

.nav-menu ul li>a:hover::after{
    width:100%;
}

.nav-menu ul li>a:hover{
    color:#0077B6;
}

/* ===================================
DROPDOWN
=================================== */

.dropdown{
    position:relative;
}
.dropdown.active .mega-menu{
    display:flex;
}
/* ===================================
MEGA MENU
=================================== */

.mega-menu{

    position:absolute;

    top:180%;
    left:0;

    min-width:165px;

    background:#e1ebf3;

    border-radius:12px;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

    display:flex;
    flex-direction:column;

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s;

    overflow:hidden;

}

.dropdown:hover .mega-menu{

    opacity:1;

    visibility:visible;

    transform:translateY(0);

}

.mega-menu a{

    padding:14px 18px;

    color:#444;

    font-size:15px;

    border-bottom:1px solid #f1f1f1;

    transition:.3s;

}

.mega-menu a:last-child{
    border-bottom:none;
}

.mega-menu a:hover{

    background:#0077B6;

    color:#ffffff;

    padding-left:24px;

}

/* ===================================
MOBILE TOGGLE
=================================== */

.mobile-toggle{

    display:none;

    font-size:28px;

    color:#0A2540;

    cursor:pointer;

}

/* ===================================
HERO SECTION
=================================== */

.hero{
position:relative;
height:90vh;
display:flex;
justify-content:center;
align-items:center;
overflow:hidden;
}

/* ===================================
VIDEO
=================================== */

.hero video{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
object-fit:cover;
}

/* ===================================
OVERLAY
=================================== */

.overlay{
position:absolute;
inset:0;

background:
linear-gradient(
180deg,
rgba(0,0,0,.45),
rgba(0,0,0,.60),
rgba(2,19,27,.92)
);
}

/* ===================================
HERO CONTENT
=================================== */

.hero-content{
position:relative;
z-index:2;
text-align:center;
max-width:1000px;
padding:20px;
color:white;
}

.hero-content span{
display:inline-block;
margin-bottom:20px;
letter-spacing:5px;
font-size:14px;
font-weight:600;
color:#18d4ff;
}

.hero-content h1{
font-family:'Playfair Display',serif;
font-size:95px;
font-weight:800;
line-height:1.05;
margin-bottom:25px;
text-shadow:0 10px 30px rgba(0,0,0,.4);
}

.hero-content p{
font-size:22px;
line-height:1.8;
max-width:760px;
margin:auto;
color:#f1f5f9;
}

/* ===================================
BUTTONS
=================================== */

.hero-buttons{
display:flex;
justify-content:center;
gap:18px;
margin-top:35px;
}

.btn-primary{
padding:18px 42px;
border-radius:60px;
text-decoration:none;
font-weight:600;
color:white;

background:
linear-gradient(
135deg,
#00b4db,
#0083b0
);

transition:.4s;
}

.btn-primary:hover{
transform:translateY(-4px);
box-shadow:
0 15px 35px rgba(0,180,219,.35);
}

.btn-secondary{
padding:18px 42px;
border-radius:60px;
text-decoration:none;
font-weight:600;
color:white;

border:1px solid rgba(255,255,255,.4);

background:
rgba(255,255,255,.08);

backdrop-filter:blur(10px);

transition:.4s;
}

.btn-secondary:hover{
background:white;
color:#02131b;
}

/* ===================================
SCROLL INDICATOR
=================================== */

.scroll-indicator{
position:absolute;
left:50%;
bottom:35px;
transform:translateX(-50%);
font-size:40px;
color:white;
animation:bounce 1.5s infinite;
z-index:2;
}

@keyframes bounce{

0%,100%{
transform:
translateX(-50%)
translateY(0);
}

50%{
transform:
translateX(-50%)
translateY(10px);
}

}


/* ================= ABOUT SECTION ================= */
.about {
  padding: 30px 8%;
  background: #f8fbff;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 15px;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 40px;
  color: #0A2540;
  margin-bottom: 20px;
}

.about-text p {
  font-size:20px;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.about-btn {
  padding: 12px 25px;
  background: #00B4D8;
  border: none;
  color: white;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s;
}

.about-btn:hover {
  background: #0096c7;
}


/* <!--***********************  Company's Presence ******************************--> */


.process{
  padding:25px 6%;
  background:linear-gradient(to bottom,#f8fbff,#eef7ff);
  text-align:center;
  overflow:hidden;
}

/* HEADER */

.process-header h4{
  color:#00B4D8;
  font-size:30px;
  margin-bottom:10px;
  font-weight:600;
}

.process-header h2{
  font-size:34px;
  color:#0A2540;
  font-weight:700;
}

/* FLOW */

.process-flow{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

/* ITEMS */

.process-item{
  display:flex;
  flex-direction:column;
  align-items:center;
  width:130px;
}

/* FACILITY COLUMN */

.facility-column{
  display:flex;
  flex-direction:column;
  gap:18px;
  align-items:center;
}

/* CIRCLE */

.circle{
  width:150px;
  height:150px;
  border-radius:50%;
  overflow:hidden;
  background:white;
  box-shadow:
    0 8px 20px rgba(0,119,182,0.12),
    0 0 0 6px rgba(255,255,255,0.7);
  transition:0.4s;
}

.circle:hover{
  transform:translateY(-6px) scale(1.04);
}

.circle img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* SMALL CIRCLES */

.circle.small{
  width:82px;
  height:82px;
  
}

/* TEXT */

.process-item p,
.facility-box p{
  margin-top:12px;
  font-size:13px;
  color:#444;
  line-height:1.4;
  font-weight:500;
}

/* ARROWS */

.curve-arrow{
  font-size:42px;
  color:#1d4ed8;
  margin-top:-30px;
  opacity:0.9;
}

/* FACILITY BOX */

.facility-box{
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* OPTIONAL BLUE GLOW */

.process::before{
  content:"";
  position:absolute;
  width:400px;
  height:400px;
  background:rgba(0,180,216,0.08);
  border-radius:50%;
  filter:blur(80px);
  top:-120px;
  left:-100px;
  z-index:0;
}

.process *{
  position:relative;
  z-index:1;
}


/* <!--***********************  Company's Presence eND ******************************--> */

/* <!--***********************  Our Products Start ******************************--> */


.products {
  padding: 30px 8%;                /*<!changes done> */
  background: #f8fbff;
  text-align: center;
}

/* HEADER */
.product-header h4 {
  color: #00B4D8;
  margin-bottom: 10px;
  font-size: 20px;
}
.product-header h1 {
  font-size: 42px;
  color: #0A2540;
  margin-bottom: 10px;   /*new added */
}
.product-header h2 {
  font-size: 42px;
  color: #0A2540;
  margin-bottom: 30px;  /* changes done */
}

/* GRID LAYOUT */
.product-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* TOP 3 */
.product-card:nth-child(1),
.product-card:nth-child(2),
.product-card:nth-child(3) {
  grid-column: span 2;
}

/* BOTTOM 2 CENTERED */
.product-card:nth-child(4) {
  grid-column: 2 / 4;
}

.product-card:nth-child(5) {
  grid-column: 4 / 6;
}

/* CARD */
.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  height: 350px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: 0.4s ease;
}

/* IMAGE */
.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.6s;
}

/* OVERLAY */
.product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,37,64,0.85),
    rgba(10,37,64,0.2),
    transparent
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding-bottom: 15px;
}

/* TEXT */
.product-overlay h3 {
  color: white;
  font-size: 42px;
  margin-bottom: 12px;
  font-weight: 700;
}

.product-overlay p {
  color: rgba(255,255,255,0.92);
  font-size: 18px;
  margin-bottom: 20px;
}

/* BUTTON */
.product-overlay a {
  color: #00B4D8;
  text-decoration: none;
  font-size: 22px;
  font-weight: 600;
}

/* HOVER */
.product-card:hover {
  transform: translateY(-8px);
}

.product-card:hover img {
  transform: scale(1.08);
}

/* ================= second ADVANCED PRODUCT SECTION ================= */
.products-advanced {
  padding: 25px 8%;    /* changes done */
  color: white;
  text-align: center;

  /* WATER BACKGROUND */
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=1600&q=80') no-repeat center/cover;
  position: relative;
}

/* DARK OVERLAY */
.products-advanced::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 37, 64, 0.85);
}

.products-advanced * {
  position: relative;
}

/* HEADER */
.products-header h4 {
  font-weight: 300;
  margin-bottom: 10px;
}


.products-header h1 {
  font-size: 35px;
  color:  rgba(255,255,255,0.92);
  margin-bottom: 20px;   /*new added */
}
.products-header h2 {
  font-size: 35px;
  color:  rgba(255,255,255,0.92);
  margin-bottom: 40px;  /* changes done */
}
/* GRID */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: left;
}

/* COLUMN */
.product-column h3 {
  margin-bottom: 20px;
  font-size: 16px;
  letter-spacing: 1px;
}

/* LIST */
.product-column ul {
  list-style: none;
  padding: 0;
}

.product-column li {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.9;
  transition: 0.3s;
}

/* HOVER EFFECT */
.product-column li:hover {
  color: #00B4D8;
  transform: translateX(5px);
}

/* NOTE */
.product-note {
  margin-top: 50px;
  font-size: 17px;
  opacity: 1;
}
/* ================= CERTIFICATION SECTION ================= */
/* ================= CERTIFICATION SECTION ================= */
/* ================= CERTIFICATIONS ================= */

.certifications{
  padding:70px 8%;
  background:#ffffff;
  overflow:hidden;
  text-align:center;
}

.certifications h2{
  color:#0A2540;
  font-size:34px;
  margin-bottom:50px;
}

/* SLIDER */

.cert-slider{
  width:100%;
  overflow:hidden;
  position:relative;
}

/* TRACK */

.cert-track{
  display:flex;
  align-items:center;
  gap:70px;
  width:max-content;
  animation:certScroll 22s linear infinite;
}

/* PAUSE ON HOVER */

.cert-slider:hover .cert-track{
  animation-play-state:paused;
}

/* IMAGES */

.cert-track img{
  height:95px;
  width:auto;
  object-fit:contain;
  transition:0.4s ease;
}

/* HOVER EFFECT */

.cert-track img:hover{
  transform:translateY(-8px) scale(1.08);
}

/* ANIMATION */

@keyframes certScroll{

  from{
    transform:translateX(0);
  }

  to{
    transform:translateX(-50%);
  }

}

/* ================= CONTACT ================= */
.contact {
  padding: 100px 10%;
  text-align: center;
  background: #f8fbff;
}

.contact h2 {
  font-size: 32px;
  color: #0A2540;
}

.contact p {
  margin: 10px 0 40px;
  color: #555;
}

/* BOXES */
.contact-container {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-box {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 300px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.contact-box:hover {
  transform: translateY(-10px);
}

.contact-box h3 {
  margin-bottom: 10px;
  color: #00B4D8;
}
.footer{
    background:#f7fafc;
    border-top:1px solid #e5edf4;
}

.footer-container{
    max-width:1200px;
    margin:auto;

    padding:25px 5%;

    display:grid;
    grid-template-columns:1.5fr 1fr 1fr;

    gap:30px;
}

.footer-logo{
    width:180px;
    margin-bottom:10px;
}

.footer-col h3{
    font-size:18px;
    color:#0A2540;
    margin-bottom:10px;
}

.footer-col p{
    font-size:14px;
    color:#666;
    line-height:1.6;
    margin-bottom:5px;
}

.footer-bottom{
    text-align:center;
    border-top:1px solid #e5edf4;
    padding:10px;
    font-size:13px;
    color:#777;
}

/* MOBILE */

@media(max-width:768px){

.footer-container{
    grid-template-columns:1fr;
    gap:20px;
    text-align:center;
    padding:20px;
}

.footer-logo{
    width:150px;
    margin:auto auto 10px;
    display:block;
}

.footer-col h3{
    margin-bottom:8px;
}

.footer-col p{
    margin-bottom:3px;
}

.footer-bottom{
    padding:8px;
}

}
/* **********************Product Page ***************************** */
/* SPICES */

/* INNER HERO */
.inner-hero {
  height: 70vh;
  background: linear-gradient(rgba(10,37,64,0.4), rgba(10,37,64,0.4)),
              url("../images/Hero_Image_in_Product.png"); /* 👈 use your local image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.inner-hero-content h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.inner-hero-content p {
  font-size: 16px;
  opacity: 0.9;
}

/* SECTION BACKGROUND */

/* ===================================
SPECIES PAGE
=================================== */



.species-section{

width:100%;

background:#f8f8f6;

padding:60px 5%;
}

/* ===================================
ROW
=================================== */

.species-row{

max-width:1200px;

margin:auto;

display:grid;

grid-template-columns:1fr 1fr;

align-items:center;

gap:60px;

padding:50px 0;
}
.product-script{
color:#c99a4a;
}

/* Alternate Layout */

.reverse{

display:grid;

grid-template-columns:1fr 1fr;
}

/* ===================================
TEXT
=================================== */

.species-content{

text-align:center;

}

/* Script Font */

.species-script{

font-family:'Tangerine',serif;

font-size:100px;


/* font-style:italic; */

font-weight:500;

line-height:.8;

color:#c79a4a;

margin-bottom:-5px;
}

/* Main Name */

.species-title{

font-family:'Cormorant Garamond',serif;

font-size:40px;

font-weight:300;



letter-spacing:10px;

line-height:1;

color:#666;

margin-bottom:25px;
}

/* Star */

.species-star{

font-size:34px;

color:#c79a4a;

margin-bottom:25px;
}

/* Description */

.species-desc{

font-family:'Montserrat',sans-serif;

font-size:18px;

font-weight:400;

color:#555;

margin-bottom:20px;
}

/* Scientific Name */

.species-scientific{

font-family:'Montserrat',sans-serif;

font-size:15px;

color:#777;
}

/* ===================================
IMAGE
=================================== */

.species-image{

display:flex;

justify-content:center;

align-items:center;
}

.species-image img{

width:100%;

max-width:520px;

height:320px;

object-fit:cover;

display:block;

transition:.5s ease;
border-radius: 20px;
border-radius: 18px;
border: 2px solid #C89B45;
box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.species-image img:hover{

transform:scale(1.03);
}

/* ===================================
DIVIDER
=================================== */

.divider{

max-width:1200px;

margin:20px auto;

display:flex;

align-items:center;

justify-content:center;

color:#c79a4a;

font-size:24px;
}

.divider::before,
.divider::after{

content:"";

flex:1;

height:1px;

background:#d5d5d5;
}

.divider::before{

margin-right:20px;
}

.divider::after{

margin-left:20px;
}

.divider::before,
.divider::after{

content:"";

flex:1;

height:1px;

background:#d7d7d7;
}

.divider::before{

margin-right:25px;
}

.divider::after{

margin-left:25px;
}

.divider::after,
.divider::before{

opacity:.8;
}
.separator span{
color:#c99a4a;
}

/* ===================================
TABLET
=================================== */

@media(max-width:992px){

.species-row{

grid-template-columns:1fr;

gap:40px;

text-align:center;
}

.reverse{

display:flex;

flex-direction:column-reverse;
}

.species-script{

font-size:65px;
}

.species-title{

font-size:54px;

letter-spacing:6px;
}

.species-image img{

max-width:100%;

height:280px;
}
}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px){

.species-section{

padding:40px 20px;
}

.species-row{

padding:35px 0;
}

.species-script{

font-size:52px;
}

.species-title{

font-size:40px;

letter-spacing:4px;
}

.species-star{

font-size:26px;
}

.species-desc{

font-size:16px;
}

.species-scientific{

font-size:13px;
}

.species-image img{

height:220px;
}
}

/* ===================================
PROCESSING HERO
=================================== */

.processing-hero{
height:60vh;
background:
linear-gradient(rgba(10,37,64,.7),rgba(10,37,64,.7)),
url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcRwup-QpT3b0xHOPHjqgpfJrLw890PWZ3giiw&s");
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.processing-hero-content h1{
font-size:48px;
margin-bottom:10px;
}

.processing-hero-content p{
font-size:18px;
opacity:.9;
}

/* ===================================
PROCESSING PRODUCTS
=================================== */

.processing-section{
padding:100px 5%;
background:#f5f5f5;
}

.processing-grid{
max-width:1500px;
margin:auto;
display:grid;
grid-template-columns:repeat(3,1fr);
gap:35px;
}

/* CARD */

.processing-card{
position:relative;
overflow:hidden;
background:#fff;
box-shadow:0 15px 35px rgba(0,0,0,.08);
transition:.4s;
}

.processing-card:hover{
transform:translateY(-8px);
}

.processing-card img{
width:100%;
height:360px;
object-fit:cover;
display:block;
}

/* WHITE BOX */

.processing-content{
position:absolute;
left:0;
bottom:60px;
width:70%;
background:#fff;
padding:10px;
height:70px;
overflow:hidden;
transition:.5s;
}

.processing-card:hover .processing-content{
height:160px;
}

.processing-content h3{
font-size:34px;
color:#002c6f;
margin-bottom:15px;
}

.processing-content p{
opacity:0;
line-height:1.8;
color:#555;
transition:.4s;
}

.processing-card:hover .processing-content p{
opacity:1;
}

/* BLUE FOOTER */

.processing-footer{
height:60px;
background:#003f99;
display:flex;
align-items:center;
justify-content:space-between;
padding:0 25px;
color:#fff;
cursor:pointer;
}

.processing-btn{
background:none;
border:none;
color:#fff;
font-size:20px;
font-weight:600;
cursor:pointer;
}

.processing-icon{
font-size:34px;
}

/* ===================================
MODAL
=================================== */

.processing-modal{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,.75);
justify-content:center;
align-items:center;
z-index:99999;
}

.processing-modal-box{
background:#fff;
width:650px;
max-width:92%;
border-radius:20px;
overflow:hidden;
position:relative;
animation:popup .3s ease;
}

.processing-modal-box img{
width:100%;
height:320px;
object-fit:cover;
display:block;
}

.processing-modal-box h2{
padding:25px 30px 10px;
color:#002c6f;
}

.processing-modal-box p{
padding:0 30px 30px;
color:#555;
line-height:1.8;
}

.processing-close{
position:absolute;
top:10px;
right:20px;
font-size:38px;
color:#fff;
cursor:pointer;
z-index:100000;
}

@keyframes popup{
from{
opacity:0;
transform:scale(.85);
}
to{
opacity:1;
transform:scale(1);
}
}

/* TABLET */

@media(max-width:992px){

.processing-grid{
grid-template-columns:repeat(2,1fr);
}

}

/* MOBILE */

@media(max-width:768px){

.processing-grid{
grid-template-columns:1fr;
}

.processing-card img{
height:300px;
}

.processing-content h3{
font-size:28px;
}

}
/* SPECS */

.specs {
  padding: 60px 10%;
  text-align: center;
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 600px;
  margin: auto;
}

/* SPECS SECTION */
.specs {
  padding: 70px 10%;
  text-align: center;
  background: #f8fbff;
}

.specs h2 {
  font-size: 32px;
  margin-bottom: 40px;
}

/* GRID */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* BOX */
.spec-box {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.spec-box:hover {
  transform: translateY(-5px);
}

/* TEXT */
.spec-box h4 {
  color: #0077B6;
  margin-bottom: 8px;
}

.spec-box p {
  font-size: 14px;
  color: #555;
}


/* PROCESS SECTION */
.process-flow {
  padding: 60px 10%;
  text-align: center;
}

.process-flow h2 {
  margin-bottom: 40px;
}

/* LINE */
.process-line {
  display: flex;
  justify-content: space-between;
  position: relative;
}

/* LINE BACKGROUND */
.process-line::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 5%;
  width: 90%;
  height: 2px;
  background: #0077B6;
  z-index: 0;
}

/* STEP */
.step {
  background: white;
  padding: 10px 20px;
  border-radius: 30px;
  position: relative;
  z-index: 1;
  font-weight: 600;
  box-shadow: 0 5px 10px rgba(0,0,0,0.05);
}



/* MODAL BACKGROUND */
.product-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* CONTENT */

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  cursor: pointer;
}

/* HOVER POINTER */
.catalog-card {
  cursor: pointer;
}
.sub-text {
  font-size: 11px;
  color: #888;
  margin: 4px 0;
}






/* _______________________________________________what we do__________________________________________________ */


/* SECTION BACKGROUND */

.what_we-section {
  padding: 20px 8%;
  background: linear-gradient(to right, #f7fbff, #e6f7ff);
}

/* CARD */
.what_we-card {
  display: flex;
  align-items: center;
  gap: 60px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.4s;
   max-width: 1000px;
  margin: auto;
}

/* HOVER LIFT */
.what_we-card:hover {
  transform: translateY(-10px);
}

/* IMAGE */

.what_we-img img {
   width: 350px;
   height: 250px;
  border-radius: 12px;
  transition: 0.4s;
}

.what_we-img img:hover {
  transform: scale(1.05);
}

/* TEXT */
.what_we-content {
  max-width: 500px;
}

.what_we-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #0A2540;
}

.what_we-content p {
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

/* 🔥 PREMIUM BUTTON */
.cta-btn {
  display: inline-block;
  padding: 10px 22px;
  font-size: 14px;
  background: #0077B6;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.cta-btn:hover {
  background: #005f8a;
  transform: translateY(-2px);
}

.what_we-section:nth-child(even) {
  background: #f9fcff;
}


/* _______________________________________________what we do END__________________________________________________ */






/* CONTACT US */
/* CONTACT US */
/* ==========================================
CONTACT HERO
========================================== */

/* =====================================================
CONTACT HERO
===================================================== */

.contact-hero{
    height:60vh;
    background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.45)),
    url("https://images.unsplash.com/photo-1518837695005-2083093ee35b");
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
}

.contact-hero-content h1{
    font-size:60px;
    margin-bottom:15px;
    font-weight:700;
}

.contact-hero-content p{
    font-size:18px;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

/* =====================================================
CONTACT SECTION
===================================================== */

.contact-section{
    padding:100px 8%;
    background:#f7f7f7;
}

.contact-container{
    max-width:1400px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1.2fr;
    gap:80px;
}

/* LEFT */

.contact-info h2{
    font-size:38px;
    font-weight:300;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#222;
    margin-bottom:40px;
}

.contact-info p{
    color:#555;
    line-height:1.9;
    margin-bottom:30px;
}

.contact-item{
    margin-bottom:35px;
}

.contact-item i{
    font-size:22px;
    margin-bottom:10px;
    color:#0A2540;
    display:block;
}

.contact-item a{
    color:#0A2540;
    text-decoration:none;
    font-weight:600;
}

/* RIGHT FORM */

.contact-form{
    width:100%;
}

.form-row{
    display:flex;
    gap:25px;
    margin-bottom:25px;
}

.form-group{
    width:100%;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:16px;
    border:1px solid #d8d8d8;
    font-size:15px;
    outline:none;
    transition:.3s;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:#0A2540;
}

.contact-form textarea{
    height:220px;
    resize:none;
}

.send-btn{
    margin-top:20px;
    padding:15px 40px;
    border:none;
    background:#0A2540;
    color:#fff;
    cursor:pointer;
    text-transform:uppercase;
    letter-spacing:2px;
    transition:.3s;
}

.send-btn:hover{
    background:#003f99;
}

/* =====================================================
MAP SECTION
===================================================== */

.map-section iframe{
    width:100%;
    height:500px;
    border:none;
    display:block;
}

/* =====================================================
CTA SECTION
===================================================== */

.cta-section{
    background:linear-gradient(135deg,#0A2540,#003f99);
    color:#fff;
    text-align:center;
    padding:80px 20px;
}

.cta-section h2{
    font-size:42px;
    margin-bottom:20px;
}

.cta-section p{
    max-width:700px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.cta-btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:#00B4D8;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.cta-btn:hover{
    background:#0096c7;
    transform:translateY(-3px);
}

/* =====================================================
FAQ SECTION
===================================================== */

.faq-section{
    padding:100px 10%;
    background:#f8fbff;
}

.faq-section h2{
    text-align:center;
    font-size:42px;
    color:#0A2540;
    margin-bottom:50px;
}

.faq-item{
    background:#fff;
    padding:25px 30px;
    margin-bottom:20px;
    border-radius:12px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
    transition:.3s;
}

.faq-item:hover{
    transform:translateY(-4px);
}

.faq-item h4{
    color:#003f99;
    margin-bottom:10px;
    font-size:20px;
}

.faq-item p{
    color:#666;
    line-height:1.8;
}







/* =====================================================
TABLET
===================================================== */

@media(max-width:992px){

.contact-container{
    grid-template-columns:1fr;
    gap:50px;
}

.contact-hero-content h1{
    font-size:45px;
}

}

/* =====================================================
MOBILE
===================================================== */

@media(max-width:768px){

.contact-hero{
    height:50vh;
    padding:20px;
}

.contact-hero-content h1{
    font-size:34px;
}

.contact-hero-content p{
    font-size:15px;
}

.contact-section{
    padding:70px 5%;
}

.contact-info h2{
    font-size:28px;
    letter-spacing:3px;
}

.form-row{
    flex-direction:column;
    gap:20px;
}

.map-section iframe{
    height:350px;
}

.cta-section{
    padding:60px 20px;
}

.cta-section h2{
    font-size:30px;
}

.cta-section p{
    font-size:15px;
}

.faq-section{
    padding:70px 20px;
}

.faq-section h2{
    font-size:30px;
}

.faq-item{
    padding:20px;
}

.faq-item h4{
    font-size:18px;
}

}


/* =====================================================
CONTACT SECTION END
===================================================== */



/* COOKED SHRIMP */
/* COOKED SHRIMPP */

/* ==========================================
COOKED SHRIMP HERO
========================================== */


.cooked-hero{

    height:70vh;
    background:
    linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)),
    url("https://images.unsplash.com/photo-1518837695005-2083093ee35b?w=1600");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.hero-content{

    max-width:900px;

    padding:0 20px;

    color:#fff;

    z-index:2;
}

.hero-content h1{

    font-size:70px;

    margin-bottom:20px;

    font-weight:700;
}

.hero-content p{

    font-size:20px;

    line-height:1.8;
}

/* ==========================================
PRODUCT SECTION
========================================== */

.product-section{

    padding:50px 6%;

    background:#fff;
}

.section-title{

    text-align:center;

    font-size:56px;

    color:#23335b;

    font-weight:700;

    
}

/* ==========================================
GRID
========================================== */

.product-grid{

    max-width:1500px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:60px 40px;
}

/* ==========================================
PRODUCT CARD
========================================== */

.product-box{

    text-align:center;
}

.product-image{

    position:relative;

    width:100%;

    height:340px;

    overflow:hidden;
}

.product-image img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;

    transition:.5s ease;
}



.rawproduct-image{

    position:relative;

    width:100%;

    height:340px;

    overflow:hidden;
}

.rawproduct-image img{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:contain;

    transition:.5s ease;
}
/* DEFAULT IMAGE */



/* HOVER IMAGE */

.hover-img{

    opacity:0;

    transform:scale(.9);
}

/* HOVER EFFECT */

.product-box:hover .front-img{

    opacity:0;

    transform:scale(1.05);
}

.product-box:hover .hover-img{

    opacity:1;

    transform:scale(1);
}

.product-box h3{

    

    font-size:24px;

    color:#333;

    font-weight:600;
}

/* ==========================================
SECTION BUTTON
========================================== */

.section-btn-wrap{

    text-align:center;

    margin-top:70px;
}

.section-view-btn{

    display:inline-block;

    padding:16px 40px;

    background:#003f99;

    color:#fff;

    text-decoration:none;

    border-radius:50px;

    font-size:16px;

    font-weight:600;

    transition:.3s;
}

.section-view-btn:hover{

    background:#002d70;

    transform:translateY(-3px);
}

/* ==========================================
SECOND SECTION BG
========================================== */

.grey-bg{
    background:#f7f8fb;
}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

.product-grid{

    grid-template-columns:repeat(2,1fr);

    gap:50px 30px;
}

.section-title{
    font-size:42px;
}

.hero-content h1{
    font-size:50px;
}

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

.cooked-hero{

    height:55vh;

    margin-top:75px;
}

.hero-content h1{

    font-size:36px;
}

.hero-content p{

    font-size:16px;
}

.product-section{

    padding:70px 5%;
}

.product-grid{

    grid-template-columns:1fr;

    gap:40px;
}

.section-title{

    font-size:32px;

    margin-bottom:50px;
}

.product-image{

    height:260px;
}

.product-box h3{

    font-size:20px;
}

.section-view-btn{

    padding:14px 30px;

    font-size:15px;
}

}



/* COOKED SHRIMP END*/












/* About us */
/* About us */

/* ==========================================
ABOUT HERO
========================================== */

.about-hero{
    height:70vh;
    background:
    linear-gradient(rgba(0,0,0,.50),rgba(0,0,0,.50)),
    url("https://images.unsplash.com/photo-1518837695005-2083093ee35b?w=1600");
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:#fff;
    padding:20px;
}

.about-hero-content{
    max-width:800px;
}

.about-hero-content span{
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
}

.about-hero-content h1{
    font-size:60px;
    margin:20px 0;
    line-height:1.2;
}

.about-hero-content p{
    font-size:18px;
    line-height:1.8;
}

/* ==========================================
COMPANY STORY
========================================== */

.company-story{
    padding:80px 8%;
    background:#fff;
}

.company-story-wrapper{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.company-story-image img{
    width:100%;
    display:block;
    border-radius:20px;
}

.story-subtitle{
    color:#0066cc;
    font-weight:600;
    letter-spacing:2px;
}

.company-story-content h2{
    font-size:42px;
    color:#0A2540;
    margin:15px 0 25px;
    line-height:1.3;
}

.company-story-content p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
    font-size:16px;
}

/* ==========================================
WHY CHOOSE US
========================================== */

.why-us{
    padding:50px 6%;
    background:#f7f9fc;
    margin-bottom: 20px;
}

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-heading span{
    color:#0066cc;
    font-weight:600;
    font-size: 28px;
    letter-spacing:2px;
}

.section-heading h2{
    font-size:44px;
    margin-top:10px;
    color:#0A2540;
}

.why-grid{
    max-width:1400px;
    margin:auto;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.why-card{
    background:#fff;
    padding:40px 25px;
    border-radius:15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.3s;
}

.why-card:hover{
    transform:translateY(-8px);
}

.why-card i{
    font-size:45px;
    color:#0066cc;
    margin-bottom:20px;
}

.why-card h3{
    color:#0A2540;
    margin-bottom:12px;
}

.why-card p{
    color:#666;
    line-height:1.7;
}

/* ==========================================
STATS
========================================== */

.about-stats{
    background:#003f99;
    color:#fff;
    padding:50px 8%;

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    text-align:center;
}

.stats-box h2{
    font-size:55px;
    margin-bottom:10px;
}

.stats-box p{
    font-size:18px;
}

/* ==========================================
CTA
========================================== */

.about-cta{
    padding:90px 20px;
    text-align:center;
    background:#fff;
}

.about-cta h2{
    font-size:42px;
    color:#0A2540;
    margin-bottom:20px;
}

.about-cta p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.8;
}

.about-btn{
    display:inline-block;
    margin-top:30px;
    padding:15px 35px;
    background:#0066cc;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    transition:.3s;
}

.about-btn:hover{
    background:#004fa3;
}

/* ==========================================
TABLET
========================================== */

@media(max-width:992px){

.company-story-wrapper{
    grid-template-columns:1fr;
}

.why-grid{
    grid-template-columns:repeat(2,1fr);
}

.about-stats{
    grid-template-columns:repeat(2,1fr);
}

.about-hero-content h1{
    font-size:46px;
}

}

/* ==========================================
MOBILE
========================================== */

@media(max-width:768px){

.about-hero{
    height:50vh;
}

.about-hero-content h1{
    font-size:34px;
}

.about-hero-content p{
    font-size:16px;
}

.company-story,
.why-us{
    padding:30px 3%;
}

.company-story-content h2{
    font-size:25px;
}

.section-heading h2{
    font-size:25px;
}

.why-grid{
    grid-template-columns:1fr;
}

.about-stats{
    grid-template-columns:1fr;
}

.stats-box h2{
    font-size:30px;
}

.about-cta{
    padding:70px 20px;
}

.about-cta h2{
    font-size:30px;
}

}




/* About us end */
/* About us */




/* =========================================================
   =================== RESPONSIVE CSS ======================
   ========================================================= */


/* ================= TABLET (992px) ================= */

@media (max-width: 992px) {

 /* ================= NAVBAR ================= */

.mobile-toggle{
    display:block;
    font-size:28px;
    color:#0A2540;
    cursor:pointer;
}

.navbar .container{
    padding:12px 20px;
}

.logo img{
    width:180px;
}

.nav-menu{

    position:fixed;
    top:82px;
    left:-100%;

    width:300px;
    height:calc(100vh - 82px);

    background:#ffffff;

    transition:.35s ease;

    overflow-y:auto;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    z-index:9998;
}

.nav-menu.active{
    left:0;
}

.nav-menu ul{
    flex-direction:column;
    align-items:flex-start;
    width:100%;
    gap:0;
}

.nav-menu ul li{
    width:100%;
    border-bottom:1px solid #ececec;
}

.nav-menu ul li a{
    display:block;
    width:100%;
    padding:18px 22px;
}

.mega-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    width:100%;
    min-width:100%;
    box-shadow:none;
    border-radius:0;
    background:#f8f8f8;
}

.dropdown.active .mega-menu{
    display:flex;
}

.mega-menu a{
    padding:14px 40px;
}
  /* HERO */
 /* HERO */

.hero{
height:80vh;
}

.hero-content{
max-width:750px;
}

.hero-content h1{
font-size:58px;
}

.hero-content p{
font-size:18px;
}

.hero-buttons{
margin-top:28px;
}
  /* ABOUT */
  .about-container{
    flex-direction:column;
    text-align:center;
  }

  /* PROCESS */
  .process-container{
    flex-direction:column;
    gap:30px;
  }

  .arrow{
    display:none;
  }

  .process-header h2{
    font-size:28px;
  }

  .circle{
    width:110px;
    height:110px;
  }

  .circle img{
    width:45px;
  }

  /* PRODUCTS */
  .product-container{
    grid-template-columns:repeat(2,1fr);
  }

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5){
    grid-column:auto;
  }

  .products-grid{
    grid-template-columns:repeat(2,1fr);
  }

  /* SPICES */
  .inner-hero{
    height:45vh;
  }

  .inner-hero-content h1{
    font-size:32px;
  }

  .spice-card{
    gap:20px;
    padding:20px;
  }

  .spice-img img{
    width:280px;
  }

  .spice-content h2{
    font-size:26px;
  }

  .spice-content p{
    font-size:15px;
  }

  /* PROCESSING */
  .catalog-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .catalog-card{
    height:220px;
  }

  /* SPECS */
  .spec-grid{
    grid-template-columns:repeat(2,1fr);
  }
}



/* ================= MOBILE (768px) ================= */

@media (max-width: 768px) {

 .logo img{
    width:150px;
}

.nav-menu{
    width:100%;
    top:75px;
    height:calc(100vh - 75px);
}
  /* HERO */
 /* HERO */

.hero{
height:75vh;
padding:0 20px;
}

.hero-content span{
font-size:12px;
letter-spacing:3px;
}

.hero-content h1{
font-size:20px;
line-height:1.2;
}

.hero-content p{
font-size:15px;
line-height:1.7;
}

.hero-buttons{
flex-direction:column;
align-items:center;
gap:15px;
}

.btn-primary,
.btn-secondary{
width:220px;
text-align:center;
}

.scroll-indicator{
font-size:28px;
}
  /* ABOUT */
  .about{
    padding:60px 20px;
  }

  .about-text h2{
    font-size:26px;
  }

  /* PROCESS */
  .process{
    padding:60px 20px;
  }

  .process-header h2{
    font-size:24px;
  }

  .circle{
    width:100px;
    height:100px;
  }

  .circle img{
    width:40px;
  }

  /* PRODUCTS */
  .product-container{
    grid-template-columns:1fr;
  }

  .product-card{
    height:300px;
  }

  .product-card:nth-child(1),
  .product-card:nth-child(2),
  .product-card:nth-child(3),
  .product-card:nth-child(4),
  .product-card:nth-child(5){
    grid-column:auto;
  }

  .product-overlay h3{
    font-size:28px;
  }

  .product-overlay p{
    font-size:14px;
  }

  .product-overlay a{
    font-size:18px;
  }

  .products-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  /* SPICES */
  .inner-hero{
    height:35vh;
    padding:20px;
  }

  .inner-hero-content h1{
    font-size:26px;
  }

  .inner-hero-content p{
    font-size:14px;
  }

  .spice-card{
    flex-direction:column !important;
    text-align:center;
  }

  .spice-img img{
    width:100%;
    max-width:100%;
  }

  .spice-content{
    max-width:100%;
  }

  .spice-content h2{
    font-size:22px;
  }

  .spice-content p{
    font-size:14px;
  }

  /* PROCESSING */
  .catalog-grid{
    grid-template-columns:1fr;
  }

  .catalog-card{
    height:220px;
  }

  .catalog-card h3{
    font-size:18px;
  }

  /* MODAL */
  .modal-content{
    width:95%;
    max-width:95%;
  }

  .modal-content img{
    height:240px;
  }

  .modal-content h2{
    font-size:20px;
  }

  /* SPECS */
  .spec-grid{
    grid-template-columns:1fr;
  }

  /* PROCESS FLOW */
  .process-line{
    flex-direction:column;
    gap:20px;
  }

  .process-line::before{
    display:none;
  }

  /* FOOTER */
  .footer-container{
    flex-direction:column;
    text-align:center;
  }
}



/* ================= SMALL MOBILE (576px) ================= */

@media (max-width: 576px) {
.navbar .container{
    padding:10px 15px;
}

.logo img{
    width:135px;
}

.mobile-toggle{
    font-size:24px;
}

.nav-menu{
    top:68px;
    height:calc(100vh - 68px);
}
  /* HERO */

.hero{
height:70vh;
}

.hero-content h1{
font-size:34px;
display: block;
}

.hero-content p{
font-size:14px;
display: block;
}

.hero-buttons{
margin-top:25px;
display: block;
}

.btn-primary,
.btn-secondary{
width:200px;
padding:14px 25px;
}

  .catalog-card{
    height:220px;
  }

  .modal-content img{
    height:220px;
  }
}



/* ================= EXTRA SMALL (480px) ================= */

@media (max-width: 480px) {
  .logo img{
    width:120px;
}

.nav-menu ul li a{
    padding:16px 18px;
}

.mega-menu a{
    padding:12px 30px;
}
/* HERO */

.hero{
height:65vh;
}

.hero-content{
padding:15px;
}

.hero-content span{
font-size:11px;
letter-spacing:2px;
}

.hero-content h1{
font-size:30px;
}

.hero-content p{
font-size:13px;
line-height:1.6;
}

.btn-primary,
.btn-secondary{
width:180px;
font-size:14px;
padding:12px 20px;
}
  .inner-hero{
    height:40vh;
  }

  .inner-hero-content h1{
    font-size:22px;
  }

  .spice-section{
    padding:40px 15px;
  }

  .spice-card{
    padding:15px;
  }

  .spice-content h2{
    font-size:20px;
  }

  .spice-content p{
    font-size:13px;
  }
}