/* ===== UPDATED MODERN BUSINESS DESIGN ===== */
:root {
  --primary-color: #2563EB; /* Updated more vibrant blue */
  --primary-dark: #1E40AF;
  --primary-light: #60A5FA;
  --secondary-color: #1E293B; /* Darker slate for more contrast */
  --accent-color: #F59E0B; /* Warmer accent color */
  --text-color: #334155;
  --text-light: #64748B;
  --border-color: #E2E8F0;
  --bg-light: #F8FAFC;
  --box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Montserrat', 'Roboto', sans-serif;
  --font-secondary: 'Open Sans', Arial, sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@400;500;600&display=swap');

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

body {
  font-family: var(--font-secondary);
  color: var(--text-color);
  line-height: 1.7;
  background-color: var(--bg-light);
}

h1, h2, h3, h4, h5, h6, .nav-link, .footer-nav h3, .section-title, .section-header, .company-name {
  font-family: var(--font-primary);
  letter-spacing: -0.02em;
}

.container {
  max-width: 1280px; /* Slightly wider container */
  margin: 0 auto;
  padding: 0 25px;
}

/* ===== MODERNIZED HEADER ===== */
.header {
  background-color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  width: 100%;
  top: 0;
  z-index: 1000;
  padding: 5px 0;
  transition: var(--transition);
}

.header.scrolled {
  padding: 5px 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.logo {
  width: 150px;
  height: 75px;
}

.logo img {
  width: 100%;
  height: 75px;
  transition: var(--transition);
}

.nav-container {
  display: flex;
  align-items: center;
  gap: 40px; /* Increased spacing */
}

.nav-menu {
  display: flex;
  gap: 25px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: var(--secondary-color);
  text-decoration: none;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 600;
  border-radius: 6px; /* Slightly more rounded */
  transition: var(--transition);
  letter-spacing: 0.03em;
  font-size: 15px;
}

.nav-link:hover, .nav-link:focus {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 250px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.dropdown a {
  color: var(--text-color);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);
  font-size: 14px;
}

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

.dropdown a:hover {
  background-color: rgba(37, 99, 235, 0.05);
  color: var(--primary-color);
  padding-left: 25px;
}

.nav-icons {
  display: flex;
  gap: 15px;
}

.icon-btn {
  background-color: rgba(37, 99, 235, 0.08);
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-btn:hover {
  background-color: rgba(37, 99, 235, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(37, 99, 235, 0.2);
}


.icon-btn img {
  width: 22px;
  height: 22px;
  transition: var(--transition);
  filter: invert(13%) sepia(71%) saturate(3838%) hue-rotate(215deg) brightness(97%) contrast(96%);
  /* This filter creates a dark blue color matching your primary brand color */
}

.icon-btn:hover img {
  transform: scale(1.1);
}
/* ===== IMPROVED SEARCH CONTAINER ===== */
.search-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: flex-start;
  padding-top: 120px;
  z-index: 1001;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.search-container.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.search-box {
  width: 90%;
  max-width: 650px;
  background: white;
  padding: 30px;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: translateY(-50px);
  animation: slideDown 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideDown {
  to { transform: translateY(0); }
}

.search-box input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
  font-size: 16px;
  transition: var(--transition);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.search-box input:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.close-search {
  position: absolute;
  top: -60px;
  right: 0;
  color: white;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-search:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

/* ===== ELEGANT MODAL STYLES ===== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1001;
  backdrop-filter: blur(8px);
}

.modal.active {
  display: flex;
  animation: fadeIn 0.3s forwards;
}

.modal-content {
  background: white;
  padding: 40px;
  border-radius: 15px;
  width: 90%;
  max-width: 550px;
  position: relative;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transform: scale(0.9);
  animation: scaleIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes scaleIn {
  to { transform: scale(1); }
}

.modal-content h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
}

.modal-content h2:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-light);
  transition: var(--transition);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.close-modal:hover {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
  transform: rotate(90deg);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}

.submit-btn {
  background: var(--primary-color);
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.submit-btn:active {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.nav-toggle:hover {
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
}

/* ===== MODERN FOOTER STYLES ===== */
.footer {
  background-color: var(--secondary-color);
  padding: 80px 0 30px; /* More top padding */
  color: white;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
  display: grid;
  grid-template-columns: 350px 1fr 1fr;
  gap: 50px;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-logo img {
  width: 150px;
  margin-bottom: 10px;
  height: 75px;
}

.footer-logo-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
  letter-spacing: 0.02em;
}

.contact-info {
  margin-top: 25px;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transition: var(--transition);
}

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



.footer-address {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.7;
  position: relative;
  margin-top: 15px;
}



.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav h3 {
  font-size: 18px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
  color: white;
  font-weight: 600;
}

.footer-nav h3:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--primary-light);
}

.footer-nav a,
.footer-nav p {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition);
  position: relative;
  padding-left: 15px;
}

.footer-nav a:before,
.footer-nav p:before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0;
  transition: var(--transition);
}

.footer-nav a:hover,
.footer-nav p:hover {
  color: white;
  padding-left: 20px;
}

.footer-nav a:hover:before,
.footer-nav p:hover:before {
  opacity: 1;
}

.social-links {
  position: fixed;
  right: 0;
  bottom: 120px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
}

.social-link {
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: var(--transition);
  border-radius: 8px 0 0 8px;
  box-shadow: -2px 3px 8px rgba(0, 0, 0, 0.15);
}

.social-link:hover {
  background-color: var(--primary-dark);
  transform: translateX(-5px);
}

.social-link img {
  width: 20px;
  height: 20px;
  transition: var(--transition);
  opacity: 0.9;
}

.social-link:hover img {
  transform: scale(1.15);
  opacity: 1;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.tech-support {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 25px;
}

/* ===== ENHANCED CAROUSEL STYLES ===== */
.carousel-container {
  width: 100%;
  position: relative;
  background: #f5f5f5;
  overflow: hidden;
}

.main-slider {
  width: 100%;
  height: 75vh; /* Taller for a more striking presence */
  position: absolute ;

}

.swiper-slide{
  background-color: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.main-slider .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;

}

.main-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;

}
.swiper-back{
  position:absolute;
  top: 0;
  display: block;   
  width: 100%;
  height: 100%; 
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.5));
}

