* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Figtree', sans-serif;

}

body {
  font-family: Arial, Helvetica, sans-serif;
  padding-top: 80px;
  background: #9e2323;
  
  
}
/* .index .navbar { background: rgb(234, 234, 239); } */
/* .about-us .navbar { background: #0c2218; }
.about-us .logotext, .market-price, .market-box{ color: #ffffff; } */



/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #ffffff;
  border-bottom: 1px solid #ddd;
   pointer-events: auto !important;
}

.nav-container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

/* LOGO */
/* .logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  color: #1c3a2c;
  text-decoration: none;
} */

/* .logo-icon {
  width: 42px;
  height: 42px;
  background: #167a44;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: bold;
} */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 500;
  color: #1c3a2c;
  text-decoration: none;
}

/* Control logo size */
.logo-icon img {
  height: 40px;   /* adjust 30–50px based on your navbar */
  width: auto;
  display: block;
}

/* Optional: better alignment */
.logo-icon {
  display: flex;
  align-items: center;
}
/* MENU */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links li {
  position: relative;
  padding-bottom: 0;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.nav-links a:hover {
  color: #167a44;
}

/* DROPDOWN */
.dropdown-menu {
  position: absolute;
   position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  width: 260px;
  display: none;
  flex-direction: column;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  z-index: 9999;
  margin-top: 0;
}

.dropdown-menu a {
  padding: 16px 20px;
  border-bottom: 1px solid #eee;
  color: #666;
  position: relative;
  font-size: 13px;
  display: block;
}

.dropdown-menu a:hover {
  padding-left: 30px;
  background: #f5f5f5;
  color: #167a44;
}

.dropdown-menu a:hover::before {
  content: "— ";
  position: absolute;
  left: 10px;
}

.nav-links li:hover .dropdown-menu, 
.nav-links li .dropdown-menu:hover
{
  display: flex;
}

/* RIGHT SECTION */
.right-section {
  display: flex;
  align-items: center;
  gap: 15px;
  pointer-events: none;
}

.right-section > * {
  pointer-events: auto;
}

#menuBtn {
  pointer-events: auto !important;
  z-index: 999999 !important;
  position: relative !important;
  cursor: pointer !important;
}
/* MARKET */
.market {
  display: flex;
  align-items: center;
  gap: 20px;
}

.market-box {
  font-size: 13px;
  color: #333;
}

.market-box > div:first-child {
  font-size: 11px;
  color: #000;
  letter-spacing: 0.5px;
  /* font-weight: 600; */
}

.market-price {
  display: flex;
  gap: 6px;
  margin-top: 4px;
  font-size: 14px;
  align-items: center;
  font-weight: 500;
}

.up { color: #18a34a; }
.down { color: #dc2626; }

.divider {
  width: 1.5px;
  height: 28px;
  background: #ccc;
}

/* CONTACT */
.contact-btn {
  background: #167a44;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: .3s;
  white-space: nowrap;
}

.contact-btn:hover {
  background: #0f5e33;
}

/* ===================== THREE DOTS BUTTON ===================== */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4.5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 4px;
  border-radius: 4px;
  position: relative;
  z-index: 100001;
  pointer-events: auto !important;
}

@media (max-width: 900px) {
  .menu-toggle { display: flex; }
}
/* Force the toggle button to always be clickable */
.menu-toggle {
  pointer-events: auto !important;
  position: relative;
  z-index: 100001 !important; /* Higher than navbar z-index 9999 */
  cursor: pointer;
}

/* Make sure navbar itself doesn't block */


.menu-toggle span {
  display: block;
  width: 5px;
  height: 5px;
  background: #333;
  border-radius: 50%;
  transition: all 0.3s ease;
}

/* When active → show X (cross) */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
  border-radius: 2px;
  width: 18px;
  height: 2px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
  border-radius: 2px;
  width: 18px;
  height: 2px;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  transition: .4s ease;
  z-index: 9998;
  overflow-y: auto;
}

.mobile-menu.active {
  left: 0;
}

.mobile-menu-item {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-item > a,
.mobile-menu-trigger {
  display: block;
  padding: 18px 20px;
  text-decoration: none;
  font-size: 18px;
  color: #333;
  font-weight: 500;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0.5px;
  transition: color .2s;
}

.mobile-menu-item > a:hover,
.mobile-menu-trigger:hover {
  color: #167a44;
}

/* Mobile submenu */
.mobile-submenu {
  display: none;
  flex-direction: column;
  background: #ebebeb;
  border-top: 1px solid #ddd;
}

.mobile-submenu.open {
  display: flex;
}

.mobile-submenu a {
  padding: 14px 20px;
  text-decoration: none;
  font-size: 15px;
  color: #666;
  border-bottom: 1px solid #ddd;
  transition: color .2s, background .2s;
}

.mobile-submenu a:last-child {
  border-bottom: none;
}

.mobile-submenu a:hover {
  color: #167a44;
  background: #e0e0e0;
}

/* Mobile contact */
.mobile-contact-wrap {
  padding: 30px 20px 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.mobile-contact {
  background: #167a44;
  color: white;
  padding: 14px 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: .3s;
}

.mobile-contact:hover {
  background: #0f5e33;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .contact-btn { display: none; }
 

  .market { gap: 12px; }

  .market-box {
    font-size: 11px;
  }

  .market-price {
    font-size: 12px;
  }

  .logo { font-size: 18px; }

  .logo-icon {
    width: 34px;
    height: 34px;
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .market-box > div:first-child {
    font-size: 9px;
  }
  .market-price {
    font-size: 11px;
    gap: 4px;
  }
  .divider {
    height: 22px;
  }
}

/* Home navbar section End */


/* home landing section start */
/* ===== SECTION ===== */
#home-landing-section-main{
  position:relative;
  width:100%;
  min-height:100vh;
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
   z-index: 1;
   pointer-events: none !important;
}

/* ===== VIDEO WRAPPER ===== */
.home-landing-section-video-wrapper{
  position:absolute;
  inset:0;
  overflow:hidden;
  z-index:0;
  pointer-events: none !important;
}

/* ===== VIDEO ===== */
.home-landing-section-background-video{
  width:100%;
  height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
   pointer-events: none !important;
  filter:saturate(190%);
}

/* ===== OVERLAY ===== */
.home-landing-section-overlay{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none; 
  background:linear-gradient(180deg,#0c221833 26%,rgba(0,0,0,0.65));
}

/* ===== CONTENT ===== */
.home-landing-section-content{
  position:relative;
  z-index:2;
  text-align:center;
  color:#fff;
  width:90%;
pointer-events: auto !important;
  max-width:1000px;
  padding:20px;
}

/* ===== HEADING ===== */
.home-landing-section-title{
  font-weight:600;
  line-height:1.3;
  font-size:clamp(28px,5vw,60px);
}

/* ===== SMALL DEVICES ===== */
@media (max-width:768px){

  #home-landing-section-main{
    min-height:90vh;
  }

  .home-landing-section-content{
    width:95%;
  }

}

/* ===== EXTRA SMALL ===== */
@media (max-width:480px){

  .home-landing-section-title{
    line-height:1.4;
  }

}

/* home landing section end */

 /* home brand swipe section Start */ 


#brand-home-section{
    background:#0c2218;
    min-height:260px;
    display:flex;
    align-items:center;
    position:relative;
    overflow:visible; /* FIXED */
}

/* TOP SHADOW */
#brand-home-section::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:140px;
    background:linear-gradient(to bottom, rgba(0,0,0,0.9), transparent);
    z-index:1;
}

/* =========================
CONTAINER
========================= */

.brand-home-container{
    width:100%;
    padding:0 60px;
    margin:auto;
    position:relative;
    z-index:2;
}

/* =========================
TITLE
========================= */

.brand-home-title{
    text-align:center;
    color:#d6e9e0;
    font-size:14px;
    letter-spacing:4px;
    margin-bottom:35px;
    font-weight:600;
}

