/* ===== CUSTOM CSS FOR JEYAM DESIGNERS ===== */

/* CSS Variables - Enhanced Design System */
:root {
  /* Brand Colors - Refined Palette */
  --primary: #2E8B57;
  --primary-light: #3CB371;
  --primary-dark: #1F5F3F;
  --secondary: #FF7F32;
  --secondary-light: #FF944D;
  --secondary-dark: #E65A1F;
  
  /* Supporting Colors - Enhanced */
  --dark: #1A1A1A;
  --dark-light: #2D2D2D;
  --light: #F8F9FA;
  --light-dark: #E9ECEF;
  --border: #DEE2E6;
  --border-light: #F1F3F4;
  
  /* Accent Colors */
  --success: #28A745;
  --warning: #FFC107;
  --info: #17A2B8;
  --danger: #DC3545;
  --white: #FFFFFF;
  
  /* Neutral Grays */
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;
  
  /* Typography Scale - 8pt Grid System */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */
  --text-6xl: 3.75rem;   /* 60px */
  
  /* Spacing Scale - 8pt Grid System */
  --space-1: 0.25rem;    /* 4px */
  --space-2: 0.5rem;     /* 8px */
  --space-3: 0.75rem;    /* 12px */
  --space-4: 1rem;       /* 16px */
  --space-5: 1.25rem;    /* 20px */
  --space-6: 1.5rem;     /* 24px */
  --space-8: 2rem;       /* 32px */
  --space-10: 2.5rem;    /* 40px */
  --space-12: 3rem;      /* 48px */
  --space-16: 4rem;      /* 64px */
  --space-20: 5rem;      /* 80px */
  --space-24: 6rem;      /* 96px */
  --space-32: 8rem;      /* 128px */
  
  /* Shadows - Enhanced Depth System */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  
  /* Border Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
  
  /* Z-Index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
  
  /* Bootstrap Override Variables */
  --bs-primary: var(--primary);
  --bs-secondary: var(--secondary);
  --bs-success: var(--success);
  --bs-warning: var(--warning);
  --bs-info: var(--info);
  --bs-danger: var(--danger);
  --bs-dark: var(--dark);
  --bs-light: var(--light);
  --bs-white: var(--white);
}

/* ===== TYPOGRAPHY SYSTEM ===== */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--gray-700);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Heading Scale */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-900);
  margin-bottom: var(--space-4);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

/* Section Titles */
/* .section-title {
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  color: var(--gray-900);
  margin-bottom: var(--space-6);
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
} */
.section-title {
    font-size: var(--text-4xl);
    font-weight: 800;
    line-height: 1.1;
    color: var(--gray-900);
    margin-bottom: var(--space-6);
    position: relative;
    /*text-align: center;  ensure text also centers */
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%; /* move to middle */
    transform: translateX(-50%); /* center correctly */
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: var(--radius-full);
}
.about::after {
    
    left: 0!important; /* move to middle */
	transform: none!important;
   
}
.section-title.text-center::after {
  left: 50%;
  transform: translateX(-50%);
}

/* Lead Text */
.lead {
  font-size: var(--text-lg);
  font-weight: 400;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: var(--space-6);
}

/* Small Text */
.text-small {
  font-size: var(--text-sm);
  line-height: 1.5;
}

/* ===== LAYOUT & SPACING SYSTEM ===== */
.container {
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

/* Section Spacing */
section {
  padding: var(--space-20) 0;
}

section.bg-light {
  background-color: var(--gray-50);
}

/* Row Spacing */
.row {
  margin-left: calc(-1 * var(--space-3));
  margin-right: calc(-1 * var(--space-3));
}

.row > * {
  padding-left: var(--space-3);
  padding-right: var(--space-3);
}

/* Column Spacing */
.col, .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12,
.col-lg, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12,
.col-md, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
  margin-bottom: var(--space-6);
}

/* ===== NAVIGATION SYSTEM ===== */
.navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  padding: var(--space-4) 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: var(--shadow-lg);
  padding: var(--space-3) 0;
}

