@import url("https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&family=Libre+Baskerville:wght@400;700&display=swap");

/* ========================================
   LAKSHAY SAFETY NET - MAIN STYLESHEET
   ======================================== */

/* CSS Variables */
:root {
  --primary-color: #0f4676; /* Deep Blue */
  --primary-dark: #0a3052;
  --primary-light: #1a5ea1;
  --accent-color: #248c44; /* Safety Green */
  --accent-dark: #1b6d35;
  --secondary-color: #ff6f00;
  --secondary-light: #ffa726;
  --dark-color: #1a1a2e;
  --text-color: #333333;
  --text-light: #666666;
  --light-bg: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
  --transition: all 0.3s ease;
  --border-radius: 10px;
  --font-heading: "Libre Baskerville", serif;
  --font-body: "Barlow", sans-serif;
  --teal-color: #008080; /* Teal for accents */
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

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

.btn-secondary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* Section Styles */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--secondary-color)
  );
  border-radius: 2px;
}

.section-title p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 20px auto 0;
}

/* ========================================
   TOP BAR
   ======================================== */
.top-bar {
  background: linear-gradient(135deg, var(--dark-color), #16213e);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-social {
  display: flex;
  gap: 15px;
}

.top-social a {
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.top-social a:hover {
  color: var(--accent-light);
}

.btn-top-cta {
  background: var(--accent-color);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-top-cta:hover {
  background: var(--accent-dark);
}

.top-info {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.top-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-info span::before {
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
#header-placeholder {
  display: contents;
}

.header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px; /* Base padding */
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.header.scrolled {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.header.scrolled .container {
  padding: 8px 20px; /* Slimmer on scroll */
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 70px;
  width: auto;
  display: block;
  transition: var(--transition);
}

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

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-menu a {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1rem;
  position: relative;
  padding: 10px 0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--accent-color);
  border-radius: 50px; /* Rounded underline */
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--accent-color);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--accent-color);
}

.dropdown {
  position: relative;
}

.dropdown-toggle i {
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-size: 0.8rem;
  margin-left: 6px;
  vertical-align: middle;
}

.dropdown:hover .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px); /* Tighter gap */
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--white);
  min-width: 260px; /* Slightly wider */
  box-shadow:
    0 15px 50px rgba(0, 0, 0, 0.15),
    0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 16px; /* More rounded */
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05); /* Soft border */
  border-top: 4px solid var(--accent-color); /* Stronger accent line */
  clip-path: inset(
    -20px -20px -20px -20px round 16px
  ); /* Fix shadow clipping */
}

/* Arrow indicator for dropdown */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--accent-color);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.3s ease;
  margin-bottom: 2px;
}

.dropdown-menu a:last-child {
  margin-bottom: 0;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: rgba(36, 140, 68, 0.08); /* Soft primary tint */
  color: var(--accent-color);
  padding-left: 28px;
  transform: scale(1.02);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary-color);
  font-weight: 600;
}

.header-phone .phone-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

/* ========================================
   MOBILE NAVIGATION - PERFECTED REDESIGN
   ======================================== */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  cursor: pointer;
  padding: 8px;
  z-index: 3000;
  position: relative;
  transition: var(--transition);
  border-radius: 50%;
  background: transparent;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
  background: rgba(15, 70, 118, 0.05); /* very light primary */
}

.mobile-menu-btn.active {
  color: var(--accent-color);
}

.mobile-menu-btn .close-icon {
  display: none;
}

.mobile-menu-btn.active .open-icon {
  display: none;
}

.mobile-menu-btn.active .close-icon {
  display: block;
}

/* Force Mobile Menu Button to Show on Mobile */
@media screen and (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
  }

  /* Hide desktop navigation */
  .nav-menu {
    display: none;
  }
}

/* Mobile Navigation Panel */
@media screen and (max-width: 1024px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    display: flex !important;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 80px 0 40px;
    z-index: 2500;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    overflow-y: auto;
    gap: 0 !important;
    opacity: 1;
    visibility: visible;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    display: flex;
    align-items: center;
    padding: 16px 25px;
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition:
      color 0.3s ease,
      background 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0; /* Reset any margins */
    border-radius: 0; /* Reset any rounded corners */
  }

  .nav-menu a:hover,
  .nav-menu a.active {
    color: var(--accent-color);
    background: rgba(36, 140, 68, 0.05);
  }

  .nav-menu a::after {
    display: none; /* Hide desktop underline */
  }

  /* Dropdown Styles on Mobile */
  .dropdown {
    width: 100%;
    margin: 0;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    cursor: pointer;
    border-bottom: none; /* Let parent handle border */
  }

  .dropdown-toggle i {
    font-size: 0.9rem;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(15, 70, 118, 0.06);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

  .dropdown.active > .dropdown-toggle i {
    transform: rotate(180deg);
    background: var(--accent-color);
    color: var(--white);
  }

  .dropdown-menu {
    display: block;
    max-height: 0;
    position: static !important;
    background: rgba(0, 0, 0, 0.02);
    width: 100%;
    min-width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    padding: 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: none !important;
    border-radius: 0;
    clip-path: none;
    overflow: hidden;
    transition:
      max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1),
      opacity 0.4s ease;
  }

  .dropdown-menu::before {
    display: none;
  }

  /* Prevent desktop hover effects from glitching mobile touch events */
  .dropdown:hover .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: none !important;
  }

  .dropdown.active .dropdown-menu,
  .dropdown.active:hover .dropdown-menu {
    max-height: 800px; /* Large enough to hold items */
    opacity: 1 !important;
    visibility: visible !important;
  }

  .dropdown-menu a {
    padding: 12px 25px 12px 45px !important;
    font-size: 0.95rem !important;
    color: var(--text-color) !important;
    background: transparent !important;
    font-weight: 500 !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03) !important;
    transition:
      color 0.3s ease,
      background 0.3s ease !important;
    margin: 0 !important; /* Reset desktop margin */
    border-radius: 0 !important; /* Reset desktop radius */
  }

  .dropdown-menu a:hover {
    color: var(--accent-color) !important;
    background: rgba(36, 140, 68, 0.03) !important;
  }

  .dropdown-menu a:hover::before {
    opacity: 0; /* no background gradient for sublevels */
  }
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* standard black tint */
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll */
body.mobile-menu-open {
  overflow: hidden;
}