.slide-content {
  position: absolute;
  height: calc(75vh - 150px);
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}

.slide-title {
  color: #000;
  font-size: 25px;
  text-align: center;
  font-weight: 400;
  max-width: 800px;
  background: rgba(255, 255, 255, 0.6);
  padding:  25px;
  border-radius: 8px;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-button {
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.7);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}





.nav-button img {
  width: 24px;
  height: 24px;
  transition: var(--transition);
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: white;
  transform: scale(1.2);
}
.carusel-section{
  z-index: 0;
}
/* ===== IMPROVED CATEGORIES SECTION ===== */
.categories-section {
  padding:0 0 100px; /* More vertical padding */
  background-color: white;
  position: sticky;
  z-index: 10;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
  font-size: 38px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

.categories-grid {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  transform: translateY(-150px);
  justify-content: center;
  z-index:100;
}


.category-card {
  position: relative;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 280px; /* Taller cards for more visual impact */
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
  position: absolute;
}

.category-card:hover .category-image {
  transform: scale(1.08);
}

.category-overlay {
   z-index: 5;
   width: 95%;
}

.category-title {
  font-size: 22px;
  line-height: 24px;
  margin-bottom: 10px;
  font-weight: 500;
  transition: var(--transition);
  color: #000;
  width: 100%;
  padding: 5px;
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 4px;

}



/* ===== ADVANTAGES SECTION ENHANCEMENTS ===== */
.advantages-section {
  padding: 100px 25px;
  background-color: var(--bg-light);
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
  font-size: 38px;
  color: var(--secondary-color);
  position: relative;
  padding-bottom: 20px;
  font-weight: 700;
}

.section-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: var(--primary-color);
}

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

.advantage-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.advantage-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.advantage-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition);
}

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

.advantage-content {
  padding: 30px;
}

.advantage-title {
  color: var(--primary-color);
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  font-weight: 600;
}

.advantage-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 3px;
  background-color: var(--primary-color);
}

.advantage-description {
  color: var(--text-light);
  font-size: 15px;
  line-height: 1.8;
}

/* ===== COMPANY SECTION IMPROVEMENTS ===== */
.company-section {
  padding: 100px 25px;
  background-color: white;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 50px;
  align-items: start;
}

.text-content {
  font-size: 16px;
  line-height: 1.8;
}

.text-content p {
  margin-bottom: 20px;
  color: var(--text-light);
}

.features-list {
  list-style: none;
  margin: 30px 0;
}

