/* ===================================
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;
}

html,
body{
    width:100%;
    overflow-x:hidden;
}


img,
video{
    max-width:100%;
    height:auto;
}

/* ===================================
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:100%;
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:10px 20px;
}

/* ===================================
LOGO
=================================== */

.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:160px;
    height:auto;
    max-width:100%;
    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:210px;

    background:#b5ddfd;

    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;
}

/* FOR CLICK COLOUR CHANGE */
.product-column h3 a,
.product-column h3 a:visited,
.product-column h3 a:hover,
.product-column h3 a:active {
  color: #fff;
  text-decoration: none;
}

/* 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);
}


.product-column li a {
  color: inherit;
  text-decoration: none;
  display: block;
}


/* 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 *********************************/

/*==============================
        ASF FOOTER
==============================*/

.asf-footer{
    position:relative;
    background:#ffffff;
    overflow:hidden;
    color:#00000;
}

/* Background Image */
.asf-footer::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../images/footer_bg.png") center/cover no-repeat;
    opacity:.22;
    z-index:0;
}

/* Dark Overlay */

.asf-bg-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(180deg,
    rgba(255,255,255,1),
    rgba(255,255,255,1));
    z-index:1;
}

/* Wave */

.asf-wave{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    z-index:2;
    line-height:0;
}

.asf-wave img{
    width:100%;
    display:block;
}

/* Container */

.asf-container{

    position:relative;

    z-index:5;

     max-width:1320px;
    margin:auto;
    padding:180px 20px 10px;   /* was 170px */

}

/* Grid */

.asf-grid{
display:grid; 
grid-template-columns: 1.4fr 1fr 1.1fr 1fr; 
gap:35px;

}

/* Columns */

.asf-col{

    position:relative;

    padding-right:30px;

}

.asf-col:not(:last-child){

    border-right:1px solid rgba(0,0,0,.50);

}

/* Logo */

.asf-logo{

    width:200px;

    margin-bottom:25px;

    display:block;

}

/* Text */

.asf-text{

    color:#000000;

    font-size:16px;

    line-height:1.8;

    margin-bottom:25px;

}

/* Social */

.asf-social{

    display:flex;

    gap:14px;

}

.asf-social a{

    width:46px;

    height:46px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.25);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    text-decoration:none;

    transition:.35s;

}

.asf-social a:hover{

    background:#00d8ff;

    border-color:#00d8ff;

    color:#041b3d;

    transform:translateY(-4px);

}

/* Titles */

.asf-title{

    font-size:26px;

    font-weight:700;

    margin-bottom:30px;

    color:#00000;

    position:relative;

}

.asf-title::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-10px;

    width:60px;

    height:3px;

    background:#00000;

}

/* Links */

.asf-links{

    list-style:none;

    padding:0;

}

.asf-links li{

    margin-bottom:10px;

}

.asf-links a,
.asf-links a:visited,
.asf-links a:link{
    color:#000 !important;
    text-decoration:none;
    font-size:17px;
    display:inline-block;
    transition:.3s;
}

.asf-links a::before{

    content:"❯";

    color:#00d8ff;

    margin-right:10px;

}

.asf-links a:hover{

    color:#00d8ff;

    padding-left:8px;

}

/* Export */

.asf-export{

    text-align:center;

}

.asf-map{

    width:100%;

    max-width:240px;

    display:block;

    margin:1px auto;

}

.asf-export h2{

    color:#00000;

    font-size:58px;

    margin:12px 0 6px;

}

.asf-export span{

    font-size:22px;

    color:#fff;

}

/* Contact */

.asf-contact{

    list-style:none;

    padding:0;

}

.asf-contact li{

    display:flex;

    align-items:center;

    gap:15px;

    margin-bottom:0px;

}

.asf-contact i{

    width:44px;

    height:44px;

    border-radius:50%;

    border:1px solid rgba(255,255,255,.25);

    display:flex;

    justify-content:center;

    align-items:center;

    color:#00d8ff;

    flex-shrink:0;

}

.asf-contact span{

    color:#00000;

    line-height:1.6;

}
/*======================================
        FOOTER BOTTOM
======================================*/

.asf-bottom{

    margin-top:0px;

    padding:5px 0;

    border-top:1px solid rgba(0,0,0,.50);

    text-align:center;

    color:#00000;

    font-size:15px;

    letter-spacing:.5px;

}

