/* ===== BASE STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh; 
  display: flex;
  overflow-y: auto; /* Keep this as is */
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: linear-gradient(150deg, #edefff, #edefff);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #1a1a1a;
  padding: 60px;
  padding-top: 90px;
}


/* ===== HEADER STYLES ===== */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0; /* Upar se space tak ki header float hota hua dikhe */
  display: flex;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}

header .container {
    max-width: 1500px; /* Header ko lamba karne ke liye */
    width: 95%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 10px; /* Header ko patla karne ke liye */
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50px;
    border: 1px solid rgb(245, 245, 245);
}

.logo img {
    height: 30px; /* Thoda aur chota, patle header ke liye */
    width: auto;
    vertical-align: middle;
}

.nav {
  display: flex;
  align-items: center; 
  gap: 5px; 
  margin-left: auto; /* Ye line saare menu items ko right mein bhej degi */
}

.nav a {
    text-decoration: none;
    color: #1a1a1a; /* Thoda dark text color */
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.nav a:hover {
  background-color: #d7e0ff;
}

/* ===== MOBILE HEADER & NAVIGATION (ALL-IN-ONE UPDATE) ===== */
@media (max-width: 700px) {
  body.no-scroll {
    overflow: hidden; 
  }

  header .container {
    padding: 8px 15px;
    width: 95%;
  }
  
  .logo img {
    height: 25px !important;
  }
  
  .mobile-nav-toggle {
    display: none !important; /* Hide old button */
  }

  .burger {
    display: block; /* Show new hamburger icon */
  }

  .nav {
    display: flex;
    flex-direction: column;
    align-items: center; /* Vertical center alignment */
    gap: 12px; /* Consistent gap between icon and text */
    position: fixed;
    top: 85px;
    left: 15px;
    right: 15px;
    padding: 15px 0;
    z-index: 999;
    border-radius: 12px;
    min-height: 48px; /* Consistent height for all items */
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    border: 1px solid rgba(0,0,0,0.08);
    
    

   /* Slide-in animation */
    opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  width: 60%;
    
    /* Glass effect */
    background: rgba(255, 255, 255, 20);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .nav.mobile-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    width: 60%;
  }
  
  .nav > a,
  .nav > #guestMenu,
  .nav > #userMenu,
  .nav > .theme {
    width: 100%;
    align-items: center;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    border-radius: 0;
    transition: background-color 0.2s ease;
  }
  
  .nav .nav-text {
    display: inline-block !important;
    flex: 1;
    line-height: 1; /* Remove extra line spacing */
  }
  
  .nav > a:hover,
  .nav > #guestMenu:hover {
    background-color: rgba(0,0,0,0.05);
  }
  
  
  #guestMenu, #userMenu {
    display: flex;
    justify-content: flex-start;
  }

  .user-profile {
    margin: 0;
  }

  .theme {
    display: flex;
    justify-content: space-between;
    align-items: left;
    padding-left: 16px;
  }
  .theme::before {
    content: 'Theme';
    font-weight: 500;
    color: #1a1a1a;
    font-family: 'Inter', sans-serif;
    font-size: 17px;
  }
  
  /* Clean Dividers */
  .nav > *:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }

  /* --- DARK MODE UPDATES --- */
  body.dark-mode .nav.mobile-open {
    /* --- IMPROVED GLASS EFFECT (DARK MODE) --- */
    background: #1f1f21;
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  
  body.dark-mode .nav > a:hover,
  body.dark-mode .nav > #guestMenu:hover {
    background-color: rgba(255,255,255,0.1);
  }
  
  body.dark-mode .theme::before {
    color: #f5f5f5;
  }
}

/* Replace .burger with .mobile-nav-toggle everywhere */
.mobile-nav-toggle {
  position: relative;
  width: 40px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  z-index: 1002;
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block !important;
  }
}

.mobile-nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #1a1a1a;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.mobile-nav-toggle span:nth-of-type(1) {
  top: 0px;
}

.mobile-nav-toggle span:nth-of-type(2) {
  top: 13px;
}

.mobile-nav-toggle span:nth-of-type(3) {
  top: 26px;
}

.mobile-nav-toggle.is-active span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 13px;
}