.features-list li {
  margin-bottom: 16px;
  padding-left: 30px;
  position: relative;
  color: var(--text-light);
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.image-container {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.company-image {
  width: 100%;
  border-radius: 12px;
  transition: var(--transition);
}

.image-container:hover .company-image {
  transform: scale(1.05);
}

.company-info {
  margin-top: 60px;
  text-align: center;
}

.company-name {
  font-size: 32px;
  font-weight: 700;
  color: var(--secondary-color);
  margin-bottom: 12px;
}

.company-motto {
  font-size: 20px;
  color: var(--primary-color);
  font-style: italic;
}

/* ===== SCROLL TO TOP BUTTON ===== */
#scrollToTopBtn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

#scrollToTopBtn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#scrollToTopBtn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-5px);
}

#scrollToTopBtn img {
  width: 22px;
  height: 22px;
  transition: var(--transition);
}

#scrollToTopBtn:hover img {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-logo {
    grid-column: span 2;
    text-align: center;
    align-items: center;
  }
  
  .slide-title {
    font-size: 24px;
    max-width: calc(100% - 200px);
  }
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .image-container {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .main-slider {
    height: 75vh;
  }
  
  .slide-title {
    font-size: 24px;
  }
  
  .section-title, .section-header {
    font-size: 32px;
  }
  
  .category-card {
    height: 250px;
  }
}
.nav-container {
  display: none;
  position: absolute;
  top: 100%;
  left:calc(50% - 250px);
  right:0;
  width: 500px;
  background: white;
  
  padding: 20px;
  flex-direction: column;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.nav-container.active {
  display: flex;
}

.nav-menu {
  flex-direction: column;
  width: 100%;
  display: none;
}
.nav-toggle {
  display: flex;
}

@media (max-width: 768px) {

 
  .dropdown {
    position: static;
    display: none;
    box-shadow: none;
    width: 100%;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .nav-item.active .dropdown {
    display: block;
  }
  
  .nav-link {
    justify-content: space-between;
  }
  
  .nav-icons {
    display: flex;
    gap: 15px;
  }
  
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-container {
    grid-template-columns: 1fr;
  }
  
  .footer-logo {
    grid-column: 1;
    margin-bottom: 20px;
  }
  
  .social-links {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
  }
  
  .social-link {
    border-radius: 50%;
    width: 45px;
    height: 45px;
  }
  
  .tech-support {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .main-slider {
    height: 75vh;
  }
  .slide-title{
    max-width:calc(100% - 80px);
    padding: 15px;
    font-size: 16px;
  }

  .nav-button {
    width: 45px;
    height: 45px;
  }
  
  .nav-prev {
    left: 15px;
  }
  
  .nav-next {
    right: 15px;
  }
  
  .section-title, .section-header {
    font-size: 28px;
    margin-bottom: 50px;
  }
}

@media (max-width: 576px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title, .section-header {
    font-size: 26px;
    margin-bottom: 40px;
  }
  
  .advantage-title {
    font-size: 20px;
  }
  
  .company-name {
    font-size: 24px;
  }
  
  .company-motto {
    font-size: 16px;
  }  
  #scrollToTopBtn {
    width: 45px;
    height: 45px;
    right: 15px;
    bottom: 15px;
  }
  
  .nav-button {
    width: 35px;
    height: 35px;
  }
  
  .nav-button img {
    width: 18px;
    height: 18px;
  }
  
  .modal-content, .search-box {
    padding: 25px 20px;
  }
  
  .advantages-section, .company-section {
    padding: 60px 20px;
  }
  .categories-grid{
    transform: translateY(0);
  }
   .main-slider , .slide-content{
    height: 350px;
   }
   .categories-section > .container{
    padding: 0;
   }
   .category-image{
    display: none;
   }
   .category-card{
    background: #2563EB;
    border: 1px solid #ffff;
    height: 180px;
   }
   .category-title{
    background: none;
    font-size: 16px ;
    line-height: 16px;
    color: white;
   }
   .category-card:hover{
    background: #2563EB;
   }
}

/* ===== NEW ANIMATIONS AND TRANSITIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in-left {
  animation: fadeInLeft 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.fade-in-right {
  animation: fadeInRight 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Add animation delays for staggered entrance */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

/* ===== ENHANCED CALCULATOR STYLES ===== */
.calculator-section {
  padding: 100px 25px;
  background-color: var(--bg-light);
}

.calculator-container {
  max-width: 850px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.calculator-title {
  text-align: center;
  color: var(--secondary-color);
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
  font-size: 28px;
  font-weight: 600;
}

.calculator-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.calculator-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.calculator-field {
  margin-bottom: 25px;
}

.calculator-field label {
  display: block;
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--secondary-color);
  font-size: 15px;
}

.calculator-field input,
.calculator-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 15px;
  transition: var(--transition);
  background-color: var(--bg-light);
}

.calculator-field input:focus,
.calculator-field select:focus {
  border-color: var(--primary-color);
  outline: none;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  background-color: white;
}

.calculator-result {
  background-color: var(--bg-light);
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  text-align: center;
  border: 1px dashed var(--border-color);
}

.result-price {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin: 15px 0;
}

.calculate-btn {
  background: var(--primary-color);
  color: white;
  padding: 14px 25px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  width: 100%;
  margin-top: 30px;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.calculate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

.calculate-btn:active {
  transform: translateY(0);
}

/* ===== PROJECTS AND GALLERY STYLES ===== */
.project-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.filter-btn {
  padding: 10px 20px;
  background: white;
  border: 1px solid var(--border-color);
  border-radius: 30px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-color);
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary-color);
  color: white;
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}


  /* ---mobile menu ---0  */
  .nav-menu{
    display: none;
  }
  .mobile-sidebar{
    display: flex !important;
  
    gap: 40px;
  }
  .menu-title {
    font-size: 14px;
    font-weight: bold;
    color: var( --primary-color);
    margin: 0px;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    border-left: 1px solid var( --primary-color);
}

 .mobile-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-sidebar li {
    padding: 0px;
    cursor: pointer;
    transition: 0.3s;
    line-height: 16px;
    padding: 4px 0;
}