/* Navbar Brand */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.navbar-logo {
  height: 60px;
  width: auto;
  transition: transform var(--transition-normal);
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.navbar-brand-text {
  color: var(--primary) !important;
  font-weight: 800;
  font-size: var(--text-xl);
  margin-left: var(--space-4);
  letter-spacing: -0.025em;
}

/* Navigation Links */
.navbar-nav .nav-link {
  font-weight: 500;
  color: var(--gray-700) !important;
  padding: var(--space-2) var(--space-2) !important;
  margin: 0 var(--space-1);
  border-radius: var(--radius);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}
.navbar .btn{
  padding: var(--space-1) var(--space-2) !important;
display: block;
}
.navbar-nav .nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(46, 139, 87, 0.1), transparent);
  transition: left var(--transition-slow);
}

.navbar-nav .nav-link:hover::before {
  left: 100%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary) !important;
  background-color: rgba(46, 139, 87, 0.05);
  transform: translateY(-1px);
}

/* Dropdown Menu */
.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: var(--space-2);
  margin-top: var(--space-2);
  animation: dropdownFadeIn var(--transition-normal) ease-out;
}

@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-item {
  color: var(--gray-700);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: var(--gray-50);
  color: var(--primary);
  transform: translateX(4px);
}

.dropdown-header {
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: var(--space-2) var(--space-4);
  margin-bottom: var(--space-2);
}

/* ===== HERO SECTION ===== */
.hero-section {
  margin-top: 0;
  padding-top: 40px;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(46, 139, 87, 0.9) 0%, 
    rgba(255, 127, 50, 0.8) 100%);
  z-index: 2;
}

.hero-content {
  color: var(--white);
  z-index: 3;
  position: relative;
}

.hero-title {
  font-size: var(--text-6xl);
  font-weight: 900;
  color: var(--white);
  margin-bottom: var(--space-6);
  line-height: 1.1;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  animation: heroTitleSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes heroTitleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-8);
  font-weight: 400;
  line-height: 1.6;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: heroSubtitleSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes heroSubtitleSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-buttons {
  margin-bottom: var(--space-8);
  animation: heroButtonsSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes heroButtonsSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-trust {
  animation: heroTrustSlideIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes heroTrustSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Trust Badges */
.hero-trust .badge {
  background: rgba(255, 255, 255, 0.95) !important;
  color: var(--dark) !important;
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: 600;
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  margin-right: var(--space-3);
  margin-bottom: var(--space-2);
}

.hero-trust .badge:hover {
  background: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* ===== CARD SYSTEM ===== */
.card-custom {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
  border: 1px solid var(--border-light);
  transition: all var(--transition-normal);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.card-custom::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  transform: scaleX(0);
  transition: transform var(--transition-normal);
}

.card-custom:hover::before {
  transform: scaleX(1);
}

.card-custom:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2xl);
  border-color: var(--primary);
}

/* Card Icons */
.card-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  
  border-radius: inherit;
  transition: transform var(--transition-normal);
}

.card-icon:hover::before {
  transform: scale(1.1);
}

.card-icon.green {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
}

.card-icon.orange {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  box-shadow: 0 8px 25px rgba(255, 127, 50, 0.3);
}

.card-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 12px 35px rgba(46, 139, 87, 0.4);
}

/* ===== BUTTON SYSTEM ===== */
.btn {
  font-weight: 600;
  padding: var(--space-3) var(--space-6);
  border-radius: var(--radius);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  line-height: 1.5;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

/* Primary Button */
.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: var(--white) !important;
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
  transform: translateY(-2px);
}

/* Secondary Button */
.btn-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--white) !important;
  box-shadow: 0 4px 15px rgba(255, 127, 50, 0.3);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
  color: var(--white) !important;
  box-shadow: 0 8px 25px rgba(255, 127, 50, 0.4);
  transform: translateY(-2px);
}

