:root {
  --primary-color: #d97706;
  --primary-dark: #b45309;
  --primary-light: #f59e0b;
  --secondary-color: #dc2626;
  --secondary-dark: #991b1b;
  --accent-color: #ea580c;
  --text-dark: #1f2937;
  --text-light: #6b7280;
  --text-lighter: #9ca3af;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
  --border-color: #e5e7eb;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.15);
}

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

body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

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

.navbar {
    background: rgb(255 255 255 / 95%);
    backdrop-filter: blur(10px);
    /* padding: 1rem 0; */
    transition: all 0.3s 
ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--bg-white);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand i {
  font-size: 1.8rem;
  color: var(--primary-color);
}

.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  position: relative;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

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

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

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.pexels.com/photos/6169668/pexels-photo-6169668.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(rgba(31, 41, 55, 0.72), rgba(55, 65, 81, 0.68)), url(https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-4.0.3&auto=format&fit=crop&w=2340&q=80) center / cover no-repeat;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--bg-white);
  padding-top: 80px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0;
}

.stat-item p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.95rem;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  z-index: 2;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--primary-color);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

.animate-fade-in {
  animation: fadeIn 1s ease-out;
}

.animate-fade-in-delay {
  animation: fadeIn 1s ease-out 0.3s both;
}

.animate-fade-in-delay-2 {
  animation: fadeIn 1s ease-out 0.6s both;
}

.animate-fade-in-delay-3 {
  animation: fadeIn 1s ease-out 0.9s both;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: none;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
}

.btn-outline-light {
  border: 2px solid white;
  color: white;
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}

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

.btn-outline-primary {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 0.75rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  background: transparent;
}

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

.section-tag {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}

.services-preview {
  background-color: var(--bg-white);
  padding: 5rem 0;
}

.service-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  height: 100%;
  border: 1px solid var(--border-color);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-color);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2rem;
  color: white;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.service-link:hover {
  gap: 1rem;
}

.why-choose-us {
  background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.image-stack {
  position: relative;
  height: 500px;
}

.image-stack-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.image-stack-item-top {
  width: 70%;
  height: 60%;
  top: 0;
  right: 0;
  z-index: 2;
}

.image-stack-item-bottom {
  width: 70%;
  height: 60%;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.image-stack:hover .image-stack-item-top {
  transform: translate(10px, -10px);
}

.image-stack:hover .image-stack-item-bottom {
  transform: translate(-10px, 10px);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.feature-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.feature-item p {
  color: var(--text-light);
  margin: 0;
}

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

.product-category {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: var(--shadow);
  height: 100%;
}

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

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

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

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

.category-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(217, 119, 6, 0.8), rgba(234, 88, 12, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.category-overlay i {
  font-size: 3rem;
  color: white;
}

.product-category h3 {
  padding: 1.5rem;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.product-category p {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-light);
  margin: 0;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 5rem 0;
}

.cta-box {
  padding: 3rem;
}

.cta-box h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.cta-box .btn-light {
  background: white;
  color: var(--primary-color);
  border: none;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-box .btn-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  background: #1f2937;
  color: rgba(255, 255, 255, 0.8);
}

.footer-brand {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand i {
  color: var(--primary-color);
}

.footer-title {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

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

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact a:hover {
  color: var(--primary-color);
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

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

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  border: none;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.scroll-top-btn.show {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
}

.page-header {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('https://images.pexels.com/photos/6169668/pexels-photo-6169668.jpeg?auto=compress&cs=tinysrgb&w=1920') center/cover;
}

.page-header .container {
  position: relative;
  z-index: 2;
}

.page-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.breadcrumb {
  background: transparent;
  margin-bottom: 0;
}

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

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

.breadcrumb-item.active {
  color: var(--primary-color);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.5);
}

.about-intro,
.services-detail,
.contact-section,
.locations-intro {
  padding: 5rem 0;
}

.about-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.about-grid-item {
  border-radius: 15px;
  overflow: hidden;
  height: 240px;
}

.about-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-grid-item:hover img {
  transform: scale(1.1);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-feature-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.about-feature-item:hover {
  transform: translateX(10px);
  background: white;
  box-shadow: var(--shadow-md);
}

.feature-icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon-box i {
  font-size: 1.5rem;
  color: white;
}

.mission-vision {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.mv-card {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

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

.mv-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mv-icon i {
  font-size: 2rem;
  color: white;
}

.mv-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.values-section {
  background: white;
}

.value-card {
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
}

.value-card:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(360deg);
}

.value-icon i {
  font-size: 2rem;
  color: white;
}

.value-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.team-section {
  background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
}

.team-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
}

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

.team-image {
  width: 150px;
  height: 150px;
  margin: 0 auto 1.5rem;
  border: 5px solid var(--primary-color);
  border-radius: 50%;
  overflow: hidden;
}

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

.team-card h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.team-role {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-bio {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.team-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-badge {
  padding: 0.5rem 1.25rem;
  background: var(--bg-light);
  border-radius: 25px;
  color: var(--primary-color);
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.contact-badge:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.stats-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  padding: 5rem 0;
}

.stat-box {
  padding: 2rem;
}

.stat-box i {
  font-size: 3rem;
  color: white;
  margin-bottom: 1rem;
}

.stat-box h3 {
  font-size: 3rem;
  color: white;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin: 0;
}

.service-detail-card {
  margin-bottom: 2rem;
}

.service-detail-icon {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.service-detail-icon i {
  font-size: 2.5rem;
  color: white;
}

.service-detail-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-light);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.service-feature-item:hover {
  background: white;
  box-shadow: var(--shadow);
  transform: translateX(10px);
}

.service-feature-item i {
  color: var(--primary-color);
  font-size: 1.3rem;
}

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

.category-detail-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  height: 100%;
  transition: all 0.4s ease;
}

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

.category-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.category-icon i {
  font-size: 2rem;
  color: white;
}

.category-detail-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.category-detail-card ul {
  list-style: none;
  padding: 0;
}

.category-detail-card li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-light);
}

.category-detail-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-size: 1.5rem;
  line-height: 1;
}

.process-section {
  background: white;
}

.process-step {
  position: relative;
  padding: 2rem;
  background: var(--bg-light);
  border-radius: 20px;
  transition: all 0.4s ease;
}

.process-step:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateY(-10px);
}

.process-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.process-step i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.process-step h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--text-light);
  margin: 0;
}

.contact-info-wrapper,
.contact-form-wrapper {
  height: 100%;
}

.contact-info-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.contact-info-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon i {
  font-size: 1.5rem;
  color: white;
}

.contact-info-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.contact-info-item p {
  color: var(--text-light);
  margin: 0;
}

.contact-form-wrapper {
  background: white;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-form .form-label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.contact-form .form-control {
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(217, 119, 6, 0.1);
  outline: none;
}

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

.quick-contact-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: all 0.4s ease;
}

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

.quick-contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.quick-contact-icon i {
  font-size: 2rem;
  color: white;
}

.quick-contact-card h4 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.quick-contact-card p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.faq-section {
  background: white;
}

.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.accordion-button {
  background: white;
  color: var(--text-dark);
  font-weight: 600;
  padding: 1.25rem 1.5rem;
  border: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--text-light);
}

.location-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.4s ease;
  height: 100%;
}

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

