/* ===== RESET & BASE STYLES ===== */
:root {
  /* Color Variables */
      --primary-color: #FF0000;
      --primary-dark: #a82428;
      --secondary-color: #ecac2c;
      --secondary-dark: #d1941d;
      --dark-color: #2c3e50;
      --dark-light: #34495e;
      --light-color: #f8f9fa;
      --gray-light: #e9ecef;
      --gray: Black;
      --gray-dark: #343a40;
      --success: #28a745;
      --danger: #dc3545;
      --warning: #ffc107;
      --info: #17a2b8;

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Roboto', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-xxl: 5rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 20px;
  --radius-round: 50%;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--light-color);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 0 var(--space-md); */
}

section {
  padding: var(--space-xxl) 0;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--dark-color);
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

h4 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--space-md);
}

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

ul {
  list-style: none;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: none;
  font-size: 1rem;
}

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

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

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

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

/* ===== HEADER & NAVIGATION ===== */
.navbar {
  background-color: white;
  box-shadow: var(--shadow-md);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding:0.5rem 0;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.logo img {
  width: 86px;
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1.2;
}

.logo-sub {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: #FF0000;
  margin-top: 4px;
  line-height: 1.3;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: var(--dark-color);
  margin: 3px 0;
  transition: var(--transition-normal);
  border-radius: 2px;
}

.menu-toggle.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
}

.nav-link {
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  position: relative;
  padding: 0.6rem 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-color);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
  border-radius: var(--radius-sm);
}
/* Dropdown Styles */
.dropdown {
  position: relative;
}

.dropbtn {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dropdown-content {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width:365px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);

  /* 👇 Scrollbar Added */
  max-height:500px;
  /* Height limit */
  overflow-y: auto;
  /* Vertical Scroll */
  overflow-x: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
  z-index: 100;
  padding: 0.5rem 0;
}

/* Show dropdown */
.dropdown:hover .dropdown-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--dark-color);
  border-bottom: 1px solid var(--gray-light);
  font-weight: 500;
  transition: all var(--transition-fast);
}

.dropdown-content a:last-child {
  border-bottom: none;
}

.dropdown-content a:hover {
  background-color: var(--gray-light);
  color: var(--primary-color);
  padding-left: 1.5rem;
}
/* Custom Scrollbar */
.dropdown-content::-webkit-scrollbar {
  width: 6px;
}

.dropdown-content::-webkit-scrollbar-track {
  background: #f1f1f1;
}

.dropdown-content::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.dropdown-content::-webkit-scrollbar-thumb:hover {
  background: #333;
}

.cta-btn .btn-primary {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  margin-top:90px;
  overflow: hidden;
}

.slider {
  position: relative;
  height: 100vh;
  min-height: 600px;
  margin-top: -25px;
}

.slides {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}

.slide.active {
  opacity: 1;
}

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

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider-nav {
  position: absolute;
  bottom: var(--space-xl);
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-lg);
  z-index: 10;
}

.slider-btn {
  background-color: var(--primary-color);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
  box-shadow: var(--shadow-md);
}

.slider-btn:hover {
  background-color: var(--primary-dark);
  transform: scale(1.1);
}

.slide-indicators {
  display: flex;
  gap: var(--space-sm);
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-round);
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition-normal);
}

.indicator.active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

/* Quick Stats */
.quick-stats {
  background-color: white;
  padding: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
  position: relative;
  z-index: 5;
  margin-top: -5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

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

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark-color);
  line-height: 1;
}

.stat-text {
  font-size: 0.9rem;
  color: var(--gray);
}

/* ===== SECTION STYLES ===== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-tag {
  display: inline-block;
  background-color: rgba(204, 45, 50, 0.1);
  color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
  margin-bottom: var(--space-md);
}

.underline {
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
  margin: var(--space-md) auto;
  border-radius: var(--radius-sm);
}

/* ===== ABOUT SECTION ===== */
.about-section {
  margin-top: -60px;
  padding-top: 100px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  margin-bottom: var(--space-xxl);
}

.about-text p {
  font-size: 1.1rem;
  color: var(--gray-dark);
}

