/* Color Palette */
:root {
  --primary-orange: #E67E22;
  --dark-brown: #1a1a1a;
  --medium-brown: #2c2520;
  --light-gray: #f5f5f5;
  --white: #ffffff;
  --text-dark: #333333;
  --text-light: #666666;
  --border-color: #e0e0e0;
  --overlay-dark: rgba(0, 0, 0, 0.6);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

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

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

.loader-spinner {
  text-align: center;
}

.loader-icon {
  font-size: 64px;
  animation: rotate 2s linear infinite;
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Header Styles */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 40px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  cursor: pointer;
}

.logo-icon {
  font-size: 32px;
}

.logo-icon-1 {
  font-size: 32px;
  color: #000;
}
.logo-text {
  font-size: 24px;
  color: var(--dark-brown);
  font-weight: 700;
}

.nav {
  display: flex;
  gap: 30px;
  flex: 1;
  justify-content: center;
  align-items: center;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

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

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

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

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  color: var(--text-dark);
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: color 0.3s ease;
  padding: 8px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-arrow {
  font-size: 12px;
  transition: transform 0.3s ease;
}

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

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  padding: 10px 0;
  margin-top: 10px;
  z-index: 100;
}

.dropdown:hover .dropdown-menu,
.dropdown-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--light-gray);
  color: var(--primary-orange);
  padding-left: 25px;
}

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

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark-brown);
  transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

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

/* .mobile-menu {
  display: none;
  padding: 20px 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-menu.active {
  max-height: 600px;
  display: block;
}

.mobile-nav-menu {
  list-style: none;
  margin-bottom: 20px;
} */

.mobile-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    padding: 2rem;
    overflow-y: auto;
    transition: left 0.3s ease;
    z-index: 999;
    background-color: #fff;
}

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

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: 1rem;
     list-style: none;
}
.mobile-nav-item {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-item .nav-link {
  display: block;
  padding: 15px 0;
  color: var(--text-dark);
  text-decoration: none;
}

.mobile-dropdown-toggle {
  width: 100%;
  text-align: left;
  padding: 15px 0;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--light-gray);
}

.mobile-dropdown-menu.active {
  max-height: 400px;
}

.mobile-dropdown-item {
  display: block;
  padding: 12px 20px;
  color: var(--text-dark);
  text-decoration: none;
}

.mobile-menu-footer {
  padding-top: 20px;
}

/* Button Styles */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

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

.btn-primary:hover {
  background: #d67119;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

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

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

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

.btn-outline:hover {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.3);
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

.btn-block {
  width: 100%;
  display: block;
}

/* Hero Section */
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
}

.hero-content {
  position: relative;
  z-index: 2;
  height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
  animation: fadeInUp 1s ease;
}

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

.hero-title {
  font-size: 56px;
  margin-bottom: 20px;
  max-width: 700px;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 24px;
  margin-bottom: 40px;
  opacity: 0.9;
}

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