/*======================================
        HOVER EFFECTS
======================================*/

.asf-contact li:hover i{

    background:#00d8ff;

    color:#041b3d;

    border-color:#00d8ff;

    transition:.3s;

}

.asf-map{

    transition:.4s;

}

.asf-export:hover .asf-map{

    transform:scale(1.05);

}

.asf-links a{

    display:inline-block;

}

.asf-links a:hover{

    transform:translateX(6px);

}
.asf-wave img{
    display:block;
    width:100%;
}

.process{
    position:relative;
}

/*==================================================
              MEDIA QUERY FOR FOOTER  LARGE LAPTOP
==================================================*/
/*@media (max-width:1200px){*/

/*    .asf-container{*/
/*        max-width:1100px;*/
/*        padding:140px 30px 20px;*/
/*    }*/

/*    .asf-grid{*/
/*        grid-template-columns:repeat(4,1fr);*/
/*        gap:25px;*/
/*    }*/

/*    .asf-logo{*/
/*        width:170px;*/
/*    }*/

/*    .asf-title{*/
/*        font-size:24px;*/
/*    }*/

/*    .asf-export h2{*/
/*        font-size:42px;*/
/*    }*/

/*}*/

/*==================================================
                MEDIA QUERY FOR FOOTER    TABLET
==================================================*/
/*@media (max-width:991px){*/

/*    .asf-container{*/
/*        padding:90px 25px 25px;*/
/*    }*/

/*    .asf-grid{*/
/*        grid-template-columns:repeat(2,1fr);*/
/*        gap:40px;*/
/*    }*/

/*    .asf-col{*/
/*        border-right:none;*/
/*        padding-right:0;*/
/*    }*/

/*    .asf-title{*/
/*        font-size:24px;*/
/*    }*/

/*    .asf-logo{*/
/*        width:180px;*/
/*    }*/

/*    .asf-map{*/
/*        max-width:220px;*/
/*        margin:15px auto;*/
/*    }*/

/*    .asf-export{*/
/*        text-align:center;*/
/*    }*/

/*    .asf-contact li{*/
/*        margin-bottom:15px;*/
/*    }*/

/*}*/

/*==================================================
               MEDIA QUERY FOR FOOTER     MOBILE
==================================================*/
/*@media (max-width:767px){*/

/*    .asf-container{*/
/*        padding:70px 20px 20px;*/
/*    }*/

/*    .asf-grid{*/
/*        grid-template-columns:1fr;*/
/*        gap:35px;*/
/*    }*/

/*    .asf-col{*/
/*        border:none !important;*/
/*        padding:0;*/
/*        text-align:center;*/
/*    }*/

/*    .asf-logo{*/
/*        width:170px;*/
/*        margin:0 auto 20px;*/
/*    }*/

/*    .asf-text{*/
/*        font-size:15px;*/
/*        line-height:1.7;*/
/*        max-width:320px;*/
/*        margin:0 auto 25px;*/
/*    }*/

/*    .asf-title{*/
/*        font-size:24px;*/
/*        margin-bottom:20px;*/
/*    }*/

/*    .asf-title::after{*/
/*        left:50%;*/
/*        transform:translateX(-50%);*/
/*    }*/

/*    .asf-links{*/
/*        text-align:center;*/
/*    }*/

/*    .asf-links li{*/
/*        margin-bottom:12px;*/
/*    }*/

/*    .asf-social{*/
/*        justify-content:center;*/
/*    }*/

/*    .asf-export{*/
/*        text-align:center;*/
/*    }*/

/*    .asf-map{*/
/*        max-width:200px;*/
/*        margin:20px auto;*/
/*    }*/

/*    .asf-export h2{*/
/*        font-size:38px;*/
/*    }*/

/*    .asf-export span{*/
/*        font-size:18px;*/
/*    }*/

/*    .asf-contact li{*/
/*        justify-content:center;*/
/*        margin-bottom:18px;*/
/*    }*/

/*    .asf-contact span{*/
/*        text-align:left;*/
/*    }*/

/*    .asf-bottom{*/
/*        margin-top:20px;*/
/*        font-size:14px;*/
/*        line-height:1.6;*/
/*    }*/

/*}*/

/*==================================================
               MEDIA QUERY FOR FOOTER SMALL MOBILE
==================================================*/
/*@media (max-width:480px){*/