.mobile-nav-toggle.is-active span:nth-of-type(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-active span:nth-of-type(3) {
  transform: rotate(-45deg);
  top: 13px;
}

body.dark-mode .mobile-nav-toggle span {
  background: #e8e8e8;
}

/* ===== BOTTOM BLUR SCROLL EFFECT ===== */

/* Create a fixed blur overlay at bottom of screen */
body::after {
  content: '';
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40px; /* Height of blur effect */
  background: linear-gradient(
    to top,
    rgba(224, 242, 255, 0.9) 0%,    /* Solid color at bottom */
    rgba(224, 242, 255, 0.7) 40%,   /* Semi-transparent */
    rgba(224, 242, 255, 0.3) 80%,   /* More transparent */
    transparent 100%                 /* Fully transparent at top */
  );
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  pointer-events: none; /* Allow clicks to pass through */
  z-index: 100; /* Above content but below header/modals */
  transition: opacity 0.3s ease;
}

/* Dark mode version */
body.dark-mode::after {
  background: linear-gradient(
    to top,
    rgba(33, 33, 33, 0.9) 0%,      /* Dark solid color at bottom */
    rgba(33, 33, 33, 0.7) 30%,     /* Semi-transparent dark */
    rgba(33, 33, 33, 0.3) 70%,     /* More transparent dark */
    transparent 100%                /* Fully transparent at top */
  );
}

/* Optional: Hide effect on very short screens */
@media (max-height: 500px) {
  body::after {
    display: none;
  }
}

/* Optional: Reduce effect on mobile if needed */
@media (max-width: 768px) {
  body::after {
    height: 50px; /* Smaller height on mobile */
  }
}

/* ===== DARK MODE TOGGLE ===== */
.theme {
  display: flex;
  align-items: center;
  -webkit-tap-highlight-color: transparent;
}

.theme__fill,
.theme__icon {
  transition: 0.3s;
}

.theme__fill {
  background-color: var(--bg);
  display: block;
  mix-blend-mode: difference;
  position: fixed;
  inset: 0;
  height: 100%;
  pointer-events: none;
  transform: translateX(-100%);
}

.theme__icon,
.theme__icon-part {
  position: absolute;
}






.theme__label,
.theme__toggle,
.theme__toggle-wrap {
  position: relative;
}

.theme__toggle,
.theme__toggle:before {
  display: block;
}

.theme__toggle {
  background-color: hsl(48,90%,85%);
  border-radius: 25% / 50%;
  box-shadow: 0 0 0 0.125em var(--primaryT);
  padding: 0.25em;
  width: 6em;
  height: 3em;
  -webkit-appearance: none;
  appearance: none;
  transition: background-color var(--transDur) ease-in-out,
    box-shadow 0.15s ease-in-out,
    transform var(--transDur) ease-in-out;
}

.theme__toggle:before {
  background-color: hsl(48,90%,55%);
  border-radius: 50%;
  content: "";
  width: 2.5em;
  height: 2.5em;
  transition: 0.3s;
}

.theme__toggle:focus {
  box-shadow: 0 0 0 0.125em var(--primary);
  outline: transparent;
}

/* Checked */
.theme__toggle:checked {
  background-color: hsl(198,90%,15%);
}

.theme__toggle:checked:before,
.theme__toggle:checked ~ .theme__icon {
  transform: translateX(3em);
}

.theme__toggle:checked:before {
  background-color: hsl(198,90%,55%);
}

.theme__toggle:checked ~ .theme__fill {
  transform: translateX(0);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(1) {
  box-shadow: 0.2em -0.2em 0 0.2em hsl(0,0%,100%) inset;
  transform: scale(1);
  top: 0.2em;
  left: -0.2em;
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part ~ .theme__icon-part {
  opacity: 0;
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(2) {
  transform: rotate(45deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(3) {
  transform: rotate(90deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(4) {
  transform: rotate(135deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(5) {
  transform: rotate(180deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(6) {
  transform: rotate(225deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(7) {
  transform: rotate(270deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(8) {
  transform: rotate(315deg) translateY(0.8em);
}

.theme__toggle:checked ~ .theme__icon .theme__icon-part:nth-child(9) {
  transform: rotate(360deg) translateY(0.8em);
}

.theme__toggle-wrap {
  margin: 0 0.75em;
}

@supports selector(:focus-visible) {
  .theme__toggle:focus {
    box-shadow: 0 0 0 0.125em var(--primaryT);
  }

  .theme__toggle:focus-visible {
    box-shadow: 0 0 0 0.125em var(--primary);
  }
}

/* Default (Desktop) View */
.mobile-only {
  display: none !important;
}
.desktop-only {
  display: flex !important; /* Show on desktop */
  align-items: center;
  gap: 10px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
}

/* Hide icons on desktop nav links by default */
.nav a svg {
  display: none;
}

/* Desktop: Show icon only for My Profile link */
.profile-menu-item svg {
  display: block !important; /* Force show icons in profile dropdown */
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.7;
}

.profile-menu-item:hover svg {
  opacity: 1;
}

/* Make sure profile menu items have proper flex layout */
.profile-menu-item {
  display: flex !important;
  align-items: center;
  gap: 8px;
}

/* --- Mobile View (All Fixes Included) --- */
@media (max-width: 768px) {
  /* Hide desktop-specific elements */
  .desktop-only {
    display: none !important;
  }
  .desktop-nav {
      display: none !important;
  }

  /* Show mobile-specific elements */
  .mobile-only {
    display: flex !important;
    align-items: center;
    gap: 10px; /* Space between login button and hamburger */
  }

  /* FIX: Professional alignment for header buttons */
  .mobile-nav-toggle {
    height: 34px; /* Match login button's perceived height */
    width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
  }
  .mobile-nav-toggle span { height: 3px; }
  .mobile-nav-toggle span:nth-of-type(1) { top: 7px; }
  .mobile-nav-toggle span:nth-of-type(2) { top: 15px; }
  .mobile-nav-toggle span:nth-of-type(3) { top: 23px; }
  .mobile-nav-toggle.is-active span:nth-of-type(1) { top: 15px; }
  .mobile-nav-toggle.is-active span:nth-of-type(3) { top: 15px; }


  /* Dark Mode Styles for Mobile Panel */
  body.dark-mode .nav {
    background: rgba(28, 28, 30, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.15);
  }
  body.dark-mode .nav > *:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}

/* ADD THIS RULE for click functionality */
.modern-dropdown.is-open .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* ===== NEW LOGIN BUTTON STYLES ===== */
.user-profile {
    width: 105px;
    height: 40px;
    border-radius: 15px;
    cursor: pointer;
    transition: 0.3s ease;
    background: linear-gradient(
        to bottom right, 
        #2e8eff 0%, 
        rgba(46, 142, 255, 0) 30%
    );
    background-color: rgba(46, 142, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.user-profile:hover,
.user-profile:focus {
    background-color: rgba(46, 142, 255, 0.7);
    box-shadow: 0 0 10px rgba(46, 142, 255, 0.5);
    outline: none;
}

.user-profile-inner {
    width: 100px;
    height: 35px;
    border-radius: 13px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-weight: 600;
}

.user-profile-inner svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}

/* ===== MODERN PROFILE DROPDOWN STYLES ===== */
.modern-dropdown {
  position: relative;
  display: inline-block;
  margin-left: 10px;
}

.profile-trigger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.profile-trigger:hover {
  background: rgba(0,0,0,0.1);
}

.profile-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #416bff 0%, #132bff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 14px;
  border: 2px solid rgba(255,255,255,0.2);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  width: 230px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.modern-dropdown:hover .profile-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.profile-header {
  padding: 15px;
  background-color: #ffffff;
  color: white;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Dark mode fix for profile header */
body.dark-mode .profile-header {
  background-color: #1f1f21;
}

body.dark-mode .profile-name,
body.dark-mode .profile-email {
  color: #e8e8e8;
}

.profile-avatar-large {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #416bff 0%, #132bff 100%);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.profile-info {
  flex: 1;
  min-width: 0;
}

.profile-name {
  font-weight: 600;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #333;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-email {
  font-size: 11px;
  font-family: 'Inter', sans-serif;
  color: #333;
  opacity: 0.9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-menu {
  padding: 8px 0;
}

.profile-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  margin: 0 8px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  transition: all 0.2s ease;
  background: none;
  border: none;
  border-radius: 8px;
  width: calc(100% - 16px);
  cursor: pointer;
}

.profile-menu-item:hover {
  background: rgba(0,0,0,0.04);
  color: #000;
  border-radius: 20px;
}

.profile-menu-item svg {
  flex-shrink: 0;
  opacity: 0.7;
}

.profile-menu-item:hover svg {
  opacity: 1;
}

.logout-item {
  color: #dc3545;
}

.logout-item:hover {
  background: rgba(220, 53, 69, 0.08);
  color: #dc3545;
}

.logout-item:hover svg {
  opacity: 1;
}

.profile-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 8px 10px;
}

/* Dark mode styles */
body.dark-mode .profile-dropdown {
  background: #1f1f21;
  border-color: rgba(255,255,255,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

body.dark-mode .profile-trigger:hover {
  background: rgba(255,255,255,0.1);
}

body.dark-mode .profile-menu-item {
  color: #e8e8e8;
}

body.dark-mode .profile-menu-item:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

body.dark-mode .profile-divider {
  background: rgba(255,255,255,0.1);
}

body.dark-mode .logout-item {
  color: #ff6b6b;
}

body.dark-mode .logout-item:hover {
  background: rgba(255, 107, 107, 0.1);
  color: #ff6b6b;
}

/* Remove old dropdown styles */
.dropbtn {
  display: none;
}

.dropdown {
  display: none;
}

.dropdown-content {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .profile-dropdown {
    width: 260px;
    right: -10px;
  }
  
  .profile-header {
    padding: 16px;
  }
  
  .profile-name {
    font-size: 15px;
  }
  
  .profile-email {
    font-size: 12px;
  }
}

/* ===== FOOTER STYLES ===== */
/* ===== FOOTER MOBILE RESPONSIVE FIXES ===== */

.seekhe-footer {
  position: static;
  width: 100%;
  background-color: transparent;
  border-top: none;
  padding: 40px 0 40px;
  margin-top: 200px;
}

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

.seekhe-footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 170px;
  font-family: 'Inter', sans-serif;
  margin-bottom: 40px;
  padding: 0 20px;
}

.seekhe-footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.seekhe-footer-logo {
  width: 80px;
  height: 80px;
  margin-top: 20px;
  background: url('https://typing.seekheindia.com/wp-content/uploads/2025/07/seekhe-logo-with-white-circle-e1752653754699.png') no-repeat center/contain;
  border-radius: 8px;
  flex-shrink: 0;
}

.seekhe-footer-section-title {
  font-size: 16px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #333;
  margin-bottom: 16px;
}

.seekhe-footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.seekhe-footer-link {
  color: #6c757d;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}

.seekhe-footer-link:hover {
  color: #333;
}

.seekhe-footer-bottom {
  border-top: none;
  padding-top: 20px;
  text-align: center;
  color: #6c757d;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}

/* ===== FLOATING INSTAGRAM BUTTON ===== */
.floating-insta-button {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 1000;
}

.insta-link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  border-radius: 50%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: visible;
}

.insta-link img {
  width: 30px;
  height: 30px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
}

.rotating-circle {
  position: absolute;
  width: 60px;
  height: 60px;
  border: 3px solid transparent;
  border-top: 3px solid #E1306C;
  border-right: 3px solid #FCAF45;
  border-bottom: 3px solid #8A3AB9;
  border-left: 3px solid #4C68D7;
  border-radius: 50%;
  animation: rotateCircle 4s linear infinite;
  z-index: 1;
  background: white;
}

.tooltip {
  position: absolute;
  left: -120px;
  background-color: #356DF1;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  white-space: nowrap;
  visibility: visible;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.insta-link:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

@keyframes rotateCircle {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ===== DARK MODE STYLES ===== */
body.dark-mode {
  background: #212121;
  color: #e8e8e8;
}

/* Header & nav */
body.dark-mode header .container {
  /* Dark Glassmorphism Effect */
  background: rgba(28, 28, 30, 0.5); /* Halka dark background */
  border: 1px solid rgba(255, 255, 255, 0.1); /* Halka safed border */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.dark-mode .nav a {
  color: #f5f5f5;
}

body.dark-mode .nav a:hover {
  background: rgba(255,255,255,0.18);
}

/* Dropdown menu */
body.dark-mode .dropdown-content {
  background: #1f1f21;
}

body.dark-mode .dropdown-content a,
body.dark-mode .dropdown-content span {
  color: #e8e8e8;
}

/* Footer */
body.dark-mode .seekhe-footer {
  background-color: transparent;
  border-top: none;
}

body.dark-mode .seekhe-footer-brand-title {
  color: #fff;
}

body.dark-mode .seekhe-footer-section-title {
  color: #fff;
}

body.dark-mode .seekhe-footer-link {
  color: #999;
}

body.dark-mode .seekhe-footer-link:hover {
  color: #fff;
}

body.dark-mode .seekhe-footer-bottom {
  border-top: none;
  color: #999;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .seekhe-footer {
    padding: 10px 0 10px;
    margin-top: 10px; /* Reduce top margin */
  }
  
  .seekhe-footer-container {
    padding: 0 5px;
    width: 100%;
  }
  
  .seekhe-footer-content {
    grid-template-columns: 1fr 1fr; /* 2 columns on mobile */
    gap: 10px;
  }
  
  .seekhe-footer-brand {
    margin-bottom: 20px;
    justify-content: left; /* Center align */
    align-items: center;
    text-align: center;
  }
  
  .seekhe-footer-logo {
    width: 60px;
    height: 60px;
    margin: 0 auto 10px auto;
  }
  
  .seekhe-footer-section {
    text-align: center; /* Center align sections */
  }
  
  .seekhe-footer-section-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .seekhe-footer-links {
    align-items: left; /* Center align links */
  }
  
  .seekhe-footer-link {
    font-size: 17px;
  }
  
  .seekhe-footer-bottom {
    font-size: 17px;
    padding-top: 25px;
    margin-top: 10px;
    border-top: 1px solid rgba(0,0,0,0.1);
    
  }
}

@media (max-width: 480px) {
  .seekhe-footer-content {
    grid-template-columns: 1fr; /* Single column on very small screens */
    gap: 25px;
    padding: 0 5px;
  }
  
  .seekhe-footer-section-title {
    font-size: 14px;
  }
  
  .seekhe-footer-link {
    font-size: 12px;
  }
  
  .seekhe-footer-bottom {
    font-size: 12px;
    line-height: 1.4;
  }
}

/* ===== UTILITY CLASSES ===== */
.hidden {
  display: none !important;
}

.show {
  display: block !important;
}