/*  Base Styles */
:root {
  --primary: #0f172a;
  --secondary: #3b82f6;
  --accent: #f59e0b;
  --light: #f8fafc;
  --dark: #0f172a;
  --gray: #f1f5f9;
  --success: #10b981;
  --danger: #ef4444;
  --transition: all 0.3s ease;
  --transition-slow: all 0.5s ease;
  --transition-bounce: all 0.6s ease;
  --text-color: #334155;
  --white: #ffffff;
  --primary-color: #0f172a;
  --secondary-color: #3b82f6;
}

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

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  line-height: 1.6;
  background-color: var(--light);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: touch;
}

h1, h2, h3, h4, h5, h6 {
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--secondary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

ul {
  list-style: none;
}

/* Container */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 2;
}

/* Loader */
.loader-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loader {
  text-align: center;
}

.loader-text {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--light);
  letter-spacing: 0.5rem;
  margin-bottom: 1rem;
  opacity: 1;
  animation: pulse 2s infinite;
}

.loader-bar {
  width: 150px;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  margin: 0 auto;
}

.loader-bar:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--secondary);
  animation: loader 1.5s linear infinite;
}

@keyframes loader {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}

/* Section Styles */
.section {
  padding: 6rem 0;
  position: relative;
  overflow: visible;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.section-tagline {
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary);
  margin-bottom: 1rem;
  position: relative;
}

.section-tagline:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -40px;
  width: 30px;
  height: 1px;
  background-color: var(--secondary);
  transform: translateY(-50%);
}

.section-tagline:after {
  content: '';
  position: absolute;
  top: 50%;
  right: -40px;
  width: 30px;
  height: 1px;
  background-color: var(--secondary);
  transform: translateY(-50%);
}

.section-tagline.light {
  color: var(--light);
}

.section-tagline.light:before,
.section-tagline.light:after {
  background-color: var(--light);
}

.section-title {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
}

.section-line {
  width: 5rem;
  height: 3px;
  background-color: var(--secondary);
  margin: 1.5rem auto 2rem;
  position: relative;
}

.section-line:before {
  content: '';
  position: absolute;
  top: 0;
  left: -15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  transform: translateY(-50%);
}

.section-line:after {
  content: '';
  position: absolute;
  top: 0;
  right: -15px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--secondary);
  transform: translateY(-50%);
}

.section-subtitle {
  max-width: 40rem;
  margin: 0 auto;
  color: #64748b;
  font-size: 1.1rem;
}

.bg-light {
  background-color: var(--light);
}

.bg-gray {
  background-color: var(--gray);
}

.bg-dark {
  background-color: var(--dark);
  color: var(--light);
}

.bg-dark .section-title {
  color: var(--light);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  border-radius: 0.25rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(-100%);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  transform: translateX(0);
}

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

.btn-primary:hover {
  background-color: #2563eb;
  color: white;
}

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

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

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

.btn-light:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

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

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

.btn-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
}

.btn i, .btn svg {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.btn:hover i, .btn:hover svg {
  transform: translateX(5px);
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 0;
  z-index: 9999;
  background-color: var(--primary);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.navbar.scrolled {
  background-color: white;
  color: #3b82f6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 10000;
}

.logo-image {
  width: 80px;
  height: 65px;
  display: block;
  position: relative;
  z-index: 10000;
}

.logo-subtitle {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: white;
  margin-top: -5px;
  position: relative;
  z-index: 10000;
}

.accent {
  color: var(--accent);
}

.nav-desktop {
  display: none;
}

.nav-link {
  margin-left: 2rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: white;
}

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


.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active {
  color: var(--secondary);
}

.navbar.scrolled .nav-link {
  color: #64748b;
}

.navbar.scrolled .logo-subtitle {
  color: black;
}


.menu-toggle {
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100000;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: white;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: var(--transition);
}

.navbar.scrolled .menu-icon span {
  background-color: white;
  color: #3b82f6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-icon span:nth-child(1) {
  top: 0;
}

.menu-icon span:nth-child(2) {
  top: 10px;
}

.menu-icon span:nth-child(3) {
  top: 20px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--primary);
  z-index: 1001;
  transition: var(--transition-slow);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
}

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

.mobile-menu-container {
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  position: relative;
  margin-top: 60px;
}

.close-menu {
  position: absolute;
  top: 2rem;
  right: 2rem;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1002;
}

.nav-mobile .nav-link {
  margin: 0.75rem 0;
  padding: 0.75rem 0;
  color: white;
  font-size: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 1;
  visibility: visible;
}

.mobile-contact-info {
  text-align: center;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.7);
}