/* Tablet and smaller adjustments */
@media screen and (max-width: 768px) {
  .nav-menu {
    width: 280px;
    padding-top: 85px;
  }

  .mobile-menu-btn {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }

  .logo-img {
    height: 50px;
  }
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
  position: relative;
  width: 100%;
  height: 80vh;
  min-height: 500px;
  overflow: hidden;
  background: var(--dark-color);
}

.slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease-in-out,
    visibility 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.slide .hero-content {
  max-width: 800px;
  color: var(--white);
  transform: translateY(30px);
  transition: all 0.8s ease 0.4s;
  opacity: 0;
}

.slide.active .hero-content {
  transform: translateY(0);
  opacity: 1;
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: var(--white);
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-slider h1 {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 25px;
  font-family: var(--font-heading);
}

.hero-slider h1 span {
  color: var(--accent-light);
}

.hero-slider p {
  font-size: 1.2rem;
  margin-bottom: 35px;
  max-width: 600px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slider-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}

.dot.active {
  background: var(--accent-color);
  transform: scale(1.2);
  border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 991px) {
  .hero-slider h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: 70vh;
    min-height: 500px;
  }
  .hero-slider h1 {
    font-size: 2.5rem;
  }
  .hero-slider p {
    font-size: 1rem;
  }
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary-light);
}

.stat-item p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0;
}

/* ========================================
   PAGE BANNER (for inner pages)
   ======================================== */
.page-banner {
  background:
    linear-gradient(135deg, rgba(15, 70, 118, 0.9), rgba(10, 48, 82, 0.95)),
    url("../Images/Pigeon/1.jpg") center/cover;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.page-banner h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
}

.breadcrumb a {
  color: var(--secondary-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ========================================
   FEATURES GRID
   ======================================== */
.features-grid {
  padding: 100px 0;
  background: var(--white);
}

.features-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-item {
  position: relative;
  padding: 30px;
  background: var(--light-bg);
  border-radius: 8px;
  transition: var(--transition);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.feature-number {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 5rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.05);
  font-family: var(--font-body);
  line-height: 1;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-content h3 {
  font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: var(--font-heading);
  position: relative;
  z-index: 1;
}

.feature-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ========================================
   ALL NETS SECTION (FORMER SERVICES)
   ======================================== */
.all-nets {
  background: #333;
  padding: 100px 0;
  color: var(--white);
}

.all-nets .section-title h2 {
  color: var(--white);
  font-size: 3.5rem;
}

.all-nets .sub-title {
  display: block;
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
}

.nets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .nets-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .nets-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .nets-grid {
    grid-template-columns: 1fr;
  }
}

.net-card {
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  color: var(--text-color);
  position: relative;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.net-card:hover {
  transform: translateY(-10px);
}

.net-card-image {
  height: 300px;
  background-size: cover;
  background-position: center;
}

.net-card-content {
  padding: 40px 30px;
  background: var(--white);
  margin: -60px 20px 20px;
  position: relative;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  border-radius: 4px;
}

.net-card-content h3 {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.net-card-content p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
}

.net-number {
  position: absolute;
  top: 0;
  right: 20px;
  font-size: 4rem;
  font-weight: 800;
  color: rgba(0, 0, 0, 0.03);
  line-height: 1;
}

/* Service Detail */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #eee;
}

.service-detail:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-detail.reverse {
  direction: rtl;
}

.service-detail.reverse > * {
  direction: ltr;
}

.service-detail-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-detail-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  background-color: var(--white);
  transition: var(--transition);
}

.service-detail-image:hover img {
  transform: scale(1.05);
}

.service-detail-content h3 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.service-detail-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.service-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 25px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
}

.service-features li::before {
  content: "✓";
  width: 24px;
  height: 24px;
  background: var(--primary-light);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
/* ========================================
   ABOUT SECTION
   ======================================== */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-col {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.about-image-col img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.about-image-col:hover img {
  transform: scale(1.05);
}

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--accent-color);
  color: var(--white);
  padding: 25px 35px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 2;
}

.experience-badge .years {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
}

.experience-badge .text {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
}

.about-content-col .sub-title {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.about-content-col h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 25px;
}

.about-content-col p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 35px;
  font-size: 1.1rem;
}

.about-contact-info {
  background: var(--light-bg);
  padding: 30px;
  border-radius: 8px;
  border-left: 5px solid var(--accent-color);
}

.about-contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--primary-color);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.about-contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.about-contact-info .info-item i {
  width: 40px;
  height: 40px;
  background: var(--white);
  color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.about-contact-info .item-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}

.about-contact-info .item-text span {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-content-col h2 {
    font-size: 2.5rem;
  }
}

/* Image Showcase */
.image-showcase {
  position: relative;
  height: 500px;
}

.main-frame {
  width: 85%;
  height: 90%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.main-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--white);
  display: block;
}

.overlap-frame {
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 55%;
  height: 60%;
  border: 10px solid var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  z-index: 2;
}

.overlap-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: var(--white);
  display: block;
}

@media (max-width: 768px) {
  .image-showcase {
    height: 400px;
    margin-bottom: 40px;
  }
  .main-frame {
    width: 90%;
  }
}

/* ========================================
   PRODUCT DETAIL PAGES
   ======================================== */
.section-subtitle {
  color: var(--secondary-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 10px;
}

.product-detail-hero {
  height: 450px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(15, 70, 118, 0.7), rgba(0, 0, 0, 0.6));
}

.hero-glass-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 50px 80px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  color: var(--white);
  max-width: 800px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.hero-glass-card h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.hero-glass-card .breadcrumb {
  justify-content: center;
  font-size: 1.1rem;
}

.hero-glass-card .breadcrumb a,
.hero-glass-card .breadcrumb span {
  color: rgba(255, 255, 255, 0.8);
}

.hero-glass-card .breadcrumb a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* Advantage Grid */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 35px;
}

.advantage-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--light-bg);
  padding: 18px 25px;
  border-radius: 15px;
  transition: var(--transition);
  border: 1px solid transparent;
}

.advantage-card:hover {
  background: var(--white);
  border-color: var(--accent-light);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.advantage-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.advantage-card span {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 1rem;
}

@media (max-width: 768px) {
  .product-detail-hero {
    height: 350px;
  }
  .hero-glass-card {
    padding: 30px;
    width: 90%;
  }
  .hero-glass-card h1 {
    font-size: 2.5rem;
  }
  .advantage-grid {
    grid-template-columns: 1fr;
  }
}

.about-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 15px;
}

