:root{
    --green:#063f25;
    --green2:#0d5a36;
    --orange:#f58220;
    --gold:#FDB913;
    --light:#f8fafc;
    --text:#111827;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:"Poppins",sans-serif;
    color:var(--text);
    background:#fff;
    overflow-x:hidden;
}

a{
    text-decoration:none;
}

/* HEADER */

/* ===== HEADER ===== */
.main-header {
  background: #fff;
  padding: 8px 0;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
}

.main-header .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  text-decoration: none;
}

.logo-placeholder {
  font-size: 22px;
  font-weight: 800;
  color: var(--green);
}

.logo img {
  max-height: 60px;
  width: auto;
}

/* ===== NAV MENU ===== */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  position: relative;
  transition: color 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--green);
}

/* ===== QUOTE BUTTON ===== */
.quote-btn {
  background: var(--green);
  color: #fff;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
  white-space: nowrap;
}

.quote-btn:hover {
  background: var(--green-dark, #2a7a3b);
  color: #fff;
}

/* ===== MOBILE TOGGLE ===== */
.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  color: var(--green);
  cursor: pointer;
  line-height: 1;
}

/* ===== OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
}

.nav-overlay.open {
  display: block;
}

/* ===== MOBILE DRAWER ===== */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 280px;
  background: #fff;
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid #f0f0f0;
}

.drawer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--green);
}

.drawer-close {
  border: 0;
  background: none;
  font-size: 24px;
  color: #555;
  cursor: pointer;
  line-height: 1;
}

.drawer-nav {
  list-style: none;
  padding: 12px 0;
  margin: 0;
  flex: 1;
  overflow-y: auto;
}

.drawer-nav li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 24px;
  color: #111;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.drawer-nav li a:hover,
.drawer-nav li a.active {
  background: #f5fdf7;
  border-left-color: var(--green);
  color: var(--green);
}

.drawer-footer {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
}

.drawer-footer .quote-btn {
  width: 100%;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .quote-btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* HERO */

.hero{
    background:#f8fafc;
    padding:55px 0 35px;
    position:relative;
    overflow:hidden;
}

.hero::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:url("images/world-dots.png") no-repeat center top/cover;
    opacity:.12;
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero-title{
    color:var(--green);
    font-size:30px;
    line-height:1.2;
    font-weight:800;
    margin-bottom:16px;
}

.orange-line{
    width:70px;
    height:4px;
    background:var(--orange);
    margin:18px 0;
}

.hero-text{
    font-size:16px;
    line-height:1.8;
    max-width:570px;
    margin-bottom:25px;
}

.btn-orange{
    background:linear-gradient(90deg,var(--orange),var(--gold));
    color:#fff;
    border:0;
    padding:14px 30px;
    border-radius:8px;
    font-weight:800;
    display:inline-block;
}

.btn-outline-green{
    border:2px solid var(--green);
    color:var(--green);
    padding:12px 30px;
    border-radius:8px;
    display:inline-block;
    background:#fff;
}

.hero-image-wrap{
    position:relative;
    text-align:center;
}

.hero-shape{
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,var(--orange),var(--gold));
    clip-path:polygon(25% 0,100% 0,100% 75%,80% 100%,20% 90%,0 40%);
    z-index:0;
    opacity:.95;
}

.hero-image{
    position:relative;
    z-index:2;
    width:100%;
    max-height:470px;
    object-fit:contain;
}

.mission-section{
    padding-top: 80px;
}


/* MINI STATS */

.mini-stats{
    display:flex;
    gap:35px;
    flex-wrap:wrap;
    margin-top:35px;
}

.mini-stat{
    display:flex;
    align-items:center;
    gap:12px;
    border-right:1px dashed #b7c4bc;
    padding-right:15px;
}

.mini-stat:last-child{
    border-right:0;
}

.mini-stat i{
    font-size:40px;
    color:var(--green);
}

.mini-stat h4{
    color:var(--green);
    font-size:26px;
    font-weight:800;
    margin:0;
}

.mini-stat p{
    margin:0;
    font-size:13px;
    font-weight:600;
}

/* COMMON */

.section-padding{
    padding:35px 0;
}

.section-title{
    text-align:center;
    color:var(--green);
    font-size:30px;
    font-weight:800;
    margin-bottom:30px;
}

.section-title::after{
    content:"";
    display:block;
    width:45px;
    height:3px;
    background:var(--orange);
    margin:10px auto 0;
}

/* PRODUCT CATEGORY */

.category-card{
    border:1px solid #e4eee8;
    border-radius:12px;
    padding:35px 20px 25px;
    text-align:center;
    height:100%;
    transition:.3s;
    background:#fff;
}

.category-card:hover{
    transform:translateY(-8px);
    box-shadow:0 12px 28px rgba(0,0,0,.08);
}

.hex-icon{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    background:var(--green2);
    color:#fff;
    clip-path:polygon(25% 5%,75% 5%,100% 50%,75% 95%,25% 95%,0 50%);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
}

.category-card:nth-child(even) .hex-icon{
    background:var(--orange);
}

.category-card h5{
    font-size:17px;
    font-weight:800;
    color:#111;
    margin-bottom:15px;
}

.category-card p{
    font-size:14px;
    line-height:1.7;
}