/* Outline Buttons */
.btn-outline-primary {
  color: var(--primary) !important;
  border: 2px solid var(--primary);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
  border-color: var(--primary);
}
.btn-outline-primary:active,:not(.btn-check)+.btn:active {
  background: var(--primary);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.3);
  border-color: var(--primary);
}
.btn-outline-light {
  color: var(--white) !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary) !important;
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Button Sizes */
.btn-lg {
  padding: var(--space-4) var(--space-8);
  font-size: var(--text-lg);
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  border-radius: var(--radius-sm);
}

/* ===== STATS & METRICS ===== */
.stat-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(46, 139, 87, 0.3);
  transition: all var(--transition-normal);
}

.stat-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(46, 139, 87, 0.4);
}

/* ===== FOOTER SYSTEM ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-300);
  padding: var(--space-20) 0 var(--space-16);
}

.footer h5 {
  color: var(--white);
  font-weight: 700;
  margin-bottom: var(--space-6);
  font-size: var(--text-lg);
}

.footer-brand p {
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: var(--space-6);
  text-align: justify;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  color: var(--gray-400) !important;
  text-decoration: none;
  transition: all var(--transition-fast);
  display: inline-block;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition-normal);
}

.footer-links a:hover {
  color: var(--secondary) !important;
  transform: translateX(4px);
}

.footer-links a:hover::before {
  width: 100%;
}

/* Social Links */
.social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link {
  width: 45px;
  height: 45px;
  border-radius: var(--radius-full);
  background: var(--gray-800);
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
}

.social-link:hover {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 127, 50, 0.4);
}

/* Contact Info */
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: var(--space-4);
}

