@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
  /* NAFED INDIA THEME CLONE VARIABLES */
  --color-primary: #8CC63F; /* Light Lime Green */
  --color-primary-dark: #7ab32f;
  --color-secondary: #088c42; /* Deep Green */
  --color-secondary-hover: #067235;
  --color-text-dark: #111111;
  --color-text-light: #555555;
  --color-bg-light: #f4f6f8;
  --color-footer-bg: #ffffff; /* White for footer */
  --color-white: #ffffff;
  
  --font-primary: 'Roboto', sans-serif;
  --font-accent: 'Poppins', sans-serif;
  --font-heading: 'Poppins', sans-serif;
  
  --radius-button: 40px;
  --radius-card: 20px;
  --shadow-soft: 0px 5px 20px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0px 15px 30px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-primary);
  color: var(--color-text-light);
  background-color: var(--color-white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.section { padding: 100px 0; position: relative; }
.bg-light { background-color: var(--color-bg-light); }

/* Decorative Subtitle Shape Pattern */
.subtitle-handwritten {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 40px;
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  border-radius: var(--radius-button);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  gap: 10px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 0%; height: 100%;
  background: rgba(0,0,0,0.1);
  transition: width 0.3s ease;
  z-index: -1;
}

.btn:hover::before { width: 100%; }

.btn-primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-primary:hover {
  background-color: var(--color-text-dark);
  color: var(--color-white);
}

.btn-secondary {
  background-color: var(--color-secondary);
  color: var(--color-white);
}
.btn-secondary:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

/* HEADER PILL (NAFED STYLE) */
.header-pill-wrapper {
  position: absolute;
  top: 66px;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  justify-content: center;
  padding: 0 20px;
}

.header-pill {
  width: 100%;
  max-width: 1300px;
  background-color: transparent; /* Changed from white to transparent */
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.08));
  display: flex;
  flex-direction: column;
}

/* Top Row */
.hp-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 55px; /* Aligned mathematically with main nav border radius + inverted corner width */
  position: relative;
  z-index: 1;
  margin-bottom: -1px; /* Overlap to prevent subpixel gaps */
}

/* White wrappers for the tabs */
.hp-top-left, .hp-top-right {
  background: var(--color-white);
  border-radius: 30px 30px 0 0;
  padding: 6px 6px 0 6px; /* White outline thickness */
  position: relative;
}

/* Inverted curve for left tab right side */
.hp-top-left::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 100% 0%, transparent 20px, var(--color-white) 21px);
}
/* Inverted curve for left tab left side */
.hp-top-left::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0% 0%, transparent 20px, var(--color-white) 21px);
}

/* Inverted curves for right tab */
.hp-top-right::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0% 0%, transparent 20px, var(--color-white) 21px);
}
.hp-top-right::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 100% 0%, transparent 20px, var(--color-white) 21px);
}

.hp-contact-info {
  background-color: var(--color-secondary);
  color: var(--color-white);
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 20px; /* Reduced from 25px */
  border-radius: 22px;
  font-size: 13px;
  font-weight: 500;
  gap: 20px; /* Reduced from 24px */
}
.hp-contact-info span { display: flex; align-items: center; gap: 6px; }

.hp-social-lang {
  background-color: var(--color-white);
  border: none; /* Removed border */
  border-radius: 22px 22px 0 0; 
  height: 44px;
  display: flex;
  align-items: center;
  padding: 0 15px; /* Reduced from 25px */
  font-size: 13px;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 8px;
  margin-right: 15px;
}
.social-icons a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-icons a i {
  color: var(--color-text-light);
  font-size: 14px;
}
.social-icons a:hover { 
  background: var(--color-primary);
  transform: translateY(-2px);
}
.social-icons a:hover i {
  color: var(--color-white);
}

.lang-select {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Main Nav Row */
.hp-main-nav {
  background-color: var(--color-white);
  border-radius: 35px; /* Reduced from 60px so the flat top matches the outer inverted corners */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px; /* Adjusted padding to look balanced with the 35px radius */
  min-height: 80px;
  max-height: 120px;
  position: relative;
  z-index: 2;
}

.nav-logo img { height: 70px; }
.nav-logo img.logo-large { height: 130px; }

.nav-links {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 30px;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-dark);
  padding: 0; /* Removed padding */
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  margin: 0 8px; /* Added small margin to prevent them from touching */
}
.nav-link i.ph-caret-down { font-size: 12px; }