.arrow-circle{
    width:32px;
    height:32px;
    border:2px solid var(--orange);
    color:var(--orange);
    border-radius:50%;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-top:10px;
}

/* BIG STATS */

.big-stats{
    background:
    linear-gradient(rgba(0,55,31,.94),rgba(0,55,31,.94)),
    url("images/factory-bg.jpg") center/cover;
    border-radius:12px;
    padding:15px 15px;
    margin:25px 0;
}

.big-stat{
    text-align:center;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.35);
}

.big-stat:last-child{
    border-right:0;
}

.big-stat i{
    color:var(--gold);
    font-size:42px;
}

.big-stat h3{
    color:var(--gold);
    font-size:30px;
    font-weight:800;
    margin:8px 0 0;
}

.big-stat p{
    margin:0;
    font-weight:600;
}

/* WHY */

.why-card{
    border:1px solid #e4eee8;
    border-radius:12px;
    padding:30px 18px;
    text-align:center;
    height:100%;
    background:#fff;
}

.why-card i{
    font-size:45px;
    color:var(--green);
    margin-bottom:15px;
}

.why-card h5{
    font-size:16px;
    font-weight:800;
}

.why-card p{
    font-size:13px;
    line-height:1.7;
    margin:0;
}

/* EXPORT */

.export-card{
    border:1px solid #e4eee8;
    border-radius:10px;
    overflow:hidden;
    text-align:center;
    background:#fff;
    height:100%;
}

.export-card img{
    width:100%;
    height:130px;
    object-fit:cover;
}

.export-card h6{
    padding:15px 8px;
    font-size: 14px;
}

/* CTA */

.cta-box{
    background:linear-gradient(90deg,#ff7900,#ffb000);
    color:#fff;
    border-radius:12px;
    padding:28px 48px;
    margin:35px 0 0;
}

.cta-icon{
    width:78px;
    height:78px;
    border-radius:50%;
    background:#fff;
    color:var(--orange);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:42px;
}

.cta-box h3{
    font-weight:800;
    margin-bottom:6px;
}

/* FOOTER */

.footer{
    background:#00391f;
    color:#fff;
    padding:38px 0 10px;
}

.footer-logo{
    height:62px;
}

.footer p,
.footer a,
.footer li{
    color:#d9eee0;
    font-size:14px;
}

.footer h5{
    margin-bottom:15px;
}

.footer ul{
    list-style:none;
    padding:0;
}

.footer li{
    margin-bottom:8px;
}

.social-icons a{
    width:32px;
    height:32px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    color:var(--green);
    border-radius:50%;
    margin-right:7px;
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,.15);
    margin-top:22px;
    padding-top:12px;
    font-size:13px;
    color:#d9eee0;
}

/* RESPONSIVE */

@media(max-width:991px){
    .nav-menu,
    .quote-btn{
        display:none;
    }

    .mobile-btn{
        display:block;
    }

    .hero{
        padding:40px 0 25px;
        text-align:center;
    }

    .hero-title{
        font-size:40px;
    }

    .orange-line{
        margin:16px auto;
    }

    .hero-text{
        margin-left:auto;
        margin-right:auto;
    }

    /* .hero-image{
        margin-top:30px;
    } */

    .mini-stats{
        justify-content:center;
    }

    .big-stat{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.25);
        padding:18px 0;
    }

    .big-stat:last-child{
        border-bottom:0;
    }

    .cta-box{
        text-align:center;
    }

    .cta-icon{
        margin:auto;
    }
}

@media(max-width:768px){
    .logo img{
        height:55px;
    }

    .hero-title{
        font-size:32px;
    }

    .hero-text{
        font-size:15px;
    }

    .btn-orange,
    .btn-outline-green{
        width:100%;
        margin-bottom:10px;
    }

    .mini-stats{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:20px;
    }

    .mini-stat{
        border-right:0;
        padding-right:0;
        justify-content:center;
    }

    .section-title{
        font-size:25px;
    }

    .cta-box{
        padding:25px;
    }

    .footer{
        /* text-align:center; */
    }
}

@media(max-width:480px){
    .hero-title{
        font-size:28px;
    }

    .mini-stats{
        grid-template-columns:1fr;
    }
}

/* BREADCRUMB */

.breadcrumb-bar{
    background:#f5faf7;
    padding:14px 0;
    font-size:13px;
}

.breadcrumb-bar a{
    color:#66766c;
}

.breadcrumb-bar span{
    color:var(--green);
    font-weight:700;
}

/* HERO */

.about-hero{
    background:#f7fbf8;
}

