/* 
===================================
CSS Variables and Reset
===================================
*/
:root {
  /* Color palette */
  --primary-color: #f69222; /* Electric blue */
  --primary-light: #f69222;
  --primary-dark: #f4a1427d;
  --secondary-color: #2d3142; /* Dark blue-gray */
  --accent-color: #00c3ff; /* Bright cyan */
  --light-gray: #f5f7fa;
  --medium-gray: #e9ecef;
  --dark-gray: #666;
  --text-color: #333;
  --text-light: #777;
  --white: #fff;
  --black: #222;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;

  /* Typography */
  --heading-font: "Montserrat", sans-serif;
  --body-font: "Roboto", sans-serif;

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

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.1);

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

  /* Container widths */
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--body-font);
  color: var(--text-color);
  line-height: 1.6;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: var(--space-md);
  color: var(--secondary-color);
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

img {
  max-width: 100%;
  height: auto;
}

input,
textarea,
select,
button {
  font-family: var(--body-font);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* 
===================================
Buttons & Form Elements
===================================
*/
.btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-fast);
}

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

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

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

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

.btn-text {
  color: var(--primary-color);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: color var(--transition-fast);
}

.btn-text:hover {
  color: var(--black);
}

.btn-text::after {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-left: var(--space-xs);
  font-size: 0.8em;
  transition: transform var(--transition-fast);
}

.btn-text:hover::after {
  transform: translateX(3px);
}

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

label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  color: var(--secondary-color);
}

input,
textarea,
select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: border-color var(--transition-fast);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--primary-color);
}

input::placeholder,
textarea::placeholder {
  color: var(--text-light);
}

/* 
===================================
Header & Navigation
===================================
*/
#header {
  background-color: #fff;
  box-shadow: var(--shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background-color var(--transition-normal);
}

#header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.logo {
  width: 170px;
}
.logo a {
  display: flex;
  align-items: center;
  position: relative;
  top: 3px;
  color: var(--secondary-color);
}

.logo h1 {
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 0;
}

.logo span {
  color: var(--primary-color);
}

#nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

#nav li {
  margin-left: var(--space-lg);
}

#nav .nav-link {
  color: var(--secondary-color);
  font-weight: 500;
  position: relative;
  padding: var(--space-xs) 0;
}

#nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: width var(--transition-normal);
}

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

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--secondary-color);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle .fa-xmark {
  display: none;
}

/* 
===================================
Hero Section
===================================
*/
.hero {
  /* background: linear-gradient(
    135deg,
    var(--primary-dark) 0%,
    var(--primary-color) 100%
  ); */
  /* background-image: url(/ElectricPrecision/src/expand.png);
  background-repeat: repeat;
  background-size: cover; */
  color: var(--white);
  padding: 12rem 0 8rem;
  position: relative;
  overflow: hidden;
  height: 100vh;
}

.hero::before {
  /* content: ""; */
  position: absolute;
  top: 0;
  right: -150px;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.1)
  );
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
  max-width: 750px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  color: var(--white);
  line-height: 1.2;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: var(--space-xl);
  opacity: 0.9;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
}

/* 
===================================
Categories Section
===================================
*/
.categories {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

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

.category-card .icon {
  width: 180px;
  height: 180px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 100, 230, 0.1);
  border-radius: 50%;
}

.svg-icon {
  color: #000000;
  width: 70px;
  height: 70px;
  fill: var(--primary-color);
}

.category-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.category-card p {
  color: var(--text-light);
  margin-bottom: var(--space-lg);
}

