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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: white;
  color: white;
  overflow-x: hidden;
  width: 100%;
}

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

.container-fluid {
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.container-hero{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header {
  background: rgba(10, 15, 28, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 8px 0;
  width: 100%;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  width: 100%;
  flex-wrap: wrap;
}

/* --- Dropdown Menu Styles  --- */
.nav-item.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 90vw);
  max-width: 600px;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 24px;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1001;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #000;
  word-wrap: break-word;
}

.dropdown-content {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.dropdown-column {
  flex: 1;
  min-width: 200px;

}

.dropdown-column:nth-child(2) {
  display: none; 
  border-left: 1px solid #eee;
  padding-left: 20px;
  
}

.dropdown-column:nth-child(2).active {
  display: block; 
  max-height: 330px;
  overflow-y: auto;
}

.dropdown-column ul {
  list-style: none;
  padding: 0;
}

.dropdown-column ul li a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  color: #333;
  border-radius: 6px;
  font-size: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.dropdown-column ul li a:hover {
  background-color: #f5f5f5;
  color: #000;
}

.main-category-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub-category-list {
  display: none;
}

.sub-category-list.active {
  display: block;
}

.main-category-link.active {
  font-weight: 500;
  background-color: #f0f2f5;
}

/* /////////////////////// */

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 600;
  color: white;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: #2563eb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 20px;
  color: white;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: white;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  padding: 10px 0;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.nav-link:hover {
  color: #2563eb;
}

.dropdown-icon {
  font-size: 12px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.nav-item:hover .dropdown-icon {
  transform: rotate(180deg);
}

.language-selector {
  position: relative;
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-weight: 500;
  cursor: pointer;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.language-selector:hover {
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

.language-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  padding: 8px 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
}

.language-selector:hover .language-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  padding: 10px 16px;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.language-option:hover {
  background-color: #f3f4f6;
  color: #2563eb;
}

.language-option.active {
  color: #2563eb;
  background-color: #eff6ff;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  gap: 4px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.hamburger-line {
  width: 24px;
  height: 2px;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.mobile-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 15, 28, 0.98);
  backdrop-filter: blur(10px);
  z-index: 999;
  padding: 100px 20px 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}

.mobile-nav-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  width: 100%;
}

.mobile-nav-item {
  margin-bottom: 8px;
  width: 100%;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  color: white;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.mobile-nav-link:hover {
  color: #2563eb;
  padding-left: 10px;
}

.mobile-dropdown-icon {
  font-size: 14px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.mobile-has-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  margin-top: 8px;
  width: 100%;
}

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

.mobile-dropdown-section {
  padding: 20px;
  width: 100%;
}

.mobile-dropdown-section h4 {
  color: #2563eb;
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
  word-wrap: break-word;
}

.mobile-dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-dropdown-section li {
  margin-bottom: 8px;
  width: 100%;
  
}
.mobile-dropdown-section li a {
  text-decoration: none;
  color:white;
}

.mobile-subcategory-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
}

.mobile-subcategory-link:hover {
  color: #2563eb;
  padding-left: 10px;
}

.mobile-language-selector {
  /* border-top: 1px solid rgba(255, 255, 255, 0.1); */
  padding-top: 30px;
  width: 100%;
  text-transform:capitalize;
}

.mobile-language-selector h4 {
  color: white;
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}

.mobile-language-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.mobile-language-option {
  padding: 12px 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
  text-align: center;
  width: 100%;
  word-wrap: break-word;
}

.mobile-language-option:hover {
  color: white;
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

.mobile-language-option.active {
  color: #2563eb;
  border-color: #2563eb;
  background: rgba(37, 99, 235, 0.1);
}

.hero-slider {
  width: 100%;
  height: 80vh;
  position: relative;
  overflow: hidden;
}

.slide {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

.slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(10, 15, 28, 0.6);
  z-index: 1;
}

.circuit-pattern {
  display: none;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(1deg);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero-title .highlight {
  color: #2563eb;
  text-shadow: 0 0 30px rgba(37, 99, 235, 0.5);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 3;
  flex-wrap: wrap;
  justify-content: center;
}

.slider-line {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.slider-line.active {
  background: #2563eb;
  box-shadow: 0 0 15px rgba(37, 99, 235, 0.6);
}

.slider-line:hover {
  background: rgba(255, 255, 255, 0.5);
}

.slider-line.active::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  animation: shimmer 2s ease-in-out infinite;
}

/* Slider arrows removed as per user request */


@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.slider-line:hover {
  background: rgba(37, 99, 235, 0.7);
  transform: scaleY(1.5);
}

/* Enhanced Mobile Responsive Design */
@media (max-width: 992px) {
  .container {
    padding: 0 20px;
  }
  
  .container-hero {
    padding: 0 20px;
  }
  
  .header {
    padding: 6px 0;
  }
  
  .nav-container {
    padding: 8px 0;
  }
  
  .hero-slider {
    height: 65vh;
  }
  
  .slide {
    height: 100%;
    padding: 100px 0 50px;
  }
  
  .hero-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    display: none;
  }
  
  .dropdown-menu {
    width: min(500px, 85vw);
    left: 0;
    transform: none;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .language-selector {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
    z-index:99999999999;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .container-hero {
    padding: 0 16px;
  }
  
  .header {
    padding: 5px 0;
  }

  .hero-slider {
    height: 60vh;
  }
  
  .slide {
    height: 100%;
    padding: 90px 0 40px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 16px;
  }



  .slider-controls {
    bottom: 20px;
  }

  .slider-line {
    width: 30px;
    height: 2px;
  }
  
  /* Statistics responsive */
  .statistics {
    padding: 60px 0;
  }
  
  .statistics-grid {
    gap: 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .dropdown-menu {
    width: min(400px, 90vw);
    left: 0;
    transform: none;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  .container-hero {
    padding: 0 12px;
  }
  
  .container-fluid {
    padding: 0 12px;
  }
  
  .header {
    padding: 4px 0;
  }
  
  .hero-slider {
    height: 40vh;
  }
  
  .slide {
    height: 100%;
    padding: 80px 0 30px;
  }
  
  .hero-title {
    font-size: clamp(1.5rem, 8vw, 2rem);
    line-height: 1.1;
    margin-bottom: 12px;
  }
  

  .slider-controls {
    bottom: 15px;
  }
  
  .slider-line {
    width: 25px;
    height: 2px;
  }
  
  .statistics {
    padding: 40px 0;
  }
  
  .stat-number {
    font-size: 28px;
  }
  
  .stat-label {
    font-size: 14px;
  }
  
  .dropdown-menu {
    width: min(350px, 95vw);
    left: 0;
    transform: none;
    padding: 16px;
  }
  
  .dropdown-content {
    flex-direction: column;
    gap: 15px;
  }
  
  .dropdown-column {
    min-width: auto;
  }
  
  .dropdown-column:nth-child(2) {
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 15px;
  }
}

.statistics {
  padding: 80px 0;
  background-color: #ffffff;
  color: #111827;
  border-top: 1px solid #e5e7eb;
  width: 100%;
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.stat-item {
  text-align: center;
  width: 100%;
}

.stat-label {
  font-size: 16px;
  color: #6b7280;
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-number {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.1;
  color: #1f2937;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.stat-number .plus-sign {
  color: #2563eb;
}
.plus-sign {
  font-weight: 400;
}

@media (max-width: 992px) {
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 50px;
    gap: 25px;
  }
  
  .stat-number {
    font-size: 44px;
  }
}

@media (max-width: 576px) {
  .statistics {
    padding: 40px 0;
  }

  .statistics-grid {
    /* grid-template-columns: 1fr; */
    row-gap: 40px;
    /* gap: 20px; */
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }
  
  .stat-label {
    font-size: 14px;
  }
}

.about-section {
  padding: 100px 0;
  background-color: #ffffff;
  width: 100%;
}

.about-header {
  margin-bottom: 40px;
  width: 100%;
}

.about-body {
  display: grid;
  grid-template-columns: 55fr 45fr;
  align-items: stretch;
  gap: 60px;
  width: 100%;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  color: #6b7280;
}

.about-image {
  width: 90%;
  max-width: 100%;
}

.about-image img {
  width: 100%;
  height: 90%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.section-eyebrow {
  display: flex;
  align-items: start;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: #2563eb;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.section-eyebrow::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background-color: #2563eb;
  flex-shrink: 0;
}

.about-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.about-text-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4b5563;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.see-more-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
  flex-wrap: wrap;
}

.see-more-link:hover {
  gap: 12px;
}

@media (max-width: 992px) {
  .about-section {
    padding: 80px 0;
  }
  
  .about-body {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text-content,
  .about-image {
    width: 100%;
  }

  .about-header,
  .about-text-content {
    text-align: center;
  }

  .about-header h2 {
    font-size: 36px;
    text-align: start;
  }
}

@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }
  
  .about-body {
    gap: 30px;
  }

  .about-header h2 {
    font-size: 30px;
  }
  
  .about-text-content {
    gap: 25px;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 50px 0;
  }

  .about-header h2 {
    font-size: 28px;
  }
  
  .about-body {
    gap: 25px;
  }
  
  .about-text-content {
    gap: 20px;
  }
}

/* --- OUR SERVICES SECTION --- */
.services-section {
  padding: 100px 0;
  background-color: #f9fafb;
  width: 100%;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}

.see-all-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
  transition: gap 0.3s ease;
  flex-wrap: wrap;
  white-space: nowrap;
}

.see-all-link:hover {
  gap: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  padding: 2rem;
  width: 100%;
}

.service-card {
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  cursor: pointer;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.card-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 24px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  transition: color 0.4s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  transition: color 0.4s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.service-card:hover {
  background-color: #2563eb;
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(37, 99, 235, 0.3);
}

.service-card:hover h3,
.service-card:hover p {
  color: #ffffff;
}

.service-card:hover .card-icon img {
  filter: brightness(0) invert(1);
}

.header-left h2 {
  color: #000;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* All Services Section Styles */
.all-services-section {
  padding: 100px 0;
  background-color: #f9fafb;
  width: 100%;
}

.all-services-section .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  padding: 0;
  width: 100%;
}

@media (max-width: 992px) {
  .services-section {
    padding: 80px 0;
  }
  
  .all-services-section {
    padding: 80px 0;
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    padding: 1.5rem;
  }
  
  .all-services-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .service-card {
    padding: 35px 25px;
  }
}

@media (max-width: 768px) {
  .services-section {
    padding: 60px 0;
  }
  
  .all-services-section {
    padding: 60px 0;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 1rem;
  }
  
  .all-services-section .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-header {
    flex-direction: column;
    align-items: start;
    gap: 20px;
    text-align: start;
    margin-bottom: 40px;
  }
  
  .service-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .services-section {
    padding: 50px 0;
  }
  
  .all-services-section {
    padding: 50px 0;
  }
  
  .services-grid {
    gap: 15px;
    padding: 0.5rem;
  }
  
  .service-card {
    padding: 25px 15px;
  }
  
  .service-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .service-card p {
    font-size: 14px;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
}

/* --- CTA (CALL TO ACTION) SECTION --- */
.cta-section {
  position: relative;
  padding: 80px 0;
  background-color: #1e293b;
  background-image: url("/images/ctahero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #ffffff;
  z-index: 1;
  width: 100%;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(15, 23, 42, 0.75);
  z-index: -1;
}

.cta-content {
  max-width: 65%;
  width: 100%;
  text-align: start;
}

.cta-content h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: start;
}

.cta-content p {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 800px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  text-align: start;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #2563eb;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  white-space: nowrap;
}

.cta-button:hover {
  background-color: #1d4ed8;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.cta-button span {
  transition: transform 0.3s ease;
}

.cta-button:hover span {
  transform: translateX(4px);
}

@media (max-width: 992px) {
  .cta-section {
    padding: 70px 0;
  }
  
  .cta-content {
    max-width: 90%;
  }
  
  .cta-content h2 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
    text-align: center;
  }

  .cta-content {
    max-width: 100%;
  }

  .cta-content h2 {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .cta-content p {
    font-size: 16px;
    margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .cta-section {
    padding: 50px 0;
  }

  .cta-content h2 {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .cta-content p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  
  .cta-button {
    padding: 12px 24px;
    font-size: 15px;
  }
}

/* --- FOOTER SECTION --- */
.site-footer {
  background-color: #f8f9fa;
  padding: 60px 0 30px 0;
  color: #4b5563;
  font-size: 15px;
  width: 100%;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap; 
  gap: 40px;
  margin-bottom: 40px;
  width: 100%;
}

.footer-logo {
  display: block;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.footer-logo img {
  height: 62px;
  width: 172px;
  object-fit: cover;
  max-width: 100%;
}

.social-title {
  color: #6b7280;
  margin-bottom: 16px;
  font-size: 14px;
  word-wrap: break-word;
}

.social-icons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.social-icons a {
  color: #4b5563;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.social-icons a img{
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.social-icons a:hover {
  color: #2563eb;
  transform: translateY(-3px);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.contact-list li a {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #4b5563;
  transition: color 0.3s ease;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex-wrap: wrap;
}

.contact-list li a:hover {
  color: #2563eb;
}

.footer-divider {
  border: none;
  height: 1px;
  background-color: #e5e7eb;
  margin: 0 0 30px 0;
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
  width: 100%;
}

.copyright-text,
.creator-text {
  color: #6b7280;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Partners Section Responsive */
.partners-section {
  padding: 60px 0;
  background-color: #ffffff;
  width: 100%;
  position: relative;
}

.partners-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  width: 100%;
}

.partner-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.partner-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.partner-card img {
  max-width: 100%;
  height: auto;
  margin-bottom: 20px;
  max-height: 80px;
  object-fit: contain;
}

.partner-card p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.slider-nav {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 30px 0;
}

.prev-arrow,
.next-arrow {
  background: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 18px;
  color: #374151;
  flex-shrink: 0;
}

.prev-arrow:hover,
.next-arrow:hover {
  background: #2563eb;
  color: white;
  border-color: #2563eb;
}

@media (min-width: 992px) {
  .slider-nav {
    margin: 30px 0;
  }
}

@media (max-width: 768px) {
  .partners-section {
    padding: 40px 0 80px 0;
  }
  
  .partners-slider {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .partner-card {
    padding: 20px;
  }
  
  .partner-card img {
    max-height: 60px;
    margin-bottom: 15px;
  }
  
  .partner-card p {
    font-size: 13px;
  }
  
  .slider-nav {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
    width: auto;
    margin: 0;
  }
}

@media (max-width: 480px) {
  .partners-section {
    padding: 40px 0 70px 0;
  }
  
  .partners-slider {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .partner-card {
    padding: 15px;
  }
  
  .partner-card img {
    max-height: 50px;
    margin-bottom: 10px;
  }
  
  /* Additional mobile optimizations */
  .about-image img {
    min-height: 200px;
    max-height: 300px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon img {
    max-width: 60px;
    max-height: 60px;
  }
}

@media (max-width: 360px) {
  .partners-section {
    padding: 40px 0 65px 0;
  }
  
  .slider-nav {
    bottom: 10px;
  }
  
  .slider-nav button {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Global Image Responsiveness */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Logo responsiveness */
.logo img {
  width: 70px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

.footer-logo img {
  width: 60px;
  height: auto;
  object-fit: contain;
  max-width: 100%;
}

/* Hero section image optimization */
.hero {
  background-attachment: scroll; /* Better for mobile performance */
}

/* About section image responsiveness */
.about-image img {
  width: 100%;
  height: auto;
  min-height: 250px;
  max-height: 400px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  max-width: 100%;
}

.card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 86px;
  max-height: 86px;
}

.partner-card img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
  margin: 0 auto 20px;
}

.embla__slide img {
  width: 100%;
  height: auto;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(1);
  transition: filter 0.3s ease;
}

.embla__slide:hover img {
  filter: grayscale(0);
}

.cta-section {
  background-attachment: scroll;
}

/* Customers Section */
.customers-section {
  padding: 60px 0;
  background-color: #ffffff;
  width: 100%;
}

/* Embla carousel styles are handled in emblaCarusel.css */

@media (max-width: 992px) {
  .partners-section {
    padding: 60px 0;
  }
  
  .partners-slider {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .site-footer {
    text-align: center;
  }

  .footer-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-right,
  .footer-left {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contact-list li a {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  
  .partners-section {
    padding: 40px 0;
  }
  
  .partners-slider {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .partner-card {
    padding: 20px;
  }
  
  .partner-card img {
    max-height: 60px;
    margin-bottom: 15px;
  }
  
  .partner-card p {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .partners-slider {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .partner-card {
    padding: 15px;
  }
  
  .partner-card img {
    max-height: 50px;
    margin-bottom: 10px;
  }
  
  /* Additional mobile optimizations */
  .about-image img {
    min-height: 200px;
    max-height: 300px;
  }
  
  .card-icon {
    width: 60px;
    height: 60px;
  }
  
  .card-icon img {
    max-width: 60px;
    max-height: 60px;
  }
}

/* Ultra-small screens */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }
  
  .container-hero {
    padding: 0 10px;
  }
  
  .container-fluid {
    padding: 0 10px;
  }
  
  .logo img {
    width: 55px;
    max-width: 100%;
  }
  
  .footer-logo img {
    width: 55px;
    max-width: 100%;
  }
  
  .about-image img {
    min-height: 180px;
    max-height: 250px;
  }
  
  .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .card-icon img {
    max-width: 50px;
    max-height: 50px;
  }
  
  .partner-card img {
    max-height: 40px;
  }
  
  .embla__slide img {
    max-height: 35px;
  }
  
  .embla__slide {
    max-width: 80px;
    padding: 0 3px;
  }
  
  /* Hero section adjustments for ultra-small screens */
  .hero-slider {
    height: 45vh;
  }
  
  .slide {
    height: 100%;
    padding: 70px 0 25px;
  }
  
  .hero-title {
    font-size: clamp(1.3rem, 9vw, 1.8rem);
    margin-bottom: 10px;
  }
  

  /* Section adjustments */
  .statistics {
    padding: 35px 0;
  }
  
  .about-section {
    padding: 40px 0;
  }
  
  .services-section {
    padding: 40px 0;
  }
  
  .all-services-section {
    padding: 40px 0;
  }
  
  .cta-section {
    padding: 40px 0;
  }
  
  .values-section {
    padding: 40px 0;
  }
  
  /* Dropdown adjustments for ultra-small screens */
  .dropdown-menu {
    width: min(300px, 98vw);
    left: 0;
    transform: none;
    padding: 12px;
  }
  
  .dropdown-content {
    flex-direction: column;
    gap: 10px;
  }
  
  .dropdown-column {
    min-width: auto;
  }
  
  .dropdown-column:nth-child(2) {
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 10px;
  }
  
  /* Mobile navigation adjustments */
  .mobile-nav-menu {
    padding: 100px 10px 40px;
  }
  
  .mobile-nav-link {
    font-size: 16px;
    padding: 14px 0;
  }
  
  .mobile-language-option {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* Large screens optimization */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .container-hero {
    max-width: 1320px;
  }
  
  .container-fluid {
    max-width: 1320px;
  }
  
  .hero-title {
    font-size: 4.5rem;
  }
  

  
  .about-header h2 {
    font-size: 48px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  
  .partner-card img {
    max-height: 100px;
  }
  
  .embla__slide {
    max-width: 250px;
  }
}

/* Extra large screens */
@media (min-width: 1600px) {
  .container {
    max-width: 1440px;
  }
  
  .container-hero {
    max-width: 1440px;
  }
  
  .container-fluid {
    max-width: 1440px;
  }
  
  .hero-title {
    font-size: 5rem;
  }
  

  .about-header h2 {
    font-size: 52px;
  }
  
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 45px;
  }
}

/* Print styles */
@media print {
  .header,
  .mobile-nav-menu,
  .slider-controls,
  .cta-section {
    display: none !important;
  }
  
  .hero {
    background: none !important;
    color: black !important;
    padding: 20px 0 !important;
  }
  
  body {
    color: black !important;
    background: white !important;
    overflow: visible !important;
  }
  
  .container {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  .container-hero {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  .container-fluid {
    max-width: 100% !important;
    padding: 0 !important;
  }
}

/* --- HERO SECTIONS FOR OTHER PAGES --- */
.about-hero-section,
.service-hero-section,
.contact-hero-section,
.catalog-hero-section {
  position: relative;
  min-height: 400px;
  padding: 140px 0 80px;
  color: #ffffff;
  background-color: #1e293b;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  z-index: 1;
  width: 100%;
}

.about-hero-section {
  background-image: url("/images/abouthero.png");
}

.service-hero-section {
  background-image: url("/images/servicehero.jpg");
}

.contact-hero-section {
  background-image: url("/images/contacthero.jpg");
}

.catalog-hero-section {
  background-image: url("/images/ctahero.jpg");
}

.about-hero-section::before,
.service-hero-section::before,
.contact-hero-section::before,
.catalog-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(15, 23, 42, 0.8) 0%,
    rgba(15, 23, 42, 0.4) 100%
  );
  z-index: -1;
}

.about-hero-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.2;
  position: relative;
  z-index: 2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 768px) {
  .about-hero-section,
  .service-hero-section,
  .contact-hero-section,
  .catalog-hero-section {
    min-height: 300px;
    padding: 120px 0 50px;
    text-align: center;
  }

  .about-hero-title {
    font-size: clamp(2rem, 6vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .about-hero-section,
  .service-hero-section,
  .contact-hero-section,
  .catalog-hero-section {
    min-height: 250px;
    padding: 100px 0 40px;
  }

  .about-hero-title {
    font-size: clamp(1.8rem, 7vw, 2.2rem);
  }
}

.values-section {
  padding: 100px 0;
  background-color: #ffffff;
  width: 100%;
}

.section-title-center {
  text-align: center;
  margin-bottom: 60px;
  width: 100%;
}

.title-eyebrow-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #2563eb;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.title-eyebrow-center::before,
.title-eyebrow-center::after {
  content: "";
  display: block;
  width: 50px;
  height: 2px;
  background-color: #2563eb;
  flex-shrink: 0;
}

.values-section h2 {
  font-size: 42px;
  font-weight: 700;
  color: #1f2937;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: 100%;
}

.value-item {
  text-align: center;
  width: 100%;
}

.value-icon {
  color: #2563eb;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-icon img {
  width: 48px;
  height: 48px;
  max-width: 100%;
}

.value-item h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 12px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.value-item p {
  font-size: 16px;
  line-height: 1.6;
  color: #6b7280;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

@media (max-width: 992px) {
  .values-section {
    padding: 80px 0;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    gap: 25px;
  }
  
  .section-title-center {
    margin-bottom: 50px;
    display: flex;
    flex-direction: column;
    align-items: start;
  }
}

@media (max-width: 768px) {
  .values-section {
    padding: 60px 0;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-section h2 {
    font-size: 36px;
  }
  
  .section-title-center {
    margin-bottom: 40px;
  }
}

@media (max-width: 576px) {
  .values-section {
    padding: 50px 0;
  }
  
  .values-grid {
    gap: 45px;
  }
  
  .values-section h2 {
    font-size: 30px;
  }
  
  .value-item h3 {
    font-size: 20px;
  }
  
  .value-item p {
    font-size: 15px;
  }
  
  .section-title-center {
    margin-bottom: 35px;
  }
}

/* --- CONTACT PAGE SPECIFIC STYLES --- */

.contact-page-section {
  background-color: transparent;
  padding: 0 0 80px 0;
  margin-top: -70px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.contact-page-section .container {
  background-color: #f7f7f7;
  border-radius: 24px;
  padding: 50px;
  width: 80%;
  max-width: 100%;
}

.contact-info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
  width: 100%;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  border: none;
  box-shadow: none;
  width: 100%;
  flex-wrap: wrap;
}

.info-card-icon img{
  width: 40px;
  height: 40px;
  max-width: 100%;
  flex-shrink: 0;
}

.info-card-text {
  flex: 1;
  min-width: 0;
}

.info-card-text h4 {
  font-size: 16px;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 4px 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info-card-text p,
.info-card-text a {
  font-size: 15px;
  color: #6b7280;
  text-decoration: none;
  word-break: break-all;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.info-card-text a:hover {
  color: #2563eb;
}

.contact-main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  width: 100%;
}

.contact-form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 30px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-group {
  margin-bottom: 20px;
  width: 100%;
}

.form-group label {
  display: block;
  font-weight: 500;
  margin-bottom: 8px;
  color: #374151;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s;
  max-width: 100%;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background-color: #2563eb;
  color: white;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-wrap: wrap;
  white-space: nowrap;
}

.submit-btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-2px);
}

.contact-map-wrapper {
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}

.contact-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 450px;
  border: none;
  max-width: 100%;
}

@media (max-width: 992px) {
  .contact-page-section {
    margin-top: -50px;
    padding: 0 0 60px 0;
  }
  
  .contact-page-section .container {
    padding: 40px 30px;
  }
  
  .contact-info-cards {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 50px;
  }
  
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 28px;
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .contact-page-section {
    margin-top: -40px;
    padding: 0 0 50px 0;
  }
  
  .contact-page-section .container {
    padding: 30px 20px;
    border-radius: 16px;
  }
  
  .contact-info-cards {
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .contact-main-grid {
    gap: 30px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 26px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .contact-map-wrapper iframe {
    min-height: 350px;
  }
  
  .info-card {
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .contact-page-section {
    margin-top: -30px;
    padding: 0 0 40px 0;
  }
  
  .contact-page-section .container {
    padding: 25px 15px;
    border-radius: 12px;
  }
  
  .contact-info-cards {
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .info-card {
    gap: 15px;
  }
  
  .info-card-text h4 {
    font-size: 15px;
  }
  
  .info-card-text p,
  .info-card-text a {
    font-size: 14px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 12px 14px;
    font-size: 15px;
  }
  
  .form-group textarea {
    min-height: 100px;
  }
  
  .submit-btn {
    padding: 12px;
    font-size: 15px;
  }
  
  .contact-map-wrapper iframe {
    min-height: 300px;
  }
}

@media (max-width: 360px) {
  .contact-page-section .container {
    padding: 20px 10px;
    border-radius: 8px;
  }
  
  .contact-info-cards {
    gap: 12px;
    margin-bottom: 25px;
  }
  
  .info-card {
    gap: 12px;
  }
  
  .info-card-icon img {
    width: 35px;
    height: 35px;
  }
  
  .info-card-text h4 {
    font-size: 14px;
  }
  
  .info-card-text p,
  .info-card-text a {
    font-size: 13px;
  }
  
  .contact-form-wrapper h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }
  
  .form-group input,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
  
  .form-group textarea {
    min-height: 80px;
  }
  
  .submit-btn {
    padding: 10px;
    font-size: 14px;
  }
  
  .contact-map-wrapper iframe {
    min-height: 250px;
  }
}