.hero-indicators {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.indicator.active {
  background: var(--primary-orange);
  width: 30px;
  border-radius: 6px;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-title {
  font-size: 42px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
}

.section-description {
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

/* About Section */
.about {
  padding: 100px 0;
  background: var(--white);
}

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

.about-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

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

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

.experience-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.experience-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
}

.experience-text {
  display: block;
  font-size: 14px;
  margin-top: 5px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-icon {
  width: 24px;
  height: 24px;
  background: var(--primary-orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
}

/* Services Section */
.services {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.service-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 10px;
  transition: all 0.3s ease;
  cursor: pointer;
}
/* 
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
} */

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

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

.service-title {
  font-size: 22px;
  color: var(--dark-brown);
  margin-bottom: 15px;
}

.service-description {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-card:hover .service-link {
  margin-left: 10px;
}

/* Stats Section */
.stats {
  padding: 80px 0;
  background: var(--dark-brown);
  color: var(--white);
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: scale(1.1);
}

.stat-number {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-orange);
  margin-bottom: 10px;
  display: block;
}

.stat-label {
  font-size: 18px;
  opacity: 0.9;
}

/* Portfolio Section */
.portfolio {
  padding: 100px 0;
  background: var(--white);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 300px;
  cursor: pointer;
}

.portfolio-item.large {
  grid-column: span 2;
  grid-row: span 2;
  height: 620px;
}

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

.portfolio-item:hover img {
  transform: scale(1.2);
}

.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--overlay-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s ease;
  padding: 20px;
  text-align: center;
}

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

.portfolio-overlay h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.portfolio-overlay p {
  font-size: 16px;
  opacity: 0.9;
}

/* Team Section */
.team {
  padding: 100px 0;
  background: var(--light-gray);
}

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

.team-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

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

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

.team-info {
  padding: 30px;
  background: var(--primary-orange);
  color: var(--white);
}

.team-name {
  font-size: 22px;
  margin-bottom: 5px;
}

.team-role {
  font-size: 16px;
  margin-bottom: 15px;
  opacity: 0.9;
}

.team-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
  padding: 100px 0;
  background: var(--dark-brown);
  color: var(--white);
}

.testimonials-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  height: 300px;
}

.testimonial-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.testimonial-card.active {
  opacity: 1;
}

.testimonial-stars {
  margin-bottom: 20px;
}

.star {
  color: var(--primary-orange);
  font-size: 24px;
  margin: 0 2px;
}

.testimonial-text {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}

.author-name {
  font-size: 20px;
  margin-bottom: 5px;
}

.author-role {
  font-size: 16px;
  opacity: 0.7;
}

.testimonial-indicators {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

/* Blog Section */
.blog {
  padding: 100px 0;
  background: var(--light-gray);
}

.blog-slider-container {
  position: relative;
  padding: 0 60px;
}

.blog-slider {
  overflow: hidden;
}

.blog-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.blog-card {
  min-width: calc(33.333% - 20px);
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.blog-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

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

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

.blog-category {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--primary-orange);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 12px;
  font-weight: 600;
}

.blog-content {
  padding: 30px;
}

.blog-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 10px;
}

.blog-title {
  font-size: 20px;
  color: var(--dark-brown);
  margin-bottom: 15px;
  line-height: 1.4;
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.blog-link {
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-link {
  margin-left: 10px;
}

.blog-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--primary-orange);
  background: var(--white);
  color: var(--primary-orange);
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
}

.blog-nav:hover:not(:disabled) {
  background: var(--primary-orange);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.blog-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.blog-nav-left {
  left: 0;
}

.blog-nav-right {
  right: 0;
}

.blog-view-all {
  text-align: center;
  margin-top: 60px;
}

/* CTA Section */
.cta {
  padding: 100px 0;
  background: var(--primary-orange);
  color: var(--white);
  text-align: center;
}

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

.cta-title {
  font-size: 42px;
  margin-bottom: 20px;
}

.cta-description {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

/* Footer */
.footer {
  background: var(--dark-brown);
  color: var(--white);
  padding: 80px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-description {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
  margin-bottom: 20px;
}

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

.social-link {
  color: var(--white);
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-2px);
}

.footer-title {
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--primary-orange);
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

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

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

.footer-contact li {
  margin-bottom: 12px;
  font-size: 14px;
  opacity: 0.8;
}

.footer-contact a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

/* Selection Color */
::selection {
  background: var(--primary-orange);
  color: var(--white);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 42px;
  }
  
  .section-title {
    font-size: 36px;
  }
  
  .services-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .portfolio-item.large {
    grid-column: span 1;
    grid-row: span 1;
    height: 300px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-card {
    min-width: calc(50% - 15px);
  }
}

@media (max-width: 768px) {
  .nav,
  .header-buttons {
    display: none;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .hero {
    height: 500px;
  }
  
  .hero-content {
    height: 500px;
  }
  
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .hero-buttons {
    flex-direction: row;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 200px;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid,
  .team-grid,
  .stats-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-list {
    grid-template-columns: 1fr;
  }
  
  .cta-title {
    font-size: 32px;
  }
  
  .cta-buttons {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);;
    gap: 40px;
  }
  
  .blog-slider-container {
    padding: 0;
  }
  
  .blog-nav {
    display: none;
  }
  
  .blog-card {
    min-width: 100%;
  }
  
}

@media (max-width: 480px) {
    .services-grid,
  .team-grid,
  .stats-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

   .blog-slider-track {
    flex-direction: column;
  }

    .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-title {
    font-size: 28px;
  }
  
  .hero-title {
    font-size: 24px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .experience-number {
    font-size: 36px;
  }
  
  .logo-text {
    font-size: 20px;
  }
}

.footer-logo-text{
  color: var(--white) !important;
}

.mission-vision-container{
  padding-top: 0 !important;
}

.footer-contact i {
  margin-right: 10px;
}

@media (min-width: 996px) {
  .mobile-menu  {
    display: none !important;
  }
}


@media (max-width: 400px) {
  .testimonial-indicators {
    margin-top: 90px;
  }
}

@media (max-width: 525px) {
   .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
}