/****************************************************************
 * END OF ALL PAGE SETTING FOR USER END OF THIS (Reset & Base Styles)
 ****************************************************************/
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style-type: none;
  text-decoration: none;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  -ms-user-select: none !important;
  user-select: none !important;
}

:root {
  /* Colors */
  --primary: #ffffff;
  --white: #ffffff;
  --bg: #0f0f10;
  --surface: #121214;
  --text: #e6e6e6;
  --muted: #9ca3af;
  --accent: #030e42;
  --accent-2: #764ba2;
  --success: #10b981;
  --danger: #ef4444;
  --body-bg: #e9eeea;
  --text-color: #111111;

  /* Spacing & Layout */
  --container-width: 1300px;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-xxl: 3rem;

  /* Typography */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.75;

  /* Effects */
  --transition-standard: 0.3s ease;
  --shadow-standard: 0 2px 20px rgba(0, 0, 0, 0.08);
  --border-radius-sm: 0.25rem;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;

  /* Responsive breakpoints */
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;

  --primary-color: #222;
  --secondary-color: #555;
  --accent-color: #011325;
  --bg-light: #ffffff;
  --bg-soft: #f8f9fb;
  --border-color: #e5e7eb;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-strong: 0 25px 50px rgba(0, 0, 0, 0.1);
}

@font-face {
  font-family: "BebasNeue";
  src: url("../fonts/BebasNeue.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Responsive Typography */
html {
  font-size: 16px; /* ===== Smooth Scrolling ===== */
  scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "BebasNeue", "Poppins", "Inter", -apple-system,
    BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin-bottom: var(--spacing-xs);
  line-height: var(--line-height-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}
/* h2 {
  font-size: var(--font-size-3xl);
} */
h3 {
  font-size: var(--font-size-2xl);
}
h4 {
  font-size: var(--font-size-xl);
}
h5 {
  font-size: var(--font-size-lg);
}
h6 {
  font-size: var(--font-size-base);
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--text-color);
  background-color: var(--body-bg);
  transition: background-color var(--transition-standard),
    color var(--transition-standard);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Prevent scroll-anchoring from restoring mid-page position on load */
html,
body {
  overflow-anchor: none;
  scroll-behavior: smooth;
}

/* ===== Responsive Images ===== */
img,
svg,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ===== Font Awesome Icon Loading ===== */
.fas,
.fa,
.icon-item i,
.nav-item i,
.close-hamburger i,
.search-menu-btn i {
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free",
    "Font Awesome 4.7.0";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  opacity: 1;
  /* Show icons by default */
  transform: scale(1);
  /* Show icons at full size by default */
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Enhanced icon visibility for better loading */
body.icons-loaded .fas,
body.icons-loaded .fa,
body.icons-loaded .icon-item i,
body.icons-loaded .nav-item i,
body.icons-loaded .close-hamburger i,
body.icons-loaded .search-menu-btn i {
  opacity: 1;
  transform: scale(1);
}

/* Fallback for when icons don't load */
.fas:before,
.fa:before,
.icon-item i:before,
.nav-item i:before,
.close-hamburger i:before,
.search-menu-btn i:before {
  opacity: 1 !important;
  transform: none !important;
}

/* ===== Enhanced Focus States for Accessibility ===== */
.search-input:focus,
.icon-item:focus,
.hamburger-menu:focus,
.nav-item:focus,
.search-menu-input:focus {
  outline: 2px solid #49464600;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px rgba(82, 83, 85, 0);
}

.nav-item:focus {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  transform: translateX(10px);
}

.nav-item:focus i {
  color: #667eea;
  transform: scale(1.1);
}

/* Hamburger content animation is handled by GSAP and CSS transforms */

/* ===== Scoped transitions (avoid global jank) ===== */
.header,
.top-bar,
.user-menu,
.hamburger-overlay,
.hamburger-content,
.search-menu-overlay,
.search-menu-content,
.nav-item,
.icon-item,
body {
  transition: background-color 0.3s ease, color 0.3s ease,
    border-color 0.3s ease;
}

/* ===== Enhanced Hover Effects ===== */
.nav-item::before {
  content: "";
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(102, 126, 234, 0.1), transparent);
  transition: width 0.3s ease;
  border-radius: 8px;
  z-index: -1;
}

.nav-item:hover::before {
  width: 100%;
}

.nav-item:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
  padding-left: 20px;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
}

.nav-item:hover i {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
  color: #667eea;
}

/* Prevent text overlap and keep a clean single-line label */
.nav-item span {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ===== Sticky Header Enhancement ===== */
.header.sticky {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.1);
}

body.dark-theme .header.sticky {
  background: rgba(12, 12, 14, 0.86);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}

/* ===== GSAP Animation Classes ===== */
/* removed duplicate gsap-nav-item rule */

/* Update the GSAP animation class direction */
.gsap-nav-item {
  opacity: 0;
  transform: translateX(30px);
  /* Change from translateX(-30px) to translateX(30px) */
}

/****************************************************************
 * END OF ALL PAGE SETTING FOR USER END OF THIS (Reset & Base Styles)
 ****************************************************************/
/* **************************************************************************************************** */

/* Skip link for keyboard users */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: #111;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  z-index: 1100;
}

.skip-link:focus {
  top: 8px;
}

/* ===== Page Loader Overlay ===== */
.page-loader {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background: #0b0b0c;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  will-change: opacity, visibility;
  transition: opacity 0.3s ease-out, visibility 0.3s ease-out;
}

.loader-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  animation: loaderPulse 1.2s ease-in-out infinite;
  opacity: 1;
  will-change: transform, opacity;
}

.loader-logo {
  width: 120px;
  height: auto;
  opacity: 1;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  display: block;
  will-change: transform, opacity;
}

/* ===== END OF Page Loader Overlay ===== */

/* ===== Container Classes ===== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
  background-color: var(--body-bg);
}

.container-fluid {
  width: 100%;
  padding-left: var(--spacing-md);
  padding-right: var(--spacing-md);
}

/* ===== Theme Styles ===== */

/* ===== Page Containers ===== */

/* Hamburger Menue Setup For User  */

#page-container1,
#main,
#page1 {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

#page-container1 {
  overflow: hidden;
  background-color: rgba(252, 251, 251, 0);
}

/* ===== Top Bar  SAB SA IPPER WALI PATTI ===== */
.top-bar {
  background: linear-gradient(135deg, #0b0b0c 0%, #000000 100%);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  position: relative;
  z-index: 999;
}

.top-bar-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  gap: 20px;
  align-items: center;
}

/* Header and navigation styles continue... */

.top-bar a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
  font-weight: 400;
}

.top-bar a:hover {
  color: white;
  transform: translateY(-1px);
}

.top-bar i {
  font-size: 12px;
  opacity: 0.8;
}

/* *************************************** */
/*   Header Dark Theme Setup For User */
/* *************************************** */

body.dark-theme .header {
  background: #000000;
  /* border-bottom-color: #ddddfae8;
  box-shadow: 0 2px 20px rgb(243, 229, 229); */
  color: white;
}

body.dark-theme .main-nav ul li a {
  color: white;
}

/* *************************************** */
/*  END OF Header Dark Theme Setup For User */
/* *************************************** */

/* ===== Header ===== */
.header {
  background: #ffffff;
  box-shadow: var(--shadow-standard);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e8eaed;
  transition: all var(--transition-standard);
}
.header {
  animation: fadeInUp 0.6s ease-out;
}

/* ===== Loading Animation ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 15px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* ===== Enhanced Hamburger Menu (Mobile Only) ===== */
.hamburger-menu {
  --hamburger-transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  cursor: pointer;
  padding: 12px;
  border-radius: 12px;
  transition: var(--hamburger-transition);
  z-index: 1002;
  display: block;
  position: relative;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid transparent;
  box-shadow: 0 2px 10px rgba(179, 180, 182, 0.3);
}

.hamburger-menu:hover {
  background: rgba(3, 5, 14, 0.66);
  transform: scale(1.1);
  box-shadow: 0 4px 20px rgba(15, 15, 15, 0.18);
  border-color: rgba(245, 228, 228, 0.97);
}

.hamburger-menu:active {
  transform: scale(0.95);
  box-shadow: 0 1px 5px rgba(216, 223, 252, 0.3);
}

.hamburger-menu.processing {
  pointer-events: none;
  opacity: 0.7;
  animation: pulse 1s infinite;
}

.hamburger-menu.active {
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hamburger-menu.active:hover {
  background: rgba(148, 3, 15, 0.67);
  box-shadow: 0 6px 25px rgba(255, 71, 87, 0.3);
}

/* Hamburger icon styles */
.hamburger-icon {
  width: 30px;
  height: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  pointer-events: none;
}

.hamburger-icon span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 4px;
  transition: var(--hamburger-transition);
  position: absolute;
  left: 0;
}

/* Position the three lines */
.hamburger-icon span:nth-child(1) {
  top: 0;
  width: 50%;
}

.hamburger-icon span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-icon span:nth-child(3) {
  bottom: 0;
  width: 75%;
}