.contact-info .contact-item i {
  color: var(--secondary);
  font-size: 1.2rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.contact-info .contact-item div {
  margin-left: var(--space-3);
}

.contact-info .contact-item strong {
  color: var(--white);
  font-weight: 600;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  .hero-title {
    font-size: var(--text-4xl);
  }
  
  .hero-subtitle {
    font-size: var(--text-lg);
  }
  
  .section-title {
    font-size: var(--text-3xl);
  }
  
  .card-custom {
    padding: var(--space-6);
  }
  
  .navbar-brand-text {
    font-size: var(--text-lg);
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: var(--space-3);
  }
  .hero-section {
    padding-top: 200px!important; /* example */
  }
  .navbar-logo{
  width:264px!important;
  }
  .service h4{
  text-align:center;
  }
  .project-work .btn-outline-primary{
	 margin-top:10px;
}
.meet .btn-outline-primary{
	 margin-top:10px;
}

 .project-work .btn-outline-light{
	 margin-top:10px;
	 
 }
 
}

@media (max-width: 576px) {
  .hero-title {
    font-size: var(--text-3xl);
  }
  
  .section-title {
    font-size: var(--text-2xl);
  }
  
  .container {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

}
/* Extra small devices (phones, portrait) */


/* Small devices (phones, 375px to 667px) */
@media (min-width: 375px) and (max-width: 667px) {
  .hero-section {
    padding-top: 200px!important;
  }
  .navbar-logo{
  width:275px!important;
  }
}
@media (min-width: 390px) and (max-width: 844px) {
  .hero-section {
    padding-top: 200px!important;
  }
  .navbar-logo{
  width:294px!important;
  }
}
@media (min-width: 3600px) and (max-width: 740px) {
  
  .navbar-logo{
  width:260px!important;
  }
}
/* ===== ANIMATIONS & MICRO-INTERACTIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll-triggered animations */
.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

.fade-in-left {
  animation: fadeInLeft 0.8s ease-out;
}

.fade-in-right {
  animation: fadeInRight 0.8s ease-out;
}

.scale-in {
  animation: scaleIn 0.6s ease-out;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.bg-gradient-secondary {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
}

.bg-gradient-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* Hover Effects */
.hover-lift {
  transition: transform var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-4px);
}

.hover-scale {
  transition: transform var(--transition-normal);
}

.hover-scale:hover {
  transform: scale(1.05);
}

/* ===== BOOTSTRAP OVERRIDES ===== */
.bg-primary { background-color: var(--primary) !important; }
.text-primary { color: var(--primary) !important; }
.border-primary { border-color: var(--primary) !important; }

.bg-secondary { background-color: var(--secondary) !important; }
.text-secondary { color: var(--secondary) !important; }
.border-secondary { border-color: var(--secondary) !important; }

.bg-success { background-color: var(--success) !important; }
.text-success { color: var(--success) !important; }

.bg-warning { background-color: var(--warning) !important; }
.text-warning { color: var(--warning) !important; }

.bg-info { background-color: var(--info) !important; }
.text-info { color: var(--info) !important; }

.bg-danger { background-color: var(--danger) !important; }
.text-danger { color: var(--danger) !important; }

.bg-dark { background-color: var(--dark) !important; }
.text-dark { color: var(--dark) !important; }

.bg-light { background-color: var(--light) !important; }
.text-light { color: var(--light) !important; }

.bg-white { background-color: var(--white) !important; }
.text-white { color: var(--white) !important; }

/* ===== ACCESSIBILITY ===== */


/* Focus states for accessibility */
.btn:focus,
.nav-link:focus,
.dropdown-item:focus {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --border: #000000;
    --border-light: #000000;
  }
}

/* ===== INNER PAGE STYLES ===== */

/* Inner Page Hero Section - Smaller height for non-homepage pages */
.hero-section-inner {
  min-height: 300px !important;
  height: 300px;
}

.hero-section-inner .hero-overlay {
  min-height: 300px;
  height: 300px;
}

.hero-section-inner .row {
  min-height: 300px;
  height: 300px;
}

/* Inner hero content styling */
.hero-section-inner .hero-content {
  text-align: center;
  padding: 2rem 0;
}

.hero-section-inner .hero-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.hero-section-inner .hero-title-blog{
    padding-top: 1.5em;
}

.hero-section-inner .hero-subtitle {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.hero-section-inner .hero-subtitle-blog {
  max-width: 850px;
  font-size: 1.1rem;
   margin: 0 auto;
}

/* Responsive adjustments for inner page hero */
@media (max-width: 768px) {
  .hero-section-inner {
    padding-bottom: 60px;
    height: 350px;
  }
  
  .hero-section-inner .hero-overlay {
    min-height: 250px;
    /* height: 250px; */
  }
  
  .hero-section-inner .row {
    min-height: 250px;
    height: 250px;
  }
  
  .hero-section-inner .hero-title {
    font-size: 2rem;
  }
  
  .hero-section-inner .hero-subtitle {
    font-size: 1rem;
  }

  .hero-section-inner .hero-title-blog{
    padding-top: 0px;
  }

  .hero-section-inner .hero-content {
    text-align: center;
    padding: 1rem 0;
}
}

/* ===== ABOUT PAGE STYLES ===== */

/* Hero Image Styles */
.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.hero-image img:hover {
  transform: scale(1.02);
}

/* Statistics Section Styles */
.stat-item {
  padding: 2rem 1rem;
}

.stat-item h3 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

/* Team Image Styles */
.team-image img {
  border: 4px solid var(--primary);
  transition: all 0.3s ease;
}

.team-image img:hover {
  border-color: var(--secondary);
  transform: scale(1.05);
}

/* Hide 3D Cube Elements on About Page */
.hero-3d-cube,
.cube-wrapper,
.cube,
.cube-face,
.cube-controls,
.cube-btn,
.cube-indicators {
  display: none !important;
}

/* ===== FOOTER STYLES ===== */

/* Footer Brand Section */
.footer-brand h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-link:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 139, 87, 0.3);
}

/* Contact Info */
.contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.contact-info .contact-item i {
  color: var(--primary);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  min-width: 20px;
}

.contact-info .contact-item div {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
}

.contact-info .contact-item strong {
  color: var(--white);
  display: block;
  margin-bottom: 0.25rem;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: "→";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: -1rem;
  opacity: 0;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 1rem;
}

.footer-links a:hover::before {
  opacity: 1;
  left: 0;
}

/* Footer Section Headings */
footer h5 {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 1.5rem;
  position: relative;
}