/* =========================
SWIPER
========================= */

.brand-home-swiper{
    position:relative;
    overflow:hidden; /* keep fade clean */
}

/* FADE EDGES MATCH BACKGROUND */
.brand-home-swiper::before,
.brand-home-swiper::after{
    content:"";
    position:absolute;
    top:0;
    width:150px;
    height:100%;
    z-index:2;
    pointer-events:none;
}

.brand-home-swiper::before{
    left:0;
    background:linear-gradient(to right,#0c2218,transparent);
}

.brand-home-swiper::after{
    right:0;
    background:linear-gradient(to left,#0c2218,transparent);
}

/* SLIDES */

.swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

/* LOGO BOX */

.brand-home-logo{
    height:50px;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* LOGO IMAGE FIX */

.brand-home-logo img{
    max-height:45px;
    width:auto;
    opacity:0.8;
    background:transparent;
    mix-blend-mode:screen; /* REMOVE BLACK BOX */
    transition:0.4s ease;
}

.brand-home-logo img:hover{
    opacity:1;
    transform:scale(1.1);
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:768px){

#brand-home-section{
    min-height:200px;
}

.brand-home-container{
    padding:0 20px;
}

.brand-home-logo{
    height:40px;
}

.brand-home-logo img{
    max-height:35px;
}

}
/* home brand swipe section end */ 

 /* home why choose us section Start */ 

/* SECTION WRAPPER */
.home-whychouseus-section{
  padding:80px 5%;
}

.home-whychouseus-container{
  max-width:1200px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
}

/* LEFT CONTENT */
.home-whychouseus-left{
  flex:1;
}

.home-whychouseus-tag{
  font-size:14px;
  color:#2d4b3a;
  margin-bottom:10px;
  position:relative;
}

.home-whychouseus-tag::after{
  content:"";
  width:60px;
  height:2px;
  background:#2d4b3a;
  display:block;
  margin-top:5px;
}

.home-whychouseus-title{
  font-size:42px;
  font-weight:700;
  color:#1f2d24;
  line-height:1.3;
  margin:20px 0;
}

.home-whychouseus-desc{
  font-size:16px;
  color:#333;
  line-height:1.7;
  margin-bottom:20px;
}

.home-whychouseus-desc-light{
  font-size:15px;
  color:#777;
  line-height:1.7;
}

.home-whychouseus-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  background:#1f5c3b;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  letter-spacing:1px;
  transition:0.3s;
}

.home-whychouseus-btn:hover{
  background:#14432a;
}

/* RIGHT IMAGE DESIGN */
.home-whychouseus-right{
  flex:1;
  display:flex;
  gap:20px;
}

.home-whychouseus-img-box{
  flex:1;
  overflow:hidden;
  background:#fff;
  padding:10px;
  height: 500px;
}

.home-whychouseus-img-box img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

/* ZOOM EFFECT */
.home-whychouseus-img-box:hover img{
  transform:scale(1.08);
}

/* RESPONSIVE */
@media(max-width:992px){
  .home-whychouseus-container{
    flex-direction:column;
  }

  .home-whychouseus-title{
    font-size:32px;
  }

  .home-whychouseus-right{
    width:100%;
  }
}
 /* home why choose us section End */ 


 /* Home Our Products & Services section start */

/* SECTION */
.home-Products-Services-section{
  padding:80px 0;
  text-align:center;
   background:#f3f3f;
   background-color:#f0f9f3b3;
}

/* CONTAINER */
.home-Products-Services-container{
  width:85%;
  max-width:1200px;
  margin:auto;
}

/* TOP LABEL */
.home-Products-Services-top-label{
  text-align:center;
  margin-bottom:20px;
  font-weight:400;
  
}

.home-Products-Services-top-text{
  font-size:18px;
  color:#27352c;
  display:inline-block;
}

.home-Products-Services-top-underline{
  display:block;
  margin:5px auto 0;
  width:120px;
  height:20px;
}

/* TITLE */
.home-Products-Services-title{
  font-size:60px;
  font-weight:600;
  line-height:1.3;
  margin-bottom:15px;
  color:#1a1a1a;
}

.home-Products-Services-subtitle{
  color:#666;
  font-size:15px;
  margin-bottom:50px;
}

/* GRID */
.home-Products-Services-grid{
  display:flex;
  gap:30px;
  flex-wrap:wrap;
}

/* CARD */
.home-Products-Services-card{
  background:#fff;
  flex:1;
  min-width:300px;
  text-align:left;
}

/* IMAGE */
.home-Products-Services-image-wrapper{
  overflow:hidden;
  height:260px;
}

.home-Products-Services-image{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 0.6s ease;
}

/* ZOOM EFFECT */
.home-Products-Services-card:hover 
.home-Products-Services-image{
  transform: scale(1.1);
}

/* CONTENT */
.home-Products-Services-content{
  padding:25px;
  line-height: 1.8;
}

.home-Products-Services-heading{
  font-size:22px;
  margin-bottom:10px;
}

.home-Products-Services-text{
  font-size:14px;
  color:#666;
  margin-bottom:15px;
}

.home-Products-Services-list{
  padding-left:18px;
  margin-bottom:20px;
}

.home-Products-Services-list li{
  margin-bottom:8px;
  font-size:14px;
}

/* BUTTON */
.home-Products-Services-button{
  display:inline-block;
  padding:10px 18px;
  border:1px solid #1c6b3c;
  color:#1c6b3c;
  text-decoration:none;
  font-size:13px;
  transition:0.3s;
}

.home-Products-Services-button:hover{
  background:#1c6b3c;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:768px){
  .home-Products-Services-title{
    font-size:28px;
  }
  .home-Products-Services-grid{
    flex-direction:column;
  }
}

  /* Home Our Products & Services section End */


  /* Footer page  start */

/* ================= HERO ================= */

.footer-page-hero{
width:100%;
height:80vh;
background:url("https://cdn.prod.website-files.com/6848312c31807741f8b0d49d/68524bac93e4b015596daf3d_bottom%20home%20page.jpg") center/cover no-repeat;
position:relative;
display:flex;
align-items:center;
padding:0 8%;
color:white;
z-index:0;
}

.footer-page-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
 pointer-events: none !important;
background:rgba(0,0,0,0.45);
}

.footer-page-hero-content{
position:relative;
z-index:2;
max-width:650px;
}

.footer-page-hero-title{
font-size:46px;
font-weight:bold;
line-height:1.3;
margin-bottom:15px;
}

.footer-page-hero-sub{
font-size:16px;
opacity:0.9;
line-height: 30px;
}

/* ================= ROTATING CTA ================= */

.footer-page-cta{
position:absolute;
right:8%;
top:50%;
transform:translateY(-50%);
z-index:5;
width:120px;
height:120px;
display:flex;
align-items:center;
justify-content:center;
}

.footer-page-cta img{
position:absolute;
width:100%;
height:100%;
animation:spin 10s linear infinite;
}

/* CENTER ARROW */
.footer-page-cta-arrow{
width:45px;
height:45px;
background:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:bold;
color:black;
z-index:2;
}

/* ROTATION */
@keyframes spin{
0%{transform:rotate(0deg);}
100%{transform:rotate(360deg);}
}

/* ================= FOOTER ================= */

.footer-page-section{
width:100%;
background:transparent;
display:flex;
justify-content:center;
position:relative;
z-index:1;
}

/* 🔥 FLOATING CARD */
.footer-page-container{
width:99%;
max-width:1400px;
text-align:center;
padding:70px 20px 50px;

/* DESIGN */
background:#f5f5f5;
border-radius:8px;

/* 🔥 FLOAT EFFECT */
position:relative;
z-index:10;
margin-top:-60px;
box-shadow:0 25px 60px rgba(0,0,0,0.25);
}