/* Values Section */
.about-values {
  margin-top: var(--space-xl);
}

.about-values h3 {
  color: var(--primary-color);
  margin-bottom: var(--space-lg);
  text-align: center;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-lg);
}

.value-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.value-item:hover {
  transform: translateY(-10px);
}

.value-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: var(--space-md);
}

.value-item h4 {
  color: var(--dark-color);
  margin-bottom: var(--space-sm);
}

.value-item p {
  font-size: 0.95rem;
  color: var(--gray);
  margin-bottom: 0;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Mission Vision Section */
.mission-vision-section {
  margin-top: var(--space-xxl);
}

.mission-vision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.mission-card,
.vision-card,
.approach-card {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
  transition: transform var(--transition-normal);
}

.mission-card:hover,
.vision-card:hover,
.approach-card:hover {
  transform: translateY(-10px);
}

.mission-card {
  border-top: 4px solid var(--primary-color);
}

.vision-card {
  border-top: 4px solid var(--secondary-color);
}

.approach-card {
  border-top: 4px solid var(--success);
}

.mv-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(204, 45, 50, 0.1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.mission-card .mv-icon {
  background-color: rgba(204, 45, 50, 0.1);
}

.vision-card .mv-icon {
  background-color: rgba(236, 172, 44, 0.1);
}

.approach-card .mv-icon {
  background-color: rgba(40, 167, 69, 0.1);
}

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

.vision-card .mv-icon i {
  color: var(--secondary-color);
}

.approach-card .mv-icon i {
  color: var(--success);
}

.mission-card h3,
.vision-card h3,
.approach-card h3 {
  margin-bottom: var(--space-md);
}

.mission-card p,
.vision-card p,
.approach-card p {
  color: var(--gray);
  margin-bottom: 0;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background-color: var(--gray-light);
}

.services-tabs {
  background-color: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.tab-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  background-color: var(--dark-color);
}

.tab-btn {
  padding: var(--space-lg);
  background-color: transparent;
  border: none;
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

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

.tab-btn i {
  font-size: 1.5rem;
}

.tab-content {
  padding: var(--space-xl);
}

.tab-pane {
  display: none;
}

.tab-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.tab-pane-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.tab-text ul {
  margin: var(--space-md) 0;
}

.tab-text li {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.tab-text li i {
  color: var(--success);
}

.tab-image img {
  width: 100%;
  height:100%;
  object-fit: contian;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ===== SPECIALIZED SERVICES ===== */
.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: var(--space-lg);
}

.specialized-card {
  background-color: white;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  text-align: center;
  border-top: 4px solid var(--primary-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

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

.specialized-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(204, 45, 50, 0.1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

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

.specialized-image {
  margin: var(--space-md) 0;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.specialized-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition-normal);
}

.specialized-card:hover .specialized-image img {
  transform: scale(1.05);
}

.specialized-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: auto;
  padding-top: var(--space-md);
  justify-content: center;
}

.specialized-features span {
  background-color: var(--gray-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.specialized-features i {
  color: var(--success);
  font-size: 0.8rem;
}

/* ===== WHY CHOOSE US ===== */
.why-us-section {
  position: relative;
  background-image: url('assets/images/1.jpg');
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: white;
}

.parallax-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(44, 62, 80, 0.85);
}

.why-us-section .section-header {
  position: relative;
  z-index: 2;
}

.why-us-section h2,
.why-us-section .section-tag {
  color: white;
}

.why-us-section .underline {
  background-color: var(--secondary-color);
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--space-lg);
  position: relative;
  z-index: 2;
  margin-bottom: var(--space-xxl);
}

.why-us-card {
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: transform var(--transition-normal);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.why-us-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(236, 172, 44, 0.2);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.why-us-icon i {
  font-size: 2rem;
  color: var(--secondary-color);
}

.why-us-card h3 {
  color: white;
  margin-bottom: var(--space-sm);
}

.why-us-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* Clients Trust Section */
.clients-trust-section {
  position: relative;
  z-index: 2;
  margin-top: var(--space-xxl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.clients-trust-section .section-header h3 {
  color: white;
  font-size: 2rem;
}

.clients-trust-section .underline {
  background-color: var(--primary-color);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.trust-item {
  text-align: center;
  padding: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-normal);
}

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

.trust-item i {
  font-size: 2.5rem;
  color: var(--secondary-color);
  margin-bottom: var(--space-md);
}

.trust-item p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

/* ===== PROMISE SECTION ===== */
.promise-section {
  text-align: center;
  background-color: white;
}

.promise-content {
  max-width: 800px;
  margin: 0 auto;
}

.promise-icon {
  width: 100px;
  height: 100px;
  background-color: rgba(204, 45, 50, 0.1);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
}

.promise-icon i {
  font-size: 3rem;
  color: var(--primary-color);
}

.promise-highlights {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: linear-gradient(135deg, #800000, #a00000);
  color: #ffffff;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 16px rgba(128, 0, 0, 0.25);
  transition: all 0.3s ease;
}

.highlight:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(128, 0, 0, 0.35);
}

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

/* ===== CONTACT SECTION ===== */
.contact-section {
  background-color: var(--gray-light);
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.contact-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  align-items: flex-start;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.contact-details h3 {
  margin-bottom: 0.5rem;
}

.social-links {
  margin-top: var(--space-xl);
}

.social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-icon {
  width: 40px;
  height: 40px;
  background-color: var(--dark-color);
  color: white;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
}

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

.contact-form {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.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(204, 45, 50, 0.1);
}

.map-section {
  background-color: white;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.map-container {
  position: relative;
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 20px;
}

.map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(20%) brightness(0.9);
}

.map-overlay {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}

.map-overlay i {
  font-size: 36px;
  margin-bottom: 10px;
}

.map-overlay p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.btn-secondary {
  background: #ffcc00;
  color: #000;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all var(--transition-normal);
}

.btn-secondary:hover {
  background: #ffd633;
  transform: translateY(-3px);
}

/* ===== FOOTER ===== */
.footer {
  background-color: var(--dark-color);
  color: rgba(255, 255, 255, 0.8);
  padding-top: var(--space-xxl);
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(251px, 1fr));
  gap:65px;
  margin-bottom: var(--space-xl);
  margin-left:-62px;
}

.footer-column h4 {
  color: white;
  margin-bottom: var(--space-lg);
  position: relative;
  padding-bottom: var(--space-sm);
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.footer-logo img {
  width: 60px;
}

.footer-logo-text h3 {
  color:white;
  margin-bottom: 0;
}

.footer-logo-text p {
  color:white;
  margin-bottom: 0;
}

.footer-about {
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.footer-certifications {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.cert-badge {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
}

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

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

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

.contact-info-footer p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.contact-info-footer i {
  color: var(--primary-color);
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.emergency-contact {
  background-color: rgba(204, 45, 50, 0.2);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  margin-top: var(--space-lg);
}

.emergency-contact h5 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-lg) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-copyright p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

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

/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 50px;
  height: 50px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: var(--radius-round);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
  box-shadow: var(--shadow-md);
}

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

.back-to-top:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* ===== LEFT SOCIAL ICONS ===== */
.left-social-icons {
  position: fixed;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 9999;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  transform: translateX(-6px) scale(1.08);
}

.whatsapp {
  background: #25D366;
}

.call {
  background: #0a66c2;
}

.facebook {
  background: #1877F2;
}

.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .slider {
    height: 70vh;
    min-height: 500px;
  }

  .logo {
    margin-left: 0;
  }

  .nav-links {
    gap: 24px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .about-content {
    gap: var(--space-lg);
  }

  .specialized-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .mission-vision-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .tab-buttons {
    grid-template-columns: repeat(2, 1fr);
  }

  .tab-pane-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .tab-image img {
    height: 300px;
  }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    padding-top: 60px;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  section {
    padding: var(--space-xl) 0;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  /* Navigation */
  .navbar {
    padding: 0.5rem 0;
  }

  .navbar .container {
    padding: 0 var(--space-sm);
  }

  .logo img {
    width: 70px;
  }

  .logo-main {
    font-size: 1.1rem;
  }

  .logo-sub {
    font-size: 0.8rem;
    margin-top: 2px;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 60px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: var(--space-xl) var(--space-md);
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    gap: 0;
    z-index: 999;
  }

  .nav-links.active {
    left: 0;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--gray-light);
  }

  .nav-links li:last-child {
    border-bottom: none;
    margin-top: var(--space-md);
  }

  .nav-link {
    display: block;
    padding: var(--space-md) 0;
    font-size: 1rem;
    width: 100%;
  }

  .nav-link.active::after {
    display: none;
  }

  .nav-link.active {
    color: var(--primary-color);
    font-weight: 700;
  }

  /* Dropdown for mobile - FIXED */
  .dropdown {
    width: 100%;
    position: relative;
  }

  .dropbtn {
    justify-content: space-between;
    width: 100%;
    padding: var(--space-md) 0;
  }

  .dropdown-content {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background-color: #f9f9f9;
    padding-left: var(--space-md);
    margin: 0;
    display: none;
    width: 100%;
    min-width: 100%;
    border-top: none;
    border-radius: 0;
  }

  .dropdown-content.show {
    display: block;
  }

  .dropdown-content a {
    padding: var(--space-sm) 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.9rem;
    white-space: normal;
  }

  /* Hero Section */
  .hero-section {
    margin-top:33px;
  }

  .slider {
    height: 50vh;
    min-height: 400px;
  }

  .slider-nav {
    bottom: var(--space-lg);
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }

  /* Quick Stats */
  .quick-stats {
    padding: var(--space-md) 0;
    margin-top: 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-sm);
  }

  .stat-item {
    flex-direction: column;
    text-align: center;
    gap: var(--space-xs);
  }

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

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

  .stat-text {
    font-size: 0.8rem;
  }

  /* About Section */
  .about-section {
    margin-top: -40px;
    padding-top: 80px;
  }

  .about-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
  }

  .about-image img {
    order: -1;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .value-item {
    padding: var(--space-md);
  }

  /* Services Section */
  .services-tabs {
    border-radius: var(--radius-md);
  }

  .tab-buttons {
    grid-template-columns: 1fr;
  }

  .tab-btn {
    padding: var(--space-md);
    flex-direction: row;
    justify-content: flex-start;
    gap: var(--space-sm);
    text-align: left;
  }

  .tab-content {
    padding: var(--space-lg);
  }

  /* Specialized Services */
  .specialized-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .specialized-card {
    padding: var(--space-md);
  }

  /* Why Choose Us */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

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

  /* Contact Section */
  .contact-content {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .contact-form {
    padding: var(--space-lg);
  }

  /* Footer */
  .footer {
    padding-top: var(--space-xl);
  }

  .footer-content {
    gap: var(--space-lg);
    margin-left:25px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
    gap: var(--space-md);
  }

  /* Left Social Icons */
  .left-social-icons {
    right: 10px;
    gap: 10px;
  }

  .social-btn {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .social-btn:hover {
    transform: translateX(-4px) scale(1.05);
  }

  /* Back to top button */
  .back-to-top {
    bottom: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
  }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  .slider {
    height: 40vh;
    min-height: 300px;
  }

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

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

  .promise-highlights {
    gap: var(--space-md);
  }

  .highlight {
    padding: 10px 16px;
    font-size: 0.9rem;
  }

  .map-container {
    height: 250px;
  }

  .footer-certifications {
    justify-content: center;
  }

  .left-social-icons {
    display: none;
  }
}

/* Fix for dropdown on desktop hover */
@media (min-width: 769px) {
  .dropdown-content {
    display: block !important;
  }
}

/* Print Styles */
@media print {

  .navbar,
  .left-social-icons,
  .back-to-top,
  .slider-nav,
  .contact-form button {
    display: none !important;
  }

  body {
    color: black;
    background: white;
  }

  a {
    color: black;
    text-decoration: underline;
  }

  .container {
    max-width: 100%;
  }

  section {
    page-break-inside: avoid;
    padding: 1cm 0;
  }
}