.hero-left{
    background-color: #f8fafc;
    padding:55px 0px;
    min-height:360px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.hero-left h1{
    font-size:35px;
    line-height:1.25;
    font-weight:700;
    margin-bottom:18px;
}

.hero-left h4{
    color:var(--orange);
    font-size:22px;
    font-weight:800;
    margin-bottom:18px;
}

.hero-left p{
    font-size:15px;
}

.hero-buttons{
    display:flex;
    gap:16px;
}

.btn-orange{
    background:linear-gradient(90deg,var(--orange),var(--gold));
    color:#fff;
    border:0;
    padding:13px 28px;
    border-radius:8px;
    font-weight:800;
}

.btn-outline-white{
    border:2px solid #fff;
    color:#fff;
    padding:11px 28px;
    border-radius:8px;
    font-weight:800;
}

/* OVERVIEW */

/* ===================================
   ABOUT PAGE PREMIUM DESIGN
=================================== */

.about-wrap{
    padding:60px 0;
    background:
    radial-gradient(circle at top right,#fff5eb 0%,transparent 30%),
    radial-gradient(circle at bottom left,#eef9f2 0%,transparent 35%),
    #f8faf9;
    overflow:hidden;
}

/* SECTION TITLE */

.section-title{
    position:relative;
    display:inline-block;
    font-size:34px;
    font-weight:800;
    color:var(--green);
    margin-bottom:35px;
    padding-bottom:12px;
}

.section-title::after{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:80px;
    height:4px;
    border-radius:20px;
    background:linear-gradient(
    90deg,
    var(--green),
    var(--orange)
    );
}

/* OVERVIEW */

.orange-label{
    color:var(--orange);
    font-size:14px;
    font-weight:800;
    letter-spacing:1px;
    margin-bottom:10px;
}

.overview-content h2{
    font-size:32px;
    font-weight:800;
    color:var(--green);
    margin-bottom:20px;
}

.overview-content p{
    color:#555;
    line-height:1.9;
    font-size:16px;
}

.overview-img{
    width:100%;
    height:450px;
    object-fit:cover;
    border-radius:25px;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
    transition:.5s;
}

.overview-img:hover{
    transform:scale(1.03);
}

.check-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin-top:15px;
}

.check-grid span{
    display:flex;
    align-items:center;
}

.check-grid i{
    color:var(--green);
    font-size:18px;
    margin-right:10px;
}

/* FOUNDER */

.founder-card{
    background:#fff;
    border-radius:30px;
    padding:50px;
    margin:60px 0;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    position:relative;
    overflow:hidden;
}

.founder-card::before{
    content:"";
    position:absolute;
    width:280px;
    height:280px;
    border-radius:50%;
    background:rgba(255,121,0,.05);
    top:-120px;
    right:-120px;
}

.founder-img{
    width:220px;
    height:220px;
    object-fit:cover;
    border-radius:50%;
    border:6px solid #fff;
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.founder-card h2{
    font-size:36px;
    font-weight:800;
    color:var(--green);
}

.founder-card h6{
    color:var(--orange);
    font-weight:700;
}

.quote-box{
    background:#fff8f1;
    border-left:5px solid var(--orange);
    border-radius:20px;
    padding:35px;
}

.quote-box i{
    color:var(--orange);
    font-size:40px;
}

.quote-box p{
    font-size:18px;
    font-style:italic;
    margin-top:10px;
}

/* TIMELINE */

.timeline{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
    position:relative;
}

.timeline::before{
    content:"";
    position:absolute;
    top:40px;
    left:10%;
    width:80%;
    height:4px;
    background:#dce6df;
}

.timeline-item{
    text-align:center;
    position:relative;
    z-index:2;
}

.timeline-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:#fff;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 15px;
    font-size:34px;
    color:var(--green);
    transition:.4s;
}

.timeline-item:hover .timeline-icon{
    transform:translateY(-10px);
}

.timeline-item:nth-child(even) .timeline-icon{
    color:var(--orange);
}

.timeline-item h5{
    font-weight:800;
    color:var(--green);
}

.timeline-item p{
    font-size:14px;
    font-weight:600;
}

/* INFO CARDS */

.info-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    height:100%;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    border-top:5px solid var(--green);
    transition:.4s;
}

.info-card.orange{
    border-top-color:var(--orange);
}

.info-card:hover{
    transform:translateY(-10px);
}

.info-card i{
    font-size:55px;
    color:var(--green);
    margin-bottom:20px;
}

.info-card.orange i{
    color:var(--orange);
}

.info-card h4{
    font-weight:800;
    margin-bottom:15px;
}

/* WHY CHOOSE US */

.why-card{
    background:#fff;
    border-radius:22px;
    padding:25px 18px;
    text-align:center;
    height:100%;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.4s;
}

.why-card:hover{
    transform:translateY(-10px);
}

.why-card i{
    width:80px;
    height:80px;
    background:#eef8f2;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 15px;
    color:var(--green);
    font-size:36px;
}

.why-card h5{
    font-size:17px;
    font-weight:800;
    color:var(--green);
}

.why-card p{
    font-size:14px;
}

/* SMALL CARDS */

.small-card{
    background:#fff;
    border-radius:18px;
    padding:20px;
    display:flex;
    align-items:center;
    gap:15px;
    height:100%;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.3s;
}

.small-card:hover{
    transform:translateY(-6px);
}

.small-card i{
    width:60px;
    height:60px;
    border-radius:50%;
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
}

.small-card h6{
    font-weight:800;
}

/* INDUSTRIES */

.industry-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.industry-item{
    background:#fff;
    border-radius:18px;
    text-align:center;
    padding:23px;
    box-shadow:0 8px 20px rgba(0,0,0,.05);
    transition:.4s;
}

.industry-item:hover{
    transform:translateY(-8px);
}

.industry-item i{
    color:var(--green);
    font-size:38px;
}

.industry-item h6{
    margin-top:10px;
    font-size: 14px;
}

/* MAP */

.map-box{
    background:#fff;
    border-radius:20px;
    padding:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.map-box img{
    width:100%;
}

/* STATS */

.stat-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:15px;
}

.stat-card{
    background:#fff;
    border-radius:20px;
    padding:25px 15px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.05);
    transition:.4s;
}