/* LOGO */
.footer-page-logo{
color:#1f7a45;
margin-bottom:20px;
font-weight:bold;
}

/* HEADING */
.footer-page-heading{
font-size:36px;
line-height:1.4;
margin-bottom:30px;
color:#0d1b2a;
}

/* FORM */
.footer-page-form{
display:flex;
justify-content:center;
gap:10px;
margin-bottom:40px;
flex-wrap:wrap;
}

.footer-page-input{
padding:14px;
width:260px;
border:1px solid #ccc;
}

.footer-page-btn{
padding:14px 25px;
background:#1f7a45;
color:white;
border:none;
cursor:pointer;
}

/* LINKS */
.footer-page-links{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
font-size:13px;
margin-bottom:15px;
}

.footer-page-links a{
text-decoration:none;
color:#0d1b2a;
}

/* COPYRIGHT */
.footer-page-copy{
font-size:12px;
color:#777;
}

/* ================= RESPONSIVE ================= */

@media(max-width:768px){

.footer-page-hero{
height:65vh;
padding:0 20px;
}

.footer-page-hero-title{
font-size:26px;
}

.footer-page-cta{
right:20px;
width:90px;
height:90px;
}

.footer-page-cta-arrow{
width:35px;
height:35px;
font-size:14px;
}

.footer-page-container{
margin-top:-80px;
padding:50px 15px;
}

.footer-page-heading{
font-size:24px;
}

}

    /* Footer page  End */


  /* <!-- home Latest articles section start --> */
body{
margin:0;
font-family: "Segoe UI", Arial, sans-serif;
background:#f3f1ed;
color:#0b2a2a;
}

/* ===== SECTION ===== */
.home-articles-lates-section{
width:100%;
padding:80px 0;
}

.home-articles-lates-container{
width:90%;
max-width:1200px;
margin:auto;
}

/* ===== TOP TEXT ===== */
.home-articles-lates-subtitle{
font-size:25px;
/* font-weight: 200px; */
color:#0b2a2a;
margin-bottom:10px;
position:relative;
display:inline-block;
}

.home-articles-lates-subtitle::after{
content:"";
position:absolute;
left:0;
bottom:-5px;
width:60px;
height:2px;
background:#0b2a2a;
}

.home-articles-lates-title-row{
display:flex;
justify-content:space-between;
align-items:center;
flex-wrap:wrap;
gap:20px;
}

.home-articles-lates-title{
font-size:42px;
font-weight:600;
line-height:1.4;
max-width:650px;
padding: 10px;
}

/* ===== BUTTON ===== */
.home-articles-lates-btn{
padding:12px 22px;
border:1px solid #0b6b4f;
color:#0b6b4f;
text-decoration:none;
font-size:14px;
transition:0.3s;
}

.home-articles-lates-btn:hover{
background:#0b6b4f;
color:#fff;
}

/* ===== GRID ===== */
.home-articles-lates-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:40px;
margin-top:50px;
}

/* ===== CARD ===== */
.home-articles-lates-card{
background:#fff;
padding:20px;
}

.home-articles-lates-meta{
display:flex;
justify-content:space-between;
font-size:13px;
color:#777;
margin-bottom:10px;
}

.home-articles-lates-heading{
font-size:18px;
font-weight:600;
margin-bottom:25px;
}

/* ===== IMAGE ===== */
.home-articles-lates-img-wrapper{
overflow:hidden;
}

.home-articles-lates-img{
width:100%;
height:260px;
object-fit:cover;
transition:0.5s;
}

.home-articles-lates-img-wrapper:hover .home-articles-lates-img{
transform:scale(1.1);
}

/* ===== READ LINK ===== */
.home-articles-lates-read{
display:inline-block;
margin-top:15px;
font-size:13px;
text-decoration:none;
color:#0b2a2a;
}

.home-articles-lates-read:hover{
text-decoration:underline;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
.home-articles-lates-grid{
grid-template-columns:1fr;
}

.home-articles-lates-title{
font-size:30px;
}
}

/* <!-- home Latest articles section End --> */


/* <!-- home Map section Start --> */

.home-world-map-section{
  width:100%;
  min-height:100vh;
  background:#efedea;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  overflow:hidden;
  position:relative;
  padding:40px 0;
}

/* MAP */
.home-world-map-image{
  width:85%;
  max-width:1100px;
  opacity:0.95;
  transition:0.4s;
}

.home-world-map-image:hover{
  transform:scale(1.02);
}

/* ===== BOTTOM CONTAINER (80%) ===== */
.home-world-map-bottom{
  width:80%;
  max-width:1100px;
  position:absolute;
  bottom:30px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

/* NAV BUTTON */
.home-world-map-nav{
  width:36px;
  height:36px;
  background:#0a7b4f;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.3s;
  flex-shrink:0;
}

.home-world-map-nav:hover{
  transform:scale(1.1);
}

/* SWIPER */
.home-world-map-swiper{
  flex:1;
}

/* COUNTRY */
.home-world-map-country{
  text-align:center;
  color:#6b7680;
  font-size:16px;
  cursor:pointer;
  transition:0.3s;
}

.home-world-map-country:hover{
  color:#0a7b4f;
}

.swiper-slide-active .home-world-map-country{
  color:#0a7b4f;
  font-weight:600;
}

/* ===== RESPONSIVE ===== */

@media(max-width:1024px){
  .home-world-map-image{
    width:90%;
  }
}

@media(max-width:768px){

  .home-world-map-bottom{
    width:90%;
    gap:10px;
  }

  .home-world-map-nav{
    width:32px;
    height:32px;
    font-size:14px;
  }

  .home-world-map-country{
    font-size:14px;
  }
}

@media(max-width:480px){

  .home-world-map-bottom{
    width:95%;
  }

  .home-world-map-country{
    font-size:13px;
  }

}

/* <!-- home  Map section End --> */

/* <!-- dril-rig-page-start --> */
.dril-rig-page-section{
  width:100%;
  background:#0c2218;
  padding:100px 20px 220px; /* more bottom space for image */
  text-align:center;
  position:relative;
}

/* LABEL */
.dril-rig-page-label{
  display:inline-block;
  color:#fff;
  font-size:17px;
  margin-bottom:15px;
  position:relative;
}

.dril-rig-page-label::after{
  content:"";
  width:50px;
  height:3px;
  background:#d4ff00;
  display:block;
  margin:6px auto 0;
  border-radius:2px;
}

/* TITLE */
.dril-rig-page-title{
  font-size:48px;
  font-weight:700;
  color:#e5e5e5;
  margin-bottom:20px;
}

/* TEXT */
.dril-rig-page-subtext{
  color:#cfcfcf;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
  line-height:1.6;
}

/* ================= IMAGE ================= */
.dril-rig-page-image-wrap{
  width:70%;
  margin:0 auto;
  margin-top:-180px; /* controls overlap */
  position:relative;
  z-index:2;
  
}

.dril-rig-page-image img{
  width:100%;
  display:block;
  border-radius:6px;
  transition:transform 0.5s ease;
  height: 400px;
}

.dril-rig-page-image:hover img{
  transform:scale(1.05);
}

.home-product{
  line-height: 2.2;
  margin-left: 24px;
  font-size: 16px;
}
/* ================= BOTTOM ================= */
.dril-rig-page-bottom{
  width:100%;
  height:180px;
  background:#eaeaea;
  margin-top:-40px; /* only small overlap into bottom */
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

  .dril-rig-page-title{
    font-size:36px;
  }

  .dril-rig-page-image-wrap{
    width:90%;
    margin-top:-120px;
  }

}

@media(max-width:768px){

  .dril-rig-page-title{
    font-size:28px;
  }

  .dril-rig-page-image-wrap{
    width:95%;
    margin-top:-100px;
  }

}

@media(max-width:480px){

  .dril-rig-page-section{
    padding:70px 15px 180px;
  }

  .dril-rig-page-title{
    font-size:22px;
  }

  .dril-rig-page-image-wrap{
    margin-top:-80px;
  }

}

/* <!-- dril-rig-page-section end --> */

/* <!-- dril-rig-page-product-section start --> */
/* SECTION */
.drilrig-page-products-section{
  width:100%;
  padding:60px 20px;
}

/* GRID */
.drilrig-page-products-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.drilrig-page-products-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  transition:0.3s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* IMAGE WRAP */
.drilrig-page-products-img{
  width:100%;
  height:300px;
  overflow:hidden;
}

/* IMAGE */
.drilrig-page-products-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}


