 .main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(
    to bottom,
    rgba(53, 53, 53, 0.85) 0%,
    rgba(43, 43, 43, 0.6) 50%,
    rgba(148, 148, 148, 0) 100%
  );
  z-index: 1000;
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 66px;
  margin-bottom: 0px;
}

.social-icons {
  display: flex;
  gap: 20px;
  margin-bottom: -10px;
}

.social-icons a img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2) saturate(1.3);
}

/* ======= BOTTOM ROW (LOGO + NAV) ======= */
.header-bottom {
  width: 100%;
  max-width: 1400px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  /* margin-right: 50px; */
}
.header-bottom img{
  height: 50px;
}

/* Logo */
.logo img {
  height: 80px;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.15);
}

/* Navigation */
.main-nav {
  display: flex;
  /* justify-content: center; */
  flex-wrap: nowrap;
  /* align-items: center; */
}
.main-nav a img{
  display: none;
}
  
.main-nav a {
  position: relative;   /* 👈 VERY IMPORTANT */
  display: inline-block; /* 👈 fix alignment issue */
  padding: 5px;
  margin: 0 3px;
  color: #fff;
  text-decoration: none;
  font-family: 'AktivGrotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, color 0.3s ease;
}

/* underline */
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;              /* 👈 element ke niche start */
  bottom: -3px;
  width: 0%;
  height: 2px;
  /* background: #ff7a00; */
  transition: width 0.3s ease;
}

/* hover */
.main-nav a:hover {
  background: rgba(238, 238, 238, 0.2);
  border-radius: 5px;
  transform: scale(1.05);
}

/* underline animation */
.main-nav a:hover::after {
  width: 100%;
}
.dropdown-arrow{
  display: none;
}
.dropdown-arrow1{
  display: none;
}
/* ======== SCROLL HIDE ANIMATION ======== */
 .main-header { transition: transform 0.4s ease-in-out; }
/* ======= RESPONSIVE ======= */
@media (max-width: 1024px) {

.main-nav {
  position: fixed;
  top: 0;
  left: 0;   /*  left side */
  transform: translateX(-100%);   /*  screen ke bahar (left) */
  width: 70%;
  height: 100vh;  
  background: rgba(34, 34, 34, 1);
  flex-direction: column;
  /* align-items: center;
  justify-content: center; */
  transition: transform 0.4s ease;
  z-index: 999;
}

/* OPEN state */
.main-nav.open {
  transform: translateX(0);   /*  left se slide hoke andar */
}
 

  .main-nav a {
    margin: 6px 10px;
    font-size: 0.85rem;
  }

  .logo img {
    height: 55px;
  }

  .header-top {
    padding-right: 70px;
    display: none;
  }

  .social-icons a img {
    width: 22px;
  }
}

/* ======== SCROLL HIDE ANIMATION ======== */
.main-header {
  transition: transform 0.4s ease-in-out;
}

/* ----------------------------------
   HAMBURGER (mobile)
---------------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor:pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: #fff;
}

.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }


@media (max-width: 1024px) {
.dropdown-menu,
.dropdown .dropdown-menu {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: transparent !important;
}

/* Remove desktop hover gap */
.dropdown:hover > .dropdown-menu {
  opacity: 1 !important;
  transform: none !important;
}

/* FIX GAP: reset margins/padding */
.dropdown-menu a {
  margin: 0 !important;
  padding: 10px 10px !important;
  color: #fff !important;
  display: block !important;
}

/* Accordion height animation */
.dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 !important;
}