/* Hover animations */
.hamburger-menu:hover .hamburger-icon span:nth-child(1),
.hamburger-menu:hover .hamburger-icon span:nth-child(3) {
  width: 100%;
}

.hamburger-menu:hover .hamburger-icon span:nth-child(1) {
  transform: translateY(-1px);
}

.hamburger-menu:hover .hamburger-icon span:nth-child(3) {
  transform: translateY(1px);
}

/*********************************
 * HAMBURGER MENU ACTIVE SECTION *
 *********************************/

/********************************************
 * TOP NAVIGATION MENUE  WITH DROPDOWN LIST *
 ********************************************/

.main-nav {
  display: none; /* Hidden by default on mobile */
  transition: all 0.3s ease;
  margin-top: 0.3rem;
}

ul.navbar-list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

ul.navbar-list > li {
  position: relative;
}

/* Main links */
ul.navbar-list > li > a {
  text-decoration: none;
  color: #000000;
  font-size: clamp(0.75rem, 0.5rem + 1vw, 1.4rem);
  font-family: "BebasNeue";
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  text-transform: uppercase;
  font-weight: 550;
}

/* Underline hover animation */
ul.navbar-list > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #f3eed4, #f8f7f5);
  transition: width 0.4s ease;
}

ul.navbar-list > li > a:hover {
  color: #030231; /* Accent yellow-gold */
}

ul.navbar-list > li > a:hover::after {
  width: 100%;
}

/* ===== Dropdown ===== */
ul.dropdown-menu {
  list-style: none;
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 180px;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px) scale(0.95);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 99;
}

ul.dropdown-menu li a {
  display: block;
  padding: 12px 16px;
  color: #ddd;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
}

ul.dropdown-menu li a:hover {
  background: linear-gradient(90deg, #fcf8e4, #ecebeb);
  color: #000;
}

/* Show dropdown on hover */
ul.navbar-list > li:hover > ul.dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

/* Dropdown glowing border effect */
ul.dropdown-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(90deg, #0e0e0d, #b6b6b6);
  opacity: 0;
  filter: blur(12px);
  z-index: -1;
  transition: opacity 0.4s ease;
}

ul.navbar-list > li:hover > ul.dropdown-menu::before {
  opacity: 0.6;
}

/********************************************
 * End of TOP NAVIGATION MENUE  WITH DROPDOWN LIST *
 ********************************************/

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  position: relative;
  /* Performance optimized */
}

.logo:hover {
  transform: scale(1.05) translateZ(0);
}

.logo-image {
  height: 100px;
  width: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}

/* Logo switching for theme */
.day-logo {
  opacity: 1;
  visibility: visible;
}

.night-logo {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

body.dark-theme .day-logo {
  opacity: 0;
  visibility: hidden;
}

body.dark-theme .night-logo {
  opacity: 1;
  visibility: visible;
}

/* ===== Header Icons ===== */
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-item {
  position: relative;
  cursor: pointer;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.icon-item:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: translateY(-2px);
}

.icon-item i {
  font-size: 18px;
  transition: all 0.3s ease;
}

.icon-item:hover i {
  transform: scale(1.1);
}

.cart-count,
.favorite-count {
  position: absolute;
  top: 5px;
  right: 5px;
  /* background: #ffcc00; bold yellow */
  background: #4c00ff;
  color: #ffffff; /* black text */
  font-size: 10px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
  line-height: 1;
  transition: all 0.3s ease;
  display: none;
}

.theme-toggle {
  background: rgba(102, 126, 234, 0.1);
}

.theme-toggle i {
  color: #f39c12;
  transition: all 0.3s ease;
}

body.dark-theme .theme-toggle i {
  color: #f1c40f;
}

/* ===== Hamburger Overlay ===== */
.hamburger-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(5px);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: none;
  -webkit-overflow-scrolling: touch;
}

.hamburger-overlay.show {
  opacity: 1;
  visibility: visible;
  display: block;
}

/* Hamburger content slides from left */
.hamburger-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  height: 100vh;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  box-shadow: 5px 0 20px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  color: #111111;
}

body.dark-theme .hamburger-content {
  background: #2d2d2d;
  color: #ffffff;
}

/* Ensure all text inside hamburger panel follows theme colors */
.hamburger-content :where(p, li, span, a, small, label, strong, em) {
  color: inherit;
}

.hamburger-overlay.show .hamburger-content {
  transform: translateX(0);
}
/* MObile VIEW HEADER  */

.hamburger-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 25px 20px 20px;
  border-bottom: 1px solid #e8eaed;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.hamburger-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: left 0.6s ease;
}

.hamburger-header:hover::before {
  left: 100%;
}