/*    .asf-container{*/
/*        padding:60px 15px 15px;*/
/*    }*/

/*    .asf-logo{*/
/*        width:150px;*/
/*    }*/

/*    .asf-title{*/
/*        font-size:22px;*/
/*    }*/

/*    .asf-text{*/
/*        font-size:14px;*/
/*    }*/

/*    .asf-links a{*/
/*        font-size:16px;*/
/*    }*/

/*    .asf-social a{*/
/*        width:42px;*/
/*        height:42px;*/
/*    }*/

/*    .asf-contact i{*/
/*        width:40px;*/
/*        height:40px;*/
/*    }*/

/*    .asf-contact span{*/
/*        font-size:15px;*/
/*    }*/

/*    .asf-export h2{*/
/*        font-size:32px;*/
/*    }*/

/*    .asf-export span{*/
/*        font-size:16px;*/
/*    }*/

/*    .asf-bottom{*/
/*        font-size:13px;*/
/*    }*/

/*}*/

/* **********************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.webp"); /* 👈 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{
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.processing-hero-img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.processing-hero-overlay{
    position: absolute;
    inset: 0;
    background: rgba(10,37,64,0.7);
    z-index: 2;
}

.processing-hero-content{
    position: relative;
    z-index: 3;
    padding: 0 20px;
}

.processing-hero-content h1{
    font-size: 48px;
    margin-bottom: 10px;
}

.processing-hero-content p{
    font-size: 18px;
    opacity: .9;
}

@media (max-width:768px){

    .processing-hero{
        height: 45vh;
    }

    .processing-hero-content h1{
        font-size: 32px;
    }

    .processing-hero-content p{
        font-size: 16px;
    }

}

/*.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;
}

}


/********************************* 4 button link ********************************/


/*=========================================
        ASF PRODUCT RANGE
=========================================*/

.asf-range-section{
    padding:100px 0;
    background:#ffffff;
}

.asf-range-container{
    width:90%;
    max-width:1320px;
    margin:0 auto;
}

/*========================
      HEADING
========================*/

.asf-range-heading{
    text-align:center;
    margin-bottom:70px;
}

.asf-range-heading h2{
    font-size:48px;
    font-weight:700;
    color:#143d79;
    font-family:Georgia, serif;
    margin-bottom:20px;
}

.asf-range-divider{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:18px;
}

.asf-range-divider span{
    width:80px;
    height:2px;
    background:#2ea8ef;
}

.asf-range-divider img{
    width:40px;
}

/*========================
        GRID
========================*/

.asf-range-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

/*========================
        LINK
========================*/

.asf-product-card-link{
    text-decoration:none;
    color:inherit;
    display:block;
    height:100%;
}

.asf-product-card-link:hover{
    text-decoration:none;
    color:inherit;
}

/*========================
        CARD
========================*/

.asf-range-card{
    background:#fff;
    border:1px solid #eef2f7;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    box-shadow:0 10px 35px rgba(0,0,0,.08);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;

    height:100%;
    transition:.35s ease;
}

.asf-range-card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/*========================
      IMAGE CIRCLE
========================*/

.asf-range-circle{
    width:170px;
    height:170px;
    border-radius:50%;
    background:#eef7ff;

    display:flex;
    justify-content:center;
    align-items:center;

    margin-bottom:30px;
}

.asf-range-circle img{
    width:135px;
    max-width:100%;
    transition:.35s;
}

.asf-range-card:hover .asf-range-circle img{
    transform:scale(1.08);
}

/*========================
        TITLE
========================*/