/* ZOOM EFFECT */
.drilrig-page-products-card:hover img{
  transform:scale(1.1);
}

/* CONTENT */
.drilrig-page-products-content{
  padding:18px;
}

/* TITLE */
.drilrig-page-products-title{
  font-size:20px;
  font-weight:600;
  margin-bottom:10px;
  color:#111;
}

/* LIST */
.drilrig-page-products-list{
  font-size:16px;
  color:#3e3530;
  line-height:2.2;
  margin-left: 20px;
}

/* HOVER */
.drilrig-page-products-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){
  .drilrig-page-products-container{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:600px){
  .drilrig-page-products-container{
    grid-template-columns:1fr;
  }

  .drilrig-page-products-img{
    height:180px;
  }
}

/* <!-- dril-rig-page-product-section end --> */


/* .drill-rig-explore-more section Start */

/* SECTION */
.drill-rig-explore-more-section{
  width:100%;
  background:#f4f1eb;
  padding:30px 10px;
  text-align:center;
}

/* SUB TITLE */
.drill-rig-explore-more-sub{
  font-size:14px;
  color:#1f3d36;
  margin-bottom:10px;
  position:relative;
}

.drill-rig-explore-more-sub::after{
  content:"";
  width:60px;
  height:2px;
  background:#1f3d36;
  display:block;
  margin:6px auto 0;
}

/* TITLE */
.drill-rig-explore-more-title{
  font-size:42px;
  font-weight:500;
  color:#0e2f2a;
  margin-bottom:-50px;
}

/* SWIPER */
.drill-rig-explore-more-slider{
  max-width:1100px;
  margin:auto;
  position:relative;
}

/* CARD */
.drill-rig-explore-more-card{
  background:#fff;
  padding:40px;
  text-align:left;
  height:50%;
  border-right:3px solid #e5c65c;
  transition:0.4s;
}

.drill-rig-explore-more-card:hover{
  transform:translateY(-5px);
}

/* ICON */
.drill-rig-explore-more-icon{
  width:60px;
  height:60px;
  background:#0e2f2a;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:20px;
}

.drill-rig-explore-more-icon img{
  width:28px;
}

/* CARD TITLE */
.drill-rig-explore-more-card h3{
  font-size:22px;
  margin-bottom:15px;
  color:#0e2f2a;
}

/* TEXT */
.drill-rig-explore-more-card p{
  font-size:15px;
  color:#5b6b67;
  line-height:1.6;
  margin-bottom:25px;
}

/* LINK */
.drill-rig-explore-more-link{
  font-size:13px;
  font-weight:600;
  color:#0e2f2a;
  text-decoration:none;
}

.drill-rig-explore-more-link span{
  margin-left:5px;
}

/* NAV BUTTONS */
.drill-rig-explore-more-nav{
  margin-top:0px;
  display:flex;
  justify-content:center;
  gap:20px;
}
.drill-rig-explore-more-btn.prev {
 font-size: 30px;
}
.drill-rig-explore-more-btn.next {
 font-size: 30px;
}
.drill-rig-explore-more-btn{
  width:60px;
  height:60px;
  border-radius:80%;
  border:1px solid #2f2626;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.3s;
   position: relative;
}

.drill-rig-explore-more-btn:hover{
  background:#0e2f2a;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:992px){
  .drill-rig-explore-more-title{
    font-size:32px;
  }
}

@media(max-width:768px){
  .drill-rig-explore-more-card{
    padding:30px;
  }
}

/* .drill-rig-explore-more section End */

/* Well Comletion section End */
.well-coppletion-page-section{
  width:100%;
  background:#0c2218;
  padding:100px 20px 220px; /* more bottom space for image */
  text-align:center;
  position:relative;
}

/* LABEL */
.well-coppletion-page-label{
  display:inline-block;
  color:#fff;
  font-size:14px;
  margin-bottom:15px;
  position:relative;
}

.well-coppletion-page-label::after{
  content:"";
  width:50px;
  height:3px;
  background:#d4ff00;
  display:block;
  margin:6px auto 0;
  border-radius:2px;
}

/* TITLE */
.well-coppletion-page-title{
  font-size:48px;
  font-weight:700;
  color:#e5e5e5;
  margin-bottom:20px;
}

/* TEXT */
.well-coppletion-page-subtext{
  color:#cfcfcf;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
  line-height:1.6;
}

/* ================= IMAGE ================= */
.well-coppletion-page-image-wrap{
  width:70%;
  margin:0 auto;
  margin-top:-180px; /* controls overlap */
  position:relative;
  z-index:2;
  
}

.well-coppletion-page-image img{
  width:100%;
  display:block;
  border-radius:6px;
  transition:transform 0.5s ease;
  height: 400px;
}

.well-coppletion-page-image:hover img{
  transform:scale(1.05);
}

/* ================= BOTTOM ================= */
.well-coppletion-page-bottom{
  width:100%;
  height:180px;
  background:#eaeaea;
  margin-top:-40px; /* only small overlap into bottom */
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

  .well-coppletion-page-title{
    font-size:36px;
  }

  .well-coppletion-page-image-wrap{
    width:90%;
    margin-top:-120px;
  }

}

@media(max-width:768px){

  .well-coppletion-page-title{
    font-size:28px;
  }

  .well-coppletion-page-image-wrap{
    width:95%;
    margin-top:-100px;
  }

}

@media(max-width:480px){

  .well-coppletion-page-section{
    padding:70px 15px 180px;
  }

  .well-coppletion-page-title{
    font-size:22px;
  }

  .well-coppletion-page-image-wrap{
    margin-top:-80px;
  }

}
/* Well Comletion section End */

/* well-completion-products-section start */
/* SECTION */
.well-completion-products-section{
  width:100%;
  padding:60px 20px;
}

/* GRID */
.well-completion-products-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.well-completion-products-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  transition:0.3s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* IMAGE WRAP */
.well-completion-products-img{
  width:100%;
  height:300px;
  overflow:hidden;
}

/* IMAGE */
.well-completion-products-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

/* ZOOM EFFECT */
.well-completion-products-card:hover img{
  transform:scale(1.1);
}

/* CONTENT */
.well-completion-products-content{
  padding:18px;
}

/* TITLE */
.well-completion-products-title{
  font-size:25px;
  font-weight:600;
  margin-bottom:10px;
  color:#111;
}

/* LIST */
.well-completion-products-list{
  font-size:18px;
  color:#666;
  line-height:2.2;
  margin-left: 20px;
}

/* HOVER */
.well-completion-products-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){
  .well-completion-products-container{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:600px){
  .well-completion-products-container{
    grid-template-columns:1fr;
  }

  .well-completion-products-img{
    height:180px;
  }
}

/* well-completion-products-section End */

/* <!-- well-construction-page landing start --> */

.well-construction-page-section{
  width:100%;
  background:#0c2218;
  padding:100px 20px 220px; /* more bottom space for image */
  text-align:center;
  position:relative;
}

/* LABEL */
.well-construction-page-label{
  display:inline-block;
  color:#fff;
  font-size:25px;
  margin-bottom:15px;
  position:relative;
}

.well-construction-page-label::after{
  content:"";
  width:50px;
  height:3px;
  background:#d4ff00;
  display:block;
  margin:6px auto 0;
  border-radius:2px;
}

/* TITLE */
.well-construction-page-title{
  font-size:80px;
  font-weight:520;
  color:#e5e5e5;
  margin-bottom:20px;
}

/* TEXT */
.well-construction-page-subtext{
  color:#cfcfcf;
  font-size:16px;
  max-width:700px;
  margin:0 auto;
  line-height:1.6;
}

/* ================= IMAGE ================= */
.well-construction-page-image-wrap{
  width:70%;
  margin:0 auto;
  margin-top:-180px; /* controls overlap */
  position:relative;
  z-index:2;
  
}

.well-construction-page-image img{
  width:100%;
  display:block;
  border-radius:6px;
  transition:transform 0.5s ease;
  height: 500px;
}

.well-construction-page-image:hover img{
  transform:scale(1.05);
}

/* ================= BOTTOM ================= */
.well-construction-page-bottom{
  width:100%;
  height:180px;
  background:#eaeaea;
  margin-top:-40px; /* only small overlap into bottom */
}

/* ================= RESPONSIVE ================= */

@media(max-width:1024px){

  .well-construction-page-title{
    font-size:36px;
  }

  .well-construction-page-image-wrap{
    width:90%;
    margin-top:-120px;
  }

}

@media(max-width:768px){

  .well-construction-page-title{
    font-size:28px;
  }

  .well-construction-page-image-wrap{
    width:95%;
    margin-top:-100px;
  }

}

@media(max-width:480px){

  .well-construction-page-section{
    padding:70px 15px 180px;
  }

  .well-construction-page-title{
    font-size:22px;
  }

  .well-construction-page-image-wrap{
    margin-top:-80px;
  }

}
/* <!-- well-construction-page landing End --> */

/* well-constrution-products-section End */
/* SECTION */
.well-construction-products-section{
  width:100%;
  padding:60px 20px;
}

/* GRID */
.well-construction-products-container{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

/* CARD */
.well-construction-products-card{
  background:#fff;
  border-radius:6px;
  overflow:hidden;
  transition:0.3s ease;
  box-shadow:0 2px 6px rgba(0,0,0,0.05);
}

/* IMAGE WRAP */
.well-construction-products-img{
  width:100%;
  height:300px;
  overflow:hidden;
}

/* IMAGE */
.well-construction-products-img img{
  width:100%;
  height:300%;
  object-fit:cover;
  transition:0.5s ease;
}

/* ZOOM EFFECT */
.well-construction-products-card:hover img{
  transform:scale(1.1);
}

/* CONTENT */
.well-construction-products-content{
  padding:18px;
}

/* TITLE */
.well-construction-products-title{
  font-size:25px;
  font-weight:600;
  margin-bottom:10px;
  color:#111;
}

/* LIST */
.well-construction-products-list{
  font-size:17px;
  color:#666;
  line-height:2.6;
      margin-left: 20px;
}

/* HOVER */
.well-construction-products-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 20px rgba(0,0,0,0.08);
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){
  .well-construction-products-container{
    grid-template-columns:repeat(2,1fr);
  }
}

/* MOBILE */
@media(max-width:600px){
  .well-construction-products-container{
    grid-template-columns:1fr;
  }

  .well-construction-products-img{
    height:180px;
  }
}

/* well-constrution-products-section End */



/* <!-- R and d page landing start  --> */
.r-d-page-hero{
  position:relative;
  width:100%;
  padding:120px 20px 180px;
  text-align:center;
  color:#fff;
  overflow:visible;

  background-color:#0c2218;
  background-image:
    linear-gradient(#0c2218cc,#0c2218cc),
    url("https://cdn.prod.website-files.com/6848312c31807741f8b0d49d/6848312c31807741f8b0d7eb_Abstract.webp");
  background-size:cover;
  background-position:center;
}
.rdheading{
  padding: 20px;
  font-size: 40px;
  /* font-weight: 600px; */
}
.rdcontenthead{
  font-size: 40px;
}
/* TITLE */
.r-d-page-title{
  font-size:40px;
  
}
.r-d-page-title-underline{
  width:80px;
  margin:5px auto 20px;
}

.r-d-page-title-underline img{
  width:100%;
}

/* ================= FLOATING IMAGES ================= */

.r-d-page-image{
  position:absolute;
  width:220px;
  height:280px;
  overflow:hidden;
  border-radius:4px;
}

.r-d-page-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* LEFT IMAGE */
.r-d-page-image-left{
  left:8%;
  bottom:-90px;
}

/* RIGHT IMAGE */
.r-d-page-image-right{
  right:8%;
  bottom:-90px;
}

/* ================= CONTENT SECTION ================= */

.r-d-page-content{
  background:#efefef;
  padding:140px 20px 80px;
}

.r-d-page-container{
  max-width:900px;
  margin:auto;
}
r-d-page-container p{
  line-height: 1.8;
}
.r-d-page-text{
  font-size:16px;
  line-height:1.8;
  color:#666;
  margin-bottom:25px;
}

.r-d-page-container h2 {
  margin-bottom: 18px;
  font-size: 35px;
}

/* Paragraph spacing + line height */
.r-d-page-container p {
  line-height: 1.8;
  margin-bottom: 28px;

}

/* Slightly tighter gap for consecutive paragraphs */
.r-d-page-container p + p {
  margin-top: -8px;
}

/* CEO section */
.r-d-page-container .ceo-sign {
  margin-top: 40px;
}

.r-d-page-container .ceo-sign img {
  display: block;
  margin-bottom: 10px;
}

.r-d-page-container .ceo-sign p {
  margin-bottom: 0;
  line-height: 1.6;
}
/* ================= RESPONSIVE ================= */

@media (max-width:991px){

  .r-d-page-image{
    width:180px;
    height:240px;
  }

  .r-d-page-image-left{
    left:5%;
  }

  .r-d-page-image-right{
    right:5%;
  }

}

@media (max-width:768px){

  .r-d-page-title{
    font-size:28px;
  }

  .r-d-page-image{
    position:relative;
    margin:20px auto;
    bottom:auto;
    left:auto;
    right:auto;
  }

  .r-d-page-hero{
    padding-bottom:60px;
  }

  .r-d-page-content{
    padding-top:40px;
  }

}

/* <!-- R and d page landing End  --> */

/* <!-- R and d page our impact start  --> */

/* SECTION */
.r-d-our-impact-section{
  width:100%;
  background:#f3f5f4;
  padding:80px 20px;
}

.r-d-our-impact-container{
  max-width:1200px;
  margin:auto;
}

/* TITLE */
.r-d-our-impact-top-text{
  font-size:14px;
  color:#0c2218;
  margin-bottom:10px;
  position:relative;
  display:inline-block;
}

.r-d-our-impact-top-text::after{
  content:"";
  width:60px;
  height:2px;
  background:#0c2218;
  position:absolute;
  left:0;
  bottom:-5px;
}

.r-d-our-impact-heading{
  font-size:42px;
  color:#0c2218;
  margin-bottom:40px;
  line-height:1.2;
}

/* VIDEO */
.r-d-our-impact-video-wrap{
  width:100%;
  height:420px;
  position:relative;
  overflow:hidden;
  border-radius:4px;
}

.r-d-our-impact-video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* PLAY BUTTON */
.r-d-our-impact-play{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%, -50%);
  width:70px;
  height:70px;
  border:2px solid #fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:0.3s;
}

/* triangle */
.r-d-our-impact-play::after{
  content:"";
  border-left:18px solid #fff;
  border-top:10px solid transparent;
  border-bottom:10px solid transparent;
  margin-left:5px;
}

/* pulse */
.r-d-our-impact-play::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  border-radius:50%;
  border:2px solid #fff;
  animation:pulse 2s infinite;
}