.mobile-sidebar li a {
  color: #000;
  font-size: 14px;
  padding: 5px;
  display: block;
  transition: all 0.3s ease; /* Yumuq o'tish effekti */
}

.mobile-sidebar li a:hover {
  color: #fff;             /* Matn rangi oq */
  background-color:var(--primary-color); /* Fon rangi ko'k */
  transform: translateX(5px); /* Bir oz gorizontal siljish */
}



.submenu {
    font-weight: bold;
}

.submenu-items {
    display: none;
    padding-left: 15px;
}

.submenu:hover .submenu-items {
    display: block;
}
.mobile-navbox{
  display: flex;
   gap: 8px;
   
}



.form-group__label{
  display: flex !important;
  align-items: flex-start;
  gap:8px;
}
.form-group__checkbox{
  display: block !important;
   width:20px !important;
   height: 20px;
}
@media only screen and (max-width:768px){
  .icon-btn{
    background: none;
    padding: 0;
  }
  .nav-icons{
    gap:6px;
  }
  .logo{
    width:100px;
  }
  .mobile-sidebar{
    flex-direction: column;
  }
  .nav-container{
    height: calc(100vh - 70px);
    overflow-y: auto;
    width:100%;
    left:0;
  }
}



/* Дополнительные стили для нового контента - добавить в основной CSS файл */

.new-content-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.company-highlight {
  text-align: center;
  margin-bottom: 30px;
  grid-column: span 2;
}

.company-slogan {
  color: var(--primary-color);
  font-size: 28px;
  margin-bottom: 15px;
  font-weight: 700;
  text-align: center;
}

.quality-statement {
  color: var(--secondary-color);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.achievement-content {
  grid-column: 1;
}

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

.consultation-highlight {
  background-color: var(--primary-color);
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: var(--box-shadow);
}

.consultation-text {
  color: white;
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  line-height: 1.6;
}

.project-image-container {
  grid-column: 2;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.project-image {
  width: 100%;
  border-radius: 12px;
  transition: var(--transition);
}

.project-image-container:hover .project-image {
  transform: scale(1.05);
}

/* Стили для раздела с видением директора */
.vision-statement {
  font-style: italic;
  font-size: 17px;
  color: var(--primary-color);
  background-color: rgba(37, 99, 235, 0.05);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  margin-top: 25px;
}

.director-signature {
  text-align: center;
  font-style: italic;
  color: var(--text-light);
  margin-top: 15px;
  font-size: 16px;
}

.director-signature strong {
  color: var(--secondary-color);
  font-weight: 600;
}

/* Адаптивные стили */
@media (max-width: 992px) {
  .new-content-wrapper {
    grid-template-columns: 1fr;
  }
  
  .company-highlight {
    grid-column: 1;
  }
  
  .achievement-content {
    grid-column: 1;
  }
  
  .project-image-container {
    grid-column: 1;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .company-slogan {
    font-size: 24px;
  }
  
  .quality-statement {
    font-size: 20px;
  }
  
  .consultation-text {
    font-size: 16px;
  }
  
  .vision-statement {
    font-size: 16px;
    padding: 15px;
  }
}