/* 
===================================
About Section
===================================
*/
.about {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

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

.about-text h3 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.about-text p {
  color: var(--text-light);
}

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

.stat {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-text {
  font-weight: 500;
  color: var(--secondary-color);
}

/* 
===================================
Why Choose Us Section
===================================
*/
.why-us {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

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

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

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card .icon {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 100, 230, 0.1);
  border-radius: 50%;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
}

.feature-card p {
  color: var(--text-light);
}

/* 
===================================
Portfolio & Product Section
===================================
*/
.portfolio {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

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

/* Product Cards */
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-image {
  height: 220px;
  background-color: var(--light-gray);
  position: relative;
  overflow: hidden;
  background-image: url("../../imag/img/1.jpg");
  background-size: cover;
  background-position: center;
}

.product-image-2 {
  background-image: url("../../imag/img/2.jpg");
}

.product-image-3 {
  background-image: url("../../imag/img/3.jpg");
}

.product-image-4 {
  background-image: url("../../imag/img/4.jpg");
}

.product-image-5 {
  background-image: url("../../imag/img/5.jpg");
}

.product-image-6 {
  background-image: url("../../imag/img/6.jpg");
}

.product-image-7 {
  background-image: url("../../imag/img/7.jpg");
}

.product-image-8 {
  background-image: url("../../imag/img/8.jpg");
}

.product-image-9 {
  background-image: url("../../imag/img/9.jpg");
}

.product-image-10 {
  background-image: url("../../imag/img/10.jpg");
}


.product-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.product-details {
  padding: var(--space-lg);
}

.product-card h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
  color: var(--dark);
  font-weight: 600;
}

.product-rating {
  color: #f8c51c;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
}

.product-rating span {
  color: var(--gray);
  font-size: 0.9rem;
  margin-left: var(--space-xs);
}

.product-description {
  color: var(--gray);
  margin-bottom: var(--space-md);
  font-size: 0.95rem;
  line-height: 1.5;
}

.product-features {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.product-features span {
  background-color: var(--light-gray);
  padding: 0.4rem 0.8rem;
  border-radius: 5px;
  font-size: 0.85rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 5px;
}

.product-features i {
  color: var(--primary-color);
}

.product-price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-md);
}

.price {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
}

.regular-price {
  font-size: 1rem;
  text-decoration: line-through;
  color: var(--gray);
  margin-right: var(--space-sm);
}

/* Old Portfolio Styles (kept for compatibility) */
.portfolio-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: var(--primary-color);
  color: var(--white);
  position: relative;
  height: 300px;
  display: flex;
  align-items: flex-end;
  background-image: linear-gradient(
    to bottom,
    var(--primary-dark),
    var(--primary-color)
  );
}

.portfolio-content {
  padding: var(--space-lg);
  width: 100%;
}

.portfolio-item h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  color: var(--white);
}