@keyframes pulse{
  0%{transform:scale(1);opacity:0.7;}
  70%{transform:scale(1.6);opacity:0;}
  100%{opacity:0;}
}

.r-d-our-impact-play:hover{
  background:#fff;
}

.r-d-our-impact-play:hover::after{
  border-left-color:#0c2218;
}

/* STATS */
.r-d-our-impact-stats{
  display:flex;
  justify-content:space-between;
  margin-top:50px;
  gap:20px;
}

.r-d-our-impact-stat{
  flex:1;
  border-left:1px solid #cfd6d3;
  padding-left:20px;
}

.r-d-our-impact-stat:first-child{
  border-left:none;
  padding-left:0;
}

.r-d-our-impact-number{
  font-size:48px;
  color:#0c2218;
  font-weight:bold;
}

.r-d-our-impact-label{
  font-size:14px;
  color:#444;
  margin-top:5px;
}

/* RESPONSIVE */
@media(max-width:992px){
  .r-d-our-impact-heading{font-size:32px;}
  .r-d-our-impact-video-wrap{height:300px;}
  .r-d-our-impact-stats{flex-wrap:wrap;}
  .r-d-our-impact-stat{width:48%;border:none;padding:0;}
}

@media(max-width:600px){
  .r-d-our-impact-heading{font-size:26px;}
  .r-d-our-impact-video-wrap{height:220px;}
  .r-d-our-impact-stat{width:100%;}
  .r-d-our-impact-number{font-size:36px;}
}
/* <!-- R and d page our impact End  --> */

