/* =========================
   RESET
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* =========================
   BODY
========================= */

body{
  font-family:Arial,sans-serif;
  background:#f5fff5;
  color:#333;
  line-height:1.7;
  overflow-x:hidden;
}

/* =========================
   GLOBAL
========================= */

html{
  scroll-behavior:smooth;
}

img{
  max-width:100%;
  display:block;
}

a{
  transition:0.3s;
}

/* =========================
   HEADER
========================= */
header{
  background:#1b8f3c;
  color:white;
  box-shadow:0 2px 10px rgba(0,0,0,0.1);
}
/* TOP HEADER */

.top-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  padding:15px 20px;
}
/* LOGO AREA */

.logo-area{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}

.logo-area img{
  width:80px;
  height:auto;
  border-radius:12px;
  object-fit:contain;
}

.site-title h1{
  font-size:28px;
  line-height:1.2;
}

.site-title p{
  font-size:14px;
}
/* =========================
   NAVIGATION
========================= */
nav{
  background:#14692d;
  display:flex;
  justify-content:center;
  align-items:center;
  flex-wrap:wrap;
  padding:12px;
  position:relative;
  z-index:10;
}
nav a{
  color:white;
  text-decoration:none;
  margin:8px 12px;
  font-weight:bold;
  font-size:15px;
}

nav a:hover{
  color:yellow;
}

/* =========================
   HERO SECTION
========================= */

.hero{
  background:url('slide1.jpg') center/cover no-repeat;
  min-height:600px;
  position:relative;
  overflow:hidden;
}

.hero-overlay{
  background:rgba(0,0,0,0.65);
  min-height:600px;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding:20px;
}

.hero-content{
  max-width:850px;
  color:white;
}

.hero-tag{
  display:inline-block;
  background:#1b8f3c;
  padding:10px 18px;
  border-radius:50px;
  margin-bottom:20px;
  font-weight:bold;
}

.hero-content h2{
  font-size:52px;
  line-height:1.3;
  margin-bottom:25px;
}

.hero-content p{
  font-size:20px;
  margin-bottom:30px;
}

/* HERO BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

/* =========================
   BUTTONS
========================= */

.btn,
.white-btn,
.outline-btn{
  display:inline-block;
  padding:14px 28px;
  border-radius:8px;
  text-decoration:none;
  font-weight:bold;
  transition:0.3s;
  cursor:pointer;
}

.btn{
  background:#1b8f3c;
  color:white;
}

.btn:hover{
  background:#14692d;
  transform:translateY(-3px);
}

.white-btn{
  background:white;
  color:#1b8f3c;
}

.white-btn:hover{
  background:#f1f1f1;
}

.outline-btn{
  border:2px solid white;
  color:white;
}

.outline-btn:hover{
  background:white;
  color:#1b8f3c;
}

/* =========================
   SECTION
========================= */

.section{
  padding:70px 20px;
  text-align:center;
}

.section h2{
  color:#1b8f3c;
  margin-bottom:20px;
  font-size:36px;
}

.section p{
  max-width:900px;
  margin:auto;
}

.bg-light{
  background:#ffffff;
}

/* =========================
   CARDS
========================= */

.cards{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:25px;
  max-width:1200px;
  margin:40px auto 0;
}

.card{
  background:white;
  padding:25px;
  border-radius:16px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
  transition:0.3s;
}

.card:hover{
  transform:translateY(-8px);
}

.card img{
  border-radius:12px;
  margin-bottom:15px;
}

.card h3{
  color:#1b8f3c;
  margin-bottom:12px;
  font-size:24px;
}

/* =========================
   BANNER
========================= */

.banner-section{
  background:#1b8f3c;
  color:white;
  text-align:center;
  padding:70px 20px;
}

.banner-section h2{
  font-size:40px;
  margin-bottom:20px;
}

.banner-section p{
  margin-bottom:25px;
  font-size:18px;
}

/* =========================
   CONTACT
========================= */

.section strong{
  color:#1b8f3c;
}

/* CONTACT FORM */

.contact-form{
  max-width:600px;
  width:100%;
  margin:30px auto 0;
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  padding:14px;
  border:1px solid #ccc;
  border-radius:8px;
  font-size:16px;
}

.contact-form textarea{
  min-height:150px;
  resize:vertical;
}

/* =========================
   BLOG POST
========================= */

.blog-post{
  max-width:900px;
  margin:auto;
  text-align:left;
  background:white;
  padding:30px;
  border-radius:15px;
  box-shadow:0 5px 15px rgba(0,0,0,0.08);
}

.blog-post h1,
.blog-post h2,
.blog-post h3{
  color:#1b8f3c;
  margin-bottom:15px;
}

.blog-post p{
  margin-bottom:20px;
}

/* =========================
   ADSENSE BOX
========================= */

.adsense-box{
  background:#ffffff;
  border:2px dashed #1b8f3c;
  padding:30px;
  margin:40px auto;
  max-width:1200px;
  text-align:center;
  border-radius:12px;
}