.portfolio-item p {
  margin-bottom: var(--space-md);
  opacity: 0.9;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.tags li {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-right: var(--space-xs);
  margin-bottom: var(--space-xs);
}

/* 
===================================
Testimonials Section
===================================
*/
.testimonials {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

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

.testimonial-card {
  background-color: var(--white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

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

.quote {
  font-size: 2rem;
  color: var(--primary-light);
  margin-bottom: var(--space-md);
}

.testimonial-text {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: var(--space-lg);
  color: var(--text-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 1.2rem;
  margin-bottom: 0.1rem;
}

.author-info p {
  color: var(--text-light);
  margin-bottom: 0;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--space-lg);
}

.prev-btn,
.next-btn {
  background-color: transparent;
  border: none;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  padding: var(--space-sm);
  transition: color var(--transition-fast);
}

.prev-btn:hover,
.next-btn:hover {
  color: var(--primary-dark);
}

.testimonial-dots {
  display: flex;
  gap: var(--space-sm);
  margin: 0 var(--space-md);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.dot.active {
  background-color: var(--primary-color);
}

/* 
===================================
Contact Section
===================================
*/
.contact {
  /* height: 90vh; */
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

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

.contact-info {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
}

.contact-card .icon {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.contact-card h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.contact-card p {
  color: var(--text-light);
  margin-bottom: 0;
}

.contact-form {
  background-color: var(--light-gray);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
}

/* 
===================================
Location Section
===================================
*/
.location {
  padding: var(--space-xxl) 0;
  background-color: var(--light-gray);
}

.map-container {
  height: 500px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* 
===================================
Footer
===================================
*/
.footer {
  background-color: var(--secondary-color);
  color: var(--white);
  padding: var(--space-xxl) 0 var(--space-lg);
}

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

.footer-logo h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

.footer-logo span {
  color: var(--primary-light);
}

.footer-logo p {
  opacity: 0.8;
  margin-bottom: var(--space-lg);
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--white);
  transition: background-color var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--primary-color);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.footer-link-group h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: var(--space-lg);
}

.footer-link-group ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-group li {
  margin-bottom: var(--space-sm);
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-link-group a:hover {
  color: var(--white);
}

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

.footer-bottom p {
  margin-bottom: 0;
  opacity: 0.7;
}

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

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--white);
}
.lll {
  background-image: url(../expand.png);
  background-repeat: repeat;
  background-size: cover;
}

/* 
===================================
Responsive Styles
===================================
*/
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 2rem;
  }
  /* .lll{
    background-image: url(/ElectricPrecision/src/expand-mo.png);
  background-repeat: repeat;
  background-size: cover;
  } */
}

@media (max-width: 992px) {
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  .footer-logo {
    text-align: center;
    margin-bottom: var(--space-lg);
  }

  .social-links {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 10rem 0 6rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  /* Navigation for mobile */
  .mobile-nav-toggle {
    display: block;
    position: absolute;
    bottom: var(--space-md);
    right: var(--space-md);
    z-index: 1001;
  }

  #nav {
    width: 100%;
  }

  #primary-nav {
    position: fixed;
    inset: 80px 0 0 0;
    flex-direction: column;
    background-color: var(--white);
    box-shadow: var(--shadow-lg);
    padding: var(--space-lg);
    transform: translateY(-100%);
    transition: transform var(--transition-normal);
    z-index: 999;
    display: flex;
  }

  #primary-nav[data-visible="true"] {
    transform: translateY(0);
  }

  #nav li {
    margin: 0 0 var(--space-md) 0;
  }

  #nav .nav-link {
    display: block;
    font-size: 1.2rem;
  }

  /* Ensure logo is visible */
  .logo {
    z-index: 1001;
    position: relative;
    top: 6px;
  }

  /* Other responsive items */
  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
    text-align: center;
  }

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

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero-buttons {
    flex-direction: column;
    gap: var(--space-md);
  }
  .lll {
    background-image: url(../expand-mo.png);
    background-repeat: repeat;
    background-size: cover;
    padding: 90px;
  }
  .hero-buttons .btn {
    width: 100%;
  }

  .categories-grid,
  .features-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }

  /* Make header and logo responsive */
  #header .container {
    height: 70px;
    padding: 0 var(--space-md);
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  /* Fix spacing in mobile menu */
  #primary-nav {
    padding-top: var(--space-xl);
  }

  #nav .nav-link {
    padding: var(--space-md) 0;
  }

  /* Adjust hero section for smaller screens */
  .hero {
    padding: 8rem 0 5rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  /* Product card responsive styles */
  .product-card {
    margin-bottom: var(--space-md);
  }

  .product-features {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-xs);
  }

  .product-features span {
    width: 100%;
  }

  .product-price {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .product-price .btn-text {
    width: 100%;
    text-align: center;
    padding: var(--space-sm) 0;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 380px) {
  .logo h1 {
    font-size: 1.2rem;
  }

  .mobile-nav-toggle {
    right: var(--space-sm);
  }

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

  .hero h1 {
    font-size: 1.8rem;
  }
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 15px;
  padding: 20px;
}

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 0 20px #000000;
}

.section-header2 {
  text-align: center;
}

.section-header2 h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--primary-color);
}
.lightbox {
  z-index: 99999;
}

.portfolio2 {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

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

.portfolio img,
.portfolio2 img {
  width: 300px;
}
.portfolio2 h2 {
  font-size: 27px;
  padding-top: 80px;
  padding-bottom: 20px;
  /* color: #222; */
  /* border-top: 1px solid #f69222; */
}
.gallery {
  align-items: center;
  justify-content: center;
}
.portfolio h2 {
  font-size: 25px;
  padding-top: 20px;
  padding-bottom: 20px;
  /* color: #222; */
}

/* .portfolio2 img {
  position: relative;
  left: 20PX;
} */

.about2 {
  padding: var(--space-xxl) 0;
  background-color: var(--white);
}

.about-content2 {
  align-items: center;
}

.about-text2 h3 {
  font-size: 1.5rem;
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.about-text2 p {
  color: var(--text-light);
}

.about-stats2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.stat2 {
  background-color: var(--light-gray);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  text-align: center;
}

.stat-number2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: var(--space-xs);
}

.stat-text2 {
  font-weight: 500;
  color: var(--secondary-color);
}

.portfolio2-grid img {
  position: relative;
  left: 22px;
}






#mobile-nav-toggle2{
  position: absolute;
  left: 0;
  right: 400px;
}








.language-switcher {
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 9999;
}

.lang-btn {
  background-color: white;
  border: 1px solid #ccc;
  padding: 10px 12px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.lang-menu {
  display: none;
  background-color: white;
  position: absolute;
  top: 45px;
  right: 0;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  min-width: 150px;
}

.lang-menu p {
  margin: 0 0 10px;
  font-weight: bold;
}
.lang-menu a{
  display: block;
  color: #000000;
  padding: 14px;
}
.lang-menu a:hover{
  color: #f69324;
}