body.dark-theme .hamburger-header {
  border-bottom-color: #404040;
  background: linear-gradient(135deg, #0b0b0c 0%, #0a0f2e 100%);
}

.hamburger-header h3 {
  font-size: 24px;
  font-weight: 600;
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.close-hamburger {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1003;
  flex: 0 0 auto;
  touch-action: manipulation;
}

.close-hamburger:active {
  transform: scale(0.9);
}

.close-hamburger::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: scale(0);
  transition: transform 0.3s ease;
}

.close-hamburger:hover::before {
  transform: scale(1);
}

.close-hamburger i {
  position: relative;
  z-index: 1;
}

/* Ensure close icon remains visible even before icon font ready */
.close-hamburger i,
.close-hamburger i::before {
  opacity: 1 !important;
  transform: none !important;
}

/* Prevent overlap when header text is long */
.hamburger-header h3 + .close-hamburger {
  margin-left: auto;
}

.hamburger-nav {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.nav-section {
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
}

.submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform-origin: top; /* expand downward */
  transform: scaleY(0); /* collapsed */
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.has-submenu.open .submenu {
  max-height: 500px; /* enough space */
  opacity: 1;
  transform: scaleY(1); /* dropdown effect */
}

.submenu-toggle {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.has-submenu.open .submenu-toggle {
  transform: rotate(180deg);
}

.nav-section.animated {
  opacity: 1;
  transform: translateY(0);
}

.nav-section h4 {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e8eaed;
}

body.dark-theme .nav-section h4 {
  border-bottom-color: #404040;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  color: inherit;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 8px;
  opacity: 0;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

body.dark-theme .nav-item {
  color: inherit;
}

/* Nav-item hover animation moves to the right */
.nav-item:hover {
  color: var(--accent);
  background: rgba(102, 126, 234, 0.08);
  transform: translateX(10px);
  box-shadow: 0 2px 10px rgba(102, 126, 234, 0.15);
}

.nav-item i {
  font-size: 18px;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  text-align: center;
  opacity: 0.8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 6px;
  transition: color 0.25s ease, transform 0.25s ease, opacity 0.25s ease;
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free",
    "Font Awesome 4.7.0";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.nav-item:hover i {
  opacity: 1;
  transform: scale(1.1);
}

/* ===== Search Menu Overlay ===== */
.search-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(15px);
  z-index: 1003;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: none;
}

.search-menu-overlay.show {
  opacity: 1;
  visibility: visible;
  display: block;
}

.search-menu-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  width: 90%;
  max-width: 600px;
  max-height: 80vh;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

body.dark-theme .search-menu-content {
  background: #2d2d2d;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.search-menu-overlay.show .search-menu-content {
  transform: translate(-50%, -50%) scale(1);
}

.search-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 30px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: white;
}

.search-menu-header h3 {
  font-size: 20px;
  font-weight: 600;
}

.close-search-menu {
  background: none;
  border: none;
  color: white;
  font-size: 20px;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.close-search-menu:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.search-menu-body {
  padding: 30px;
}

.search-input-container {
  display: flex;
  align-items: center;
  background: #f8f9fa;
  border-radius: 15px;
  padding: 15px 20px;
  margin-bottom: 25px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

body.dark-theme .search-input-container {
  background: #404040;
}

/*************************************************
 * CHANGE COLOR OF BORDER SEARCH INPUT CONTAINER *
 *************************************************/

.search-input-container:focus-within {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: #ffffff;
}

body.dark-theme .search-input-container:focus-within {
  background: #2d2d2d;
}

.search-menu-input {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 16px;
  color: #333;
  padding: 0;
}

body.dark-theme .search-menu-input {
  color: #ffffff;
}

.search-menu-input::placeholder {
  color: #999;
}

body.dark-theme .search-menu-input::placeholder {
  color: #666;
}

.search-menu-btn {
  background: none;
  border: none;
  color: #667eea;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.search-menu-btn:hover {
  background: rgba(102, 126, 234, 0.1);
  transform: scale(1.1);
}
/*                              SUGGESTION WERE USER CAN EASY PHP IMPLEMENTATION */
.search-suggestions-menu {
  margin-bottom: 25px;
  max-height: 200px;
  overflow-y: auto;
}

.suggestion-item-menu {
  padding: 12px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin-bottom: 5px;
  border-bottom: 1px solid #f0f0f0;
}

body.dark-theme .suggestion-item-menu {
  border-bottom-color: #404040;
}

.suggestion-item-menu:hover {
  background: rgba(102, 126, 234, 0.08);
  color: #667eea;
  padding-left: 20px;
}

.search-categories h4 {
  font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 15px;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tag {
  background: rgba(102, 126, 234, 0.1);
  color: #667eea;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(102, 126, 234, 0.2);
}

.category-tag:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

/* duplicate search menu styles removed */

/* ===== User Menu                      HERE YOU PHP CODE IMPLEMENTATION START        SIGN  > UP/IN ===== */
.user-menu {
  position: absolute;
  top: 100%;
  right: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  min-width: 280px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid #e8eaed;
}

body.dark-theme .user-menu {
  background: #2d2d2d;
  border-color: #404040;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.user-menu.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.user-menu-header {
  padding: 20px;
  border-bottom: 1px solid #e8eaed;
  text-align: center;
}

body.dark-theme .user-menu-header {
  border-bottom-color: #404040;
}

.user-avatar {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
  font-size: 24px;
}

.user-info h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #333;
}

body.dark-theme .user-info h4 {
  color: #ffffff;
}

.user-info p {
  font-size: 14px;
  color: #666;
  margin: 0;
}

body.dark-theme .user-info p {
  color: #ccc;
}

.user-menu-actions {
  padding: 20px;
}

.user-action {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-radius: 8px;
  padding-left: 15px;
}

body.dark-theme .user-action {
  color: #ccc;
}

.user-action:hover {
  color: #667eea;
  background: rgba(102, 126, 234, 0.08);
  padding-left: 20px;
}

.user-action i {
  font-size: 16px;
  width: 20px;
  text-align: center;
  opacity: 0.7;
}

/* * ===== Search Results Overlay (from JS) ===== */
*/ .search-results-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.search-results {
  background: #ffffff;
  color: #222;
  border-radius: 16px;
  width: 100%;
  max-width: 640px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

body.dark-theme .search-results {
  background: #2d2d2d;
  color: #f1f1f1;
}

.search-results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
}

.search-results-header h3 {
  font-size: 1rem;
  font-weight: 600;
}

.search-results-header .close-results {
  background: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 1.1rem;
}

.search-results-content {
  padding: 20px;
}

/*****************************
 * ===== PAGE1 CONTENT ******************************************* ===== *
 *****************************/

.main-content {
  padding: 10px 20px;
  text-align: left;
  opacity: 1;
  visibility: visible;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/*****************************
 * ===== PAGE1 CONTENT  Starts From here ===== *
 *****************************/

.main-content h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(2rem, 4rem + 3vw, 5.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: inherit;
  text-align: center;
  line-height: 1.1;
  margin: 0 auto;
  max-width: 95%;
  white-space: nowrap;
  /* overflow: hidden; */
  text-overflow: ellipsis;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
}

/* ************************************           SCROLL  BAR SETTIGN */
::-webkit-scrollbar {
  width: 0.4rem;
}

::-webkit-scrollbar-thumb {
  border-radius: 1rem;
  background: #797979;
  transition: all 0.5s ease-in-out;
}

::-webkit-scrollbar-thumb:hover {
  background: #222224;
}

::-webkit-scrollbar-track {
  background: #f9f9f9;
}

/* ************************************       END OF SCROLL  BAR SETTIGN */

/*****************************
 * FEATURED SHOWCASE SECTION *
 *****************************/

/* Page1 Coding Start From Here  */

.featured-showcase {
  max-width: 1300px;
  margin: 0 auto;
  /* padding: 0 1rem; */
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.showcase-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #859ac3;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.showcase-card1 {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
  background-image: url("../images/man1.jpg");
  background-size: cover;
  /* background-position: center;  */
  background-repeat: no-repeat;
}

.showcase-card .image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.35s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Keep consistent aspect for media cards */
.showcase-card:not(.text-card) .image-wrap {
  aspect-ratio: 3 / 4;
}

.showcase-card.text-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: linear-gradient(135deg, #f7f7f700 0%, #ffffff00 100%);
  border: 1px solid #e8eaed;
}

.showcase-card .text-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem;
  padding-bottom: 0;
  background: white;
}

.showcase-card .text-wrap .arrow-btn {
  flex-shrink: 0;
  margin-left: auto;
}

.text-fixed h2 {
  margin: 0;
}

.showcase-card .text-wrap h2 {
  font-size: clamp(1.6rem, 1.5vw + 0.5rem, 3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #0f0f10;
  font-family: "BebasNeue";
  line-height: 1.05;
}

.arrow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #111;
  color: #111;
  background: #fff;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.arrow-btn:hover {
  transform: translateY(-2px) translateZ(0);
  background: #eeeded;
  color: #000000;
  border-color: #e2e1e1;
}

.showcase-card .caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-size: clamp(0.9rem, 0.6rem + 1vw, 1.1rem);
  backdrop-filter: blur(6px);
  font-family: "Inter", sans-serif;
  font-weight: 700;
  color: rgb(255, 240, 240);
  background: linear-gradient(to top, #1017282e, #101728);
  width: 100%;
  will-change: transform, opacity;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/*****************************
 * ===== End of PAGE1 CONTENT ===== *
 *****************************/

/******************
 * PAGE 1 SETTING *
 ******************/

/* Ribbons  Code START  FROM HERE *************************************************/
.ribbon-stack {
  position: relative;
  height: 150px;
  margin: 1rem 0rem 0rem 0rem;
  width: 100%;
  z-index: 1;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ribbon {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 72px;
  display: flex;
  align-items: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.ribbon.dark {
  background: black;
  color: #fff;
  transform: rotate(-6deg) translateZ(0);
  /* top: 42px; */
  top: 25px;
}

.ribbon.light {
  background: #bbbbbb;
  color: black;
  transform: rotate(6deg) translateZ(0);
  top: 25px;
}

.track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.item {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 14px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

.star {
  font-size: 18px;
  will-change: transform;
  transform: translateZ(0);
  backface-visibility: hidden;
}

/************************
 * END OF PAGE1 SETTING ************************************************** *
 ************************/

/**************************
 * PAGE2 SETTING FOR USER *
 **************************/
.Page2 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 8% 10px 8%;
  margin-top: 0rem;
}

/* Left Illustration */
.Page2 .left {
  width: 50%;
}

.Page2 .left img,
.Page2 .left video {
  width: 100%;
  height: auto;
}

/* Right Content */
.Page2 .right {
  width: 45%;
}

.Page2 .right img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.Page2 .right h1 {
  /* font-size: clamp(1rem, 1rem + 1vw, 1.5rem); */
  font-size: calc(1rem + 0.5vw);
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  text-transform: capitalize;
  display: flex;
  justify-content: flex-start;
  /*align-items: start;*/
  margin: 1rem 0 0 0;
  text-decoration: underline solid rgb(224, 224, 224);
  text-decoration-thickness: 0.11rem;
  text-underline-offset: 7.3px;
  text-align: left;
  padding-left: 0px;
}

/*  UnderLine Tag in H1 Page2 */
.half-underline {
  text-decoration: underline solid
    linear-gradient(
      135deg,
      rgb(0, 138, 148) 0%,
      rgb(173, 173, 182) 50%,
      rgb(238, 238, 238) 100%
    );
  text-decoration-thickness: 5px;
  text-underline-offset: 7.3px;
  color: rgb(0, 138, 148);
}

.Page2 .right h2 {
  all: unset; /* clears all inherited styles */
  display: flex; /* flex container */
  justify-content: flex-start; /* align horizontally left */
  align-items: flex-start; /* align vertically top */
  margin-top: 0.4rem; /* keep only one margin rule */
  font-size: 1rem;
  font-family: sans-serif;
  font-weight: bold;
  text-transform: capitalize;
  text-align: left;
}

.Page2 .right p {
  margin: 17px 0;
  color: #555;
  font-size: 16px;
  line-height: 1.6;
  max-width: 400px;
  text-align: left; /* keeps text aligned properly */
}

.Page2 .right .btn1 {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  background: #fff;
  border: 2px solid #000;
  cursor: pointer;
  transition: 0.3s;
}

.Page2 .btn1:hover {
  background: #000;
  color: #fff;
}

/* Pop Up Message */
.popup-container {
  border-radius: 16px !important;
  padding: 30px !important;
}

.popup-btn {
  display: block;
  width: 100%;
  max-width: 260px;
  text-align: center;
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff !important;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

button.popup-btn {
  border: none;
  cursor: pointer;
}

/**************************
 * END OF PAGE2 STYLING ******************************************
 **************************/

/**************************
 * PAGE3 STYLING
 **************************/
#Page3 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 0px 20px;
  min-height: 50vh;
  margin-bottom: 20px;
}

/* 🔥 Headline Styling */
#Page3 h1 {
  font-size: clamp(6rem, 5vw, 6.3rem);
  font-weight: 900;
  /* margin: 0 0 0rem; */
  line-height: 1.1;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

#Page3 p.sub {
  margin-bottom: 3%;
  line-height: 1.6;
  color: #555;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1rem, 2vw, 1.2rem);
}

/* Controls */
.controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}
.controls button {
  flex: 1;
  min-width: 200px;
  padding: 10px 15px;
  background: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
  font-weight: bold;
  font-size: 1rem;
}
.controls button.active,
.controls button:hover {
  background: #c3f47b;
}

/* Grid Layout */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  aspect-ratio: 3 / 4;
}
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.card:hover img {
  transform: scale(1.03);
}

/* Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(1.2rem, 2vw, 2rem);
  opacity: 0;
  transition: opacity 0.3s;
}
.card:hover .overlay {
  opacity: 1;
}

/* Load More Button */
#loadMore {
  display: block;
  margin: 15px auto 10px auto;
  padding: 12px 20px;
  font-size: 1.2rem;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
#loadMore:hover {
  background: #333;
}
#loadLess {
  display: block;
  margin: 15px auto 10px auto;
  padding: 12px 20px;
  font-size: 1.2rem;
  background: #444;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: 0.3s;
}
#loadLess:hover {
  background: #666;
}

/**************************
 * END OF  PAGE3 STYLING ****************************************
 **************************/

/**************************
 * PAGE4 STYLING
 **************************/
#Page4 {
  max-width: 1200px;
  width: 100%;
  padding: 0px 20px 0px 20px;
  margin: 0 auto;
}

/**************************
 * END OF PAGE4 STYLING
 **************************/

/**************************
 * PAGE5 STYLING
 **************************/
/* ===== Page5 Styling ===== */
.Page5 {
  max-width: 1200px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  background: #e9eeea;
}

.Page5 h2 {
  font-family: "BebasNeue";
  font-size: 5rem;
  font-weight: 900;
  margin-top: 20px;
  margin-bottom: 0px;
  color: #222;
}

#Page5-services {
  color: #ff3d00;
}