/* <!-- R and d page our value start  --> */
.r-d-our-value-section{
  background:#e9e7e3;
  padding:80px 20px;
}

/* TITLE */
.r-d-our-value-title{
  text-align:center;
  font-size:40px;
  font-weight:600;
  margin-bottom:50px;
  color:#0c2218;
}

/* GRID */
.r-d-our-value-grid{
  max-width:1200px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:25px;
}

/* CARD */
.r-d-our-value-card{
  background:#f3f2ef;
  padding:30px;
  border-radius:4px;
  transition:all 0.3s ease;
}

/* HOVER EFFECT */
.r-d-our-value-card:hover{
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

/* TOP ROW */
.r-d-our-value-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:15px;
}

/* ICON */
.r-d-our-value-icon{
  width:40px;
  height:40px;
}

.r-d-our-value-icon img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* HEADING */
.r-d-our-value-heading{
  font-size:20px;
  font-weight:600;
  color:#0c2218;
}

/* TEXT */
.r-d-our-value-text{
  font-size:15px;
  color:#6b7280;
  line-height:1.6;
}

/* ================= RESPONSIVE ================= */

/* TABLET */
@media(max-width:992px){
  .r-d-our-value-grid{
    grid-template-columns:1fr;
  }
}

/* MOBILE */
@media(max-width:576px){
  .r-d-our-value-title{
    font-size:30px;
  }

  .r-d-our-value-card{
    padding:20px;
  }

  .r-d-our-value-heading{
    font-size:18px;
  }

  .r-d-our-value-text{
    font-size:14px;
  }
}
/* <!-- R and d page our value end  --> */


/* <!-- R and d page our Works Start  --> */
.r-d-our-work-section{
  background:#f3f1ec;
  padding:60px 40px;
}

/* CONTAINER */
.r-d-our-work-container{
  max-width:1200px;
  margin:auto;
}

/* TOP CONTENT */
.r-d-our-work-top{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  flex-wrap:wrap;
  margin-bottom:40px;
}

/* LABEL */
.r-d-our-work-label{
  display:inline-block;
}

.r-d-our-work-label span{
  display:block;
  font-size:14px;
  color:#2e6b4f;
  margin-bottom:5px;
}

.r-d-our-work-label img{
  width:120px;
  display:block;
  margin-left:-5px;
}

/* HEADING */
.r-d-our-work-left h2{
  font-size:38px;
  margin-top:10px;
  line-height:1.3;
  color:#0c2218;
  max-width:500px;
}

/* BUTTON */
.r-d-our-work-btn{
  border:1px solid #2e6b4f;
  padding:10px 20px;
  color:#2e6b4f;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.r-d-our-work-btn:hover{
  background:#2e6b4f;
  color:#fff;
}

/* GRID (3 + 3) */
.r-d-our-work-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:15px;
}

/* IMAGE */
.r-d-our-work-item{
  overflow:hidden;
}

.r-d-our-work-item img{
  width:100%;
  height:250px;
  object-fit:cover;
  transition:0.5s ease;
}

/* ZOOM */
.r-d-our-work-item:hover img{
  transform:scale(1.08);
}

/* RESPONSIVE */
@media(max-width:992px){
  .r-d-our-work-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .r-d-our-work-top{
    flex-direction:column;
    gap:20px;
  }

  .r-d-our-work-left h2{
    font-size:28px;
  }

  .r-d-our-work-grid{
    grid-template-columns:1fr;
  }
}

/* <!-- R and d page our Works end  --> */

/* <!-- Our Services page start --> */

.services-page-section{
  padding:80px 20px;
  background:#f3f3f1;
  text-align:center;
}

/* TITLE */
.services-page-title{
  font-size:48px;
  font-weight:700;
  color:#0c2218;
  margin-bottom:10px;
}

.services-page-subtitle{
  color:#6b7280;
  max-width:600px;
  margin:0 auto 60px;
  line-height:1.6;
}

/* GRID */
.services-page-grid{
  display:grid;
  grid-template-columns: repeat(2,1fr);
  gap:40px;
  max-width:1200px;
  margin:auto;
}

/* CARD */
.services-page-card{
  background:#fff;
  text-align:left;
  overflow:hidden;
  transition:0.3s;
}

/* IMAGE */
.services-page-img-wrap{
  overflow:hidden;
}

.services-page-img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:transform 0.6s ease;
}

/* ZOOM */
.services-page-card:hover .services-page-img{
  transform:scale(1.1);
}

/* CONTENT */
.services-page-content{
  padding:25px;
}

.services-page-heading{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
}

.services-page-desc{
  font-size:14px;
  color:#6b7280;
  margin-bottom:15px;
}

/* LIST */
.services-page-list{
  margin-bottom:20px;
}

.services-page-list li{
  margin-bottom:8px;
  font-size:14px;
}

/* BUTTON */
.services-page-btn{
  display:inline-block;
  padding:12px 22px;
  border:1px solid #0c2218;
  color:#0c2218;
  text-decoration:none;
  font-size:13px;
  letter-spacing:1px;
  transition:0.3s;
}

.services-page-btn:hover{
  background:#0c2218;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:900px){
  .services-page-grid{
    grid-template-columns:1fr;
  }

  .services-page-title{
    font-size:36px;
  }
}

/* <!-- Our Services page end --> */

/* <!-- Our products page start --> */
.products-page-section{
  padding:80px 20px;
  text-align:center;
}

/* TITLE */
.products-page-title{
  font-size:42px;
  font-weight:600;
  color:#0c2218;
}

.products-page-subtitle{
  margin-top:15px;
  color:#6b6b6b;
  font-size:16px;
}

/* GRID */
.products-page-grid{
  margin-top:50px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:30px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
}

/* CARD */
.products-page-card{
  background:#ffffff;
  text-align:left;
  overflow:hidden;
  transition:0.3s;
}

/* IMAGE */
.products-page-img{
  overflow:hidden;
  height:240px;
}

.products-page-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition: transform 0.6s ease;
}

/* IMAGE ZOOM */
.products-page-card:hover img{
  transform: scale(1.1);
}

/* CONTENT */
.products-page-content{
  padding:25px;
}

.products-page-heading{
  font-size:18px;
  font-weight:600;
  margin-bottom:15px;
  color:#0c2218;
}

.products-page-list{
  list-style: disc;
  padding-left:18px;
  color:#444;
}

.products-page-list li{
  margin-bottom:8px;
  font-size:14px;
}