.mobile-contact-info p {
  margin-bottom: 0.5rem;
}

.mobile-contact-info i {
  margin-right: 0.5rem;
  color: var(--secondary);
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.mobile-social .social-icon {
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: var(--transition);
}

.mobile-social .social-icon:hover {
  background-color: var(--secondary);
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
  color: white;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  padding-right: 0.5rem;
  content: "/";
  color: rgba(255, 255, 255, 0.5);
}

.breadcrumb-item a {
  color: white;
}

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

.breadcrumb-item.active {
  color: rgba(255, 255, 255, 0.7);
}

/* Page Header */
.page-header {
  position: relative;
  padding: 10rem 0 6rem;
  background-color: var(--primary);
  color: white;
  text-align: center;
  overflow: hidden;
  margin-top: 0;
  z-index: 1;
}

.page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.page-header h1 {
  position: relative;
  font-size: 3rem;
  margin-bottom: 1rem;
  z-index: 1;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  overflow: hidden;
  padding-top: 80px; /* Add padding to prevent overlap with navbar */
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.4));
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  transform: translateY(-5%); /* Slight upward adjustment */
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 300;
  color: white;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-btns .btn {
  min-width: 160px;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-btns .btn-primary {
  background-color: var(--secondary);
  color: white;
  border: 2px solid var(--secondary);
}

.hero-btns .btn-primary:hover {
  background-color: transparent;
  color: white;
}

.hero-btns .btn-outline {
  background-color: transparent;
  color: white;
  border: 2px solid white;
}

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

.hero-nav {
  position: absolute;
  bottom: 3rem;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  z-index: 2;
}

.hero-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.hero-nav-btn:hover {
  background-color: var(--secondary);
}

.hero-dots {
  display: flex;
  gap: 1rem;
}

.hero-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.hero-dot.active {
  background-color: var(--secondary);
}

.scroll-down {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: white;
  z-index: 2;
  width: 2rem;
  height: 3.5rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  padding-top: 0.5rem;
  transition: var(--transition);
}

.scroll-arrow {
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(45deg);
  animation: scrollArrow 2s infinite;
}

@keyframes scrollArrow {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-5px, -5px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(5px, 5px);
  }
}

.scroll-down:hover {
  border-color: var(--secondary);
}


/* Footer */
.footer {
  background-color: var(--primary);
  color: white;
  position: relative;
  z-index: 10;
  margin-top: 0;
  width: 100%;
  clear: both;
}

.footer-top {
  padding: 5rem 0 3rem;
  position: relative;
  width: 100%;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  width: 100%;
}

.footer-info {
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: block;
  color: white;
}

.footer-logo-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.7);
  margin-left: 0.5rem;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: white;
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--secondary);
  color: white;
  transform: translateY(-3px);
}

.footer h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  color: white;
  font-weight: 600;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  position: relative;
  padding-left: 1.25rem;
  display: inline-block;
}

.footer-links a:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid var(--secondary);
  border-right: 1px solid var(--secondary);
  transform: translateY(-50%) rotate(45deg);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--secondary);
  padding-left: 1.5rem;
}