.asf-range-card h3{
    font-size:30px;
    color:#143d79;
    font-family:Georgia, serif;
    line-height:1.2;
    margin-bottom:15px;

    min-height:72px;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

/*========================
      BLUE LINE
========================*/

.asf-range-line{
    width:60px;
    height:3px;
    background:#2ea8ef;
    border-radius:50px;
    margin-bottom:22px;
}

/*========================
      DESCRIPTION
========================*/

.asf-range-card p{
    font-size:16px;
    line-height:1.8;
    color:#666;
    margin:0;
}

/*========================
      RESPONSIVE
========================*/

@media(max-width:1200px){

    .asf-range-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .asf-range-section{
        padding:70px 0;
    }

    .asf-range-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .asf-range-heading h2{
        font-size:36px;
    }

    .asf-range-circle{
        width:150px;
        height:150px;
    }

    .asf-range-circle img{
        width:120px;
    }

    .asf-range-card h3{
        font-size:26px;
        min-height:auto;
    }

}

@media(max-width:480px){

    .asf-range-container{
        width:92%;
    }

    .asf-range-heading h2{
        font-size:30px;
    }

    .asf-range-card{
        padding:30px 20px;
    }

    .asf-range-circle{
        width:130px;
        height:130px;
    }

    .asf-range-circle img{
        width:100px;
    }

    .asf-range-card h3{
        font-size:22px;
    }

    .asf-range-card p{
        font-size:15px;
    }

}

/********************************* 4 button link ********************************/

/* 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");*/
    url("../images/Hero_Image_in_Raw_shrimp.webp");
    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) ================= */

/*

/*==========================================================
                RESPONSIVE MEDIA QUERIES
==========================================================*/

/*==========================
   LARGE DESKTOP
==========================*/
@media (max-width:1400px){

.hero-content h1{
    font-size:75px;
}

.hero-content p{
    font-size:20px;
}

.product-overlay h3{
    font-size:34px;
}

}


/*==========================
   LAPTOP
==========================*/
@media (max-width:1200px){

.navbar .container{
    width:95%;
}

.logo img{
    width:150px;
}

.hero{
    height:80vh;
}

.hero-content h1{
    font-size:64px;
}

.hero-content p{
    font-size:19px;
}

.about-container{
    gap:30px;
}

.about-text h2{
    font-size:34px;
}

.process-flow{
    gap:15px;
}

.circle{
    width:120px;
    height:120px;
}

.circle.small{
    width:70px;
    height:70px;
}

.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);
}

.cert-track img{
    height:75px;
}

/* Footer */

.asf-container{
    padding:130px 25px 25px;
}

.asf-grid{
    grid-template-columns:repeat(2,1fr);
    gap:35px;
}

.asf-col{
    border-right:none;
    padding-right:0;
}

}


/*==========================
      TABLET
==========================*/
@media (max-width:991px){

.navbar{
    width:100%;
}

.navbar .container{
    width:100%;
    max-width:100%;
    padding:10px 18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    flex:0 0 auto;
}

.logo img{
    width:120px;
    height:auto;
    display:block;
}

.navbar .container{
    padding:10px 15px;
}

.logo img{
    width:120px;
}

.mobile-toggle{
    display:flex !important;
    align-items:center;
    justify-content:center;
    font-size:30px;
    cursor:pointer;
    color:#0A2540;
    z-index:10001;
}

.nav-menu{
    position:fixed;
    top:80px;
    right:-100%;
    width:280px;
    height:calc(100vh - 80px);
    background:#fff;
    transition:.35s;
    overflow-y:auto;
    box-shadow:-5px 0 20px rgba(0,0,0,.15);
    padding:20px;
}

.nav-menu.active{
    right:0;
}

.nav-menu ul{
    flex-direction:column;
    gap:0;
}

.nav-menu ul li{
    width:100%;
}

.nav-menu ul li a{
    display:block;
    padding:15px;
}

.dropdown .mega-menu{
    position:static;
    display:none;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    background:#f5f5f5;
}

.dropdown.active .mega-menu{
    display:flex;
    flex-direction:column;
}
.hero{
    height:70vh;
}

.hero-content{
    max-width:90%;
}

.hero-content h1{
    font-size:50px;
}

.hero-content p{
    font-size:17px;
}

.about-container{
    flex-direction:column;
}

.about-text{
    text-align:center;
}

.process-flow{
    justify-content:center;
}

.curve-arrow{
    display:none;
}

.products-grid{
    grid-template-columns:repeat(2,1fr);
}

.contact-container{
    flex-direction:column;
    align-items:center;
}

/* Footer */

.asf-container{
    padding:100px 20px 20px;
}

.asf-grid{
    grid-template-columns:1fr 1fr;
    gap:30px;
}

}