.Page5 p {
  /* font-size: 18px; */
  color: #555;
  max-width: 750px;
  margin: 0 auto 20px;
  /* line-height: 1.8; */
}

/* ===== Page5-cards Grid ===== */
.Page5-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default: 4 columns */
  gap: 40px;
  justify-items: center;
}

/* ===== Page5-card Styling ===== */
.Page5-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
  max-width: 350px;
  padding: 20px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.Page5-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(49, 48, 48, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.Page5-card:hover::before {
  opacity: 1;
}

.Page5-card:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* ===== Image ===== */
.Page5-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 25px;
  transition: transform 0.3s ease-in-out;
  z-index: 2;
  position: relative;
  margin: auto;
  margin-bottom: 10px;
}

/* ===== Title ===== */
.Page5-card h3 {
  font-size: 1rem; /* Larger for impact */
  margin-bottom: 8px;
  font-weight: 800;
  color: #222;
  position: relative;
  z-index: 2;
  font-family: "Poppins", sans-serif; /* Clean premium font */
  text-transform: uppercase; /* Optional for style */
  font-weight: 500;
}

/* ===== Text ===== */
.Page5-card p {
  font-size: 12px;
  color: #555;
  line-height: 1.6;
  /*max-width: 90%;*/
  margin: 0 auto;
  z-index: 2;
  position: relative;
  font-weight: 400;
}

.Page5-card p strong {
  color: #ff3d00;
  font-weight: 600;
}

.Page5-cards,
.Page5 h2,
.Page5 p {
  animation: fadeUp 1s ease forwards;
}

/**************************
 * END OF PAGE5 STYLING ***********************************************************
 **************************/

/**************************
 * PAGE6 STYLING
 **************************/

.Page6-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 10px;
  font-family: "BebasNeue";
}

#Page6-caption {
  color: #ff3d00;
}

.Page6-main-title {
  text-align: center;
  color: #2d5d46;
  font-size: 2.3rem;
  font-weight: bold;
}

.Page6-grid-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1fr; /* 3 normal + 1 tall */
  grid-template-rows: auto auto; /* 2 rows */
  gap: 25px;
  align-items: stretch;
  margin-top: 10px;
}

.Page6-card h2{
    font-size: 1.875rem;
    font-weight: bolder;
}

.Page6-card p{
    font-family: emoji;
    margin-bottom: 5px;
}



/* First 3 Page6-cards (row 1 only) */
.Page6-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  height: 250px;
}

.Page6-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  height: 250px;
}

.Page6-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  height: 250px;
}

/* 4th Page6-card goes to second row under 1+2 */
.Page6-card:nth-child(4) {
  grid-column: 1 / span 3; /* spans two columns */
  grid-row: 2;
}

/* 5th Page6-card tall (row 1 + row 2) */
.Page6-card:nth-child(5) {
  grid-column: 4; /* last column */
  grid-row: 1 / span 2; /* spans both rows */
  display: flex;
}

/* Page6-card styles */
.Page6-card {
  border-top: 2px dashed #ff3c00ce;
  border-right: 2px dashed #882000;
  border-bottom: 2px dashed #2b0c02;
  border-left: 2px dashed #8a0606;
  border-radius: 15px;
  padding: 25px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.Page6-card.Block2 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: flex; /* removes inline spacing */
  justify-content: center;
  margin: 0 auto;
}

.Page6-card.Block6 {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  display: flex; /* removes inline spacing */
  justify-content: center;
  align-items: center;
}

.Page6-card a {
  color: #d71818;
  text-decoration: underline red solid;
  text-decoration-thickness: 0.2px;
  font-size: initial;
}

/**************************
 * END OF PAGE6 STYLING *****************************************************************************
 **************************/
/**************************
 * PAGE7 STYLING
 **************************/
.Page7-wrapper * {
  all: unset;
  all: revert;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

.Page7-wrapper {
  width: 100%;
  display: block;
  background-color: #e9eeea;
}

.Page7-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  border-radius: 10px;
}

.Page7-faq-section {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: flex-start;
}

/* Left Column */
.left-column {
  padding-right: 20px;
}

.main-heading-Page7 {
  font-size: 5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  line-height: 1;
  font-family: "BebasNeue", cursive;
  margin-top: 5px;
}

#page7 {
  font-family: "BebasNeue", cursive;
  color: #ff3d00;
}

.description {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.7;
  max-width: 90%;
}

.more-faqs {
  color: #8b5cf6;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  margin-top: 10px;
  cursor: pointer;
}

.more-faqs:hover {
  color: #7c3aed;
}

/* Right Column */
.accordion {
  width: 100%;
}

.accordion-item {
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
}

.accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  cursor: pointer;
}

.accordion-header:hover {
  background-color: #e9eeea88;
}

.accordion-header h3 {
  font-size: 1rem;
  font-weight: 800;
  font-style: normal;
  /* text-transform: uppercase; */
  color: #333;
}

.toggle-icon {
  font-size: 1.2rem;
  font-weight: bold;
  color: #666;
  margin-left: 12px;
  transition: transform 0.3s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
  overflow-y: auto;
  padding: 10px 0;
}

.accordion-content p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}
/* Page7 Email Btn */
.email-btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  border-radius: 10px;
  background: #fff;
  border: 1px groove #000000;
  cursor: pointer;
  transition: 0.3s;
}

.email-btn:hover {
  background: #000;
  color: #fff;
}

/* Popup */
.popup {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  animation: fadeIn 0.3s ease-in-out;
}

.popup-content {
  background: #fff;
  border-radius: 20px;
  padding: 30px 25px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  animation: slideUp 0.4s ease-in-out;
}

.popup-content h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #333;
}

.popup-content input,
.popup-content textarea {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  box-sizing: border-box;
}

.popup-content input:focus,
.popup-content textarea:focus {
  border-color: #7b5cff;
  box-shadow: 0 0 6px rgba(123, 92, 255, 0.3);
}

.popup-content button {
  background: linear-gradient(135deg, #7b5cff, #6241ff);
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(123, 92, 255, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.popup-content button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(123, 92, 255, 0.5);
}

/**************************
 * END OF PAGE7 STYLING****************************************************************
 **************************/

/******************** */
/* Page12******************* */
/******************** */

/* Container */
.banner-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Banner Wrapper */
.promotional-banner {
  background-color: #2c2c2c;
  border-radius: 16px;
  /* padding: 40px; */
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  gap: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  flex-wrap: wrap;
}

/* Left Section */
.left-section {
  flex: 1;
  /* background: #1e1e1e; */
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.heading1 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  font-family: "BebasNeue", cursive;
  font-weight: bold;
}

.heading2 {
  color: #eeeded;
  font-size: 1.6rem;
  font-weight: 600;
}

.email-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 4px;
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  justify-content: space-between;
}

.email-input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  outline: none;
}

.subscribe-btn {
  padding: 10px 20px;
  background-color: #000;
  color: #fff;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: 0.3s ease;
}

.subscribe-btn:hover {
  background-color: #333;
}