.footer-links a:hover:before {
  left: 0.5rem;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact ul li i {
  margin-right: 1rem;
  color: var(--secondary);
  margin-top: 0.25rem;
}
.footer-contact ul li a {
  color: rgba(255, 255, 255, 0.7);
}


.footer-newsletter p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.newsletter-form .form-group {
  position: relative;
  margin-bottom: 1.5rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.75rem 4rem 0.75rem 1rem;
  border-radius: 0.25rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
  outline: none;
  transition: var(--transition);
}

.newsletter-form input:focus {
  background-color: rgba(255, 255, 255, 0.15);
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-submit {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 3rem;
  background-color: var(--secondary);
  border: none;
  border-radius: 0 0.25rem 0.25rem 0;
  color: white;
  cursor: pointer;
  transition: var(--transition);
}

.btn-submit:hover {
  background-color: #2563eb;
}

.working-hours h4 {
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.working-hours p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  width: 100%;
  background-color: var(--primary);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.5rem;
  height: 3.5rem;
  background-color: var(--secondary);
  color: white;
  border-radius: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 9999;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid white;
  will-change: transform;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.back-to-top:hover {
  background-color: #2563eb;
  transform: translateY(-5px);
  color: white;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
    font-size: 1rem;
    background-color: var(--secondary);
    border: 2px solid white;
  }
}

.hero-content h1{
  margin-top: 80px;
  font-size: 500;
}
/* Animation Classes */
.reveal-text {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: transform, opacity;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.8s ease-out;
  will-change: transform, opacity;
}

.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: transform, opacity;
}

.reveal-element.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  will-change: opacity;
}

.fade-in.visible {
  opacity: 1;
}