/* Expanded */
.dropdown.open > .dropdown-menu {
  max-height: 600px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* NESTED SUBMENU (CSR) FIX */
.dropdown .dropdown {
  padding-left: 14px;
  border: none !important;
}

.dropdown .dropdown.open > .dropdown-menu {
  max-height: 400px;
}
.hamburger{
  display:flex;
}
.dropdown-arrow {
  background: transparent;
        border: none;
        padding: 5px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fafafa;
}

/* Prevent desktop dropdown absolute stacking */
.dropdown-menu1,
.dropdown1 .dropdown-menu1 {
  position: relative !important;
  left: 0 !important;
  top: 0 !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
  background: transparent !important;
}
.dropdown1{
  position: relative;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
/* Remove desktop hover gap */
.dropdown1:hover > .dropdown-menu1 {
  opacity: 1 !important;
  transform: none !important;
}

/* FIX GAP: reset margins/padding */
.dropdown-menu1 a {
  margin: 0 !important;
  padding: 10px 10px !important;
  color: #fff !important;
  display: block !important;
}

/* Accordion height animation */
.dropdown-menu1 {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 !important;
}

/* Expanded */
.dropdown1.open > .dropdown-menu1 {
  max-height: 600px;
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

/* NESTED SUBMENU (CSR) FIX */
.dropdown1 .dropdown1 {
  padding-left: 14px;
  border: none !important;
}

.dropdown1 .dropdown1.open > .dropdown-menu1 {
  max-height: 400px;
}

.dropdown-arrow1 {
  background: transparent;
        border: none;
        padding: 5px;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: #fafafa;
}

.caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: 0.25s ease;
}

}

.site-footer {
    color: #ddd;
    padding: 60px 0 30px;
    font-family: 'Poppins', sans-serif;
}



/* ===== COLUMNS ===== */
.footer-col h4 {
    color: #fff;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 8px;
}



/* ===== CONTACT FORM ===== */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
    border: none;
    outline: none;
    background: #f7f7f7;
    color: #474747;
    font-size: 14px;
    transition: 0.3s;
}

/* focus effect */
.contact-form input:focus,
.contact-form textarea:focus {
    /* border: 1px solid #ff4b14; */
    background: #e4e4e4;
}

/* button */
.contact-form button {
    background: linear-gradient(135deg, #ff4b14, #ff9a3c);
    border: none;
    padding: 10px;
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    /* transition: 0.3s; */
}

/* hover */
.contact-form button:hover {
    /* transform: translateY(-2px); */
    box-shadow: 0 5px 15px rgba(255,75,20,0.4);
}

/* ===== ICON STYLE ===== */
.footer-col i {
    margin-right: 8px;
    color: #ff4b14;
}
   
/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .site-footer {
        text-align: center;
    }
    .main-nav{
      padding-top: 5%;
    }
    .main-nav a {
  position: relative;   /* 👈 VERY IMPORTANT */
  display: block; /* 👈 fix alignment issue */
  padding: 10px;
  border-bottom: 1px solid #353535;
  text-decoration:none;
  margin: 5px;
  color: #fff;
  text-decoration: none;
  font-family: 'AktivGrotesk', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  transition: transform 0.3s ease, color 0.3s ease;
}
.main-nav a img {
  display: block;
  margin: 0 auto;   /* 👈 center */
  height:100px;
}

/* underline */
.container{
  padding: 10px;
}

}


.site-footer{
  /* background:linear-gradient(135deg,#111,#1b1b1b,#0f0f0f); */
  background: #2b717e;
  color:#ddd;
  padding:70px 20px 25px;
  font-family:'Poppins',sans-serif;
}
/* Main Grid */
.footer-container{   
  max-width:1300px;
  margin:auto;  
  display:grid;  
  grid-template-columns:2fr 1fr 1fr 1fr; 
  gap:45px;  
  }
    /* Columns */
  .footer-col h3,.footer-col h4{
  color:#fff;  
  margin-bottom:22px; 
  font-size:22px;  
  font-weight:700; 
  position:relative;
  display: inline-block;
  
  }
.footer-col h4{
  font-size:20px;
}
    /* underline */