/*==========================
        MOBILE
==========================*/
@media (max-width:767px){

.logo img{
    width:180px;
}

.hero{
    height:65vh;
}

.hero-content span{
    font-size:12px;
    letter-spacing:2px;
}

.hero-content h1{
    font-size:38px;
    line-height:1.2;
}

.hero-content p{
    font-size:15px;
}

.hero-buttons{
    display:none !important;
}

.scroll-indicator{
    font-size:28px;
}

.about{
    padding:60px 6%;
}

.about-container{
    gap:25px;
}

.about-text h2{
    font-size:28px;
}

.about-text p{
    font-size:16px;
}

.process-header h2,
.product-header h1,
.product-header h2,
.certifications h2,
.contact h2{
    font-size:28px;
}

.process-flow{
    flex-direction:column;
}

.process::before{
    display:none;
}


.circle{
    width:145px;
    height:145px;
}

.circle.small{
    width:80px;
    height:80px;
}

.product-container{
    grid-template-columns:1fr;
}

.product-card{
    height:300px;
}

.products-grid{
    grid-template-columns:1fr;
    text-align:center;
}

.product-column{
    text-align:center;
}

.cert-track img{
    height:60px;
}

.contact{
    padding:60px 6%;
}

.contact-box{
    width:100%;
}

/* Footer */

.asf-wave img{
    width:100%;
    height:40px;
    object-fit:cover;
    display:block;
}

.asf-container{
    padding:20px 20px 12px;
}

.asf-grid{
    grid-template-columns:1fr;
    gap:0px;
}

.asf-col{
    text-align:center;
    margin:0;
    padding:0;
}

/* Logo */

.asf-logo{
    width:190px;
    margin:0 auto 8px;
}

/* Hide Quick Links */

.asf-links-column{
    display:none;
}

/* Headings */

.asf-title{
    font-size:30px;
    margin:0 0 6px;
}

.asf-title::after{
    width:50px;
    left:50%;
    bottom:-5px;
    transform:translateX(-50%);
}

/* Description */

.asf-text{
    max-width:330px;
    margin:0 auto 6px;
    font-size:17px;
    line-height:1.7;
}

/* Social */

.asf-social{
    justify-content:center;
    gap:12px;
    margin-top:8px;
}

.asf-social a{
    width:42px;
    height:42px;
}

/* Export Markets */

.asf-export{
    text-align:center;
    margin-top:-8px;
}

.asf-map{
    width:190px;
    max-width:100%;
    margin:0 auto 4px;
}

.asf-export h2{
    font-size:40px;
    margin:2px 0;
    line-height:1;
}

.asf-export span{
    font-size:18px;
}

/* Contact */

.asf-contact{
    list-style:none;
    padding:0;
    margin:8px auto 0;
    width:100%;
    max-width:300px;
}

.asf-contact li{
    display:grid;
    grid-template-columns:24px 1fr;
    align-items:center;
    gap:10px;
    margin-bottom:12px;
}

.asf-contact i{
    color:#00BFFF;
    font-size:16px;
    text-align:center;
}

.asf-contact span{
    font-size:16px;
    line-height:1.6;
    text-align:left;
    word-break:break-word;
}

/* Copyright */

.asf-bottom{
    margin-top:10px;
    padding-top:10px;
    border-top:1px solid rgba(0,0,0,.08);
    font-size:13px;
    line-height:1.5;
    text-align:center;
}
}


/*==========================
      SMALL MOBILE
==========================*/
@media (max-width:480px){

.hero{
    height:60vh;
}

.hero-content{
    padding:10px;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:14px;
}

.about-text h2{
    font-size:24px;
}

.about-text p{
    font-size:15px;
}

.process-header h2,
.product-header h1,
.product-header h2,
.certifications h2,
.contact h2{
    font-size:24px;
}

.circle{
    width:125px;
    height:125px;
}

.circle.small{
    width:70px;
    height:70px;
}
.product-card{
    height:250px;
}

.product-overlay h3{
    font-size:24px;
}

.product-overlay p{
    font-size:14px;
}

.asf-wave img{
    height:35px;
}

.asf-container{
    padding:18px 15px 10px;
}

.asf-logo{
    width:170px;
}

.asf-title{
    font-size:26px;
}

.asf-text{
    max-width:300px;
    font-size:16px;
    line-height:1.6;
}

.asf-map{
    width:165px;
}

.asf-export h2{
    font-size:34px;
}

.asf-export span{
    font-size:16px;
}

.asf-contact{
    max-width:250px;
}

.asf-contact i{
    width:20px;
    font-size:15px;
}

.asf-contact span{
    font-size:15px;
}

.asf-bottom{
    font-size:12px;
}

}