.nav-link:hover, .nav-link.active { color: var(--color-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.search-btn {
  background: none;
  border: 1px solid #eee;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.search-btn:hover { background-color: var(--color-bg-light); }

.login-btn {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(140, 198, 63, 0.3);
}
.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(140, 198, 63, 0.4);
}

.login-btn-alt {
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-hover));
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* MSP Ticker Bar */
.msp-ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a3a1a, #0d3c1e);
  height: 36px;
  overflow: hidden;
}
.msp-ticker-label {
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: 700;
  font-size: 12px;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.msp-ticker-wrap {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.msp-ticker-track {
  display: flex;
  gap: 0;
  animation: mspScroll 30s linear infinite;
  width: max-content;
  will-change: transform;
}
.msp-ticker-track:hover {
  animation-play-state: paused;
}
.msp-item {
  color: rgba(255,255,255,0.9);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  padding: 0 30px;
  position: relative;
}
.msp-item::after {
  content: '•';
  position: absolute;
  right: 0;
  color: var(--color-primary);
  font-size: 14px;
}
@keyframes mspScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.mobile-toggle {
  display: none;
  background: none; border: none; font-size: 32px; color: var(--color-text-dark); cursor: pointer;
}

/* =======================================
   INNER PAGE – TOPBAR + NAVBAR (NON-PILL)
   ======================================= */
.topbar {
  background-color: var(--color-secondary);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 500;
  height: 42px;
  display: flex;
  align-items: center;
}
.topbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-info {
  display: flex;
  gap: 24px;
  align-items: center;
}
.topbar-info span {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.topbar-social a i {
  color: var(--color-text-light);
  font-size: 14px;
}
.topbar-social a:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
}
.topbar-social a:hover i {
  color: var(--color-white);
}

/* Navbar for inner pages */
.navbar {
  background-color: var(--color-white);
  height: 80px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar .nav-logo img {
  height: 55px;
}
.navbar .nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}
.navbar .nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--color-text-dark);
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  transition: var(--transition);
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--color-primary);
}
.navbar-action {
  display: flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(140, 198, 63, 0.3);
  font-size: 14px;
}
.navbar-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(140, 198, 63, 0.4);
}
.navbar-action i { font-size: 20px; }
.na-text h4 { font-size: 11px; font-weight: 500; opacity: 0.85; line-height: 1; margin-bottom: 2px; }
.na-text h3 { font-size: 14px; font-weight: 700; line-height: 1; color: var(--color-white); }

.nav-cta {
  padding: 10px 24px !important;
  font-size: 14px !important;
  margin-left: 10px;
}


/* =======================================
   PAGE HEADER BANNER (IMAGE BG)
   ======================================= */
.page-header {
  position: relative;
  padding: 80px 0 70px;
  background-image: url('../assets/page_banner.png');
  background-size: cover;
  background-position: center;
  color: var(--color-white);
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(8, 140, 66, 0.88) 0%, rgba(13, 60, 30, 0.92) 100%);
  z-index: 1;
}
.page-header .container {
  position: relative;
  z-index: 2;
}
.page-header h1 {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb a {
  color: var(--color-primary);
  font-weight: 600;
}
.page-header .breadcrumb span { margin: 0 8px; }

.text-white { color: var(--color-white); }
.text-white h1, .text-white h2, .text-white h3 { color: var(--color-white); }

/* FOOTER */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-text-light);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: url('../assets/footer-pattern.png'); opacity: 0.05;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}
.footer-col h4 {
  color: var(--color-text-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact li i {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact a {
  color: #aebaba;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--color-primary);
}

/* Social links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}
.footer-social a i {
  font-size: 18px;
  color: var(--color-text-light);
}
.footer-social a:hover i {
  color: var(--color-white);
}

/* Footer links */
.footer-logo img { height: 60px; margin-bottom: 16px;}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { display: inline-flex; align-items: center; font-size: 14px; }
.footer-links a::before {
  content: '→'; color: var(--color-secondary); margin-right: 8px; font-weight: bold;
}
.footer-links a:hover { color: var(--color-secondary); padding-left: 5px; }

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-company-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Animations */
.animate-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }

@media (max-width: 968px) {
  .nav-logo img { height: 60px; }
  .nav-logo img.logo-large { height: 60px; }
  .topbar { display: none; }
  .navbar-action { display: none; }
  .mobile-toggle { display: block; margin-right: 20px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-white);
    flex-direction: column; overflow: hidden; max-height: 0; transition: max-height 0.4s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05); height: auto !important; z-index: 1000; gap: 0 !important;
  }
  .nav-links.active { max-height: 400px; padding: 20px 0; }
  .nav-link { height: auto; padding: 15px 30px; width: 100%; }
  .nav-link::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; }
  .footer-links a::before { display: none; }

  /* HOME NAV ON MOBILE TO MATCH INNER PAGES */
  .hp-top-row { display: none; }
  .header-pill-wrapper { position: absolute; top: 32px; padding: 0; background: var(--color-white); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
  .header-pill { filter: none; border-radius: 0; max-width: 100%; }
  .hp-main-nav { border-radius: 0; padding: 0 0 0 20px; min-height: 80px; max-height: 80px; }
  .nav-actions .login-btn { display: none; }
}