.stat-card:hover{
    transform:translateY(-8px);
}

.stat-card i{
    font-size:35px;
    color:var(--green);
}

.stat-card h3{
    font-size:36px;
    font-weight:900;
    color:var(--green);
}

.stat-card p{
    font-size:14px;
}

/* CTA */

.cta-section{
    background:linear-gradient(
    135deg,
    #0f7b49,
    #18a861
    );
    border-radius:30px;
    padding:50px;
    color:#fff;
    margin-top:60px;
    overflow:hidden;
    position:relative;
}

.cta-section::before{
    content:"";
    position:absolute;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
    top:-120px;
    right:-120px;
}

.cta-icon{
    width:95px;
    height:95px;
    border-radius:50%;
    background:#fff;
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:45px;
}

.quote-btn{
    background:var(--orange);
    color:#fff;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:991px){

    .timeline{
        grid-template-columns:repeat(3,1fr);
    }

    .timeline::before{
        display:none;
    }

    .stat-grid{
        grid-template-columns:repeat(3,1fr);
    }

    .overview-img{
        height:350px;
    }
}

@media(max-width:768px){

    .overview-content h2{
        font-size:32px;
    }

    .overview-img{
        height:280px;
    }

    .check-grid{
        grid-template-columns:1fr;
    }

    .founder-card{
        padding:30px 20px;
        text-align:center;
    }

    .founder-img{
        width:170px;
        height:170px;
        margin:auto;
    }

    .timeline{
        grid-template-columns:1fr;
    }

    .industry-grid{
        grid-template-columns:1fr 1fr;
    }

    .stat-grid{
        grid-template-columns:1fr 1fr;
    }

    .cta-section{
        text-align:center;
        padding:35px 20px;
    }

    .cta-icon{
        margin:auto auto 20px;
    }
}

