:root {
  --primary-green: rgb(0 78 82);
  --secondary-green: rgb(0 78 82);
  --dark-green: #006400;
  --light-green: #90ee90;
  --text-dark: #1a1a1a;
  --white: #ffffff;
  --light-bg: #f8fffe;
}

.logo-img {
  height: 60px;
  width: auto;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
  color: var(--text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.board-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}
.card {
  overflow: hidden;
}

.card-img-top {
  transition: transform 0.5s ease, opacity 0.5s ease;
  aspect-ratio: 7/8;
  object-fit: cover;
}

.card:hover .card-img-top {
  transform: scale(1.1); /* Zoom-in effect */
  opacity: 0.9; /* Slight fade for effect */
}

@media (min-width: 1600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1600px;
  }
}
/* /* @media (min-width: 1800px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1800px;
  } 

  
} */

@media (min-width: 2600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 2000px;
  }
}
/* @media (min-width: 2600px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 2600px;
  }

} */
/* Top Section - Contact Info */
.top-section {
  background: linear-gradient(
    135deg,
    var(--dark-green) 0%,
    var(--primary-green) 100%
  );
  color: var(--white);
  padding: 8px 0;
  font-size: 16px;
}

.top-section a {
  color: var(--white);
  text-decoration: none;
  margin-right: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.top-section a:hover {
  color: var(--light-green);
  transform: translateY(-1px);
}

.top-section a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--light-green);
  transition: width 0.3s ease;
}

.top-section a:hover::after {
  width: 100%;
}

.language-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}

/* Custom Language Dropdown */
.language-dropdown-custom {
  position: relative;
}

.language-dropdown-toggle {
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 0px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
  min-width: 140px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.language-dropdown-toggle:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.language-dropdown-toggle:focus {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.language-dropdown-toggle .fas {
  transition: transform 0.3s ease;
  font-size: 12px;
  color: var(--white);
}

.language-dropdown-custom.active .language-dropdown-toggle .fas {
  transform: rotate(180deg);
}

.language-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-radius: 0px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  min-width: 160px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 9999;
  list-style: none;
  padding: 8px 0;
  backdrop-filter: blur(10px);
}

.language-dropdown-custom.active .language-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  color: var(--dark-green);
  font-size: 14px;
  font-weight: 500;
  margin: 0 4px;
  border-radius: 0px;
}

.language-option:hover {
  background: rgba(46, 139, 87, 0.1);
  color: var(--primary-green);
}

.language-option.selected {
  background: var(--primary-green);
  color: var(--white);
}

.language-option .lang-text {
  flex: 1;
}

/* Middle Section - Logo and Project Name */
.middle-section {
  background: linear-gradient(135deg, var(--white) 0%, var(--light-bg) 100%);
  padding: 8px 0;
  border-bottom: 1px solid #e0f2e0;
}

.logo-text h1 {
  font-size: 20px;
  color: var(--primary-green);
  margin: 0;
  line-height: 1.2;
}

.logo-text p {
  font-size: 12px;
  color: #666;
  margin: 2px 0 0 0;
  line-height: 1.2;
}