/* BUTTON */
.products-page-btn{
  display:inline-block;
  margin-top:20px;
  padding:12px 22px;
  border:1px solid #0c2218;
  color:#0c2218;
  text-decoration:none;
  font-size:14px;
  transition: all 0.3s ease;
}

/* BUTTON HOVER */
.products-page-btn:hover{
  background:#0c2218;
  color:#fff;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .products-page-grid{
    grid-template-columns: repeat(2,1fr);
  }
}

@media(max-width:768px){
  .products-page-title{
    font-size:32px;
  }

  .products-page-grid{
    grid-template-columns:1fr;
  }

  .products-page-img{
    height:200px;
  }
}

/* <!-- Our products page start --> */

/* <!-- gallery page landign section start --> */
.gallery-page-section{
  width:100%;
  background:#f4f4f4;
  padding:60px 0;
}

/* CONTAINER */
.gallery-page-container{
  width:90%;
  margin:auto;
  text-align:center;
}

/* TITLE */
.gallery-page-title{
  font-size:50px;
  font-weight:700;
  color:#0c2218;
}

.gallery-page-subtitle{
  margin-top:10px;
  color:#6b6b6b;
  font-size:14px;
  max-width:500px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.6;
}

/* GRID */
.gallery-page-grid{
  margin-top:40px;
  column-count:4;
  column-gap:18px;
}

/* IMAGE BOX */
.gallery-page-item{
  width:100%;
  margin-bottom:18px;
  break-inside: avoid;
  overflow:hidden;
  border-radius:8px;
  position:relative;
}

/* IMAGE */
.gallery-page-item img{
  width:100%;
  display:block;
  border-radius:8px;
  transition:0.4s ease;
}

/* HOVER EFFECT */
.gallery-page-item:hover img{
  transform:scale(1.08);
}

/* OVERLAY (optional future use) */
.gallery-page-item::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.1);
  opacity:0;
  transition:0.3s;
}

.gallery-page-item:hover::after{
  opacity:1;
}

/* ================= RESPONSIVE ================= */

@media(max-width:1200px){
  .gallery-page-grid{
    column-count:3;
  }
}

@media(max-width:768px){
  .gallery-page-grid{
    column-count:2;
  }

  .gallery-page-title{
    font-size:28px;
  }
}

@media(max-width:480px){
  .gallery-page-grid{
    column-count:1;
  }
}

/* <!-- gallery page landign section Ends --> */

/* <!-- gallery page latest article section Start --> */
.latest-article-gallery-page-section {
    width: 90%;
    margin: auto;
    padding: 60px 0;
    font-family: Arial, sans-serif;
}

/* ===== TOP SMALL TITLE ===== */
.latest-article-gallery-page-subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
}

/* ===== UNDERLINE IMAGE ===== */
.latest-article-gallery-page-underline {
    width: 120px;
    margin-bottom: 20px;
}

/* ===== HEADER ROW ===== */
.latest-article-gallery-page-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

/* ===== MAIN TITLE ===== */
.latest-article-gallery-page-title {
    font-size: 40px;
    font-weight: 600;
    color: #0c2218;
    max-width: 600px;
}

/* ===== BUTTON ===== */
.latest-article-gallery-page-btn {
    padding: 12px 22px;
    border: 1px solid #0c8f4f;
    color: #0c8f4f;
    text-decoration: none;
    transition: 0.3s;
}

.latest-article-gallery-page-btn:hover {
    background-color: #0c8f4f;
    color: #fff;
}

/* ===== GRID ===== */
.latest-article-gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* ===== CARD ===== */
.latest-article-gallery-page-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

/* ===== DATE ===== */
.latest-article-gallery-page-date {
    font-size: 14px;
    margin: 10px 0;
    color: #666;
}

/* ===== CARD TITLE ===== */
.latest-article-gallery-page-card-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 35px;
}

/* ===== DESCRIPTION ===== */
.latest-article-gallery-page-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

/* ===== READ POST ===== */
.latest-article-gallery-page-read {
    font-size: 14px;
    text-decoration: none;
    color: #0c2218;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: 0.3s;
}

.latest-article-gallery-page-read:hover {
    border-bottom: 1px solid #0c2218;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .latest-article-gallery-page-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .latest-article-gallery-page-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .latest-article-gallery-page-title {
        font-size: 28px;
    }

    .latest-article-gallery-page-grid {
        grid-template-columns: 1fr;
    }
}

/* <!-- gallery page latest article section End --> */

/* <!-- leadership page start --> */
.leadership-page-section{
  max-width:1100px;
  margin:auto;
  padding:60px 20px;
}

/* TITLE */
.leadership-page-title{
  text-align:center;
  font-size:64px;
  font-weight:600;
  margin-bottom:60px;
}

/* ROW */
.leadership-page-row{
  display:flex;
  gap:40px;
  margin-bottom:70px;
  align-items:flex-start;
}

/* IMAGE */
.leadership-page-image{
  width:350px;
  min-width:280px;
}

.leadership-page-image img{
  width:100%;
  height:auto;
  display:block;
  border-radius:4px;
}

/* CONTENT */
.leadership-page-content{
  flex:1;
}

.leadership-page-name{
  font-size:20px;
  font-weight:700;
  margin-bottom:15px;
}

.leadership-page-desc{
  font-size:16px;
  line-height:1.7;
  color:#555;
  margin-bottom:15px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .leadership-page-row{
    flex-direction:column;
    align-items:center;
  }

  .leadership-page-image{
    width:100%;
    max-width:320px;
  }

  .leadership-page-content{
    text-align:left;
  }
}

@media(max-width:600px){
  .leadership-page-title{
    font-size:30px;
  }

  .leadership-page-name{
    font-size:18px;
  }

  .leadership-page-desc{
    font-size:13px;
  }
}

/* <!-- leadership page End --> */

/* <!-- blog page section start --> */
.blog-page-container{
    width:80%;
    margin:auto;
    padding:60px 0;
}

/* ===== HEADING ===== */
.blog-page-heading{
    text-align:center;
    margin-bottom:50px;
}

.blog-page-heading p{
    color:#6b6b6b;
    font-size:16px;
}

.blog-page-heading h2{
    font-size:48px;
    font-weight:600;
    color:#0b2d2d;
    line-height:1.3;
}

.blog-page-heading img{
    margin-top:12px;
}

/* ===== LAYOUT ===== */
.blog-page-wrapper{
    display:flex;
    gap:40px;
}

.blog-page-left{
    flex:3;
}

.blog-page-right{
    flex:1;
}

/* ===== GRID ===== */
.blog-page-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
}

/* ===== CARD ===== */
.blog-page-card{
    position:relative;
    overflow:hidden;
    cursor:pointer;
}

.blog-page-card img{
    width:100%;
    height:340px;
    object-fit:cover;
    transition:0.5s;
}

/* ZOOM */
.blog-page-card:hover img{
    transform:scale(1.08);
}

/* OVERLAY */
.blog-page-overlay{
    position:absolute;
    bottom:0;
    width:100%;
    padding:25px;
    color:#fff;
    background:linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}

/* DATE */
.blog-page-date{
    position:absolute;
    top:15px;
    left:20px;
    color:#fff;
    font-size:13px;
    font-weight:500;
}

/* TITLE */
.blog-page-overlay h3{
    font-size:20px;
    margin:10px 0;
    font-weight:700;
}

/* READ MORE */
.blog-page-read{
    color:#fff;
    text-decoration:none;
    font-size:13px;
    font-weight:600;
}

.blog-page-read:hover{
    color:#19a463;
}

/* ===== SIDEBAR ===== */
.blog-page-search input{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
}

.blog-page-search button{
    width:100%;
    margin-top:10px;
    padding:12px;
    background:#1f8f4c;   /* GREEN DEFAULT */
    color:#fff;
    border:none;
    font-weight:bold;
    cursor:pointer;
    transition:0.3s;
}