footer h5::after {
  content: "";
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

/* Footer Links Styling */
footer a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  color: var(--primary);
}

/* Footer Responsive */
@media (max-width: 768px) {
  .social-links {
    justify-content: left;
    margin-top: 1.5rem;
  }
  
  .contact-info .contact-item {
    flex-direction: column;
  }
  
  .mobile-contact-item{
    padding-left: 5px !important;
  }

  .mobile-contact-item h5{
    padding-left: 5px !important;
  }

  .contact-info .contact-item i {
    margin-bottom: 0.5rem;
    padding-left: 10px !important;
  }
  
  .contact-details{
    text-align: center !important;
  }
  .contact-item{
    display: block !important;
  }

  .sitemap-button{
    margin-top: 10px;
  }
  .lead{
    text-align: justify;
  }
}

/* ===== CONTACT PAGE STYLES ===== */

/* Contact Form Styling */
.contact-form .form-control,
.contact-form .form-select {
  border: 2px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

.contact-form .form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

/* Contact Info Card */
.contact-info-card {
  background: var(--white);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: fit-content;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--white);
  font-size: 1.2rem;
}

.contact-details h6 {
  color: var(--dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-details p {
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}

.contact-details a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: var(--primary-dark);
}

/* Map Container */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Contact Page Responsive */
@media (max-width: 768px) {
  .contact-info-card {
    margin-top: 2rem;
    padding: 1.5rem;
  }
  
  .contact-item {
    flex-direction: column;
  }
  
  .mobile-contact-item{
    padding-left: 5px !important;
  }

  .mobile-contact-item h5 {
    padding-left: 5px !important;
  }

  .contact-item{
    display: block !important;
  }
  .contact-icon {
    margin: 0 auto 1rem auto;
  }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Service Features List */
.service-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
  text-align: left;
}

.service-features li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  position: relative;
  padding-left: 1.5rem;
  text-align: justify;
}

.service-features li::before {
  content: "✓";
  color: var(--primary);
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Process Steps */
.process-step {
  padding: 2rem 1rem;
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1.5rem auto;
}

.process-step h5 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--gray-600);
  line-height: 1.6;
}

/* Pricing Cards */
.pricing-card {
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.pricing-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46, 139, 87, 0.2);
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
}

/* Service Content */
.service-content h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.service-content p {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-image img {
  transition: transform 0.3s ease;
}

.service-image img:hover {
  transform: scale(1.02);
}

/* Services Page Responsive */
@media (max-width: 768px) {
  .service-features {
    text-align: center;
  }
  
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .pricing-card .price {
    font-size: 1.5rem;
  }
}

/* ===== PORTFOLIO PAGE STYLES ===== */

/* Portfolio Filter */
.portfolio-filter {
  margin-bottom: 2rem;
}

.portfolio-filter .btn {
  margin: 0.25rem;
  border-radius: 25px;
  padding: 0.5rem 1.5rem;
  transition: all 0.3s ease;
}

.portfolio-filter .btn.active,
.portfolio-filter .btn:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white!important;
  transform: translateY(-2px);
}

/* Portfolio Cards */
.portfolio-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.portfolio-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.portfolio-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.portfolio-image img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.9), rgba(255, 127, 50, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
} 
 
.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
} 

.portfolio-card:hover .portfolio-image img {
  transform: scale(1.1);
}

.portfolio-content {
  text-align: center;
  color: white;
  padding: 1rem;
}