.footer-col h3::after,.footer-col h4::after{  
  content:""; 
  position:absolute;   
  left:0;   
  bottom:-8px; 
  width:100%;
  height:3px;
  background:#8bc34a; 
  border-radius:20px;
  }
   /* Text */
  .footer-col p{   
  color:#cfcfcf; 
  line-height:1.9;  
  font-size:15px;   
  margin-bottom:12px;
  }
    /* Icons */
  .footer-col p i{ 
  color:#8bc34a;  
  margin-right:10px;  
  width:18px;
  }
    /* Links */
  .footer-col ul{  
  list-style:none;
  padding:0; 
  margin:0;
  }
  .footer-col ul li{  
  margin-bottom:14px;
  }

  .footer-col ul li a {
  position: relative;
  text-decoration: none;
   color:#d7d7d7;  
}
  .footer-col ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0%;
  height: 2px;
  background-color: #a3da65; /* change color */
  transition: width 0.3s ease;
}

.footer-col ul li a:hover::after {
  width: 100%;
}
  /* .footer-col ul li a:hover {
    color: #8bc34a;
    padding-left: 6px;
  } */
  .footer-dropdown {
    position: relative;
  }

  .footer-dropdown>a {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .footer-dropdown-menu{ 
  list-style:none;  
  padding-left:15px; 
  margin-top:10px;
  }
  .footer-dropdown-menu li{ 
  margin-bottom:10px;
  }
  .footer-dropdown-menu a{ 
  font-size:14px;
  color:#cfcfcf;
  }
  .footer-dropdown-menu a:hover{  
  color:#8bc34a;
  }
  .footer-subscribe{ 
  max-width:1300px;   
  margin:45px auto 0;  
  display:grid;   
  grid-template-columns:1fr 1fr 1fr auto;  
  gap:18px;   
  align-items:center;
  }
  .footer-subscribe input{  
  height:52px;  
  border:none; 
  outline:none;
  border-radius:10px;  
  padding:0 18px;  
  background:#fff;  
  font-size:15px;
  }
  .footer-subscribe input:focus{ 
   box-shadow:0 0 0 2px #8bc34a;
  }
    /* Button */
  .subscribe-btn{ 
  height:52px; 
  padding:0 28px;  
  border:none; 
  border-radius:10px;  
  background:#8bc34a; 
  color:#fff;   
  font-size:15px;
  font-weight:600;  
  cursor:pointer; 
  transition:.3s ease;
  }
  .subscribe-btn:hover{ 
  background:#73a635;  
  transform:translateY(-2px);
  }
  .footer-bottom{
  text-align:center;   
  margin-top:35px; 
  padding-top:20px; 
  /* border-top:1px solid rgba(255,255,255,0.06); */
  /* border-top: 2px solid rgb(128, 128, 128); */
  }
 .footer-bottom hr {
  border: none;
  height: 1px;
  background: rgba(255, 255, 255, 0.3); /* visible line */
  margin: 20px auto;
  width: 100%;
  max-width: 1000px;
}
  .footer-bottom p{  
  color:#aaa;
  font-size:14px;   
  letter-spacing:.3px;
  }
  
  @media(max-width:1024px){
  .footer-container{
  grid-template-columns:1fr 1fr;  
  gap:35px;
  }
  .footer-subscribe{ 
  grid-template-columns:1fr 1fr;
  }
  .subscribe-btn{   
  width:100%;
  }
  }
  @media(max-width:768px){
  .site-footer{  
  padding:55px 18px 20px;
  }
  .footer-container{ 
  grid-template-columns:1fr;
  gap:28px;
  }
  .footer-col h3,.footer-col h4{ 
  font-size:20px;
  }
  .footer-subscribe{ 
  grid-template-columns:1fr;
  gap:14px;  
  margin-top:35px;
  }
  .footer-subscribe input,.subscribe-btn{
  width:100%;
  }
  .footer-bottom{  
  margin-top:28px;
  }
  }
              
  @media(max-width:480px){
  .footer-col p,.footer-col ul li a{ 
  font-size:14px;
  }
  .footer-bottom p{  
  font-size:13px;
  }
  }
/* FOOTER FORM ALERTS */
.footer-success{
  background: rgba(34,197,94,0.12);
  color: #e2e2e2;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-error{
  background: rgba(239,68,68,0.12);
  color: #ef4444;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
}