/* Right Section */
.right-section {
  flex: 1;
  /* background: #1e1e1e; */
  padding: 0px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.banner-container-description {
  color: #fff;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 500px;
  text-align: left;
  /* margin-bottom: 20px; */
}

/**************************
 * END OF PAGE12 STYLING \*********************
 **************************/

/**************************
 * PAGE8 STYLING*************************************************************
 **************************/
/* Testimonials Section */

.testimonials-section {
  background: #e9eeea;
  padding: 15px 20px;
  text-align: center;
}

.Page8-section-title {
  font-size: 6rem;
  font-weight: 800;
  text-transform: capitalize;
  /* margin-bottom: 50px; */
  color: #111;
}

.Page8-container {
  max-width: 1200px;
  margin: 0 auto;
}

.Page8-container {
  font-size: 4rem;
}
/* Grid Layout */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(200px, 1fr));
  gap: 30px;
}

/* Testimonial Card */
.testimonial-card {
  background: #f9fafc;
  border: 1px solid #eee;
  border-radius: 15px;
  padding: 25px;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.6;
  margin-bottom: 25px;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  color: #111;
}

.stars {
  font-size: 1rem;
  color: #f43f5e;
}

/* Quote Icon Styling */
.testimonials-grid .testimonial-card:nth-child(2) .quote-icon,
.testimonials-grid .testimonial-card:nth-child(3) .quote-icon {
  transform: rotate(180deg);
  position: absolute;
  right: 20px;
  bottom: 20px;
  font-size: 6rem;
  color: #e0dddd;
  opacity: 0.5;
}

.testimonials-grid .testimonial-card:nth-child(1) .quote-icon,
.testimonials-grid .testimonial-card:nth-child(4) .quote-icon {
  display: none;
}

/**************************
 * END OF PAGE8 STYLING **************************************
 **************************/

/**********
 * PAGE11 *
 **********/
.stats-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
}

.stat-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
}

.stat-card i {
  font-size: 40px;
  color: #333;
  margin-bottom: 15px;
}

.stat-card h2 {
  font-size: 28px;
  font-weight: bold;
  color: #000;
  margin-bottom: 5px;
}

.stat-card p {
  /* font-size: 16px; */
  color: #555;
}

/*****************
 * END OF PAGE11 ******************************************
 *****************/

/**************************
 * PAGE9 STYLING
 **************************/

/* Contact Section Styles */
.contact-section {
  padding: 4rem 2rem;
  background: #e9eeea;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.Page8-section-title.Page9 {
  text-align: center;
}

.contact-info {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--secondary-color);
}

.contact-info i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  color: white;
  border-radius: 50%;
  font-size: 1.2rem;
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--secondary-color);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #eee;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.1);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  background: var(--accent-color);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
}

.submit-btn:hover {
  background: #0056b3;
  transform: translateY(-2px);
}

.social-links {
  display: flex;
  gap: 1rem;
  /* margin-top: 2rem; */
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: var(--secondary-color);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a {
  text-decoration: none;
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-2px);
}

/**************************
 * END OF PAGE9 STYLING ***************************
 **************************/

/* Page 10 Setting ********************************  */

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 300px; /* 👈 Set a fixed height */
}

iframe {
  width: 100%;
  height: 100%; /* now this works because parent has height */
  border: none;
  border-radius: 10px;
}

.map-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 10px; space between map-logos */
  /* margin-top: 20px; */
  padding: 0px 20px;
  margin: 0 auto;
}

.map-logos img {
  max-height: 100%;
  width: -webkit-fill-available;
}

/**************************
 * END OF PAGE10 STYLING ***************************
 **************************/

/**********
 * FOOTER *
 **********/

/* Footer Styles */
.footer {
  background: var(--bg-light);
  padding: 50px 0 30px;
  border-top: 1px solid var(--border-color);
  border-radius: 24px 24px 0 0;
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 50px;
}

/* Left Section */
.footer-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-name {
  font-size: 3rem;
  font-weight: bolder;
  word-spacing: 0.5px;
  font-family: "BebasNeue";
  letter-spacing: 1.5px;
}

.company-description {
  font-size: 15px;
  color: var(--secondary-color);
  max-width: 280px;
  line-height: 1.6;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-soft);
}

.social-links a:hover {
  transform: translateY(-4px);
  background: #0056b3;
}

/* Middle Section */
.footer-middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.nav-heading {
  font-family: "Poppins", sans-serif;
  font-size: var(--font-size-2xl);
  font-weight: lighter;
  margin-bottom: 12px;
  color: #000000;
}

.nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  text-decoration: none;
  color: var(--secondary-color);
  font-size: 15px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-color);
}

.contact-column li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--secondary-color);
}

/* Right Section */
.footer-right {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.legal-links {
  display: flex;
  gap: 18px;
}

.legal-links a {
  font-size: 14px;
  color: #888;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--accent-color);
}

.Developed {
  font-size: 14px;
  color: #666;
}

.developer-name {
  background: none;
  border: none;
  color: var(--accent-color);
  font-weight: 600;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.developer-name:hover {
  color: #0056b3;
  transform: translateY(-1px);
}

em {
  color: #0056b3;
}

/* Developer Modal */
.developer-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  justify-content: center;
  align-items: start;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  padding: 1rem;
}

.developer-modal.active {
  display: flex;
  opacity: 1;
}

.developer-modal-content {
  background: var(--bg-light);
  width: 100%;
  max-width: 1200px;
  margin: 1rem auto;
  border-radius: 20px;
  box-shadow: var(--shadow-strong);
  animation: modalSlideIn 0.5s ease-out;
  overflow: hidden;
}

.developer-info {
  padding: 3rem 2rem;
}

.close-developer-modal {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary-color);
  font-size: 1.75rem;
  z-index: 10;
}

.close-developer-modal:hover {
  background: var(--accent-color);
  color: white;
  transform: rotate(90deg);
}

.developer-header {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  position: relative;
}

.developer-photo {
  width: 220px;
  height: 220px;
  border-radius: 30px;
  object-fit: cover;
  border: 4px solid var(--accent-color);
  box-shadow: 0 10px 20px rgba(0, 122, 255, 0.2);
  transition: transform 0.3s ease;
}

.developer-photo:hover {
  transform: translateY(-5px);
}

.developer-intro {
  flex: 1;
}

.developer-intro h2 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
  font-weight: 700;
  letter-spacing: -1px;
}

.developer-title {
  font-size: 1.5rem;
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.developer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: var(--accent-color);
}

.developer-section {
  margin-bottom: 4rem;
  padding: 2rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.developer-section:hover {
  transform: translateY(-5px);
}

.developer-section h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid #f0f0f0;
}

.developer-section h3 i {
  color: var(--accent-color);
  /* background: rgba(0, 122, 255, 0.1); */
  padding: 10px;
  border-radius: 12px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.skill-category {
  padding: 1.5rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.skill-category:hover {
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.skill-category h4 {
  color: var(--accent-color);
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-category ul {
  list-style: none;
  padding: 0;
}

.skill-category li {
  padding: 0.75rem 0;
  color: var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.skill-category li::before {
  content: "•";
  color: var(--accent-color);
  font-size: 1.5rem;
}

.experience-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #eee;
}

.experience-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.experience-item h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.experience-item .company {
  color: var(--accent-color);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 500;
}

.experience-item .period {
  color: var(--secondary-color);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0.25rem 1rem;
  background: #f8f9fa;
  border-radius: 20px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transform: translateY(-2px);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.5rem;
  padding: 12px;
  border-radius: 10px;
}

/****************************************************************
 * page2 Product Page2 Design Page 
 ****************************************************************/

.product-container {
  max-width: 1200px;
  margin: 0 auto;
}

.page2Product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 15px 20px;
}

.NewPage2-product-card {
  background: #0c0c0c;
  border: 1px solid #f1f1f1;
  overflow: hidden;
  position: relative;
}

.Page6-product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  cursor: zoom-in;
}

.Page6-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease, transform-origin 0.3s ease;
  display: block;
}

.product-info {
  padding: 10px;
  color: #fff;
}

.Page2-button {
  margin-top: 5px;
  padding: 10px 15px;
  cursor: pointer;
}

/* .NewPage2-product-card:hover .product-image img {
  transform: scale(0.5);
} */

.product-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 5px 10px;
}

.brand-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand {
  font-size: 12px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
}

.rating {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #ffd500;
  font-size: 14px;
  font-weight: 600;
}

.rating i {
  font-size: 16px;
}

.price-section {
  display: flex;
  align-items: center;
  /* gap: 12px; */
}

.current-price {
  font-size: 24px;
  font-weight: bold;
  color: #ffffff;
}

.original-price {
  font-size: 18px;
  color: #ffffff;
  text-decoration: line-through;
}