.slide-in-left {
  transform: translateX(-100px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
}

.slide-in-left.visible {
  transform: translateX(0);
  opacity: 1;
}

.slide-in-right {
  transform: translateX(100px);
  opacity: 0;
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
  will-change: transform, opacity;
}

.slide-in-right.visible {
  transform: translateX(0);
  opacity: 1;
}

.cta-center {
  text-align: center;
  margin-top: 3rem;
}

/* Ensure sections stay visible during scroll */
[data-scroll-section] {
  position: relative;
  z-index: 1;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  perspective: 1000;
  -webkit-perspective: 1000;
}

/* Prevent content from disappearing during scroll */
[data-scroll] {
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* Responsive Styles */
@media (min-width: 576px) {
  .about-numbers {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .products-showcase {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .mobile-menu {
    width: 400px;
  }
  
  .hero-content {
    max-width: 70%;
  }
}

@media (min-width: 768px) {
  .section-title {
    font-size: 3.5rem;
  }
  
  .hero h1 {
    font-size: 4.5rem;
  }
  
  .hero p {
    font-size: 1.5rem;
  }
  
  .nav-desktop {
    display: flex;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .about-snippet {
    grid-template-columns: 2fr 1fr;
    align-items: center;
  }
  
  .products-showcase {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .company-overview {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .vision-mission-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 767px) {
  .navbar {
    background-color: var(--primary);
  }

  .navbar.scrolled {
    background-color: var(--primary);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  .navbar.scrolled .logo-subtitle {
    color: white;
  }
  .navbar.scrolled .nav-link {
    color: white;
  }
  
.navbar.scrolled .menu-icon{
  color: black;
}

  .logo-image {
    width: 80px;
    height: 60px;
  }

  .logo-subtitle {
    font-size: 0.7rem;
    color: white;
  }

  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .menu-icon span {
    background-color: white;
  }

  .breadcrumb {
    margin-top: 0.5rem;
  }

  .breadcrumb-item {
    font-size: 0.9rem;
  }

  .page-header {
    padding: 8rem 0 4rem;
  }
}

main {
  flex: 1;
  position: relative;
  z-index: 1;
  margin-top: 0;
}

html, body {
  overflow-x: hidden;
  position: relative;
}

.footer-info,
.footer-links,
.footer-contact,
.footer-newsletter {
  position: relative;
  z-index: 2;
}
 

/* Services Grid */
.services-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-card {
  background-color: white;
  padding: 2.5rem 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: var(--transition-bounce);
  border-bottom: 3px solid transparent;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--secondary);
  transition: var(--transition);
  opacity: 0.05;
  z-index: 0;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-bottom: 3px solid var(--secondary);
}

.service-card:hover:before {
  height: 100%;
}

.service-icon {
  font-size: 3rem;
  color: var(--secondary);
  margin-top: 1.5rem;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  color: var(--accent);
}

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--primary);
  font-size: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-card p {
  color: #64748b;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  color: var(--secondary);
  position: relative;
  z-index: 1;
}

.service-link i {
  margin-left: 0.5rem;
  transition: var(--transition);
}

.service-link:hover i {
  transform: translateX(5px);
}

/* Service button */
/* From Uiverse.io by cssbuttons-io */ 
.srv {
  --color: #560bad;
  font-family: inherit;
  display: inline-block;
  width: 8em;
  height: 2.6em;
  line-height: 2.5em;
  margin: 10px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border: 2px solid var(--color);
  transition: color 0.5s;
  z-index: 1;
  font-size: 17px;
  border-radius: 6px;
  font-weight: 500;
  color: var(--color);
  text-align: center;
}

.srv:before {
  content: "";
  position: absolute;
  z-index: -1;
  background: var(--color);
  height: 150px;
  width: 200px;
  border-radius: 50%;
}

.srv:hover {
  color: #fff;
}

.srv:before {
  top: 100%;
  left: 100%;
  transition: all 0.7s;
}

.srv:hover:before {
  top: -30px;
  left: -30px;
}

.srv:active:before {
  background: #3a0ca3;
  transition: background 0s;
}


.why-choose-us-section {
  padding: 80px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.feature-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: inline;
}

.feature-icon i {
  font-size: 30px;
  color: #2563eb;
}

.feature-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('../assets/Hero Bg.png');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  text-align: center;
  color: #fff;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}


/* Responsive Styles */
@media (max-width: 768px) {
  .page-title {
    font-size: 2.5rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

/* Products Page Styles */
.products-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
  color: var(--text-color);
}

.products-intro p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1.1rem;
}

.products-filter-advanced {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  margin-bottom: 3rem;
}

.filter-header {
  margin-bottom: 1.5rem;
  text-align: center;
}

.filter-header h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-color);
  border-radius: 30px;
  background: transparent;
  color: var(--primary-color);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary-color);
  color: var(--white);
}

.products-grid-expanded {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.product-card-detailed {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.product-card-detailed:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.product-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card-detailed:hover .product-image img {
  transform: scale(1.1);
}

.product-content {
  padding: 2rem;
}

.product-category-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 20px;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.product-content h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.product-features {
  margin: 1.5rem 0;
}

.feature {
  display: flex;
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
}

.feature-label {
  font-weight: 600;
  color: var(--primary-color);
  min-width: 120px;
}

.feature-value {
  color: var(--text-color);
}

/* Fix for scroll animations */
[data-scroll] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.product-card-detailed {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Responsive styles */
@media (max-width: 768px) {
  .filter-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .filter-btn {
    width: 100%;
  }
  
  .products-grid-expanded {
    grid-template-columns: 1fr;
  }
  
  .product-features-grid {
    grid-template-columns: 1fr;
  }
}

/* Animation Classes */
[data-scroll] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-scroll].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hover Effects */
.product-card-detailed .srv {
  display: inline-block;
  /* padding: 0.8rem 1.5rem; */
  background: var(--primary-color);
  color: var(--white);
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-card-detailed .srv:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Loading Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card-detailed {
  animation: fadeInUp 0.6s ease forwards;
}

.product-card-detailed:nth-child(2) {
  animation-delay: 0.2s;
}

.product-card-detailed:nth-child(3) {
  animation-delay: 0.4s;
}

.product-card-detailed:nth-child(4) {
  animation-delay: 0.6s;
}

.product-card-detailed:nth-child(5) {
  animation-delay: 0.8s;
}