/* Logo hover effects - only for right side logos */
.tnccm-logo,
.tn-logo {
  filter: grayscale(100%);
  transition: filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tnccm-logo:hover {
  filter: grayscale(0%);
}

.tn-logo:hover {
  filter: grayscale(0%);
}

.navbar-nav .nav-link.active {
  color: #fff;
}

.payment-btn {
  background: var(--primary-green);
  color: #fff;
  text-decoration: none;
  padding: 7px 15px 6px;
  font-size: 1em;
  font-weight: 600;
  text-transform: uppercase;
}
.navbar-expand-lg .navbar-nav {
  gap: 20px;
}

.tamil-lang .bottom-section .navbar-expand-lg .navbar-nav {
  gap: 0px;
}
/* Bottom Section - Navigation */
/* Tamil language navigation links in header */
.tamil-lang .bottom-section .navbar .nav-link,
.tamil-lang .bottom-section .navbar .dropdown-item,
.tamil-lang .bottom-section .navbar .nav-link:hover,
.tamil-lang .bottom-section .navbar .dropdown-item:hover {
  font-size: 0.7em !important;
  padding: 5px 10px !important;
}
.tamil-lang .bottom-section .navbar .payment-btn {
  font-size: 0.7em;
}
.tamil-lang .bottom-section .navbar .btn-outline-custom,
.tamil-lang .bottom-section .navbar .btn-primary-custom {
  font-size: 0.7em !important;
}
.tamil-lang .middle-section .header-parah {
  font-size: 1em !important;
}
.tamil-lang .member-name {
  font-size: 1.1rem !important;
}
.tamil-lang .member-info p {
  font-size: 0.7rem !important;
}

@media screen and (max-width: 1390px) {
  .tamil-lang .bottom-section .navbar .nav-link,
  .tamil-lang .bottom-section .navbar .dropdown-item,
  .tamil-lang .bottom-section .navbar .nav-link:hover,
  .tamil-lang .bottom-section .navbar .dropdown-item:hover {
    font-size: 0.6rem !important;
    padding: 5px 10px !important;
  }
  .tamil-lang .bottom-section .navbar .btn-outline-custom,
  .tamil-lang .bottom-section .navbar .payment-btn {
    font-size: 0.6rem !important;
  }
  .tamil-lang .bottom-section .navbar-expand-lg .navbar-nav {
    gap: 0px;
  }
}

@media screen and (max-width: 1200px) {
  .tamil-lang .bottom-section .navbar .nav-link,
  .tamil-lang .bottom-section .navbar .dropdown-item,
  .tamil-lang .bottom-section .navbar .nav-link:hover,
  .tamil-lang .bottom-section .navbar .dropdown-item:hover {
    font-size: 0.4rem !important;
    padding: 5px 10px !important;
  }
  .tamil-lang .bottom-section .navbar .btn-outline-custom,
  .tamil-lang .bottom-section .navbar .payment-btn {
    font-size: 0.4rem !important;
  }
  .tamil-lang .bottom-section .navbar-expand-lg .navbar-nav {
    gap: 0px;
  }
  .navbar-expand-lg .navbar-nav {
  gap: 5px;
}

}

.bottom-section {
  background: linear-gradient(135deg, var(--white) 0%, rgb(248 255 254) 100%);
  box-shadow: 0 4px 9px rgb(25 59 25 / 29%);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-link {
  color: var(--text-dark);
  font-size: 0.9em;
  font-weight: 600;
  padding: 5px 15px;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 0px;
  margin: 0 2px;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  opacity: 0.1;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--primary-green);
  transform: translateY(-2px);
  background: #fff;
}

.nav-link:hover::before {
  left: 0;
  opacity: 0.05;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link.active {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
  transform: translateY(-1px);
  border-radius: 0;
}

.nav-link.active::before {
  left: 0;
  opacity: 0;
}

.nav-link.active::after {
  width: 0;
}

/* Dropdown arrow indicators - only for underline, not arrow */
.dropdown-toggle::after {
  content: "" !important;
  /* Override Bootstrap's default arrow */
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
  /* Remove any font-family or font-weight that might create arrow */
  font-family: inherit !important;
  font-weight: inherit !important;
  /* Override Bootstrap's default arrow styling */
  border: none !important;
  margin: 0 !important;
  vertical-align: unset !important;
}

.dropdown.show .dropdown-toggle::after {
  width: 0;
  /* No underline when dropdown is open */
}

/* Restore underline effect for dropdown menus */
.dropdown-toggle:hover::after {
  width: 80%;
}

.dropdown-toggle.active::after {
  width: 0;
}

/* Arrow rotation for explicit Font Awesome icons */
.dropdown-toggle .fas.fa-chevron-down {
  transition: transform 0.3s ease;
}

.dropdown.show .dropdown-toggle .fas.fa-chevron-down {
  transform: rotate(180deg);
}

/* Mobile dropdown arrow rotation */
.mobile-dropdown-toggle .fas.fa-chevron-down {
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle .fas.fa-chevron-down {
  transform: rotate(180deg);
}

.btn-primary-custom {
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  color: var(--white);
  border: none;
  padding: 5px 15px 0;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
  position: relative;
  overflow: hidden;
}

.btn-primary-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-primary-custom:hover {
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

.btn-primary-custom:hover::before {
  left: 0;
}

.btn-outline-custom {
  background: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 5px 15px;
  font-size: 1em;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

/* .btn-outline-custom::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
} */

.btn-outline-custom:hover {
  color: #000;
  border-color: var(--primary-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.btn-outline-custom:hover::before {
  left: 0;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  border: none;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: 0px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

.mobile-menu-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 139, 87, 0.3);
}

.mobile-nav {
  display: none;
  background: linear-gradient(
    135deg,
    var(--white) 0%,
    rgba(248, 255, 254, 0.95) 100%
  );
  border-top: 1px solid var(--border-color);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.15);
  border-radius: 0 0 12px 12px;
  overflow: hidden;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-nav.active {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 15px 25px;
  border-bottom: 1px solid rgba(46, 139, 87, 0.1);
  text-align: center;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.mobile-nav .nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
  transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
  opacity: 0.1;
}

.mobile-nav .nav-link:hover {
  color: var(--primary-green);
  background: rgba(46, 139, 87, 0.05);
  transform: translateX(5px);
}

.mobile-nav .nav-link:hover::before {
  left: 0;
  opacity: 0.05;
}

.mobile-nav .nav-link.active {
  color: var(--white);
  background: linear-gradient(
    135deg,
    var(--primary-green),
    var(--secondary-green)
  );
}

.mobile-nav .nav-link:last-child {
  border-bottom: none;
}

.mobile-nav .btn-primary-custom,
.mobile-nav .btn-outline-custom {
  display: block;
  margin: 12px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.2);
}

/* Mobile Dropdown Styles */
.mobile-dropdown {
  border-bottom: 1px solid rgba(46, 139, 87, 0.1);
}

.mobile-dropdown-toggle {
  position: relative;
  cursor: pointer;
}

.mobile-dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

.mobile-dropdown.active .mobile-dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.mobile-dropdown-menu {
  display: none;
  background: rgba(46, 139, 87, 0.05);
  padding-left: 20px;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-dropdown-menu .nav-link {
  padding: 8px 15px;
  font-size: 13px;
  border-bottom: 1px solid rgba(46, 139, 87, 0.05);
}

.mobile-dropdown-menu .nav-link:last-child {
  border-bottom: none;
}

/* Mobile-specific CSS - Remove all underlines and arrows */
.mobile-nav .nav-link::after,
.mobile-nav .nav-link:hover::after,
.mobile-nav .nav-link.active::after,
.mobile-dropdown-toggle::after,
.mobile-dropdown-toggle:hover::after,
.mobile-dropdown.active .mobile-dropdown-toggle::after,
.mobile-nav .dropdown-toggle::after {
  display: none !important;
  content: none !important;
  width: 0 !important;
  height: 0 !important;
  background: none !important;
  border: none !important;
  margin: 0 !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  position: static !important;
  left: auto !important;
  bottom: auto !important;
  transform: none !important;
  border-radius: 0 !important;
  transition: none !important;
}

.header-heading {
  font-size: 2em;
  color: var(--primary-green);
  margin: 0;
  line-height: 1;
}
.page-header {
  background: linear-gradient(rgb(0 0 0 / 16%), rgba(0, 0, 0, 0.6)),
    url(../assets/images/banners1.jpeg) no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  color: white;
  padding: 50px 0;
  text-align: center;
  position: relative;
}

.page-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
}
.tamil-lang .page-header h1 {
  font-size: 2.2rem;
  font-weight: 700;
}

@media screen and (max-width: 1401px) {
  .btn-primary-custom {
    font-size: 0.9rem !important;
  }
  .nav-link {
    font-size: 0.8rem !important;
    padding: 5px 10px;
  }
}
/* Responsive Design */
/* Mobile Menu Styles */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -300px;
  width: 300px;
  height: 100vh;
  background: #fff;
  padding: 20px;
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1050;
  transition: left 0.3s ease-in-out;
  overflow-y: auto;
}

.mobile-nav.show {
  left: 0;
}

/* Overlay when menu is open */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
}

.mobile-nav-overlay.show {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 10px 15px;
  margin: 5px 0;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.mobile-nav .nav-link:hover,
.mobile-nav .nav-link.active {
  background-color: rgba(0, 78, 82, 0.1);
  color: var(--primary-green);
}

.mobile-dropdown {
  position: relative;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.mobile-dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
}

.mobile-dropdown.active > .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  padding-left: 15px;
  transition: max-height 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

.mobile-dropdown.active > .mobile-dropdown-menu {
  max-height: 1000px;
  opacity: 1;
}

.mobile-dropdown-menu .nav-link {
  padding-left: 30px;
  font-size: 0.9em;
}

.mobile-menu-toggle {
  background: var(--primary-green);
  border: none;
  border-radius: 4px;
  color: white;
  cursor: pointer;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.mobile-menu-toggle i {
  font-size: 18px;
}

/* Close button */
.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #eee;
}

.mobile-close-btn {
  background: none;
  border: none;
  font-size: 24px;
  color: #666;
  cursor: pointer;
  padding: 5px;
}

/* Menu items */
.mobile-nav .nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.2s;
}

.mobile-nav .nav-link:hover {
  color: var(--primary-green);
  background-color: rgba(0, 78, 82, 0.05);
  padding-left: 5px;
}

/* Dropdown arrow */
.mobile-dropdown-toggle::after {
  content: "\f078";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  transition: transform 0.3s;
}

.mobile-dropdown.active > .mobile-dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Submenu items */
.mobile-dropdown-menu .nav-link {
  font-size: 14px;
  padding: 10px 0 10px 15px;
  color: #666;
}

.mobile-dropdown-menu .nav-link:hover {
  color: var(--primary-green);
  background-color: transparent;
  padding-left: 20px;
}

@media (max-width: 991.98px) {
  .desktop-nav {
    display: none !important;
  }

  .header-heading {
    font-size: 1.6em;
    color: var(--primary-green);
    margin: 0;
    line-height: 1;
  }
  .mobile-menu-toggle {
    display: block !important;
  }

  .bottom-section {
    padding: 5px 0;
  }

  /* Hide some logos on tablet */
  .logo-text h1 {
    font-size: 1.8em;
  }

  .logo-text p {
    font-size: 10px;
  }

  .tnccm-logo {
    display: none;
  }
}

@media (max-width: 768px) {
  /* Top section adjustments */
  .top-section {
    font-size: 14px;
    padding: 6px 0;
  }
  .header-heading {
    font-size: 0.9em;
    color: var(--primary-green);
    margin: 0;
    line-height: 1;
  }

  .header-parah {
    font-size: 0.5em;
  }
  .page-header {
    padding: 50px 0;
  }
  .page-header h1 {
    font-size: 1.5rem;
  }
  .tamil-lang .page-header h1 {
  font-size: 1.2rem;
  font-weight: 700;
}
  .top-section a {
    margin-right: 15px;
    font-size: 13px;
  }
  .payment-btn {
    background: var(--primary-green);
    color: #fff;
    text-decoration: none;
    padding: 7px 15px 6px;
    font-size: 0.7em;
    font-weight: 600;
    text-transform: uppercase;
  }

  .navbar-expand-lg .navbar-nav {
    gap: 10px;
  }
  .language-selector {
    gap: 8px;
  }

  .language-dropdown-toggle {
    padding: 6px 12px;
    font-size: 12px;
    min-width: 120px;
    border-radius: 0px;
  }

  .language-dropdown-menu {
    min-width: 140px;
  }

  .language-option {
    padding: 10px 12px;
    font-size: 13px;
  }

  /* Middle section adjustments */
  .middle-section {
    padding: 6px 0;
  }

  .logo-text h1 {
    font-size: 1.5em;
  }

  .logo-text p {
    font-size: 9px;
  }

  /* Hide more logos on mobile */
  .indian-gov-logo {
    display: none;
  }

  .tn-logo {
    display: none;
  }

  /* Navigation adjustments */
  .nav-link {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Remove the responsive arrow styles since we're using explicit Font Awesome icons */

  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 12px;
    padding: 6px 15px;
  }

  /* Mobile nav adjustments */
  .mobile-nav .nav-link {
    padding: 10px 15px;
    font-size: 14px;
  }

  .mobile-nav .btn-primary-custom,
  .mobile-nav .btn-outline-custom {
    margin: 8px 15px;
    font-size: 14px;
  }
}

@media (max-width: 576px) {
  /* Extra small devices */
  .top-section {
    font-size: 12px;
    padding: 4px 0;
  }

  .top-section a {
    margin-right: 10px;
    font-size: 11px;
  }

  .language-selector {
    gap: 5px;
  }

  .language-dropdown-toggle {
    padding: 4px 10px;
    font-size: 11px;
    min-width: 100px;
    border-radius: 0px;
  }

  .language-dropdown-menu {
    min-width: 120px;
  }

  .language-option {
    padding: 8px 10px;
    font-size: 12px;
  }

  .logo-text h1 {
    font-size: 1.3em;
  }

  .logo-text p {
    font-size: 8px;
  }

  .nav-link {
    font-size: 11px;
    padding: 5px 8px;
  }

  /* Remove the responsive arrow styles since we're using explicit Font Awesome icons */

  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 11px;
    padding: 5px 12px;
  }
}

@media (max-width: 480px) {
  /* Very small devices */
  .top-section {
    display: none;
  }

  .middle-section {
    padding: 4px 0;
  }

  .logo-text h1 {
    font-size: 1.2em;
  }

  .logo-text p {
    font-size: 7px;
  }

  .nav-link {
    font-size: 10px;
    padding: 4px 6px;
  }

  /* Remove the responsive arrow styles since we're using explicit Font Awesome icons */

  .btn-primary-custom,
  .btn-outline-custom {
    font-size: 10px;
    padding: 4px 10px;
  }
}

@keyframes fade-in-up {
  0% {
    transform: translateY(60px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow: 0 0 20px rgba(64, 145, 108, 0.3);
  }

  50% {
    box-shadow: 0 0 40px rgba(64, 145, 108, 0.6);
  }
}

/* Animation Classes */
.animate-fade-in-up {
  animation: fade-in-up 0.8s ease-out forwards;
}

.animate-pulse-glow {
  animation: pulse-glow 2s ease-in-out infinite;
}

/* Hover Effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Scroll-triggered animations */
.scroll-animate {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Tailwind-like utility classes */
.py-20 {
  padding: 5rem 0 !important;
}

.relative {
  position: relative !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.absolute {
  position: absolute !important;
}

.inset-0 {
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  left: 0 !important;
}

.z-0 {
  z-index: 0 !important;
}

.z-10 {
  z-index: 10 !important;
}

.z-20 {
  z-index: 20 !important;
}

.max-w-6xl {
  max-width: 72rem !important;
}

.mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.px-6 {
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
}

.text-center {
  text-align: center !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.text-4xl {
  font-size: 2.25rem !important;
}

.md\:text-5xl {
  font-size: 3rem !important;
}

.font-bold {
  font-weight: 700 !important;
}

.text-white {
  color: white !important;
}

.text-white\/90 {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-white\/80 {
  color: rgba(255, 255, 255, 0.8) !important;
}

.max-w-3xl {
  max-width: 48rem !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.grid {
  display: grid !important;
}

.md\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.gap-8 {
  gap: 2rem !important;
}

.w-32 {
  width: 8rem !important;
}

.h-32 {
  height: 8rem !important;
}

.bg-white\/10 {
  background-color: rgba(255, 255, 255, 0.1) !important;
}

.rounded-full {
  border-radius: 9999px !important;
}

.flex {
  display: flex !important;
}

.items-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

.backdrop-blur-sm {
  backdrop-filter: blur(4px) !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.leading-relaxed {
  line-height: 1.625 !important;
}

/* Overlay styles for Our Impact section */
.bg-primary\/80 {
  background-color: rgb(0 78 82 / 71%) !important;
}

/* Quick Actions Section Styles */
.bg-primary\/5 {
  background-color: rgba(6, 64, 43, 0.05) !important;
}

.text-primaryC {
  color: rgb(0 78 82) !important;
}

.bg-primaryC {
  background-color: rgb(0 78 82) !important;
}

.text-gray-700 {
  color: #374151 !important;
}

.text-secondary {
  color: rgb(0 78 82) !important;
}

.hover\:text-black-600:hover {
  color: #4b5563 !important;
}

.rounded-xl {
  border-radius: 0.75rem !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.transition-all {
  transition-property: all !important;
}

.duration-500 {
  transition-duration: 500ms !important;
}

.group:hover .group-hover\:translate-x-2 {
  transform: translateX(0.5rem) !important;
}

.transition-transform {
  transition-property: transform !important;
}

.duration-300 {
  transition-duration: 300ms !important;
}

.ri-2x {
  font-size: 2em !important;
}

.ri-xl {
  font-size: 1.25em !important;
}

.scroll-animate-left {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-left.animate {
  opacity: 1;
  transform: translateX(0);
}

.scroll-animate-right {
  opacity: 1;
  transform: translateX(0);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-animate-right.animate {
  opacity: 1;
  transform: translateX(0);
}

.animate-bounce-in {
  animation: bounce-in 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.hover-glow:hover {
  box-shadow: 0 0 30px rgba(64, 145, 108, 0.4) !important;
}

/* Bounce-in animation for Quick Actions */
@keyframes bounce-in {
  0% {
    transform: scale(0.3) translateY(50px);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.w-20 {
  width: 5rem !important;
}

.h-1 {
  height: 0.25rem !important;
}

.bg-secondary {
  background-color: rgb(0 78 82) !important;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 18px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Merriweather", serif;
  font-weight: 700;
}

/* Modern Slider Styles */
.hero-slider {
  position: relative;
  height: 350px;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    var(--primary-green) 0%,
    var(--dark-green) 100%
  );
  z-index: 20;
}

.slider-container {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 21;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 22;
  filter: grayscale(20%) brightness(100%);
  /* Added for color reduction and slight darkening */
}

.slide.active {
  opacity: 1;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 39%);
  z-index: 1;
}

.slide-content {
  position: absolute;
  right: 5%;
  bottom: 5%;
  text-align: right;
  color: var(--white);
  z-index: 2;
  width: 90%;
  max-width: 800px;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.2s;
  padding: 0 40px;
  bottom: 80px;
}

.slide.active .slide-content {
  opacity: 1;
}

.slide-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.4s;
}

.slide-subtitle {
  margin-bottom: 1rem;
  opacity: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  line-height: 1.4;
  transition: opacity 0.5s ease-in-out 0.6s;
}

.slide-btn {
  display: inline-block;
  background: #fff;
  color: var(--primary-green);
  padding: 10px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.8s;
}

.slide.active .slide-title,
.slide.active .slide-subtitle,
.slide.active .slide-btn {
  opacity: 1;
}

.slide-btn:hover {
  background: var(--white);
  /* transform: translateY(-3px); */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: var(--primary-green);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 25;
}

.slider-dot {
  width: clamp(10px, 2vw, 12px);
  height: clamp(10px, 2vw, 12px);
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.slider-dot::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--white);
  transition: left 0.3s ease;
}

.slider-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

.slider-dot.active::before {
  left: 0;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  width: clamp(40px, 8vw, 50px);
  height: clamp(40px, 8vw, 50px);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  z-index: 25;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

.slider-arrow.prev {
  left: clamp(15px, 3vw, 30px);
}

.slider-arrow.next {
  right: clamp(15px, 3vw, 30px);
}

/* Animations */
@keyframes slideInFromLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@media screen and (max-width: 991px) {
  .slide-content {
    padding: 0 30px;
  }
}

@media (max-width: 768px) {
  .slide-content {
    padding: 0 25px;
    width: 95%;
  }

  .slider-nav {
    bottom: 20px;
    gap: 12px;
  }
}

@media (max-width: 576px) {
  .slide-content {
    padding: 0 20px;
    width: 100%;
  }

  .slider-nav {
    bottom: 15px;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  .slide-content {
    padding: 0 15px;
  }

  .slider-arrow {
    display: none;
  }
}

.icon-container {
  width: 80px;
  height: 80px;
  background: rgb(0 78 82);
  border-radius: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(6, 64, 43, 0.3);
}

.quick-action-card {
  background: white;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.action-link {
  color: rgb(0 78 82);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  padding: 5px 20px;
  border: 2px solid rgb(0 78 82);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgb(0 255 163 / 32%),
    rgb(255 255 255 / 0%)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Swiper Styles */
.services-swiper {
  padding: 20px 10px 60px;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
}

.swiper-button-next,
.swiper-button-prev {
  color: rgb(0 78 82);
  background: white;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 20px;
  font-weight: bold;
  color: rgb(0 78 82);
}

.swiper-pagination {
  position: relative;
  margin-top: 20px;
  bottom: 0;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: rgb(0 78 82);
  width: 30px;
  border-radius: 0px;
}

@media (max-width: 640px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }

  .swiper-pagination {
    margin-top: 15px;
  }
}

.board-members-section {
  padding: 60px 0;
  background: #fff;
}

.member-card {
  background: white;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.12);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.member-image-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.member-image {
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}

.modal-member-image {
  aspect-ratio: 7/9;
  transition: all 0.3s ease;
  opacity: 0.9;
}

.member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px 0px 10px;
  background: linear-gradient(transparent, rgb(0 0 0));
  color: white;
  z-index: 2;
  text-align: left;
}
.member-info p {
  line-height: 24px;
}

.member-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: white;
  margin-bottom: 5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.member-designation {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.4;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.section-title {
  color: rgb(0 78 82);
}

.modal-body {
  padding: 20px;
}
@media (max-width: 480px) {
  .board-members-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }

  .member-card {
    height: auto;
    min-height: 350px;
  }

  .member-image-container {
    height: 400px;
  }
}

.section-wrapper {
  padding: 60px 0;
}

.content-box {
  background: #fff;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.highlight-box {
  background: linear-gradient(to right, #e6f0ff, #f0fbff);
  padding: 20px;
  border-left: 5px solid rgb(0 78 82);
  border-radius: 0px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-title {
  font-size: 26px;
  font-weight: 600;
  color: rgb(0 78 82);
  margin-bottom: 20px;
  border-bottom: 3px solid #1fc5a2;
  display: inline-block;
  padding-bottom: 5px;
}

.stat-card {
  background: #ffffff;
  border-left: 6px solid rgb(0 78 82);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  color: #1d3557;
}

.stat-label {
  font-size: 1rem;
  color: #666;
  margin-top: 8px;
}

.img-box img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  .order-md-1,
  .order-md-2 {
    order: unset !important;
  }
}

/* Animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: 0.1s;
}

.animate-on-scroll.delay-2 {
  transition-delay: 0.2s;
}

.animate-on-scroll.delay-3 {
  transition-delay: 0.3s;
}

.animate-on-scroll.delay-4 {
  transition-delay: 0.4s;
}

.animate-on-scroll.delay-5 {
  transition-delay: 0.5s;
}

.animate-on-scroll.delay-6 {
  transition-delay: 0.6s;
}

/* Mission Item Styles */
.mission-item {
  padding: 25px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
  border: 1px solid #e0ebf5;
  height: 100%;
  /* Ensure equal height */
  /* display: flex; */
  flex-direction: column;
  justify-content: center;
}

.mission-item h3 {
  color: rgb(0 78 82);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.mission-item i {
  font-size: 1.8rem;
  color: rgb(0 78 82);
  margin-right: 10px;
}

.mission-item p {
  font-size: 1rem;
  color: #555;
}

/* Focus Area Section Styles */
.focus-item {
  background: #fff;
  padding: 60px 20px;
  box-shadow: 0 4px 16px rgb(0 0 0 / 28%);
  height: 200px;
}

.focus-item:hover {
  transform: translateY(-5px);
  box-shadow: none;
  /* Removed hover box-shadow */
}

.focus-item h3 {
  color: rgb(0 78 82);
  font-size: 1rem;
  /* Smaller font size */
  font-weight: 400;
  /* Not bold */
  margin-top: 10px;
  /* Add margin to the left of the text */
  line-height: 1.4;
  text-align: center;
}

.icon-wrapper i.fas {
  font-size: 2.2rem;
  color: rgb(0 78 82);
}

.icon-wrapper {
  text-align: center;
}

@media (max-width: 991.98px) {
  .focus-item h3 {
    font-size: 1rem;
  }
}

@media (max-width: 575.98px) {
  .focus-item {
    padding: 25px 15px;
  }

  .focus-item h3 {
    font-size: 1rem;
  }

  .icon-wrapper {
    width: 70px;
    height: 70px;
  }

  .icon-wrapper i.fas {
    font-size: 2rem;
  }

  .icon-sub-overlay {
    font-size: 1rem !important;
    padding: 4px;
  }

  .icon-sub-overlay-2 {
    font-size: 0.9rem !important;
    padding: 3px;
  }
}

.icon-10 .fa-recycle {
  color: #000;
}

.icon-wrap {
  background: #ffffff33;
  color: #fff;
  width: 45px;
  height: 45px;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0px;
}
.contact-glass-section .form-control:focus {
  border-color: #38a169;
  box-shadow: none;
}
.contact-glass-section .btn-success:hover {
  background: #2f855a;
}

/* Quick Actions Section Animations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

@keyframes expand {
  0%,
  100% {
    width: 80px;
  }

  50% {
    width: 120px;
  }
}

@keyframes particle-float {
  0%,
  100% {
    transform: translateY(0px) translateX(0px);
    opacity: 0;
  }

  25% {
    opacity: 1;
  }

  50% {
    transform: translateY(-15px) translateX(10px);
    opacity: 0.8;
  }

  75% {
    opacity: 1;
  }
}

.slider-name {
  background: #ffffffff !important;
  height: 250px;
}

.swiper-button-next,
.swiper-button-prev {
  svg {
    height: 100%;
    object-fit: contain;
    transform-origin: center;
    width: 30% !important;
    fill: #000 !important;
    pointer-events: none;
  }
}

/* Card hover effects */
.quick-action-card:hover {
  transform: translateY(-10px) scale(1.02) !important;
  box-shadow: 0 20px 40px rgba(6, 64, 43, 0.15) !important;
}

.quick-action-card:hover .card-overlay {
  opacity: 1 !important;
}

.quick-action-card:hover .icon-container {
  transform: scale(1.1) rotate(5deg) !important;
  box-shadow: 0 15px 35px rgba(6, 64, 43, 0.4) !important;
}

.quick-action-card:hover .icon-container i {
  transform: scale(1.1) !important;
}

.quick-action-card:hover h3 {
  color: rgb(0 78 82) !important;
  transform: translateY(-2px) !important;
}

.quick-action-card:hover p {
  color: #555 !important;
}

/* Action link hover effects */
.action-link:hover {
  color: white !important;
  border-color: rgb(0 78 82) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(6, 64, 43, 0.3) !important;
}

.action-link:hover .link-bg {
  left: 0 !important;
}

.action-link:hover i {
  transform: translateX(5px) !important;
}

/* Particle positioning */
.quick-action-card:nth-child(1) .particle:nth-child(1) {
  top: 10px;
  left: 10px;
}

.quick-action-card:nth-child(1) .particle:nth-child(2) {
  top: 20px;
  right: 15px;
}

.quick-action-card:nth-child(1) .particle:nth-child(3) {
  bottom: 15px;
  left: 20px;
}

.quick-action-card:nth-child(2) .particle:nth-child(1) {
  top: 15px;
  left: 15px;
}

.quick-action-card:nth-child(2) .particle:nth-child(2) {
  top: 25px;
  right: 10px;
}

.quick-action-card:nth-child(2) .particle:nth-child(3) {
  bottom: 10px;
  left: 25px;
}

.quick-action-card:nth-child(3) .particle:nth-child(1) {
  top: 12px;
  left: 12px;
}

.quick-action-card:nth-child(3) .particle:nth-child(2) {
  top: 22px;
  right: 12px;
}

.quick-action-card:nth-child(3) .particle:nth-child(3) {
  bottom: 12px;
  left: 22px;
}

/* Services Section Styles */
.bg-green-900\/80 {
  background-color: rgb(0 78 82 / 72%) !important;
}

.bg-secondary\/0 {
  background-color: rgba(64, 145, 108, 0) !important;
}

.rounded-xl {
  border-radius: 0.75rem !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05) !important;
}

.hover\:shadow-xl:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.transition-all {
  transition-property: all !important;
}

.duration-500 {
  transition-duration: 500ms !important;
}

.group:hover .group-hover\:translate-x-2 {
  transform: translateX(0.5rem) !important;
}

.p-6 {
  padding: 1.5rem !important;
}

.w-12 {
  width: 3rem !important;
}

.h-12 {
  height: 3rem !important;
}

.bg-secondary {
  background-color: rgb(0 78 82) !important;
}

.text-white {
  color: white !important;
}

.rounded-lg {
  border-radius: 0.5rem !important;
}

.flex {
  display: flex !important;
}

.items-center {
  align-items: center !important;
}

.justify-center {
  justify-content: center !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.animate-scale-in {
  animation: scale-in 0.6s ease-out forwards !important;
}

.ri-xl {
  font-size: 1.25em !important;
}

.text-xl {
  font-size: 1.25rem !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-sm {
  font-size: 0.875rem !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.text-primaryC {
  color: rgb(0 78 82) !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.text-gray-700 {
  color: #374151 !important;
}

.leading-relaxed {
  line-height: 1.625 !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.md\:grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.lg\:grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.xl\:grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

/* Scale-in animation for Services section */
@keyframes scale-in {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* Latest News & Updates Section Styles */
.bg-primary\/5 {
  background-color: rgba(6, 64, 43, 0.05) !important;
}

.max-w-9xl {
  max-width: 96rem !important;
}

.space-y-4 > * + * {
  margin-top: 1rem !important;
}

.space-y-3 > * + * {
  margin-top: 0.75rem !important;
}

.space-y-6 > * + * {
  margin-top: 1.5rem !important;
}

.border-l-4 {
  border-left-width: 4px !important;
}

.border-green-500 {
  border-color: rgb(0 78 82) !important;
}

.border-blue-500 {
  border-color: #3b82f6 !important;
}

.border-yellow-500 {
  border-color: #f59e0b !important;
}

.border-purple-500 {
  border-color: #8b5cf6 !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pl-6 {
  padding-left: 1.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.p-4 {
  padding: 1rem !important;
}

.p-8 {
  padding: 2rem !important;
}

.text-gray-500 {
  color: #6b7280 !important;
}

.text-gray-800 {
  color: #1f2937 !important;
}

.text-gray-600 {
  color: #4b5563 !important;
}

.text-gray-700 {
  color: #374151 !important;
}

.text-lg {
  font-size: 1.125rem !important;
}

.text-2xl {
  font-size: 1.5rem !important;
}

.text-3xl {
  font-size: 1.875rem !important;
}

.font-bold {
  font-weight: 700 !important;
}

.font-semibold {
  font-weight: 600 !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.max-h-\[650px\] {
  max-height: 650px !important;
}

.max-h-\[700px\] {
  max-height: 700px !important;
}

.overflow-y-auto {
  overflow-y: auto !important;
}

.rounded-r-lg {
  border-top-right-radius: 0.5rem !important;
  border-bottom-right-radius: 0.5rem !important;
}

.rounded-xl {
  border-radius: 0.75rem !important;
}

.rounded-2xl {
  border-radius: 1rem !important;
}

.shadow-2xl {
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25) !important;
}

.hover\:bg-gray-50:hover {
  background-color: #f9fafb !important;
}

.hover\:text-primaryC:hover {
  color: rgb(0 78 82) !important;
}

.hover\:from-green-50:hover {
  background-image: linear-gradient(
    to right,
    rgba(240, 253, 244, 1),
    rgba(239, 246, 255, 1)
  ) !important;
}

.hover\:to-blue-50:hover {
  background-image: linear-gradient(
    to right,
    rgba(240, 253, 244, 1),
    rgba(239, 246, 255, 1)
  ) !important;
}

.transition-colors {
  transition-property: color, background-color, border-color,
    text-decoration-color, fill, stroke !important;
}

.transition-all {
  transition-property: all !important;
}

.duration-300 {
  transition-duration: 300ms !important;
}

.duration-500 {
  transition-duration: 500ms !important;
}

.inline-flex {
  display: inline-flex !important;
}

.items-center {
  align-items: center !important;
}

.flex {
  display: flex !important;
}

.backdrop-blur-10 {
  backdrop-filter: blur(10px) !important;
}

.line-height-1-4 {
  line-height: 1.4 !important;
}

.line-height-1-6 {
  line-height: 1.6 !important;
}

.text-decoration-none {
  text-decoration: none !important;
}

.transform {
  transform: translateX(5px) !important;
}

/* Enhanced hover effects for news items */
.border-l-4.border-green-500:hover {
  background: linear-gradient(
    135deg,
    rgba(16, 185, 129, 0.08) 0%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.15) !important;
}

.border-l-4.border-blue-500:hover {
  background: linear-gradient(
    135deg,
    rgba(59, 130, 246, 0.08) 0%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.15) !important;
}

.border-l-4.border-yellow-500:hover {
  background: linear-gradient(
    135deg,
    rgba(245, 158, 11, 0.08) 0%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15) !important;
}

.border-l-4.border-purple-500:hover {
  background: linear-gradient(
    135deg,
    rgba(139, 92, 246, 0.08) 0%,
    rgba(255, 255, 255, 0.9) 100%
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.15) !important;
}

/* Enhanced link hover effects */
a:hover .fas.fa-arrow-right {
  transform: translateX(5px) !important;
}

/* Enhanced background gradients */
.hover\:bg-gradient-to-r:hover {
  background-image: linear-gradient(
    to right,
    rgba(240, 253, 244, 1),
    rgba(239, 246, 255, 1)
  ) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 25px rgba(6, 64, 43, 0.1) !important;
}

/* Enhanced section background */
.news-section-bg {
  background: linear-gradient(
    135deg,
    #f0f9ff 0%,
    #e0f2fe 50%,
    #f0fdf4 100%
  ) !important;
}

/* Enhanced decorative elements */
.decorative-element {
  background: radial-gradient(
    circle,
    rgba(6, 64, 43, 0.08) 0%,
    rgba(64, 145, 108, 0.04) 70%,
    transparent 100%
  ) !important;
}

/* Enhanced title styling */
.news-title {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1) !important;
  font-weight: 800 !important;
}

/* Enhanced divider styling */
.news-divider {
  box-shadow: 0 4px 8px rgba(6, 64, 43, 0.3) !important;
  background: linear-gradient(
    90deg,
    rgb(0 78 82),
    rgb(0 78 82),
    rgb(0 78 82)
  ) !important;
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: rgb(0 78 82) !important;
}

.swiper-pagination-bullet-active {
  background: rgb(0 78 82) !important;
}

.about-us p {
  text-align: justify;
}

.text-success {
  color: rgb(0 78 82) !important;
}

.btn-success {
  background: rgb(0 78 82);
  color: #fff !important;
  border-radius: 0%;
}

.contact-panel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 56px 12px;
}

/* main white card (big) */
.main-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(18, 40, 60, 0.1);
  padding: 42px 46px 42px 530px;
  /* left padding leaves room for floating left-card */
  position: relative;
  min-height: 320px;
}

/* right area (form) */
.main-card .right {
  max-width: 720px;
}

.title {
  font-family: "Merriweather", serif;
  font-size: 32px;
  color: rgb(0 78 82);
  margin-bottom: 18px;
}

/* floating left card */
.left-card {
  position: absolute;
  left: -50px;
  top: 140px;
  width: 500px;
  height: 500px;
  background: rgb(0 78 82);
  color: #fff;
  padding: 28px 22px;
  border-radius: 6px;
  box-shadow: 0 30px 60px rgba(6, 35, 64, 0.32);
  z-index: 5;
  transform: translateY(0);
}

.left-title {
  font-size: 2.2em;
  margin: 0 0 1.4em;
  font-weight: 600;
  color: #eaf6ff;
}

/* contact items inside left card */
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 0px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
  box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.06);
}

.icon-wrap i {
  color: #fff;
}

.contact-item h5 {
  margin: 0;
  font-size: 15px;
  color: #eaf6ff;
  font-weight: 600;
}

.contact-item p {
  margin: 4px 0 0;
  font-size: 1.1em;
  opacity: 0.9;
  color: #def2ff;
}

/* socials */
.socials {
  margin-top: 8px;
  display: flex;
  gap: 10px;
}

.socials a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  text-decoration: none;
  opacity: 0.95;
}

/* small screens: stack left card above main card */
@media (max-width: 991px) {
  .main-card {
    padding-left: 28px;
    padding-right: 28px;
  }

  .left-card {
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    margin-bottom: 20px;
    border-radius: 0px;
    margin-top: 20px;
  }

  .contact-panel {
    padding: 30px 12px;
  }
}

.text-primary {
  color: rgb(0 78 82) !important;
}
.btn-link {
  text-decoration: none !important;
}

.btn-outline-primary {
  --bs-btn-color: rgb(0 78 82);
  --bs-btn-border-color: rgb(0 78 82);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0 78 82);
  --bs-btn-hover-border-color: rgb(0 78 82);
  --bs-btn-focus-shadow-rgb: rgb(0 78 82);
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0 78 82);
  --bs-btn-active-border-color: rgb(0 78 82);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(0 78 82);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(0 78 82);
  --bs-gradient: none;
}

.btn-outline-success {
  --bs-btn-color: rgb(0 78 82) !important;
  --bs-btn-border-color: rgb(0 78 82) !important;
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: rgb(0 78 82) !important;
  --bs-btn-hover-border-color: rgb(0 78 82) !important;
  --bs-btn-focus-shadow-rgb: 25, 135, 84;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: rgb(0 78 82) !important;
  --bs-btn-active-border-color: rgb(0 78 82) !important;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: rgb(0 78 82) !important;
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: rgb(0 78 82) !important;
  --bs-gradient: none;
}

.dropdown-item.active,
/* Tamil language navigation links */


.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background: rgb(0 78 82) !important;
}

.modal {
  --bs-modal-zindex: 1055;
  --bs-modal-width: 700px !important;
  --bs-modal-padding: 1rem;
  --bs-modal-margin: 0.5rem;
  --bs-modal-color: ;
  --bs-modal-bg: var(--bs-body-bg);
  --bs-modal-border-color: var(--bs-border-color-translucent);
  --bs-modal-border-width: var(--bs-border-width);
  --bs-modal-border-radius: var(--bs-border-radius-lg);
  --bs-modal-box-shadow: var(--bs-box-shadow-sm);
  --bs-modal-inner-border-radius: calc(
    var(--bs-border-radius-lg) - (var(--bs-border-width))
  );
  --bs-modal-header-padding-x: 1rem;
  --bs-modal-header-padding-y: 1rem;
  --bs-modal-header-padding: 1rem 1rem;
  --bs-modal-header-border-color: var(--bs-border-color);
  --bs-modal-header-border-width: var(--bs-border-width);
  --bs-modal-title-line-height: 1.5;
  --bs-modal-footer-gap: 0.5rem;
  --bs-modal-footer-bg: ;
  --bs-modal-footer-border-color: var(--bs-border-color);
  --bs-modal-footer-border-width: var(--bs-border-width);
  position: fixed;
  top: 0;
  left: 0;
  z-index: var(--bs-modal-zindex);
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.feedback-button {
  position: fixed;
  right: 0px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: right center;
  background-color: rgb(0 78 82);
  color: white;
  border: none;
  padding: 0px 24px;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 22px;
  z-index: 1001;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
  font-family: "Source Sans Pro", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.parivesh-logo {
  width: 150px;
}
.top-nav {
  visibility: hidden;
  display: none;
}
.bottom-nav {
  visibility: visible;
  display: block;
}
.midle-nav {
  visibility: visible;
  display: block;
}
.tamil-lang {
  font-size: 0.9em;
}
@media screen and (max-width: 991px) {
  .top-nav {
    visibility: visible;
    display: block;
  }
  .bottom-nav {
    visibility: hidden;
    display: none;
  }
  .midle-nav {
    visibility: hidden;
    display: none;
  }
  .tamil-lang .header-heading {
    font-size: 1.2em;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.5;
  }
  .tamil-lang .header-parah {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 768px) {
  .feedback-button {
    right: 0px;
    padding: 0px 15px;
    font-size: 18px;
  }
  .slide-title {
    font-size: 1.5rem !important;
  }
  .slide-content {
    bottom: 89px !important;
  }
  .parivesh-logo {
    width: 60px;
    margin-top: -15px;
  }
  .navbar-toggler {
    font-size: 12px;
    padding: 1px 6px;
    border-radius: 0;
    border: 2px solid #004e52;
  }
  .tamil-lang .header-heading {
    font-size: 0.8em;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.5;
  }
  .tamil-lang .header-parah {
    font-size: 0.2em;
  }
}

@media screen and (max-width: 368px) {
  .tamil-lang .header-heading {
    font-size: 0.7em;
    color: var(--primary-green);
    margin: 0;
    line-height: 1.5;
  }
  .tamil-lang .header-parah {
    font-size: 0.2em;
  }
}

/* Mobile Navigation Styles */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow-y: auto;
  transition: right 0.3s ease-in-out;
  padding: 20px;
  padding-top: 80px;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
  color: var(--primary-green);
}

.mobile-dropdown {
  position: relative;
  margin: 5px 0;
}

.mobile-dropdown-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: left;
  padding: 10px 0;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 15px;
  margin: 5px 0;
  border-left: 2px solid #eee;
}

.mobile-nav.active {
  right: 0;
}

.mobile-dropdown.active .mobile-dropdown-menu {
  display: block;
}

.mobile-nav .nav-link {
  display: block;
  padding: 10px 0;
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}

.mobile-nav .btn-primary-custom,
.mobile-nav .btn-outline-custom {
  display: block;
  width: 100%;
  margin: 10px 0;
  text-align: center;
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.mobile-nav.active + .mobile-nav-overlay {
  display: block;
  opacity: 1;
}

.mobile-nav-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary-green);
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-menu-toggle {
    display: block;
  }
}