.about-content .btn {
  margin-top: 25px;
}

/* About Page Specific */
/* ========================================
   REFINED ABOUT PAGE (BIRDNET STYLE)
   ======================================== */
.about-hero {
  background:
    linear-gradient(rgba(15, 70, 118, 0.9), rgba(10, 48, 82, 0.9)),
    url("../Images/Pigeon/1.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 100px 0;
  text-align: center;
  color: var(--white);
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}

.about-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 500;
}

.about-hero .breadcrumb a:hover {
  color: var(--accent-color);
}

.about-main-section {
  padding: 100px 0;
  background: var(--white);
}

.about-company-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.about-image-col img {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  height: auto;
}

.about-text-col h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

.about-text-col h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--teal-color);
}

.about-text-col p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.contact-info-card {
  background: var(--accent-color);
  color: var(--white);
  padding: 40px 30px;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-info-card h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.info-item i {
  font-size: 1.5rem;
  width: 30px;
}

.info-item .info-text h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 3px;
}

.info-item .info-text p {
  font-size: 1.1rem;
  font-weight: 600;
}

.mission-vision-full {
  background: var(--light-bg);
  padding: 80px 0;
  border-top: 1px solid #eee;
}

.mv-content {
  margin-bottom: 50px;
}

.mv-content h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.checklist-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-top: 60px;
}

.teal-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 25px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-color);
}

.checklist-item i {
  color: var(--teal-color);
  font-size: 1.2rem;
}

.services-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

/* ========================================
   ABOUT PAGE OLD STYLES (KEEPING OR ADJUSTING AS NEEDED)
   ======================================== */
.about-full {
  padding: 80px 0;
}

.about-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 60px;
}

.about-intro h2 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.about-intro p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.mission-vision {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.mv-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  text-align: center;
  transition: var(--transition);
}

.mv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mv-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: var(--white);
}

.mv-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.mv-card p {
  color: var(--text-light);
  line-height: 1.7;
}

/* ========================================
   PRODUCTS SECTION
   ======================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.product-image {
  height: 250px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--white);
  position: relative;
  overflow: hidden;
}

.product-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.6));
}

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(46, 125, 50, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.product-card:hover .product-overlay {
  opacity: 1;
}

.product-overlay a {
  background: var(--white);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  transform: translateY(20px);
  transition: var(--transition);
}

.product-card:hover .product-overlay a {
  transform: translateY(0);
}

.product-content {
  padding: 25px;
}

.product-content h3 {
  font-size: 1.3rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.product-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-features span {
  background: var(--light-bg);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* Product Detail Page */
.product-detail-section {
  padding: 80px 0;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.product-gallery {
  position: relative;
}

.product-main-image {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-main-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  background-color: var(--white);
}

.product-thumbnails {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

.product-thumbnails img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
}

.product-thumbnails img:hover,
.product-thumbnails img.active {
  border-color: var(--primary-color);
}

.product-info h1 {
  font-size: 2.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.product-info > p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 25px;
}

.product-specs {
  background: var(--light-bg);
  padding: 25px;
  border-radius: var(--border-radius);
  margin-bottom: 25px;
}

.product-specs h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 15px;
}

.product-specs ul li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}

.product-specs ul li:last-child {
  border-bottom: none;
}

.product-specs ul li span:first-child {
  font-weight: 600;
  color: var(--dark-color);
}

/* ========================================
   PREMIUM PRODUCT DETAIL REDESIGN
   ======================================== */
.product-detail-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}

.product-detail-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 70, 118, 0.7); /* Signature Blue Overlay */
  z-index: 1;
}

.hero-glass-card {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  padding: 40px 60px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 800px;
  animation: fadeInUp 1s ease-out;
}

.hero-glass-card h1 {
  font-family: var(--heading-font);
  font-size: 3.5rem;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.hero-glass-card .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.hero-glass-card .breadcrumb a {
  color: var(--white);
  transition: var(--transition);
}

.hero-glass-card .breadcrumb a:hover {
  color: var(--accent-color);
}

/* Advantage Section */
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.advantage-card {
  background: var(--white);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 4px solid var(--secondary-color);
  transition: var(--transition);
}

.advantage-card:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

/* Spec Card Grid */
.spec-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.spec-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid #eee;
}

.spec-card:hover {
  transform: translateY(-10px);
  border-color: var(--secondary-color);
}

.spec-icon {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: 20px;
  opacity: 0.8;
}

.spec-label {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.spec-value {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark-color);
}

/* Image Showcase Overlap */
.image-showcase {
  position: relative;
  padding-bottom: 40px;
}

.main-frame {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  position: relative;
  z-index: 1;
}

.overlap-frame {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 250px;
  border-radius: 15px;
  overflow: hidden;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-glass-card h1 {
    font-size: 2.5rem;
  }
  .overlap-frame {
    display: none;
  }
  .product-detail-hero {
    height: auto;
    padding: 120px 20px 60px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
.why-choose {
  background: linear-gradient(135deg, var(--dark-color), #16213e);
  color: var(--white);
}

.why-choose .section-title h2 {
  color: var(--white);
}

.why-choose .section-title p {
  color: rgba(255, 255, 255, 0.8);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.why-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px 30px;
  border-radius: var(--border-radius);
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-10px);
}

.why-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
}

.why-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.why-card p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.process-steps::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 100px;
  height: 100px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow);
  border: 5px solid var(--white);
}

.process-step h3 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 10px;
}