.location-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

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

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

.location-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 600;
}

.location-content {
  padding: 2rem;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.location-icon i {
  font-size: 1.5rem;
  color: white;
}

.location-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.location-type {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.location-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.location-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.feature-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--bg-light);
  border-radius: 25px;
  font-size: 0.85rem;
  color: var(--text-dark);
}

.feature-badge i {
  color: var(--primary-color);
}

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

.coverage-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.coverage-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.coverage-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.coverage-item i {
  font-size: 2rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.coverage-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.coverage-item p {
  color: var(--text-light);
  margin: 0;
}

.coverage-stats {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.stat-card {
  text-align: center;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  transform: translateY(-5px);
}

.stat-card:hover i,
.stat-card:hover h3,
.stat-card:hover p {
  color: white;
}

.stat-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.stat-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.stat-card p {
  color: var(--text-light);
  margin: 0;
  transition: color 0.3s ease;
}

.timeline-section {
  background: white;
}

.timeline {
  position: relative;
  padding-left: 50px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-marker {
  position: absolute;
  left: -41px;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  border: 4px solid white;
  box-shadow: 0 0 0 4px var(--bg-light);
}

.timeline-content {
  background: var(--bg-light);
  padding: 2rem;
  border-radius: 15px;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  background: white;
  box-shadow: var(--shadow-lg);
  transform: translateX(10px);
}

.timeline-year {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.timeline-content h4 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.timeline-content p {
  color: var(--text-light);
  margin: 0;
}

@media (max-width: 991px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .page-title {
    font-size: 2.5rem;
  }

  .image-stack {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 2rem;
  }

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

  .hero-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .page-title {
    font-size: 2rem;
  }

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

  .contact-info-wrapper {
    margin-bottom: 2rem;
  }

  .timeline {
    padding-left: 30px;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-marker {
    left: -31px;
  }
}
      /* Navbar background */
      .modern-navbar{
          background: rgba(255,255,255,0.9);
          backdrop-filter: blur(10px);
          padding: 15px 0;
          box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      }

      /* Logo */
      .navbar-brand img{
          width: 70px;
      }

      /* Nav links */
      .nav-link{
          font-weight: 500;
          color: #333 !important;
          margin: 0 15px;
          position: relative;
          transition: 0.3s;
      }

      /* Hover animation */
      .nav-link::after{
          content:"";
          position:absolute;
          width:0%;
          height:2px;
          background:#0d6efd;
          left:0;
          bottom:-5px;
          transition:0.3s;
      }

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

      .nav-link:hover{
          color:#e26509 !important;
      }

      /* CTA button */
      .nav-btn{
          padding:8px 20px;
          border-radius:30px;
          font-weight:500;
      }