@media(max-width:480px){

    .industry-grid{
        grid-template-columns:1fr;
    }

    .stat-grid{
        grid-template-columns:1fr;
    }

    .section-title{
        font-size:28px;
    }

    .overview-content h2{
        font-size:28px;
    }
}
@media(max-width:991px){
    .nav-menu,
    .quote-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero-left{
        padding:45px 35px;
        min-height:auto;
    }

    .hero-left h1{
        font-size:34px;
    }

    /* .hero-image{
        height:300px;
    } */

    .timeline{
        grid-template-columns:repeat(3,1fr);
        row-gap:25px;
    }

    .stat-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .logo img{
        height:55px;
    }

    .hero-left{
        padding:35px 22px;
        text-align:center;
    }

    .hero-left h1{
        font-size:30px;
    }

    .hero-left h4{
        font-size:18px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    /* .hero-image{
        height:240px;
    } */

    .overview-img{
        height:240px;
    }

    .overview-content{
        margin-top:25px;
    }

    .check-grid{
        grid-template-columns:1fr;
    }

    .founder-card{
        padding:28px 20px;
        text-align:center;
    }

    .quote-box{
        margin-top:25px;
        font-size:18px;
        padding:25px;
    }

    .timeline{
        grid-template-columns:1fr;
    }

    .industry-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .stat-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-section{
        text-align:center;
        padding:25px;
    }

    .cta-icon{
        margin:0 auto 15px;
    }

    .btn-orange,
    .btn-outline-white{
        width:100%;
        text-align:center;
    }
}

@media(max-width:480px){
    .industry-grid{
        grid-template-columns:1fr;
    }

    .stat-grid{
        grid-template-columns:1fr;
    }
}

/* ======================================
   RESPONSIVE FIXES
====================================== */

img{
    max-width:100%;
    height:auto;
    display:block;
}

.hero,
.hero-image-wrap{
    overflow:hidden;
}

.category-card,
.why-card,
.export-card{
    height:100%;
}

.category-card{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.export-card img{
    width:100%;
    object-fit:cover;
}

@media (max-width:991px){

    .hero{
        text-align:center;
    }

    .hero-title{
        font-size:38px;
    }

    .orange-line{
        margin:15px auto;
    }

    .hero-text{
        margin:auto;
    }

    .mini-stats{
        justify-content:center;
    }

    .big-stat{
        border-right:none;
        border-bottom:1px solid rgba(255,255,255,.2);
        padding:20px 0;
    }

    .big-stat:last-child{
        border-bottom:none;
    }

    .cta-box{
        /* text-align:center; */
    }

    .cta-icon{
        margin:auto;
    }

}

@media (max-width:768px){

    .main-header .container{
        padding:0 15px;
    }

    .nav-menu,
    .quote-btn{
        display:none;
    }

    .mobile-toggle{
        display:block;
    }

    .hero{
        padding:40px 0;
    }

    .hero-title{
        font-size:30px;
        line-height:1.3;
    }

    .hero-text{
        font-size:15px;
    }

    .hero .d-flex{
        flex-direction:column;
        width:100%;
    }

    .btn-orange,
    .btn-outline-green{
        width:100%;
        text-align:center;
    }

    .mini-stats{
        display:grid;
        grid-template-columns:1fr 1fr 1fr;
        gap:15px;
    }

    .mini-stat{
        border-right:none;
        padding-right:0;
        justify-content:flex-start;
    }

    .section-title{
        font-size:24px;
    }

    .cta-box{
        padding:20px;
    }

    .cta-box .text-lg-end{
        display:flex;
        flex-direction:column;
        gap:10px;
    }

    .cta-box .btn-outline-green,
    .cta-box .quote-btn{
        width:100%;
        justify-content:center;
    }

    .footer{
        /* text-align:center; */
    }

}

@media (max-width:576px){

    .hero-title{
        font-size:26px;
    }

    .mini-stats{
        grid-template-columns:1fr;
    }

    .mini-stat{
        justify-content:center;
        text-align:center;
    }

    .big-stat h3{
        font-size:32px;
    }

    .big-stat i{
        font-size:34px;
    }

    .section-title{
        font-size:22px;
    }

    .cta-box{
        padding:15px;
    }

}

@media (max-width:480px){

    .hero-title{
        font-size:24px;
    }

    .hero-text{
        font-size:14px;
    }

    .category-card,
    .why-card{
        padding:20px 15px;
    }

    .export-card img{
        height:140px;
    }

}

.hero-title{
    font-size:38px;
    font-weight:800;
    color:var(--green);
    line-height:1.15;
}

.title-line{
    width:55px;
    height:4px;
    background:var(--orange);
    margin:18px 0;
}

.hero-text{
    font-size:16px;
    max-width:520px;
}

.tick-list{
    display:flex;
    gap:22px;
    flex-wrap:wrap;
    margin:22px 0;
    font-weight:600;
    font-size:14px;
}

.tick-list i{
    color:var(--green);
    margin-right:7px;
}

.btn-orange{
    background:linear-gradient(90deg,var(--orange),var(--gold));
    color:#fff;
    border:none;
    border-radius:7px;
    padding:14px 30px;
    font-weight:700;
}

.btn-green-outline{
    border:2px solid var(--green);
    color:var(--green);
    border-radius:7px;
    padding:12px 30px;
    font-weight:700;
    background:#fff;
}

.hero-img{
    width:100%;
    border-radius:16px;
    box-shadow:0 8px 28px rgba(0,0,0,.10);
}

/* =========================
   PRODUCT PAGE
========================= */

.product-page{
    padding:80px 0;
    background:#f6f9f7;
}

/* =========================
   SECTION TITLE
========================= */

.section-heading{
    position:relative;
    display:inline-block;
    color:var(--green);
    font-size:30px;
    font-weight:800;
    margin-bottom:30px;
}

.section-heading::after{
    content:"";
    position:absolute;
    bottom:-10px;
    left:0;
    width:70px;
    height:4px;
    border-radius:10px;
    background:linear-gradient(90deg,var(--green),var(--orange));
}

/* =========================
   GLASS CARD
========================= */

.soft-box{
    background:rgba(255,255,255,.9);
    backdrop-filter:blur(12px);
    border-radius:22px;
    padding:25px;
    height:100%;
    border:1px solid rgba(255,255,255,.5);
    box-shadow:
    0 10px 35px rgba(0,0,0,.06),
    inset 0 1px 0 rgba(255,255,255,.7);
    transition:.4s;
}

.soft-box:hover{
    transform:translateY(-5px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

/* =========================
   PRODUCT GALLERY
========================= */

.gallery-main{
    width:100%;
    height:350px;
    object-fit:cover;
    border-radius:16px;
    transition:.4s;
}

.gallery-main:hover{
    transform:scale(1.02);
}

.gallery-thumbs{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:10px;
    margin-top:15px;
}

.gallery-thumbs img{
    width:100%;
    height:85px;
    object-fit:cover;
    border-radius:10px;
    cursor:pointer;
    transition:.35s;
    border:2px solid transparent;
}

.gallery-thumbs img:hover{
    transform:translateY(-4px);
    border-color:var(--orange);
}

/* =========================
   SPECIFICATIONS
========================= */

.spec-row{
    display:grid;
    grid-template-columns:45px 1fr 1.4fr;
    align-items:center;
    padding:14px 0;
    border-bottom:1px dashed #d9e5dd;
}

.spec-row i{
    width:35px;
    height:35px;
    border-radius:10px;
    background:#eef8f1;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green);
    font-size:18px;
}

.spec-row strong{
    color:#1d3025;
    font-weight:700;
}

.spec-row span{
    color:#666;
}

/* =========================
   QUALITY BOXES
========================= */

.quality-box{
    display:flex;
    align-items:center;
    gap:15px;
    padding:15px;
    border-radius:15px;
    margin-bottom:15px;
    background:#fff;
    transition:.3s;
}

.quality-box:hover{
    transform:translateX(6px);
    background:#f4faf5;
}

.quality-box i{
    width:60px;
    height:60px;
    border-radius:16px;
    background:linear-gradient(
    135deg,
    var(--green),
    #1d8c56);
    color:#fff;
    font-size:28px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.quality-box span{
    font-size:16px;
    font-weight:700;
}

/* =========================
   FEATURES
========================= */

.feature-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    text-align:center;
    height:100%;
    position:relative;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.feature-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
    90deg,
    var(--green),
    var(--orange));
}

.feature-card:hover{
    transform:translateY(-10px);
}

.feature-card i{
    font-size:55px;
    color:var(--orange);
    margin-bottom:20px;
}

.feature-card h5{
    font-weight:800;
    margin-bottom:10px;
}

/* =========================
   APPLICATIONS
========================= */

.app-card{
    background:#fff;
    border-radius:18px;
    padding:25px 15px;
    text-align:center;
    transition:.4s;
    box-shadow:0 6px 18px rgba(0,0,0,.05);
}

.app-card:hover{
    transform:translateY(-8px);
}

.app-card i{
    font-size:45px;
    color:var(--green);
}

.app-card h6{
    margin-top:12px;
    font-size:14px;
}

/* =========================
   PROCESS TIMELINE
========================= */

.process{
    display:grid;
    grid-template-columns:repeat(6,1fr);
    gap:20px;
    position:relative;
}

.process::before{
    content:"";
    position:absolute;
    top:42px;
    left:8%;
    width:84%;
    height:4px;
    background:#d9e5dd;
    z-index:0;
}

.process-item{
    position:relative;
    z-index:1;
    text-align:center;
}

.process-icon{
    width:85px;
    height:85px;
    margin:auto;
    border-radius:50%;
    background:#fff;
    border:4px solid var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green);
    font-size:35px;
    position:relative;
    box-shadow:0 10px 20px rgba(0,0,0,.08);
}

.process-no{
    position:absolute;
    top:-10px;
    right:-5px;
    width:30px;
    height:30px;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size: 25px;
}

/* =========================
   RELATED PRODUCTS
========================= */

.related-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    transition:.4s;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.related-card:hover{
    transform:translateY(-10px);
}

.related-card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.related-card h6{
    padding:15px;
}

.related-card a{
    margin:0 15px 20px;
    display:inline-block;
    padding:10px 20px;
    border-radius:40px;
    text-decoration:none;
    background:var(--orange);
    color:#fff;
    font-weight:700;
    transition:.3s;
}

.related-card a:hover{
    background:var(--green);
    color:#fff;
}

/* =========================
   CTA
========================= */

.cta-box{
    background:
    linear-gradient(
    135deg,
    var(--green),
    #116c44);
    border-radius:25px;
    padding:40px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.cta-box::before{
    content:"";
    position:absolute;
    right:-50px;
    top:-50px;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(255,255,255,.08);
}

.cta-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#fff;
    color:var(--green);
    font-size:42px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .process{
        grid-template-columns:repeat(3,1fr);
    }

    .process::before{
        display:none;
    }

    .gallery-main{
        height:280px;
    }
}

@media(max-width:768px){

    .section-heading{
        font-size:24px;
    }

    .gallery-main{
        height:240px;
    }

    .spec-row{
        grid-template-columns:40px 1fr;
    }

    .spec-row span{
        grid-column:2;
        margin-top:5px;
    }

    .process{
        grid-template-columns:repeat(2,1fr);
    }

    .cta-box{
        /* text-align:center; */
        padding:30px 20px;
    }

    .cta-icon{
        margin:auto auto 20px;
    }
}

@media(max-width:480px){

    .process{
        grid-template-columns:1fr;
    }

    .gallery-thumbs{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-main{
        height:220px;
    }
}

.gallery-hero{
    padding:120px 0 80px;
    background:
    linear-gradient(rgba(6,63,37,.9),rgba(6,63,37,.9)),
    url(images/factory-bg.jpg);
    background-size:cover;
    background-position:center;
    text-align:center;
    color:#fff;
}

.gallery-hero h1{
    font-size:60px;
    font-weight:900;
    margin-bottom:15px;
}

.gallery-hero p{
    max-width:750px;
    margin:auto;
    font-size:18px;
    line-height:1.8;
}

.gallery-section{
    padding:90px 0;
    background:#f8fafc;
}

.section-header span{
    color:var(--orange);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:1px;
}

.section-header h2{
    color:var(--green);
    font-size:40px;
    font-weight:800;
    margin-top:10px;
    margin-bottom:50px;
}

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.gallery-item{
    position:relative;
    overflow:hidden;
    border-radius:20px;
    display:block;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.gallery-item img{
    width:100%;
    height:280px;
    object-fit:cover;
    transition:.6s;
}

.gallery-item:hover img{
    transform:scale(1.12);
}

.gallery-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        transparent,
        rgba(0,0,0,.8)
    );
    display:flex;
    align-items:flex-end;
    padding:25px;
}

.gallery-overlay h5{
    color:#fff;
    font-weight:700;
    margin:0;
}

.gallery-tall{
    grid-row:span 2;
}

.gallery-tall img{
    height:582px;
}

@media(max-width:991px){

    .gallery-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .gallery-tall{
        grid-row:auto;
    }

    .gallery-tall img{
        height:280px;
    }

    .gallery-hero h1{
        font-size:42px;
    }
}

@media(max-width:576px){

    .gallery-grid{
        grid-template-columns:1fr;
    }

    .gallery-item img{
        height:240px;
    }

    .gallery-hero{
        padding:90px 0 70px;
    }

    .gallery-hero h1{
        font-size:34px;
    }

    .gallery-hero p{
        font-size:15px;
    }

    .section-header h2{
        font-size:28px;
    }
}

.blog-hero{
    padding:120px 0 90px;
    background:
    linear-gradient(rgba(6,63,37,.92),
    rgba(6,63,37,.92)),
    url(images/factory-bg.jpg);

    background-size:cover;
    background-position:center;
    color:#fff;
    text-align:center;
}

.blog-hero .sub-title{
    color:var(--gold);
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
}

.blog-hero h1{
    font-size:58px;
    font-weight:900;
    margin:15px 0;
}

.blog-hero p{
    max-width:700px;
    margin:auto;
    line-height:1.8;
    font-size:18px;
}

.blog-section{
    padding:90px 0;
}

.blog-search{
    max-width:700px;
    margin:auto auto 60px;
    display:flex;
    background:#fff;
    border-radius:60px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.blog-search input{
    flex:1;
    border:none;
    padding:18px 25px;
    outline:none;
}

.blog-search button{
    width:70px;
    border:none;
    background:var(--orange);
    color:#fff;
}

.featured-blog{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.featured-blog img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.featured-content{
    padding:50px;
}

.blog-category{
    background:#eef8f2;
    color:var(--green);
    padding:8px 16px;
    border-radius:50px;
    font-size:13px;
    font-weight:700;
}

.featured-content h2{
    font-size:38px;
    margin:20px 0;
    color:var(--green);
    font-weight:800;
}

.featured-content p{
    line-height:1.9;
    color:#555;
}

.read-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-top:20px;
    color:var(--orange);
    font-weight:700;
}

.blog-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.4s;
    height:100%;
}

.blog-card:hover{
    transform:translateY(-10px);
}

.blog-img{
    overflow:hidden;
}

.blog-img img{
    width:100%;
    height:240px;
    object-fit:cover;
    transition:.5s;
}

.blog-card:hover img{
    transform:scale(1.08);
}

.blog-body{
    padding:15px;
}

.blog-body span{
    color:var(--orange);
    font-size:13px;
    font-weight:700;
    text-transform:uppercase;
}

.blog-body h4{
    margin:15px 0;
    color:var(--green);
    font-weight:800;
}

.blog-body p{
    color:#666;
    line-height:1.8;
}

.blog-body a{
    color:var(--green);
    font-weight:700;
}

.newsletter{
    padding:80px 0;
}

.newsletter-box{
    background:linear-gradient(
        135deg,
        var(--green),
        var(--green2)
    );

    border-radius:30px;
    padding:60px;
    text-align:center;
    color:#fff;
}

.newsletter-box h2{
    font-size:40px;
    font-weight:800;
}

.newsletter-box p{
    margin:15px 0 30px;
}

.newsletter-box form{
    display:flex;
    max-width:650px;
    margin:auto;
    overflow:hidden;
    border-radius:60px;
    background:#fff;
}

.newsletter-box input{
    flex:1;
    border:none;
    padding:18px 25px;
    outline:none;
}

.newsletter-box button{
    border:none;
    background:var(--orange);
    color:#fff;
    padding:0 35px;
    font-weight:700;
}

@media(max-width:991px){

    .blog-hero h1{
        font-size:42px;
    }

    .featured-content{
        padding:35px;
    }

    .featured-content h2{
        font-size:30px;
    }
}

@media(max-width:768px){

    .blog-hero{
        padding:90px 0 70px;
    }

    .blog-hero h1{
        font-size:34px;
    }

    .featured-blog img{
        height:280px;
    }

    .newsletter-box{
        padding:35px 20px;
    }

    .newsletter-box form{
        flex-direction:column;
        border-radius:15px;
    }

    .newsletter-box button{
        padding:15px;
    }
}

/* FAQ SECTION */

.faq-section{
    padding:90px 0;
    background:#f8fafc;
}

.faq-intro{
    margin-bottom:50px;
}

.faq-intro h2{
    color:var(--green);
    font-size:42px;
    font-weight:800;
}

.faq-intro p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* ACCORDION */

.faq-accordion .accordion-item{
    border:none;
    margin-bottom:18px;
    border-radius:16px !important;
    overflow:hidden;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.faq-accordion .accordion-button{
    font-weight:700;
    font-size:17px;
    color:var(--green);
    background:#fff;
    padding:22px 25px;
    box-shadow:none !important;
}

.faq-accordion .accordion-button:not(.collapsed){
    background:var(--green);
    color:#fff;
}

.faq-accordion .accordion-body{
    padding:22px 25px;
    line-height:1.8;
    color:#555;
    background:#fff;
}

/* CTA */

.faq-cta{
    margin-top:70px;
    text-align:center;
    padding:50px;
    border-radius:24px;

    background:linear-gradient(
        135deg,
        var(--green),
        var(--green2)
    );

    color:#fff;
}

.faq-cta h3{
    font-size:36px;
    font-weight:800;
    margin-bottom:15px;
}

.faq-cta p{
    max-width:650px;
    margin:auto auto 25px;
}

.faq-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    background:#fff;
    color:var(--green);

    padding:14px 32px;
    border-radius:50px;

    font-weight:700;
    transition:.3s;
}

.faq-btn:hover{
    transform:translateY(-4px);
    color:var(--green);
}

/* RESPONSIVE */

@media(max-width:991px){

    .faq-hero h1{
        font-size:42px;
    }

    .faq-intro h2{
        font-size:34px;
    }
}

@media(max-width:768px){

    .faq-hero{
        padding:90px 0 70px;
    }

    .faq-hero h1{
        font-size:34px;
    }

    .faq-hero p{
        font-size:15px;
    }

    .faq-cta{
        padding:35px 20px;
    }

    .faq-cta h3{
        font-size:28px;
    }

    .faq-accordion .accordion-button{
        font-size:15px;
        padding:18px;
    }
}

.contact-section{
    padding:80px 0;
    background:#f8fafc;
}

.map-box{
    height:100%;
    min-height:500px;
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.map-box iframe{
    width:100%;
    height:100%;
    min-height:500px;
    border:0;
    display:block;
}

.contact-info-box{
    background:#fff;
    border-radius:20px;
    padding:35px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    height:100%;
}

.business-hours{
    list-style:none;
    padding:0;
    margin:0 0 30px;
}

.business-hours li{
    display:flex;
    justify-content:space-between;
    padding:15px 0;
    border-bottom:1px solid #ececec;
}

.business-hours li:last-child{
    border-bottom:none;
}

.contact-help{
    text-align:center;
    background:#f5f9f6;
    padding:25px;
    border-radius:15px;
}

.contact-help i{
    font-size:48px;
    color:var(--orange);
    margin-bottom:10px;
}

.contact-help h5{
    color:var(--green);
    font-weight:700;
}

@media(max-width:991px){

    .map-box,
    .map-box iframe{
        min-height:350px;
    }

    .contact-info-box{
        margin-top:0;
    }
}
.contact-detail{
    font-size: 14px;
}

.blog-details-section{
    padding:80px 0;
    background:#f8fafc;
}

.blog-details-card{
    background:#fff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.blog-featured-img{
    width:100%;
    height:450px;
    object-fit:cover;
}

.blog-content{
    padding:40px;
}

.blog-content h2{
    color:var(--green);
    font-weight:800;
    margin-bottom:15px;
}

.blog-content h4{
    color:var(--green);
    font-weight:800;
    margin-top:35px;
    margin-bottom:15px;
}

.blog-content h5{
    color:var(--green);
    font-weight:800;
    margin-top:35px;
    margin-bottom:15px;
}

.blog-content .lead{
    color:#555;
    font-size: 16px;
}

.blog-content ul{
    padding-left:20px;
}

.blog-content li{
    margin-bottom:10px;
}

.blog-content blockquote{
    background:#f5f9f6;
    border-left:5px solid var(--orange);
    padding:25px;
    margin:30px 0;
    font-size:18px;
    font-style:italic;
    border-radius:10px;
}

.blog-inner-img{
    width:100%;
    border-radius:15px;
    margin:25px 0;
}

.sidebar-widget{
    background:#fff;
    padding:30px;
    border-radius:20px;
    margin-bottom:30px;
    box-shadow:0 8px 25px rgba(0,0,0,.06);
}

.sidebar-widget h4{
    color:var(--green);
    font-weight:800;
    margin-bottom:25px;
}

.recent-post{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.recent-post img{
    width:90px;
    height:70px;
    border-radius:10px;
    object-fit:cover;
}

.recent-post a{
    display:block;
    color:#111;
    margin-bottom:5px;
}

.recent-post span{
    font-size:13px;
    color:#777;
}

.cta-widget{
    text-align:center;
    background:linear-gradient(135deg,var(--green),var(--green2));
    color:#fff;
}

.cta-widget i{
    font-size:50px;
    margin-bottom:15px;
}

.cta-widget h4,
.cta-widget p{
    color:#fff;
}

@media(max-width:768px){

    .blog-details-hero{
        padding:100px 0 70px;
    }

    .blog-details-hero h1{
        font-size:32px;
    }

    .blog-featured-img{
        height:250px;
    }

    .blog-content{
        padding:25px;
    }

    .blog-meta{
        gap:15px;
    }
}

/* Common Styles */
.sticky-whatsapp,
.sticky-call {
    position: fixed;
    bottom: 25px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
}

/* WhatsApp Left */
.sticky-whatsapp {
    left: 20px;
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* Call Right */
.sticky-call {
    right: 20px;
    background: linear-gradient(135deg, #ff6b35, #ff3d00);
}

/* Hover Effect */
.sticky-whatsapp:hover,
.sticky-call:hover {
    transform: translateY(-5px) scale(1.08);
    color: #fff;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70% {
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

/* Mobile */
@media (max-width: 768px) {
    .sticky-whatsapp,
    .sticky-call {
        width: 55px;
        height: 55px;
        font-size: 24px;
        bottom: 15px;
    }

    .sticky-whatsapp {
        left: 15px;
    }

    .sticky-call {
        right: 15px;
    }
}

.v-icon {
    width: 45px;
    height: 45px;
    background: #25D366; /* Change color as needed */
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.v-icon span {
    font-size: 15px;
    font-weight: bold;
    line-height: 1;
}