.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  background: var(--light-bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 5rem;
  color: var(--primary-light);
  opacity: 0.2;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-content p {
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 25px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.author-info h4 {
  color: var(--dark-color);
  font-size: 1.1rem;
}

.author-info p {
  color: var(--primary-color);
  font-size: 0.9rem;
  font-style: normal;
}

.stars {
  color: #ffc107;
  margin-top: 5px;
}

/* ========================================
   GALLERY
   ======================================== */
/* Base Gallery Support */
.gallery-grid-base {
  display: grid;
  gap: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  background-color: var(--white);
  height: 400px;
}

/* Gallery Grid Responsive - For All Product Pages */
@media (max-width: 991px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .gallery-item {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .gallery-item {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .gallery-item {
    height: 280px;
    border-radius: 15px;
  }
  
  .gallery-grid {
    gap: 15px;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
  display: block;
  background-color: var(--white);
}

.gallery-item:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.gallery-item:hover img {
  transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(15, 70, 118, 0.95) 0%,
    rgba(15, 70, 118, 0.7) 40%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay h4 {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
  transform: translateY(20px);
  transition: transform 0.5s ease 0.1s;
}

.gallery-item:hover .gallery-overlay h4 {
  transform: translateY(0);
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin: 0;
  transform: translateY(20px);
  transition: transform 0.5s ease 0.2s;
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* ========================================
   CTA BANNER - PREMIUM REDESIGN
   ======================================== */
/* ========================================
   CTA BANNER - PREMIUM STRUCTURAL REDESIGN
   ======================================== */
.cta-banner {
  background: linear-gradient(135deg, #0f4676 0%, #008080 100%);
  padding: 80px 0;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  opacity: 0.5;
  pointer-events: none;
}

.cta-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 50px;
}

.cta-banner-content {
  flex: 1;
}

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  min-width: 350px;
}

.cta-banner h2 {
  font-size: 3.2rem;
  margin-bottom: 20px;
  font-family: var(--font-heading);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  letter-spacing: 1px;
}

.cta-banner p {
  font-size: 1.3rem;
  opacity: 0.9;
  font-weight: 500;
  margin-bottom: 0;
}

.cta-phone {
  font-size: 2.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  transition: var(--transition);
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-phone:hover {
  transform: translateX(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.cta-phone span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.5rem;
  animation: pulse-border 2s infinite;
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.cta-banner .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 16px 45px;
  font-size: 1.1rem;
  background: transparent;
  width: 100%;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.cta-banner .btn-outline:hover {
  background: var(--white);
  color: #0f4676;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 991px) {
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .cta-banner-actions {
    align-items: center;
    min-width: unset;
    width: 100%;
  }

  .cta-banner h2 {
    font-size: 2.5rem;
  }
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-info-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-hover);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-light)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-info-content h4 {
  font-size: 1.2rem;
  color: var(--dark-color);
  margin-bottom: 8px;
}

.contact-info-content p {
  color: var(--text-light);
  line-height: 1.6;
}

.contact-info-content a {
  color: var(--primary-color);
  font-weight: 500;
}

.contact-info-content a:hover {
  color: var(--secondary-color);
}

.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.contact-form h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 25px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  padding: 16px;
}

/* Contact Page Full */
.contact-full {
  padding: 80px 0;
}

.map-section {
  margin-top: 60px;
}

.map-section h3 {
  font-size: 1.8rem;
  color: var(--dark-color);
  margin-bottom: 25px;
  text-align: center;
}

.map-container {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Contact Page Mobile Responsive */
@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form {
    order: 2;
  }
  
  .contact-info-cards {
    order: 1;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .contact-full {
    padding: 60px 0;
  }
  
  .contact-form {
    padding: 30px 20px;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-info-card {
    padding: 25px 20px;
    gap: 15px;
  }
  
  .contact-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
  
  .contact-info-content h4 {
    font-size: 1.1rem;
  }
  
  .contact-info-content p {
    font-size: 0.95rem;
  }
  
  .map-container {
    height: 300px;
  }
  
  .map-section h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 576px) {
  .contact-info-card {
    padding: 20px 15px;
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .contact-info-icon {
    margin-bottom: 15px;
  }
  
  .contact-info-content {
    text-align: center;
  }
  
  .contact-info-content h4 {
    font-size: 1rem;
    margin-bottom: 10px;
  }
  
  .contact-info-content p {
    font-size: 0.9rem;
    margin-bottom: 8px;
  }
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
  background: var(--light-bg);
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--border-radius);
  margin-bottom: 15px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  padding: 20px 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: var(--dark-color);
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
}

.faq-item.active .faq-question::after {
  content: "−";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer p {
  padding: 0 25px 20px;
  color: var(--text-light);
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 80px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  margin-bottom: 25px;
  display: block;
}

.footer-logo img {
  height: 80px;
  width: auto;
  filter: brightness(0) invert(1); /* Make it white if needed, but the logo might have color. Let's try without first. */
}

.about-col p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--accent-color);
}

.footer-col h4 {
  font-size: 1.4rem;
  margin-bottom: 30px;
  position: relative;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-color);
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
  color: var(--accent-color);
  margin-top: 5px;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* WhatsApp & Back to Top (Existing styles refined) */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
}

.whatsapp-float a {
  width: 60px;
  height: 60px;
  background: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: scale(1.1) rotate(15deg);
}

@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 5px;
    right: 5px;
  }

  .whatsapp-float a {
    width: 56px;
    height: 56px;
    font-size: 1.8rem;
  }

  .footer {
    padding: 60px 0 20px;
  }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.back-to-top a {
  width: 45px;
  height: 45px;
  background: var(--accent-color);
  color: white;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.back-to-top a:hover {
  background: var(--accent-dark);
}

@media (max-width: 768px) {
  .back-to-top {
    display: none;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.pulse {
  animation: pulse 2s infinite;
}

.float {
  animation: float 3s ease-in-out infinite;
}

.bounce {
  animation: bounce 2s ease-in-out infinite;
}

/* ========================================
   ABOUT PAGE - PREMIUM OVERHAUL
   ======================================== */
.about-intro {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.about-badge {
  display: inline-block;
  background: rgba(15, 70, 118, 0.1);
  color: #0f4676;
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  border: 1px solid rgba(15, 70, 118, 0.2);
}

.about-intro h2 {
  font-size: 3rem;
  color: var(--dark-color);
  font-family: var(--font-heading);
  margin-bottom: 15px;
}

.about-intro p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto;
}

.about-image-wrapper {
  position: relative;
  max-width: 450px;
  margin: 0 auto;
}

.about-logo-container {
  width: 100%;
  aspect-ratio: 1/1;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  position: relative;
  box-shadow: 0 30px 60px rgba(15, 70, 118, 0.1);
  border: 1px solid rgba(15, 70, 118, 0.05);
  transition: var(--transition);
}

.about-logo-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 40px 80px rgba(15, 70, 118, 0.15);
}

.about-logo-container::after {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 2px dashed rgba(15, 70, 118, 0.2);
  border-radius: 50%;
  animation: rotate-logo 30s linear infinite;
  pointer-events: none;
}

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

.about-logo-container img {
  width: 100%;
  height: auto;
  object-fit: contain;
  transition: var(--transition);
}

.experience-glass-card {
  position: absolute;
  bottom: 0px;
  right: -20px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  padding: 20px 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  animation: float-badge 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float-badge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.glass-number {
  font-size: 3rem;
  font-weight: 900;
  color: #0f4676;
  line-height: 1;
}

.glass-text {
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  line-height: 1.2;
}

.section-subtitle {
  color: #0f4676;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-features-modern {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin: 35px 0;
}

.about-feature-tag {
  background: #f8fafc;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.about-feature-tag:hover {
  background: var(--white);
  border-color: #0f4676;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(15, 70, 118, 0.05);
}

.about-feature-tag i {
  color: #0f4676;
  font-size: 1.3rem;
}

.premium-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px !important;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(15, 70, 118, 0.2);
}

@media (max-width: 1200px) {
  .experience-glass-card {
    right: 0;
    bottom: -10px;
  }
}

@media (max-width: 768px) {
  .about-image-wrapper {
    margin-bottom: 40px;
  }
}

/* Consolidated Responsive Header styles moved to the end of the file for better precedence */

/* Consolidated Mobile Button styles */
.mobile-menu-btn {
  display: none; /* Hidden on desktop */
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1100;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 30px;
  height: 3px;
  background: var(--primary-color);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-btn.active span {
  background: var(--dark-color);
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
  overflow: hidden;
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
    z-index: 2100;
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.15);
    display: flex !important;
    padding: 80px 30px 40px;
    overflow-y: auto;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.1rem;
    width: 100%;
    text-align: left;
    padding: 15px 20px;
    color: var(--dark-color);
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    border-radius: 8px;
    transition: all 0.3s ease;
  }

  .nav-menu a:hover {
    background: var(--light-bg);
    color: var(--primary-color);
    padding-left: 25px;
  }

  .nav-menu a::after {
    display: none;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .dropdown-toggle i {
    transition: transform 0.3s ease;
    font-size: 0.9rem;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: #f8fafc;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-radius: 8px;
    margin-top: 10px;
    padding: 10px;
    border: none;
  }

  .dropdown.active .dropdown-menu {
    display: block;
    animation: slideDown 0.3s ease;
  }

  .dropdown-menu a {
    font-size: 1rem !important;
    padding: 12px 20px !important;
    background: transparent;
    color: var(--text-light) !important;
    border-bottom: none !important;
    margin: 2px 0;
  }

  .dropdown-menu a:hover {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-radius: 6px;
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    width: 280px;
    padding: 70px 25px 30px;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 12px 15px;
  }
}

/* Force header layout on mobile */
@media screen and (max-width: 1024px) {
  .header .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative;
  }

  .logo {
    order: 1;
  }

  .mobile-menu-btn {
    order: 2;
    display: flex !important;
  }

  .nav-menu {
    order: 3;
  }

  .hero {
    min-height: 500px;
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .section {
    padding: 60px 0;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .page-banner h1 {
    font-size: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-contact li {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mission-vision {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 20px;
  }

  .whatsapp-float,
  .back-to-top {
    right: 20px;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  .cta-phone {
    font-size: 1.5rem;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.75rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 25px;
    font-size: 0.9rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 20px 15px;
  }
  
  .contact-info-card {
    padding: 20px;
    flex-direction: column;
    text-align: center;
  }
  
  .contact-info-icon {
    margin-bottom: 15px;
  }
  
  .page-banner h1 {
    font-size: 1.8rem;
  }
  
  .logo-glass-container {
    width: 250px;
    height: 250px;
  }
  
  .about-premium-intro .intro-text h2 {
    font-size: 1.8rem;
  }
  
  .premium-heading h2 {
    font-size: 1.8rem;
  }
}

/* Print Styles */
@media print {
  .top-bar,
  .header,
  .whatsapp-float,
  .back-to-top,
  .cta-banner {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .section {
    padding: 40px 0;
  }
}

/* Gallery Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Testimonial Author Avatars */
.author-avatar {
  width: 60px;
  height: 60px;
  background: #e8f5e9;
  color: #2e7d32;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

/* Premium About Page Styles */
.about-premium-intro {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.about-premium-intro .intro-text h2 {
  font-size: 3.5rem;
  color: var(--primary-color);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.about-premium-intro .intro-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

.about-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.logo-side {
  display: flex;
  justify-content: center;
  position: relative;
}

.logo-glass-container {
  position: relative;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.pulse-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--accent-color);
  animation: logoPulse 3s infinite linear;
}

@keyframes logoPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 0.5;
  }
  100% {
    width: 140%;
    height: 140%;
    opacity: 0;
  }
}

.premium-logo {
  width: 90%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
  transition: transform 0.5s ease;
}

.logo-glass-container:hover .premium-logo {
  transform: scale(1.1) rotate(5deg);
}

.experience-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: var(--accent-color);
  color: var(--white);
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 15px 35px rgba(36, 140, 68, 0.3);
  z-index: 3;
  animation: floatBadge 4s infinite ease-in-out;
}

@keyframes floatBadge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.experience-badge .exp-num {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.experience-badge .exp-text {
  font-size: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.premium-heading .sub-heading {
  color: var(--accent-color);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  display: block;
}

.premium-heading h2 {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.premium-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.8;
}

.feature-glass-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.feature-glass-card {
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

.feature-glass-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.feature-glass-card .card-icon {
  font-size: 2rem;
  color: var(--accent-color);
}

.feature-glass-card h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.feature-glass-card span {
  font-size: 0.85rem;
  color: var(--text-light);
}

.btn-premium {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--primary-dark)
  );
  color: var(--white);
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 15px 35px rgba(15, 70, 118, 0.2);
}

.btn-premium:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 45px rgba(15, 70, 118, 0.3);
}

@media (max-width: 991px) {
  .about-grid-premium {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  .about-premium-intro .intro-text h2 {
    font-size: 2.5rem;
  }
  .premium-heading h2 {
    font-size: 2.5rem;
  }
  
  .feature-glass-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

@media (max-width: 768px) {
  .about-premium-intro .intro-text h2 {
    font-size: 2rem;
  }
  
  .premium-heading h2 {
    font-size: 2rem;
  }
  
  .logo-glass-container {
    width: 300px;
    height: 300px;
  }
  
  .experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    margin-top: 30px;
  }
  
  .about-full {
    padding: 60px 0;
  }
  
  .mission-vision {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/* Premium Home Page Product Styles */
.premium-product-section {
  background: var(--light-bg);
  padding: 100px 0;
}

.section-title-premium {
  text-align: center;
  margin-bottom: 60px;
}

.premium-badge {
  background: rgba(15, 70, 118, 0.1);
  color: var(--primary-color);
  padding: 8px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
  display: inline-block;
}

.section-title-premium h2 {
  font-size: 3.5rem;
  color: var(--dark-color);
  margin-bottom: 20px;
  position: relative;
}

.section-title-premium h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 2px;
}

.section-title-premium p {
  color: var(--text-light);
  font-size: 1.2rem;
  max-width: 700px;
  margin: 25px auto 0;
}

.premium-nets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.premium-net-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
}

.premium-net-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.card-image-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--white);
}

.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.premium-net-card:hover .card-img {
  transform: scale(1.1);
}

.card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 70, 118, 0.6);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.premium-net-card:hover .card-overlay {
  opacity: 1;
}

.view-btn {
  background: var(--white);
  color: var(--primary-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.premium-net-card:hover .view-btn {
  transform: translateY(0);
}

.card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-color);
  padding: 5px 15px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.8rem;
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-details {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-details h3 {
  font-size: 1.5rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}

.card-details p {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.card-footer .feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

.arrow-link {
  width: 40px;
  height: 40px;
  background: #f8fafc;
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.premium-net-card:hover .arrow-link {
  background: var(--accent-color);
  color: var(--white);
}

@media (max-width: 768px) {
  .section-title-premium h2 {
    font-size: 2.5rem;
  }
  .premium-nets-grid {
    grid-template-columns: 1fr;
  }
  
  /* Quick Contact Options Cards Responsive */
  .products-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 20px;
  }
  
  .product-card {
    padding: 30px 20px !important;
  }
  
  .product-card h3 {
    font-size: 1.1rem !important;
  }
  
  .product-card p {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 576px) {
  .products-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  
  .product-card {
    padding: 25px 15px !important;
  }
  
  .product-card div[style*="width: 80px"] {
    width: 60px !important;
    height: 60px !important;
    font-size: 1.5rem !important;
  }
  
  .product-card h3 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }
  
  .product-card p {
    font-size: 0.85rem !important;
    margin-bottom: 15px !important;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
}

/* Experience Center Unique Section */
.experience-center {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.experience-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tech-label {
  color: #ff8f00;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 20px;
  display: block;
}

.experience-content h2 {
  font-size: 4rem;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 30px;
}

.experience-content h2 span {
  color: rgba(255, 255, 255, 0.3);
  -webkit-text-stroke: 1px var(--white);
}

.experience-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 550px;
  margin-bottom: 50px;
}

.trust-pills {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  transition: all 0.3s ease;
}

.trust-pill:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-color);
}

.trust-pill i {
  font-size: 1.8rem;
  color: var(--accent-color);
}

.pill-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.pill-text span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8rem;
}

.experience-stats {
  display: flex;
  gap: 60px;
}

.exp-stat {
  display: flex;
  flex-direction: column;
}

.stat-h {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
}

.stat-p {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.8rem;
}

.experience-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vis-container {
  position: relative;
  width: 450px;
  height: 450px;
}

.vis-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 250px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
}

.orb-logo {
  width: 100%;
  filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.2));
}

.vis-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(255, 255, 255, 0.2);
}

.ring-1 {
  width: 300px;
  height: 300px;
  animation: rotateLeft 20s linear infinite;
}

.ring-2 {
  width: 450px;
  height: 450px;
  animation: rotateRight 30s linear infinite;
}

.vis-data-node {
  position: absolute;
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(36, 140, 68, 0.5);
  z-index: 6;
}

.node-1 {
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  animation: floatNode 4s infinite ease-in-out;
}

.node-2 {
  bottom: 25%;
  left: 10%;
  animation: floatNode 4s infinite ease-in-out 1s;
}

.node-3 {
  bottom: 25%;
  right: 10%;
  animation: floatNode 4s infinite ease-in-out 2s;
}

@keyframes rotateLeft {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes rotateRight {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (max-width: 991px) {
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 100px;
    text-align: center;
  }
  .experience-content h2 {
    font-size: 3rem;
  }
  .experience-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .experience-stats {
    justify-content: center;
  }
  .trust-pills {
    flex-direction: column;
  }
  .vis-container {
    width: 300px;
    height: 300px;
  }
  .vis-orb {
    width: 160px;
    height: 160px;
  }
  .ring-1 {
    width: 200px;
    height: 200px;
  }
  .ring-2 {
    width: 300px;
    height: 300px;
  }
}

/* ========================================
   CLEAN MASONRY GALLERY
   ======================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 60px;
}

.gallery-filters button {
  background: var(--white);
  border: 1px solid #eee;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.gallery-filters button.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 10px 25px rgba(15, 70, 118, 0.15);
}

/* ========================================
   UNIQUE BENTO MOSAIC GALLERY
   ======================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 70px;
}

.gallery-filters button {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 14px 35px;
  border-radius: 18px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
}

/* ========================================
   SCULPTURAL BENTO GALLERY
   ======================================== */

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 70px;
}

.gallery-filters button {
  background: var(--white);
  border: 1px solid #f0f0f0;
  padding: 14px 35px;
  border-radius: 20px;
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--text-color);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
}

.gallery-filters button.active {
  background: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(15, 70, 118, 0.2);
  transform: translateY(-5px);
}

.gallery-filters button:hover:not(.active) {
  border-color: var(--accent-color);
  color: var(--accent-color);
  transform: translateY(-2px);
}

.bento-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 150px;
  gap: 25px;
  padding: 20px 0;
}

.gallery-item {
  position: relative;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.06);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  animation: floatBreath 6s infinite ease-in-out;
}

@keyframes floatBreath {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Custom Sculptural Grid Logic - Scoped to Bento Mosaic */
.bento-mosaic .gallery-item:nth-child(1) {
  grid-column: span 6;
  grid-row: span 3;
  border-radius: 60px 20px 60px 20px;
}
.bento-mosaic .gallery-item:nth-child(2) {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 20px 60px 20px 60px;
}
.bento-mosaic .gallery-item:nth-child(3) {
  grid-column: span 3;
  grid-row: span 4;
  border-radius: 60px 60px 20px 20px;
}
.bento-mosaic .gallery-item:nth-child(4) {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 20px 20px 60px 60px;
}
.bento-mosaic .gallery-item:nth-child(5) {
  grid-column: span 6;
  grid-row: span 3;
  border-radius: 20px 60px 20px 60px;
  animation-delay: 1s;
}
.bento-mosaic .gallery-item:nth-child(6) {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 60px 20px 60px 20px;
  animation-delay: 1.5s;
}
.bento-mosaic .gallery-item:nth-child(7) {
  grid-column: span 3;
  grid-row: span 3;
  border-radius: 20px 20px 20px 20px;
  animation-delay: 2s;
}
.bento-mosaic .gallery-item:nth-child(8) {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 80px 20px 20px 80px;
}
.bento-mosaic .gallery-item:nth-child(9) {
  grid-column: span 3;
  grid-row: span 3;
  border-radius: 20px 80px 80px 20px;
}
.bento-mosaic .gallery-item:nth-child(10) {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 40px;
}
.bento-mosaic .gallery-item:nth-child(11) {
  grid-column: span 3;
  grid-row: span 2;
  border-radius: 40px;
}

/* Framed Gallery Variant */
.gallery-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-frames .gallery-item {
  height: 550px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  transition: all 0.4s ease;
  animation: none;
}

.gallery-frames .gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gallery-frames .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-frames .gallery-overlay {
  background: rgba(15, 70, 118, 0.9);
}

/* Specific fixes for Industrial Projects and all 3-image galleries */
.gallery-frames {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.gallery-frames .gallery-item {
  height: 550px;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
  border-radius: 20px;
  transition: all 0.4s ease;
  animation: none;
  background-color: var(--light-bg);
  overflow: hidden;
}

.gallery-frames .gallery-item:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.gallery-frames .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--light-bg);
  transition: transform 0.6s ease;
}

.gallery-frames .gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-frames .gallery-overlay {
  background: rgba(15, 70, 118, 0.9);
}

/* Enhanced Mobile Responsive for 3-image galleries */
@media (max-width: 1200px) {
  .gallery-frames {
    gap: 25px;
  }
  
  .gallery-frames .gallery-item {
    height: 500px;
  }
}

@media (max-width: 991px) {
  .gallery-frames {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px;
  }
  
  .gallery-frames .gallery-item {
    height: 400px !important;
    min-height: 400px !important;
  }
  
  /* Make third item span full width on tablet */
  .gallery-frames .gallery-item:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .gallery-frames {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .gallery-frames .gallery-item {
    height: 350px !important;
    min-height: 350px !important;
    border-radius: 20px;
  }
  
  .gallery-frames .gallery-item:nth-child(3) {
    grid-column: 1;
    max-width: none;
    margin: 0;
  }
  
  .gallery-frames .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 20px;
  }
}

@media (max-width: 576px) {
  .gallery-frames .gallery-item {
    height: 300px !important;
    min-height: 300px !important;
    border-radius: 15px;
  }
  
  .gallery-frames {
    gap: 15px;
  }
  
  .gallery-frames .gallery-item img {
    border-radius: 15px;
  }
  
  .gallery-overlay {
    padding: 20px;
  }
  
  .gallery-overlay h4 {
    font-size: 1.2rem;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .gallery-frames .gallery-item {
    height: 280px !important;
    min-height: 280px !important;
  }
  
  .gallery-overlay {
    padding: 15px;
  }
  
  .gallery-overlay h4 {
    font-size: 1.1rem;
  }
  
  .gallery-overlay p {
    font-size: 0.85rem;
  }
}

/* Ensure gallery images are always visible */
.gallery-frames .gallery-item img,
.gallery-grid .gallery-item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background-color: var(--light-bg) !important;
  border-radius: inherit;
}

/* Fix any potential loading issues */
.gallery-item {
  background-color: var(--light-bg);
  min-height: 300px;
  position: relative;
}

.gallery-frames .gallery-item {
  background-color: var(--light-bg);
  min-height: 550px;
}

/* Image showcase fixes */
.main-frame img,
.overlap-frame img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block !important;
  background-color: var(--light-bg) !important;
}

/* Loading state for images */
.gallery-item img:not([src]),
.main-frame img:not([src]),
.overlap-frame img:not([src]) {
  background: linear-gradient(45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(-45deg, #f0f0f0 25%, transparent 25%), 
              linear-gradient(45deg, transparent 75%, #f0f0f0 75%), 
              linear-gradient(-45deg, transparent 75%, #f0f0f0 75%);
  background-size: 20px 20px;
  background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

/* Mobile Responsive Fixes for Product Pages */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .image-showcase {
    height: 400px;
    margin-bottom: 20px;
  }
  
  .main-frame {
    width: 100%;
    height: 100%;
  }
  
  .overlap-frame {
    width: 50%;
    height: 50%;
    bottom: -20px;
    right: -20px;
  }
  
  .gallery-frames {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .gallery-frames .gallery-item {
    height: 400px !important;
    min-height: 400px !important;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .image-showcase {
    height: 350px;
    margin-bottom: 30px;
    position: relative;
  }
  
  .main-frame {
    width: 100% !important;
    height: 100% !important;
    position: relative;
    z-index: 1;
  }
  
  .overlap-frame {
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 45% !important;
    height: 45% !important;
    z-index: 2;
    border: 5px solid var(--white);
  }
  
  .main-frame img,
  .overlap-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 15px;
  }
  
  .gallery-frames {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  
  .gallery-frames .gallery-item {
    height: 350px !important;
    min-height: 350px !important;
    border-radius: 20px;
  }
  
  .gallery-frames .gallery-item img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 20px;
  }
  
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .about-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .image-showcase {
    height: 300px;
    margin-bottom: 25px;
  }
  
  .main-frame {
    border-radius: 15px;
  }
  
  .overlap-frame {
    bottom: -10px;
    right: -10px;
    width: 40% !important;
    height: 40% !important;
    border: 3px solid var(--white);
    border-radius: 12px;
  }
  
  .gallery-frames {
    gap: 15px;
  }
  
  .gallery-frames .gallery-item {
    height: 300px !important;
    min-height: 300px !important;
    border-radius: 15px;
  }
  
  .gallery-frames .gallery-item img {
    border-radius: 15px;
  }
  
  .gallery-overlay {
    padding: 20px;
  }
  
  .gallery-overlay h4 {
    font-size: 1.2rem;
  }
  
  .gallery-overlay p {
    font-size: 0.9rem;
  }
  
  .about-content h2 {
    font-size: 1.8rem;
  }
  
  .about-content p {
    font-size: 1rem;
  }
  
  .advantage-card {
    padding: 15px 20px;
  }
  
  .advantage-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .advantage-card span {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .image-showcase {
    height: 280px;
  }
  
  .overlap-frame {
    width: 35% !important;
    height: 35% !important;
  }
  
  .gallery-frames .gallery-item {
    height: 280px !important;
    min-height: 280px !important;
  }
  
  .about-content h2 {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.8rem;
  }
}

/* Additional Mobile Fixes for Product Pages */
@media (max-width: 768px) {
  /* Force image visibility on mobile */
  .gallery-item,
  .main-frame,
  .overlap-frame {
    background-color: var(--light-bg) !important;
    overflow: hidden;
  }
  
  .gallery-item img,
  .main-frame img,
  .overlap-frame img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    background-color: var(--light-bg) !important;
    max-width: none !important;
    max-height: none !important;
    min-width: 100% !important;
    min-height: 100% !important;
  }
  
  /* Page Banner Mobile */
  .page-banner {
    padding: 80px 0 60px;
  }
  
  .page-banner h1 {
    font-size: 2.2rem;
  }
  
  /* Section Spacing */
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  /* Container Padding */
  .container {
    padding: 0 15px;
  }
  
  /* CTA Banner Mobile */
  .cta-banner .container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  
  .cta-banner h2 {
    font-size: 2rem;
  }
  
  .cta-banner p {
    font-size: 1.1rem;
  }
  
  .cta-phone {
    font-size: 1.8rem;
    flex-direction: column;
    gap: 10px;
  }
  
  .cta-banner-actions {
    align-items: center;
    width: 100%;
  }
  
  .btn-outline {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .page-banner {
    padding: 60px 0 40px;
  }
  
  .page-banner h1 {
    font-size: 1.8rem;
  }
  
  .breadcrumb {
    font-size: 0.9rem;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .cta-banner h2 {
    font-size: 1.6rem;
  }
  
  .cta-phone {
    font-size: 1.5rem;
  }
}

/* Interactive State */
.gallery-item:hover {
  transform: translateY(-15px) scale(1.02) rotate(1deg);
  box-shadow: 0 45px 90px rgba(0, 0, 0, 0.12);
  z-index: 10;
  animation-play-state: paused;
}

.gallery-item:hover img {
  transform: scale(1.1) rotate(-1deg);
}

/* Responsive Grid Mapping */
@media (max-width: 1100px) {
  .bento-mosaic {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item {
    grid-column: span 3 !important;
    grid-row: span 2 !important;
    border-radius: 30px !important;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) {
    grid-column: span 6 !important;
  }
}

@media (max-width: 768px) {
  .bento-mosaic {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
  .gallery-item {
    height: 400px;
    border-radius: 40px !important;
  }
}

/* Modern Gallery Design */
.gallery-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-auto-rows: 300px;
  gap: 20px;
  grid-auto-flow: dense;
}

.gallery-item-modern {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
}

.gallery-item-modern.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item-modern.wide {
  grid-column: span 2;
}

.gallery-item-modern.tall {
  grid-row: span 2;
}

.gallery-item-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.gallery-item-modern:hover img {
  transform: scale(1.1);
}

.gallery-overlay-modern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(15, 70, 118, 0.95) 100%
  );
  display: flex;
  align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item-modern:hover .gallery-overlay-modern {
  opacity: 1;
}

.overlay-content {
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item-modern:hover .overlay-content {
  transform: translateY(0);
}

.category-tag {
  display: inline-block;
  background: rgba(255, 143, 0, 0.9);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.overlay-content h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 8px;
  font-weight: 700;
}

.overlay-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 768px) {
  .gallery-grid-modern {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px;
  }

  .gallery-item-modern.large,
  .gallery-item-modern.wide,
  .gallery-item-modern.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}
@media (max-width: 991px) {
  .experience-layout {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  .experience-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .trust-pills {
    flex-direction: column;
    align-items: center;
  }
  .trust-pill {
    width: 100%;
    max-width: 400px;
  }
  .experience-stats {
    justify-content: center;
  }
  .vis-container {
    width: 320px;
    height: 320px;
  }
  .vis-orb {
    width: 180px;
    height: 180px;
  }
  .ring-1 {
    width: 220px;
    height: 220px;
  }
  .ring-2 {
    width: 320px;
    height: 320px;
  }
  .experience-content h2 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .image-showcase {
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .main-frame,
  .overlap-frame {
    position: static;
    width: 100%;
    height: auto;
    border: none;
    border-radius: 12px;
  }
  .experience-content h2 {
    font-size: 2.2rem;
  }
  .experience-stats {
    gap: 30px;
  }
  .stat-h {
    font-size: 2.2rem;
  }
}

/* Fix Hero Slider text for mobile */
@media (max-width: 768px) {
  .hero-slider h1 {
    font-size: 2.5rem;
  }
  .hero-slider p {
    font-size: 1rem;
  }
  .hero-slider {
    height: 70vh;
  }
}

@media (max-width: 480px) {
  .hero-slider h1 {
    font-size: 2rem;
  }
  .hero-buttons {
    justify-content: center;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1024px) {
  .mobile-menu-btn {
    display: flex !important;
    z-index: 2100;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    box-shadow: -15px 0 45px rgba(0, 0, 0, 0.1);
    display: flex !important;
    padding: 40px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu a {
    font-size: 1.25rem;
    width: 100%;
    text-align: center;
    padding: 10px;
    color: var(--dark-color);
  }

  .dropdown-menu {
    position: static;
    display: none;
    background: #f8fafc;
    width: 100%;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-toggle i {
    transition: transform 0.3s ease;
  }

  .dropdown.active .dropdown-toggle i {
    transform: rotate(180deg);
  }

  .dropdown-menu a {
    font-size: 1.1rem !important;
    padding: 10px 15px !important;
    background: #f1f5f9;
    color: var(--dark-color);
  }

  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: transparent;
    z-index: 1500;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .menu-overlay.active {
    display: block;
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
}