.adsense-box h3{
  color:#1b8f3c;
  margin-bottom:10px;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp{
  position:fixed;
  right:20px;
  bottom:20px;
  background:#25D366;
  color:white;
  text-decoration:none;
  padding:14px 22px;
  border-radius:50px;
  font-weight:bold;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
  z-index:999;
}

/* =========================
   FOOTER
========================= */

footer{
  background:#14692d;
  color:white;
  text-align:center;
  padding:35px 20px;
}

footer p{
  margin-bottom:10px;
}

footer a{
  color:white;
  text-decoration:none;
}

footer a:hover{
  text-decoration:underline;
}

/* =========================
   MOBILE RESPONSIVE
========================= */

@media(max-width:768px){

.top-header{
  flex-direction:column;
  text-align:center;
  gap:45px;
}

.logo-area{
  flex-direction:column;
}

.logo-area img{
  width:5px;
}

.site-title h1{
  font-size:24px;
}

nav{
  flex-direction:column;
}

nav a{
  margin:10px 0;
}

.hero{
  min-height:500px;
}

.hero-overlay{
  min-height:500px;
}

.hero-content h2{
  font-size:32px;
}

.hero-content p{
  font-size:16px;
}

.section{
  padding:50px 15px;
}

.section h2{
  font-size:28px;
}

.banner-section h2{
  font-size:30px;
}

.cards{
  grid-template-columns:1fr;
}

.whatsapp{
  padding:12px 18px;
  font-size:14px;
}

}
/* LOGO IMAGE */
.logo-area img{
    width: 45px;
    height: auto;
}

/* MOBILE RESPONSIVE */
@media screen and (max-width: 768px){

    .logo-area img{
        width: 45px;   /* মোবাইলে ছোট হবে */
        height: auto;
    }

    .site-title h1{
        font-size: 18px;
    }

    .site-title p{
        font-size: 11px;
    }

}
@media screen and (max-width: 768px){

    .logo-area img{
        max-width: 45px !important;
        width: 45px !important;
        height: auto !important;
    }

}
/* ===== HEADER ===== */

header{
width:100%;
background:#1f8f3c;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

/* TOP HEADER */

.top-header{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 20px;
flex-wrap:wrap;
}

/* LOGO AREA */

.logo-area{
display:flex;
align-items:center;
gap:12px;
}

.logo-area img{
width:55px;
height:55px;
border-radius:50%;
object-fit:cover;
background:white;
padding:3px;
}

/* SITE TITLE */

.site-title h1{
color:white;
font-size:42px;
margin:0;
font-weight:bold;
}

.site-title p{
color:white;
margin-top:4px;
font-size:18px;
}

/* GOOGLE TRANSLATE */

#google_translate_element{
transform:scale(0.85);
transform-origin:top right;
}

.goog-te-gadget{
font-size:12px !important;
color:white !important;
}

/* NAVBAR */

.navbar{
background:#0d5f27;
padding:0 20px;
position:sticky;
top:0;
z-index:999;
}

.nav-list{
display:flex;
flex-wrap:wrap;
list-style:none;
margin:0;
padding:0;
gap:18px;
}

.nav-list li{
padding:15px 0;
}

.nav-list li a{
color:white;
text-decoration:none;
font-weight:600;
font-size:16px;
transition:0.3s;
}

.nav-list li a:hover{
color:#ffd700;
}

/* MOBILE MENU BUTTON */

.menu-toggle{
display:none;
font-size:28px;
color:white;
padding:12px 0;
cursor:pointer;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.top-header{
flex-direction:column;
align-items:flex-start;
gap:12px;
}

.logo-area img{
width:42px;
height:42px;
}

.site-title h1{
font-size:24px;
}

.site-title p{
font-size:13px;
}

.menu-toggle{
display:block;
}

.nav-list{
display:none;
flex-direction:column;
width:100%;
gap:0;
}

.nav-list.active{
display:flex;
}

.nav-list li{
border-top:1px solid rgba(255,255,255,0.1);
padding:12px 0;
}

}
/* GOOGLE TRANSLATE SMALL BOX */

.translate-box {
  margin-left: 15px;
}

#google_translate_element {
  transform: scale(0.85);
  transform-origin: right top;
}

/* Hide Google top bar */

.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Translate dropdown style */

.goog-te-gadget {
  font-size: 12px !important;
}

.goog-te-combo {
  padding: 4px 6px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 12px;
  cursor: pointer;
}

/* MOBILE */

@media(max-width:768px) {

  .top-header {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .translate-box {
    margin-left: 0;
  }

  #google_translate_element {
    transform: scale(0.80);
  }

}
/* GOOGLE TRANSLATE */

.translate-box {
  display: flex;
  align-items: center;
}

#google_translate_element {
  zoom: 0.85;
}

.goog-te-combo {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 12px;
}

/* Hide top translate bar */

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}
/* =========================
   GOOGLE TRANSLATE FIX
========================= */

.translate-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Small Translate Box */

#google_translate_element {
  zoom: 0.85;
}

/* Dropdown Design */

.goog-te-combo {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 12px;
  cursor: pointer;
}

/* Hide Google Top Bar */

.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

/* Hide Google Translate Text */

.goog-logo-link {
  display: none !important;
}

.goog-te-gadget {
  color: transparent !important;
  font-size: 0px;
}

/* MOBILE FIX */

@media(max-width:768px) {

  .top-header {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  #google_translate_element {
    zoom: 0.80;
  }

}
/* Google Translate hover/active remove */

.goog-te-gadget span,
.goog-te-gadget a,
.goog-te-menu-value {
  text-decoration: none !important;
  border: none !important;
}

/* Remove highlight effect */

.goog-te-combo option {
  background: white !important;
  color: black !important;
}

/* Prevent weird hover highlight */

body * {
  outline: none !important;
}

/* Optional: remove translate induced highlight */
.goog-text-highlight {
  background: none !important;
  box-shadow: none !important;
}