.product-name {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
}
.Page2-button {
  background-color: #e8f1ea; /* Green color */
  color: black; /* White text */
  font-size: 16px;
  font-weight: bold;
  padding: 12px 24px;
  border: none;
  border-radius: 8px; /* Rounded corners */
  cursor: pointer;
  transition: all 0.3s ease; /* Smooth hover effect */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.Page2-button:hover {
  background-color: #dae8dd; /* Darker green on hover */
  transform: scale(1.05); /* Slightly bigger on hover */
}

.Page2-button:active {
  transform: scale(0.95); /* Small press-down effect */
}
/* Popup Page Design   ***********************************************************************/
/* Trigger Button */

/* Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;

  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
}


.product-popup-box {
  overflow: hidden;
  padding: 0;

  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);

  transform: scale(0.9);
  opacity: 0;
  animation: popzoomin 0.5s forwards;
}



.product-popup-box img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
}

.product-popup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.product-popup-content h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 600;
  font-family: "Playfair Display", serif;
  color: #000000;
}

.product-popup-content p {
  margin: 10px 0;
  font-size: 14px;
  color: #000000;
}

.product-popup-content .price {
  margin: 20px 0;
  font-size: 32px;
  font-weight: bold;
  color: #04053f;
}


.sizes button {
  margin: 5px;
  padding: 10px 20px;
  font-weight: 500;
  border: 1px solid #444;
  border-radius: 5px;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sizes button:hover {
  background-color: crimson;
  color: white;
}

.sizes button.active {
  border: none;
  background: linear-gradient(135deg, rgb(48, 7, 15), #250900);
  color: #ffffff;
  transform: scale(1.08);
}

/* Quantity */
.quantity {
  display: flex;
  align-items: center;
}

.quantity button {
  padding: 10px 16px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  background: #222;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.quantity button:hover {
  background: #333;
  color: #d4af37;
}

.quantity input {
  width: 55px;
  margin: 0 12px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border: none;
  border-radius: 8px;
  color: #000000;
}



.actions button {
  margin-right: 5px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.actions .add-cart {
  border: 1px solid #000000;
  background: #ffffff;
  color: #000000;
}

.actions .add-cart:hover {
  background: #000000;
  color: #ffffff;
}

.actions .buy-now {
  background: linear-gradient(135deg, #000000, #000000);
  color: #ffffff;
  border: #000;
  box-shadow: 0 4px 20px rgba(238, 235, 236, 0.4);
}

.actions .buy-now:hover {
  transform: translateY(-3px);
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 32px;
  font-weight: bold;
  color: #000000;
  cursor: pointer;
  transition: 0.2s;
}

.close-btn:hover {
  color: #ff0101;
}

/* Cart Drawer Page  */

/* Overlay */
.cartPanel-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  z-index: 999;
}

/* Cart Drawer */
.cartPanel-container {
  position: fixed;
  top: 0;
  right: -400px;
  width: 360px;
  height: 100%;
  background: #111;
  color: #fff;
  transition: right 0.35s ease;
  z-index: 1000;
  display: flex;
  flex-direction: column;
}
.cartPanel-container.open {
  right: 0;
}

.cartPanel-header {
  padding: 15px;
  font-size: 20px;
  font-weight: bold;
  color: #ffc107;
  border-bottom: 1px solid #333;
}

/* Scrollable cart */
.cartPanel-items {
  flex: 1;
  overflow-y: auto;
  padding: 15px;
}
.cartPanel-items::-webkit-scrollbar {
  width: 8px;
}
.cartPanel-items::-webkit-scrollbar-thumb {
  background: #444;
  border-radius: 4px;
}
.cartPanel-items::-webkit-scrollbar-thumb:hover {
  background: #666;
}

.cartPanel-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #222;
  border-radius: 6px;
  background: #1a1a1a;
}
.cartPanel-item img {
  width: 60px;
  height: 60px;
  border-radius: 5px;
  margin-right: 10px;
}
.cartPanel-item-details {
  flex: 1;
}
.cartPanel-item-details strong {
  display: block;
  margin-bottom: 5px;
}

.cartPanel-quantity {
  display: flex;
  align-items: center;
}
.cartPanel-quantity button {
  width: 24px;
  height: 24px;
  border: none;
  background: #ffc107;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
}
.cartPanel-quantity input {
  width: 30px;
  text-align: center;
  border: none;
  margin: 0 5px;
  background: #000;
  color: #fff;
}

.cartPanel-remove {
  background: none;
  border: none;
  color: #888;
  font-size: 18px;
  margin-left: 8px;
  cursor: pointer;
  transition: 0.2s;
}
.cartPanel-remove:hover {
  color: #ff4b2b;
}

/* Notice text */
.cartPanel-notice {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 15px;
  color: #aaa;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

/* Footer */
.cartPanel-footer {
  display: flex;
  justify-content: space-between;
  gap: 5px;
  padding: 15px;
  border-top: 1px solid #333;
}
.cartPanel-footer button {
  flex: 1;
  padding: 12px;
  border: none;
  font-weight: bold;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}
.cartPanel-close {
  background: #000;
  color: #fff;
}
.cartPanel-close:hover {
  background: #222;
}
.cartPanel-inquiry {
  background: #ffc107;
  color: #000;
}
.cartPanel-inquiry:hover {
  background: #ffda33;
}

/* End of Cart Drawer Page  */
/****************************************************************
 * ALL PAGE SETTING FOR USER END OF THIS PAGE Animations QUIRES  
 ****************************************************************/

@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

/* Pulse animation for processing state */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.05);
    opacity: 0.9;
  }

  100% {
    transform: scale(1);
    opacity: 0.7;
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0) translateZ(0);
  }

  100% {
    transform: translateX(-50%) translateZ(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-30px);
  }
}

/* ===== ANIMATIONS ===== */
/* All animations organized in one place */