.portfolio-content h5 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.portfolio-content p {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.portfolio-tags .tag {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

/* Project Details */
.project-details {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* Statistics */
.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

/* Portfolio Item Filtering */
.portfolio-item {
  transition: all 0.3s ease;
}

.portfolio-item.hidden {
  display: none;
}

/* Portfolio Page Responsive */
@media (max-width: 768px) {
  .portfolio-filter .btn {
    margin: 0.125rem;
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }
  
  .portfolio-image {
    height: 200px;
  }
  
  .portfolio-content h5 {
    font-size: 1.2rem;
  }
  
  .portfolio-content p {
    font-size: 0.9rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
}

/* ===== BLOG PAGE STYLES ===== */

/* Blog Posts */
.blog-post {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.blog-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-post:hover .blog-image img {
  transform: scale(1.05);
}

.blog-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--primary);
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.blog-meta span {
  display: flex;
  align-items: center;
}

.blog-meta i {
  color: var(--primary);
}

.blog-title {
  margin-bottom: 1rem;
}

.blog-title a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-title a:hover {
  color: var(--primary);
}

.blog-excerpt {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.blog-stats {
  display: flex;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--gray-600);
}

.blog-stats span {
  display: flex;
  align-items: center;
}

/* Featured Post */
.featured-post {
  border: 2px solid var(--primary);
  border-radius: 15px;
  overflow: hidden;
}

.featured-post .blog-image {
  height: 400px;
}

.featured-post .blog-content {
  padding: 2rem;
}

.featured-post .blog-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.featured-post .blog-excerpt {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* Sidebar */
.blog-sidebar {
  position: sticky;
  top: 2rem;
}

.sidebar-widget {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.sidebar-widget h5 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

/* Search Form */
.search-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
  border: none;
  padding: 0.75rem 1rem;
}

.search-form .btn {
  border: none;
  padding: 0.75rem 1rem;
}

/* Category List */
.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-list li {
  margin-bottom: 0.75rem;
}

.category-list a {
  color: var(--gray-600);
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

.category-list a:hover {
  color: var(--primary);
}

.category-list span {
  background: var(--light);
  color: var(--gray-600);
  padding: 0.25rem 0.5rem;
  border-radius: 10px;
  font-size: 0.8rem;
}
.btn:first-child:active{
  background-color: #36a166 !important; 
  border-color: #36a166 !important;
}
/* Recent Posts */
.recent-posts {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.recent-post {
  display: flex;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.recent-post:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.recent-post-image {
  flex-shrink: 0;
  width: 80px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
}

.recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-content h6 {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.recent-post-content h6 a {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.3s ease;
}

.recent-post-content h6 a:hover {
  color: var(--primary);
}

.recent-post-date {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* Newsletter Form */
.newsletter-form .form-control {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.75rem 1rem;
}

.newsletter-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 0.2rem rgba(46, 139, 87, 0.25);
}

/* Pagination */
.pagination .page-link {
  color: var(--primary);
  border-color: var(--border);
  padding: 0.75rem 1rem;
  margin: 0 0.25rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.pagination .page-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.pagination .page-item.active .page-link {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}
.pagination{
  --bs-pagination-active-bg:var(--primary) !important;
  
}
.active>.page-link{
  color: #ffffff !important;
}
/* Blog Page Responsive */
@media (max-width: 768px) {
  .blog-meta {
    flex-direction: row;
    gap: 1.5rem;
  }
  
  .blog-footer {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .featured-post .blog-image {
    height: 250px;
  }
  
  .featured-post .blog-content {
    padding: 1.5rem;
  }
  
  .featured-post .blog-title {
    font-size: 1.5rem;
  }
  
  .blog-sidebar {
    position: static;
    margin-top: 3rem;
  }
  
  .recent-post {
    flex-direction: column;
    text-align: center;
  }
  
  .recent-post-image {
    width: 100%;
    height: 150px;
  }
}

/* ===== ERROR PAGE STYLES ===== */

/* Error Content */
.error-content {
  padding: 3rem 0;
}

.error-icon {
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.8;
}

/* Different error icons */
.error-icon .fa-exclamation-triangle {
  color: #ffc107;
}

.error-icon .fa-ban {
  color: #dc3545;
}

.error-icon .fa-server {
  color: #6c757d;
}

.error-icon .fa-tools {
  color: #17a2b8;
}

.error-icon .fa-exclamation-circle {
  color: var(--primary);
}

.error-code {
  font-size: 8rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0;
  line-height: 1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.error-title {
  color: var(--dark);
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
}

.error-description {
  color: var(--gray-600);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.error-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Helpful Links */
.helpful-link-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.helpful-link-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.link-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.helpful-link-card h5 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.helpful-link-card p {
  color: var(--gray-600);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* Search Form */
.search-form .input-group {
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.search-form .form-control {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

.search-form .form-control:focus {
  box-shadow: none;
  border-color: transparent;
}

.search-form .btn {
  border: none;
  padding: 1rem 1.5rem;
  font-size: 1.1rem;
}

/* Search Suggestions */
.search-suggestions {
  margin-top: 2rem;
}

.suggestion-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.suggestion-tag {
  background: var(--light);
  color: var(--gray-600);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.suggestion-tag:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* Error Page Responsive */
@media (max-width: 768px) {
  .error-code {
    font-size: 6rem;
  }
  
  .error-title {
    font-size: 2rem;
  }
  
  .error-description {
    font-size: 1.1rem;
  }
  
  .error-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .error-actions .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .helpful-link-card {
    padding: 1.5rem 1rem;
  }
  
  .link-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .search-form .form-control,
  .search-form .btn {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }
  
  .suggestion-tags {
    flex-direction: column;
    align-items: center;
  }
  
  .suggestion-tag {
    width: 100%;
    max-width: 250px;
    text-align: center;
  }
}

/* ===== SITEMAP PAGE STYLES ===== */

/* Sitemap Sections */
.sitemap-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.sitemap-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.sitemap-section-title {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
}

.sitemap-section-title i {
  color: var(--primary);
}

.sitemap-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sitemap-list li {
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  position: relative;
}

.sitemap-list li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.sitemap-list a {
  color: var(--gray-600);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
}

.sitemap-list a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

/* Quick Links */
.sitemap-quick-links {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.quick-link-item {
  padding: 1.5rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.quick-link-item:hover {
  background: var(--light);
  transform: translateY(-3px);
}

.quick-link-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.quick-link-item h5 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Contact Info */
.sitemap-contact-info h5 {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.sitemap-contact-info h5 i {
  color: var(--primary);
}

.sitemap-contact-info p {
  color: var(--gray-600);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.sitemap-contact-info a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.sitemap-contact-info a:hover {
  color: var(--secondary);
}

/* Sitemap Intro */
.sitemap-intro {
  margin-bottom: 3rem;
}

/* Sitemap Page Responsive */
@media (max-width: 768px) {
  .sitemap-section {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .sitemap-section-title {
    font-size: 1.2rem;
  }
  
  .sitemap-list li {
    margin-bottom: 0.5rem;
  }
  
  .quick-link-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .quick-link-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .sitemap-contact-info {
    padding: 1.5rem !important;
  }
  
  .sitemap-contact-info .row > div {
    margin-bottom: 1.5rem;
  }
}

/* ===== LOCAL RESOURCES PAGE STYLES ===== */

/* Resource Cards */
.resource-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.resource-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.resource-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.resource-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}

.resource-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.resource-features li:last-child {
  border-bottom: none;
}

/* Company Cards */
.company-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.featured-company {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.05), rgba(255, 127, 50, 0.05));
}

.company-logo {
  text-align: center;
  margin-bottom: 1rem;
}

.company-logo img {
  max-width: 150px;
  height: auto;
}

.company-name {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 600;
}

.company-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  font-size: 1.1rem;
}

.rating-text {
  color: var(--gray-600);
  font-size: 0.9rem;
}

.company-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.company-specialties {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.specialty-tag {
  background: var(--light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.8rem;
  font-weight: 500;
}

.contact-info p {
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}

.contact-info a {
  color: var(--primary);
  text-decoration: none;
}

.contact-info a:hover {
  color: var(--secondary);
}

/* Architect Cards */
.architect-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
}

.architect-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.featured-architect {
  border: 2px solid var(--primary);
  background: linear-gradient(135deg, rgba(46, 139, 87, 0.05), rgba(255, 127, 50, 0.05));
}

.architect-photo {
  margin-bottom: 1.5rem;
}

.architect-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border: 3px solid var(--primary);
}

.architect-name {
  color: var(--dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
}

/* Cost Cards */
.cost-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.cost-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cost-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.cost-range {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary);
  margin: 1rem 0 0.5rem;
}

.cost-unit {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.cost-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.cost-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cost-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}

.cost-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.cost-features li:last-child {
  border-bottom: none;
}

/* Material Costs */
.material-costs {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.material-costs h4 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.cost-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.cost-item:last-child {
  border-bottom: none;
}

.material-name {
  color: var(--gray-600);
  font-weight: 500;
}

.material-price {
  color: var(--primary);
  font-weight: 600;
}

/* Labor Costs */
.labor-cost-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.labor-cost-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.labor-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
  color: white;
}

.labor-rate {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary);
  margin: 0.5rem 0;
}

.labor-unit {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* Cost Factors */
.cost-factors {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.cost-factors h4 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.factor-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.factor-list li {
  padding: 0.5rem 0;
  color: var(--gray-600);
}

.factor-list li i {
  color: var(--primary);
}

/* Permit Cards */
.permit-card {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.permit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.permit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
}

.permit-description {
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.permit-features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.permit-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  padding-left: 1.5rem;
}

.permit-features li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.permit-features li:last-child {
  border-bottom: none;
}

.permit-timeline {
  background: var(--light);
  padding: 0.75rem;
  border-radius: 8px;
  text-align: center;
  margin-top: 1rem;
  color: var(--primary);
  font-weight: 500;
}

/* Document Lists */
.document-list {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.document-list h4 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.document-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.document-items li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--gray-600);
}

.document-items li:last-child {
  border-bottom: none;
}

.document-items li i {
  color: var(--primary);
}

/* Fee Structure */
.fee-structure {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.fee-structure h4 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.fee-item:last-child {
  border-bottom: none;
}

.fee-type {
  color: var(--gray-600);
  font-weight: 500;
}

.fee-amount {
  color: var(--primary);
  font-weight: 600;
}

/* Info Cards */
.info-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.info-card h4 {
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
}

.info-card h4 i {
  color: var(--primary);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.5rem 0;
  color: var(--gray-600);
  line-height: 1.6;
}

.contact-details p {
  margin-bottom: 0.5rem;
  color: var(--gray-600);
}

.contact-details i {
  color: var(--primary);
  width: 20px;
}

/* FAQ Styles */
.faq-intro {
  margin-bottom: 3rem;
}

.faq-category {
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.faq-category-title {
  color: var(--dark);
  font-size: 1.5rem;
  font-weight: 600;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--primary);
  margin-bottom: 1.5rem;
}

.faq-category-title i {
  color: var(--primary);
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 10px !important;
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background: white;
  border: none;
  color: var(--dark);
  font-weight: 500;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: var(--light);
  color: var(--primary);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: 0 0 0 0.25rem rgba(46, 139, 87, 0.25);
}

.accordion-body {
  padding: 1.5rem;
  background: white;
  color: var(--gray-600);
  line-height: 1.6;
}

.accordion-body ul {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.accordion-body li {
  margin-bottom: 0.5rem;
}

/* Local Resources Page Responsive */
@media (max-width: 768px) {
  .company-card {
    padding: 1.5rem;
  }
  
  .company-card .row {
    text-align: center;
  }
  
  .company-logo {
    margin-bottom: 1.5rem;
  }
  
  .architect-card {
    padding: 1.5rem;
  }
  
  .architect-photo img {
    width: 120px;
    height: 120px;
  }
  
  .cost-card,
  .permit-card {
    margin-bottom: 2rem;
  }
  
  .material-costs,
  .cost-factors,
  .document-list,
  .fee-structure,
  .info-card {
    padding: 1.5rem;
  }
  
  .cost-item,
  .fee-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  
  .faq-category-title {
    font-size: 1.3rem;
  }
  
  .accordion-button {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-body {
    padding: 1rem;
  }
}
 .service-section{
	 padding-top: 94px;
 }

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 25px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: white;
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  background-color: #3cb371;
}