.blog-page-search button:hover{
    background:#000;   /* BLACK ON HOVER */
}

/* RECENT */
.blog-page-recent{
    margin-top:25px;
    background:#fff;
    padding:20px;
}

.blog-page-recent h3{
    font-size:24px;
    margin-bottom:20px;
}

/* POST ITEM */
.blog-page-post{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    align-items:flex-start;
}

.blog-page-post img{
    width:70px;
    height:70px;
    object-fit:cover;
}

/* TEXT */
.blog-page-post small{
    color:#777;
    display:block;
    font-size:12px;
}

.blog-page-post p{
    margin:5px 0 0;
    font-weight:600;
    font-size:14px;
}
.blog-page-post{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    text-decoration:none;
    color:#000;
    transition:0.3s;
}

.blog-page-post:hover{
    transform:translateX(5px);
}

.blog-page-post p:hover{
    color:#1f8f4c;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .blog-page-wrapper{
        flex-direction:column;
    }

    .blog-page-grid{
        grid-template-columns:1fr;
    }
}

/* <!-- blog page section End --> */

/* <!-- Find all the ways to reach us start --> */
.contact-page-hero {
  width: 100%;
  background: #e9e6e2;
  padding: 100px 20px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.contact-page-container {
  max-width: 900px;
  width: 100%;
}

/* SUBTITLE WRAPPER */
.contact-page-subtitle-wrap {
  display: inline-block;
  margin-bottom: 20px;
}

/* TEXT */
.contact-page-subtitle {
  font-size: 16px;
  color: #1f2d24;
  font-family: 'Inter', sans-serif;
  margin: 0;
}

/* SVG UNDERLINE */
.contact-page-underline {
  display: block;
  margin: 6px auto 0;
  width: 100px;   /* control size */
  height: auto;
}



/* TITLE */
.contact-page-title {
  font-size: 48px;
  font-weight: 700;
  color: #1f2d24;
  line-height: 1.2;
  margin-bottom: 20px;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

/* DESCRIPTION */
.contact-page-description {
  font-size: 18px;
  color: #5a6b60;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-page-title {
    font-size: 36px;
  }
}

@media (max-width: 576px) {
  .contact-page-title {
    font-size: 28px;
  }

  .contact-page-description {
    font-size: 15px;
  }

  .contact-page-underline {
    width: 60px;
  }
}
/* <!-- Find all the ways to reach us End --> */

/* <!-- KEY CONTACTS start --> */
/* SECTION BACKGROUND */
.contact-keycontact-section {
  width: 100%;
  background: #efede8;
  /* height: 450px; */
}

/* TITLE AREA */
.contact-keycontact-header {
  padding: 50px 80px;
  
}

.contact-keycontact-title {
  font-size: 34px;
  font-weight: 600;
  color: #0b2c2c;
  letter-spacing: 1px;
      text-align: center;

}

/* CONTACT STRIP */
.contact-keycontact-strip {
  background: #dedede;
  padding: 45px 20px;
}

/* GRID */
.contact-keycontact-grid {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ITEM */
.contact-keycontact-item {
  flex: 1;
  text-align: center;
}

.contact-keycontact-item h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #0b2c2c;
  font-weight: 600;
}

.contact-keycontact-item p {
  font-size: 15px;
  color: #000;
}

.contact-keycontact-item a {
  text-decoration: none;
  color: #000;
}

/* DIVIDER */
.contact-keycontact-divider {
  width: 1px;
  height: 50px;
  background: #2e5c5c;
}

/* RESPONSIVE */
@media (max-width: 768px) {

  .contact-keycontact-header {
    padding: 30px 20px;
    text-align: center;
  }

  .contact-keycontact-title {
    font-size: 26px;
  }

  .contact-keycontact-grid {
    flex-direction: column;
    gap: 25px;
  }

  .contact-keycontact-divider {
    display: none;
  }
}
/* <!-- KEY CONTACTS End --> */

/* <!-- conatct page LOCATIONS start --> */


/* GRID */
.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

/* ITEM */
/* .contact-location-item h3 {
  font-size: 14px;
  letter-spacing: 1px;
  color: #0b2b2c;
  margin-bottom: 15px;
}

.contact-location-item p {
  font-size: 14px;
  line-height: 1.8;
  color: #333;
  margin-bottom: 12px;
}

.contact-location-item a {
  font-size: 14px;
  color: #0a8f5b;
  text-decoration: none;
  font-weight: 500;
}

.contact-location-item a:hover {
  text-decoration: underline;
} */
 .contact-location-container {
  padding: 60px 20px;
  background: #e9e6e2;
  font-family: 'Segoe UI', sans-serif;
}

/* Heading */
.contact-location-heading {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 40px;
  letter-spacing: 1px;
  color: #1a1a1a;
}

/* Grid Layout */
.contact-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

/* Card */
.contact-location-item {
  background: #e0dcdc;
  padding: 25px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.3s ease;
}

.contact-location-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.1);
}

/* Title */
.contact-location-item h3 {
  margin-bottom: 18px;
  font-size: 18px;
  color: #4a6cf7;
  font-weight: 600;
}

/* Contact Item */
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Icon + Text Row */
.contact-location-item .icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 12px;
}

/* Icons */
.icon i {
  color: #4a6cf7;
  font-size: 16px;
  margin-top: 3px;
  min-width: 18px;
}

/* Links */
.icon a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.icon a:hover {
  color: #4a6cf7;
}

/* Phone style (separate row fix) */
.contact-location-item > i.fa-phone {
  margin-right: 10px;
  color: #4a6cf7;
}

.contact-location-item > a {
  color: #444;
  text-decoration: none;
}

.contact-location-item > a:hover {
  color: #4a6cf7;
}

/* Better spacing for phone row */
.contact-location-item > i.fa-phone,
.contact-location-item > a {
  display: inline-block;
  margin-top: 10px;
}

/* Responsive */
@media (max-width: 480px) {
  .contact-location-heading {
    font-size: 22px;
  }

  .contact-location-item {
    padding: 20px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .contact-location-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-location-heading {
    font-size: 26px;
  }
}

/* MOBILE */

/* <!-- conatct page LOCATIONS End --> */

/* <!-- conatct page Form Start --> */

/* SECTION */
.contact-form-section {
  background: #eae6df;
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

/* CONTAINER */
.contact-form-container {
  background: #f6f6f6;
  padding: 60px 40px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* SUBTITLE */
.contact-form-subtitle {
  font-size: 16px;
  color: #1c3b2b;
  margin-bottom: 10px;
  position: relative;
}

.contact-form-subtitle img {
  display: block;
  margin: 6px auto 0;
  width: 80px;
}

/* TITLE */
.contact-form-title {
  font-size: 48px;
  font-weight: 700;
  color: #0f2f23;
  margin-bottom: 40px;
}

/* FORM */
.contact-form-form {
  width: 100%;
}

/* ROW */
.contact-form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

/* INPUT */
.contact-form-input {
  flex: 1;
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 15px;
  outline: none;
  transition: 0.3s;
}

.contact-form-input:focus {
  border-color: #1c7c45;
}

/* TEXTAREA */
.contact-form-textarea {
  width: 100%;
  height: 150px;
  padding: 14px;
  border: 1px solid #ccc;
  font-size: 15px;
  margin-bottom: 25px;
  outline: none;
  resize: none;
}

.contact-form-textarea:focus {
  border-color: #1c7c45;
}

/* BUTTON */
.contact-form-btn {
  width: 100%;
  background: #1c7c45;
  color: #fff;
  border: none;
  padding: 16px;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 0.3s;
}

/* HOVER EFFECT */
.contact-form-btn:hover {
  background: #000;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 40px 20px;
  }

  .contact-form-title {
    font-size: 32px;
  }

  .contact-form-row {
    flex-direction: column;
  }
}
 /* <!-- conatct page Form End --> */