@keyframes loaderPulse {
  0% {
    opacity: 0.5;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/* ===== Animation ===== */
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animations */
@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Animations */
@keyframes popfadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes popzoomin {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/****************************************************************
 * END OF ALL PAGE SETTING FOR USER END OF THIS PAGE Animations QUIRES  
 ****************************************************************/

/* **************************************************************************************** */

/****************************************************************
 * ALL PAGE SETTING FOR USER END OF THIS PAGE MEDIA QUIES  
 ****************************************************************/
@media (max-width: 480px) {
  .showcase-card1 {
    display: none;
  }
  .showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .Page6-card:nth-child(1),
  .Page6-card:nth-child(3) {
    height: 100px;
  }

  .Page6-card.Block6 img {
    aspect-ratio: 1;
    height: 200px;
  }

  .showcase-card .caption {
    font-size: small;
  }

  .Page6-card {
    justify-content: center;
    /* flex-shrink: 50px; */
  }

  .Page6-card.Block6 {
    /* justify-content: center; */
    padding: 10px 0px;
  }

  .map-logos {
    flex-direction: column;
    /* gap: 10px; */
  }
  .Page6-grid-wrapper {
    display: flex;
    flex-direction: column;
  }

  .container h2 {
    font-size: var(--font-size-4xl);
  }

  .showcase-card .text-wrap {
    gap: 0.3rem;
  }

  .showcase-card .text-wrap h2 {
    font-size: x-large;
  }

  .showcase-card .text-wrap .arrow-btn {
    transform: scale(0.7);
  }

  .email-input {
    max-width: 50%;
    padding: 8px 12px;
  }

  .header-container {
    padding: 10px 15px;
    gap: 10px;
  }
  .Page2 .right h1 {
    font-size: 0.9rem; /* Keep it readable but compact */
    text-align: left;
  }

  .Page2 .right p {
    font-size: 0.9rem;
  }

  .Page2 .right .btn1 {
    transform: scale(0.75);
  }

  .cart-count,
  .favorite-count {
    top: -2px;
    right: -2px;
    min-width: 14px;
    padding: 5px 4px;
    font-size: 10px;
    transform: scale(0.95);
  }
  .top-bar {
    font-size: 12px;
  }

  .top-bar-container {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 15px;
  }

  .header-container {
    padding: 8px 10px;
    gap: 10px;
  }

  .hamburger-menu {
    padding: 6px;
    min-width: 32px;
    min-height: 32px;
  }

  .hamburger-icon {
    width: 20px;
    height: 16px;
  }

  .hamburger-icon span {
    height: 2.5px;
  }

  .logo-image {
    height: 42px;
  }

  .header-icons {
    gap: 6px;
  }

  .icon-item {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .icon-item i {
    font-size: 12px;
  }

  .main-content h1 {
    font-size: clamp(1rem, 2vw + 0.5rem, 2.5rem);
    padding: 0 8px;
    letter-spacing: 0.03em;
    line-height: 1.2;
    white-space: nowrap;
  }

  .main-content {
    padding: 10px 10px;
  }

  /* Ribbon smaller */
  .ribbon {
    height: 56px;
  }

  .item {
    font-size: 12px;
    gap: 14px;
  }

  .track {
    gap: 24px;
  }

  .ribbon.dark {
    transform: rotate(-8deg) translateZ(0);
  }

  .ribbon.light {
    transform: rotate(8deg) translateZ(0);
  }

  .hamburger-content {
    width: 260px;
  }

  .hamburger-nav {
    padding: 12px;
  }

  .hamburger-header {
    padding: 15px 12px 12px;
  }

  .search-menu-header {
    padding: 20px;
  }

  .search-menu-body {
    padding: 15px;
  }

  .category-tags {
    gap: 8px;
  }

  .category-tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hamburger-header h3 {
    font-size: 16px;
  }

  .close-hamburger {
    font-size: 16px;
    padding: 4px;
  }

  .nav-item {
    padding: 10px 12px;
    font-size: 13px;
  }

  .top-bar {
    font-size: 12px;
  }

  .top-bar-container {
    flex-direction: column;
    gap: 8px;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 15px;
  }

  .header-container {
    padding: 8px 10px;
    gap: 10px;
  }

  .hamburger-menu {
    padding: 6px;
    min-width: 32px;
    min-height: 32px;
  }

  .hamburger-icon {
    width: 20px;
    height: 16px;
  }

  .hamburger-icon span {
    height: 2.5px;
  }

  .logo-image {
    height: 42px;
  }

  .header-icons {
    gap: 6px;
  }

  .icon-item {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .icon-item i {
    font-size: 12px;
  }

  /* Ribbon smaller */
  .ribbon {
    height: 56px;
  }

  .item {
    font-size: 12px;
    gap: 14px;
  }

  .track {
    gap: 24px;
  }

  /*****************************
 * ===== PAGE1 CONTENT ===== *
 *****************************/

  .main-content h1 {
    font-size: calc(1.5rem + 1vw);
  }

  /*****************************
 * ===== END OF PAGE1 CONTENT ===== *
 *****************************/

  .hamburger-content {
    width: 260px;
  }

  .hamburger-nav {
    padding: 12px;
  }

  .hamburger-header {
    padding: 15px 12px 12px;
  }

  .search-menu-header {
    padding: 20px;
  }

  .search-menu-body {
    padding: 15px;
  }

  .category-tags {
    gap: 8px;
  }

  .category-tag {
    padding: 6px 12px;
    font-size: 12px;
  }

  .hamburger-header h3 {
    font-size: 16px;
  }

  .close-hamburger {
    font-size: 16px;
    padding: 4px;
  }

  .nav-item {
    padding: 10px 12px;
    font-size: 13px;
  }
  .contact-section {
    padding: 2rem 1rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.25rem;
  }

  .submit-btn {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  .heading1 {
    font-size: 2.6rem;
  }
  .heading2 {
    font-size: 1.2rem;
  }
  .email-form {
    max-width: 100%;
  }
  /*  Page 9 Setting Start Form Here */
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-section .stat-card:nth-child(3) p {
    font-weight: bold;
    font-size: 0.94rem;
  }
  /* Starts From Here */
  /* .product-container {
    padding: 15px;
  } */
  /* Card */
  .page2Product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-info {
    padding: 15px;
  }

  /* .Page6-product-image {
    aspect-ratio: 4 / 5; taller ratio for mobile product cards
  } */

  .Page2-button {
    border-radius: 3px;
    padding: 5px;
  }

  /* .brand-rating {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  } */
  .ribbon-stack {
    height: 100px;
  }
  .Page2 .left img {
    width: 70%;
    aspect-ratio: 1;
  }

  .Page2 {
    display: flex;
    flex-direction: column;
  }
  .left-section {
    flex: 1;
    padding: 0px;
  }
  .product-popup-box img {
    display: none;
  }
  .product-popup-content {
    text-align: left;
  }
  .actions button {
    padding: 0.92rem;
  }
  .close-btn {
    color: red;
    top: 0;
    right: 0;
    padding: 0px 8px;
  }
}

/* Responsive adjustments for header */
@media (max-width: 768px) {
  .showcase-card {
    height: 200px;
    padding: 0;
    padding-bottom: 0;
  }
  html {
    font-size: 14px;
  }
  .header-container {
    padding: 12px 15px;
  }
  .Page2 .right h1 {
    font-size: 1.2rem; /* Comfortable size for phones */
  }
  /* .Page2 .right p {
    font-size: 1rem; Comfortable size for phones
  } */

  .header-container {
    padding: 10px 10px;
    gap: 15px;
  }

  .hamburger-menu {
    padding: 8px;
    min-width: 36px;
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hamburger-icon {
    width: 22px;
    height: 18px;
  }

  .hamburger-icon span {
    height: 2.5px;
  }

  .header-icons {
    gap: 8px;
  }

  .icon-item {
    width: 32px;
    height: 32px;
    padding: 8px;
  }

  .icon-item i {
    font-size: 14px;
  }

  .logo-image {
    height: 48px;
  }

  .main-content h1 {
    font-size: clamp(1.4rem, 2.5vw + 0.8rem, 3.5rem);
    max-width: 100%;
    padding: 0 15px;
    white-space: nowrap;
  }

  .search-menu-content {
    width: 95%;
    max-height: 90vh;
  }

  .search-menu-body {
    padding: 20px;
  }

  .hamburger-content {
    width: 280px;
  }

  .hamburger-header {
    padding: 20px 15px 15px;
  }

  .hamburger-header h3 {
    font-size: 18px;
  }

  .close-hamburger {
    font-size: 18px;
    padding: 6px;
  }

  .hamburger-nav {
    padding: 15px;
  }

  .nav-item {
    padding: 10px 12px;
    font-size: 14px;
  }
  .Page5 h2 {
    font-size: 34px;
  }
  .Page5-card h3 {
    font-size: 24px;
  }
  .Page7-faq-section {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .main-heading-Page7 {
    font-size: 4rem;
    /* text-align: center; */
  }

  .description {
    /* text-align: center; */
    max-width: 100%;
  }
  .Page8-section-title {
    font-size: 1.6rem;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .testimonial-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  .client-img {
    width: 70px;
    height: 70px;
  }
  .stars {
    font-size: 1.2rem;
  }
  .contact-section {
    padding: 3rem 1.5rem;
  }

  .contact-info,
  .contact-form {
    padding: 1.5rem;
  }

  .contact-info h3,
  .contact-form h3 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
  }

  .contact-info p {
    font-size: 1rem;
  }
  .promotional-banner {
    flex-direction: column;
    padding: 5px 20px;
  }
  .right-section,
  .left-section {
    width: 100%;
  }
  .footer {
    padding: 30px 15px 20px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
  }

  /* .brand-name {
    font-size: 22px;
  } */

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .developer-modal-content {
    margin: 1rem;
  }

  .developer-info {
    padding: 2rem;
  }

  .developer-header {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .developer-photo {
    width: 180px;
    height: 180px;
  }

  .developer-intro h2 {
    font-size: 2.5rem;
  }

  .developer-title {
    font-size: 1.25rem;
  }

  .developer-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .developer-section h3 {
    font-size: 1.5rem;
  }

  .skills-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .quote-icon {
    display: none;
  }
  .legal-links a {
    font-size: 11px;
  }
  /* New Page 2 Design */
  .page2Product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 0 auto;
    padding: 20px;
  }

  .NewPage2-product-card {
    max-width: 100%;
    /* padding: 15px; */
  }

  .product-info {
    padding: 5px;
  }

  .current-price {
    font-size: 20px;
  }

  .original-price {
    font-size: 16px;
  }
  .product-popup-box {
    flex-direction: column;
  }

  .product-popup-content {
    padding: 5px;
  }
  
  .product-card{
    width: 220px;
    height: 280px;
  }
}

/* End of Page3 */

/* 🔥 Responsive */
@media (max-width: 900px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
  #Page3 h1 {
    font-size: clamp(4rem, 5vw, 5rem);
  }
}

/* 🔥 Responsive */
@media (max-width: 912px) {
  .stats-section {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-links a {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: var(--font-size-2xl);
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }
  #Page3 h1 {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
  }
  .grid .card:nth-child(n + 5) {
    display: none; /* Hides cards starting from the 5th */
  }
  .Page2 .right h1 {
    font-size: 36px;
  }
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  .main-content h1 {
    font-size: clamp(1.2rem, 2.2vw + 0.6rem, 3rem);
    padding: 0 10px;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  /* Product grid adjustments */
  .product-grid {
    grid-template-columns: 1fr;
  }
  .close-developer-modal {
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  .stat-card h2 {
    font-size: 24px;
  }
  .stat-card i {
    font-size: 32px;
  }
  /* Mobile adjustments */
  .mobile-hidden {
    display: none;
  }
  .Page6-grid-wrapper {
    display: flex;
    flex-direction: column;
  }
  .Page6-card {
    grid-column: auto;
    height: auto;
  }
  .Page6-main-title {
    font-size: 1.8rem; /* smaller title */
  }
  .Page6-container {
    padding: 20px 15px;
  }
}

@media (max-width: 444px) {
  #Page3 h1 {
    font-size: clamp(3.3rem, 7vw, 3rem);
  }
  .controls button {
    min-width: auto;
  }
}

/**************************
 * END OF PAGE3 STYLING
 **************************/

/* Responsive */
@media (max-width: 1024px) {
  .Page2 {
    text-align: center;
    /* padding: 40px 5%; */
  }
  .Page2 .left,
  .Page2 .right {
    width: 100%;
  }
  .Page2 .right h1 {
    font-size: 48px;
  }
  /* .Page2 .right p {
    margin: 15px auto;
  } */
  .header-container {
    padding: 12px 10px;
  }

  .logo-image {
    height: 64px;
  }

  .main-content h1 {
    font-size: clamp(1.8rem, 3vw + 1.2rem, 4.3rem);
    max-width: 98%;
    white-space: nowrap;
  }
  /* Content adjustments */
  .content-container {
    padding: 0 15px;
  }
  .Page5 h2 {
    font-size: 40px;
  }
  .Page5-card {
    padding: 30px 20px;
  }
  .Page8-section-title {
    font-size: 6rem;
  }

  .Page8-section-title2 {
    font-size: 5rem;
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
  .client-img {
    width: 65px;
    height: 65px;
  }
  .stars {
    font-size: 1.1rem;
  }
}

/********************
 * ALL MEDIA QURIES *
 ********************/

/* Show main navigation on tablets and desktop */
@media (min-width: 768px) {
  .main-nav {
    display: block;
  }

  .hamburger-menu {
    display: none;
  }
  /* Desktop specific styles */
  .desktop-only {
    display: block;
  }
}

/* Ensure hamburger menu is visible on mobile */
@media (max-width: 767px) {
  .main-nav {
    display: none !important;
  }

  .hamburger-menu {
    display: block !important;
  }
  /* Mobile specific styles */
  .mobile-only {
    display: block;
  }
}

/******************************************
  MEDIA QUERIES FOR RESPONSIVE  Main Nav DESIGN 
 ******************************************/
/* Ensure hamburger menu is visible on mobile */
@media (max-width: 1146px) {
  ul.navbar-list > li > a {
    font-size: 0.9rem;
  }
}

@media (max-width: 1035px) {
  ul.navbar-list > li > a {
    font-size: 0.7rem; /* Smooth transition */
  }
}

@media (max-width: 870px) {
  ul.navbar-list > li > a {
    font-size: 0.55rem; /* Small but readable */
    line-height: 1.2;
  }
}

@media (max-width: 800px) {
  .footer-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

/******************************************
  MEDIA QUERIES FOR RESPONSIVE  Main Nav DESIGN 
 ******************************************/
@media (hover: hover) and (pointer: fine) {
  .close-hamburger:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.06);
  }
}

@media (hover: hover) and (pointer: fine) {
  .close-hamburger:hover {
    transform: scale(1.06) rotate(90deg);
  }
}

/**********************************
 * CHANGE FROM HERE WHAT YOU WANT *
 **********************************/

/* Responsive */
@media (min-width: 600px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* Responsive */
@media (min-width: 992px) {
  .map-logos img {
    max-width: 55%;
    margin: 0 auto;
    width: 50%;
  }
  .banner-container-description {
    margin-bottom: 20px;
  }
}

@media (min-width: 1024px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* ===== Responsive Design ===== */

@media (max-width: 1127px) {
  .main-content h1 {
    max-width: 98%;
    white-space: nowrap;
  }
}

@media (max-width: 900px) {
  .header-icons {
    gap: 12px;
  }

  .icon-item {
    width: 35px;
    height: 35px;
  }

  .icon-item i {
    font-size: 16px;
  }

  .logo-image {
    height: 56px;
  }

  .main-content h1 {
    /* font-size: clamp(2.8rem, 2.4vw + 1rem, 3rem); */
    max-width: 100%;
    white-space: nowrap;
  }
  .main-content {
    padding: 10px 15px;
  }
}

@media (max-width: 360px) {
  .header-container {
    gap: 8px;
  }

  .logo-image {
    height: 36px;
  }

  .icon-item {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .icon-item i {
    font-size: 12px;
  }

  .main-content h1 {
    font-size: clamp(1.7rem, 1.8vw + 0.4rem, 2.2rem);
    padding: 0 5px;
    letter-spacing: 0.02em;
    line-height: 1.3;
    white-space: nowrap;
  }

  .main-content {
    padding: 10px 8px;
  }
  .actions button {
    padding: 0.7rem 0.6rem;
  }
}

@media (max-width: 349px) {
  .main-content h1 {
    font-size: clamp(0.1rem, 0.1rem, 0.1rem);
  }
}

/* Extra large screens */
@media (min-width: 1440px) {
  .main-content h1 {
    font-size: clamp(3rem, 2vw + 2rem, 7.3rem);
    max-width: 80%;
  }
}

@media (min-width: 1920px) {
  .main-content h1 {
    font-size: clamp(3.5rem, 1rem + 1.8vw + 2.5rem, 7rem);
    max-width: 75%;
  }
}

@media (min-width: 2560px) {
  .main-content h1 {
    font-size: clamp(4rem, 1rem + 1.5vw + 3rem, 7rem);
    max-width: 70%;
  }
}

/* Landscape orientation adjustments */
@media (max-height: 500px) and (orientation: landscape) {
  .main-content h1 {
    font-size: clamp(1.2rem, 2vw + 0.8rem, 2.8rem);
    margin: 20px auto;
  }

  .main-content {
    padding: 10px 15px;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .main-content h1 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media (max-width: 360px) {
  .header-container {
    gap: 8px;
  }

  .logo-image {
    height: 36px;
  }

  .icon-item {
    width: 28px;
    height: 28px;
    padding: 6px;
  }

  .icon-item i {
    font-size: 12px;
  }
}

/**************************
 * END OF PAGE2 SETTING FOR USER *
 **************************/

/* ===== RESPONSIVE STYLES ===== */
/* All responsive styles organized in one place for better maintainability */

/* Typography Responsive */
@media (max-width: 992px) {
  html {
    font-size: 15px;
  }
  .Page2 .right h1 {
    font-size: 1.5rem; /* Slightly smaller for tablets */
  }
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-container {
    /* grid-template-columns: 1fr; */
    gap: 30px;
  }

  .footer-right {
    justify-content: center;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 13px;
  }
  .Page5-cards {
    grid-template-columns: repeat(2, 1fr); /* ✅ 2 columns on mobile */
    gap: 25px;
  }
  .Page5 h2 {
    font-size: 28px;
  }
  .Page5-card {
    max-width: 95%;
    padding: 25px 15px;
  }
  .Page5-card img {
    width: 100px;
  }
  .Page5-card h3 {
    font-size: 15px;
  }

  .Page5-card p {
    font-size: 9px;
  }
  .Page8-section-title2 {
    font-size: 3rem;
  }
}

/* Layout Responsive */
/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .map-logos {
    display: flex;
    flex-direction: column;
  }
  h2 {
    font-size: 1.875rem;
  }
  .Page6-card:nth-child(1) {
    height: fit-content;
  }

  .Page6-card:nth-child(3) {
    height: fit-content;
  }

  .container {
    max-width: 720px;
  }

  .header-container {
    padding: 2px 10px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .Page5-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .container {
    max-width: 540px;
  }

  .top-bar-container {
    padding: 0 15px;
  }

  .top-bar-left,
  .top-bar-right {
    gap: 10px;
  }

  .header-container {
    padding: 10px 10px;
  }

  .main-nav {
    display: none;
  }

  .hamburger-menu {
    display: block;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .top-bar {
    font-size: 11px;
  }

  .top-bar-right {
    display: none; /* Hide right section on very small screens */
  }

  .header-container {
    padding: 8px 10px;
    gap: 10px;
  }

  .logo-image {
    height: 45px;
  }
}

/* Other media queries from the file */
@media (max-width: 900px) {
  /* Product grid adjustments */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1130px),
  (max-width: 1035px),
  (max-width: 830px),
  (max-width: 480px) {
  /* Various responsive adjustments */
  .responsive-container {
    width: 100%;
  }
}

@media (hover: hover) and (pointer: fine) {
  /* Hover effects only for devices that support hover */
  .hover-effect:hover {
    transform: translateY(-5px);
  }
}

@media (min-width: 600px), (min-width: 1024px) {
  /* Larger screen adjustments */
  .large-screen {
    display: block;
  }
}

/* High-DPI screens */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  /* High-DPI specific adjustments */
  .high-res-image {
    background-image: url("../images/high-res.jpg");
  }
}

/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Page2 H1 Setting */
/* Large Screens (Desktops > 1200px) */
@media (min-width: 1200px) {
  .Page2 .right h1 {
    font-size: 1.5rem; /* Cap at 1.5rem for big screens */
  }
}

/* Responsive */
@media (max-width: 991px) {
}
/* ===================== RESPONSIVE ===================== */

/* Mobile (≤500px) */
@media (max-width: 500px) {
  /* .Page8-section-title {
    font-size: 3rem;
  } */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .testimonial-card {
    text-align: center;
    padding: 20px;
  }
  .testimonial-text {
    font-size: 0.8rem; /* smaller text */
  }
  .testimonial-footer {
    justify-content: center;
  }
  .client-img {
    aspect-ratio: 1; 
    height: auto;
  }
  .stars {
    font-size: 1.3rem; /* bigger rating */
  }
}

/* Responsive */
@media (max-width: 977px) {
  .actions button {
    padding: 14px 10px;
  }
}

@media (max-width: 815px) {
  .actions button {
    padding: 14px 8px;
  }
}

.custom-scroll::-webkit-scrollbar {
  width: 8px;
}

.custom-scroll::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 4px;
}

.custom-scroll::-webkit-scrollbar-thumb:hover {
  background: #9ca3af;
}

/****************************************************************
 * END OF ALL PAGE SETTING FOR USER END OF THIS PAGE MEDIA QUIES  
 ****************************************************************/