/* Hide Google Translate Top Bar & Tooltips */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-tooltip {
}
.page-header h1 {
  color: var(--color-white);
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 10px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.page-header p {
  color: rgba(255,255,255,0.85);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto;
}
.page-header .breadcrumb {
  margin-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.page-header .breadcrumb a {
  color: var(--color-primary);
  font-weight: 600;
}
.page-header .breadcrumb span { margin: 0 8px; }

.text-white { color: var(--color-white); }
.text-white h1, .text-white h2, .text-white h3 { color: var(--color-white); }

/* FOOTER */
.footer {
  background-color: var(--color-footer-bg);
  color: var(--color-text-light);
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 40%;
  background: url('../assets/footer-pattern.png'); opacity: 0.05;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  position: relative;
  z-index: 2;
}
.footer-col h4 {
  color: var(--color-text-dark);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact list */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  line-height: 1.6;
}
.footer-contact li i {
  font-size: 18px;
  color: var(--color-primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.footer-contact a {
  color: #aebaba;
  transition: color 0.3s;
}
.footer-contact a:hover {
  color: var(--color-primary);
}

/* Social links */
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
}
.footer-social a i {
  font-size: 18px;
  color: var(--color-text-light);
}
.footer-social a:hover i {
  color: var(--color-white);
}

/* Footer links */
.footer-logo img { height: 60px; margin-bottom: 16px;}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { display: inline-flex; align-items: center; font-size: 14px; }
.footer-links a::before {
  content: '→'; color: var(--color-secondary); margin-right: 8px; font-weight: bold;
}
.footer-links a:hover { color: var(--color-secondary); padding-left: 5px; }

.footer-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
}

.footer-about-text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.footer-company-name {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text-dark);
  letter-spacing: 0.5px;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  position: relative;
  z-index: 2;
  color: var(--color-text-light);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Animations */
.animate-fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.8s ease, transform 0.8s ease; }

@media (max-width: 968px) {
  .nav-logo img { height: 60px; }
  .nav-logo img.logo-large { height: 60px; }
  .topbar { display: none; }
  .navbar-action { display: none; }
  .mobile-toggle { display: block; margin-right: 20px; }
  .nav-links {
    position: absolute; top: 100%; left: 0; width: 100%; background: var(--color-white);
    flex-direction: column; overflow: hidden; max-height: 0; transition: max-height 0.4s ease;
    box-shadow: 0 10px 15px rgba(0,0,0,0.05); height: auto !important; z-index: 1000; gap: 0 !important;
  }
  .nav-links.active { max-height: 400px; padding: 20px 0; }
  .nav-link { height: auto; padding: 15px 30px; width: 100%; }
  .nav-link::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; text-align: left; }
  .footer-links a::before { display: none; }

  /* HOME NAV ON MOBILE TO MATCH INNER PAGES */
  .hp-top-row { display: none; }
  .header-pill-wrapper { position: absolute; top: 32px; padding: 0; background: var(--color-white); box-shadow: 0 2px 10px rgba(0,0,0,0.06); }
  .header-pill { filter: none; border-radius: 0; max-width: 100%; }
  .hp-main-nav { border-radius: 0; padding: 0 0 0 20px; min-height: 80px; max-height: 80px; }
  .nav-actions .login-btn { display: none; }
}

/* Hide Google Translate Top Bar & Tooltips */
.goog-te-banner-frame.skiptranslate {
    display: none !important;
}
body {
    top: 0px !important;
}
.goog-tooltip {
    display: none !important;
}
.goog-tooltip:hover {
    display: none !important;
}
.goog-text-highlight {
    background-color: transparent !important;
    border: none !important; 
    box-shadow: none !important;
}

/* Fix Google Translate Widget Styling */
#google_translate_element {
    display: flex;
    align-items: center;
}
.goog-te-gadget-simple {
    background-color: var(--color-bg-light) !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    border-radius: 20px !important;
    padding: 4px 10px !important;
    font-size: 13px !important;
    display: flex !important;
    align-items: center !important;
    height: 32px !important;
    box-sizing: border-box !important;
    transition: var(--transition);
}
.goog-te-gadget-simple:hover {
    background-color: var(--color-white) !important;
}
.goog-te-gadget-simple img {
    margin-right: 6px !important;
    display: block !important;
}
.goog-te-gadget-simple .goog-te-menu-value {
    color: var(--color-text-dark) !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    border-left: none !important;
}
.goog-te-gadget-simple .goog-te-menu-value span {
    color: var(--color-text-dark) !important;
    border-left: none !important;
}
