
@import url('dark-mode.css');
@import url('background-widgets.css');

/* Utility classes for centering */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* Center all section headings and descriptions */
.section-header {
  text-align: center;
  max-width: 800px; /* Optimal reading width for paragraphs */
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px; /* Spacing after the header */
}

/* Center all h1-h6 headings by default */
h1, h2, h3, h4, h5, h6 {
  text-align: center;
}

/* Center all paragraphs that directly follow headings */
h1 + p, 
h2 + p, 
h3 + p, 
h4 + p, 
h5 + p, 
h6 + p {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .section-header {
    max-width: 90%;
    margin-bottom: 30px;
  }
  
  h1 + p,
  h2 + p,
  h3 + p {
    max-width: 90%;
  }
}
:root {
  --primary-color: #4287f5;
  --secondary-color: #0a0d62;
  --accent-color: #e36a00;
  --white: #ffffff;
  --black: #000000;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--secondary-color);
  background-color: var(--white);
}

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

/* Navbar */
.navbar {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}
.nav-links {
  display: flex;
  list-style: none;
}
.nav-links li {
  margin-left: 30px;
  position: relative;
}
.nav-links a {
  font-weight: 600;
  text-decoration: none;
  color: var(--secondary-color);
  transition: var(--transition);
}
.nav-links a.active,
.nav-links a:hover {
  color: var(--accent-color);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-color);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: absolute;
  top: 20px;
  right: 20px;
}
.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--secondary-color);
  margin: 5px 0;
  transition: var(--transition);
}
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}
.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu Styles */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 15px;
  z-index: 1001;
}

.hamburger .bar {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 5px 0;
  transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-links {
  display: flex;
  list-style: none;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    width: 100%;
    text-align: center;
  }
  
  .nav-links li a {
    display: block;
    padding: 15px;
  }
}
/* Hero */
.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
  min-height: calc(100vh - 80px);
  padding: calc(2rem + 80px) 2rem 2rem;
  color: var(--white);
  background: linear-gradient(#000000b3, rgba(0, 0, 0, 0.7)),
    url('assets/images/IMG-20250519-WA0131.jpg') center/cover no-repeat;
  box-sizing: border-box;
}
.hero-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.hero-content {
  max-width: 600px;
  margin: 0 auto;
}
.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: whitesmoke;
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 80px;
    transition: left 0.3s ease;
    z-index: 1000;
  }
  .nav-links.active {
    left: 0;
  }
  .nav-links li {
    margin: 20px 0;
  }
}
/* Base Styles */
/* Logo Styles */
.logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Testimonial Slider */
.testimonial-slider {
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 800px;
}

.testimonial-wrapper {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial {
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    padding: 0 15px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--medium-gray);
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dots .dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Partners Slider */
.partners-container {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    animation: scroll 30s linear infinite;
    width: calc(250px * 12); /* Double the content for seamless loop */
}

.partner-logo {
    flex: 0 0 250px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.partner-logo img {
    max-width: 100%;
    max-height: 80%;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 6)); }
}

/* Base Button Styles */
.btn, .btn-outline {
  display: inline-block;
  text-align: center;
  padding: 12px 30px;
  border-radius: 50px; /* Rounded pill shape */
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 10px 5px; /* Spacing between buttons */
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 6px var(--accent-color);
}

/* Solid Button */
.btn {
  background-color: var(--accent-color); /* Use your brand color */
  color: white;
  border: 2px solid var(--accent-color);
}

/* Outline Button */
.btn-outline {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid #eb6b09;
}

/* Hover Effects */
.btn:hover {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

/* Center button containers */
.button-container, .text-center {
  text-align: center;
  margin: 30px 0;
}

/* For full-width buttons on mobile */
@media (max-width: 768px) {
  .btn, .btn-outline {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}

/* Ripple Effect */
.btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 0;
  border-radius: 100%;
  transform: scale(1, 1) translate(-50%);
  transform-origin: 50% 50%;
}

.btn:focus:not(:active)::after {
  animation: ripple 0.6s ease-out;
}

@keyframes ripple {
  0% {
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    transform: scale(20, 20);
    opacity: 0;
  }
}

/* Gradient Button Variation */
.btn-gradient {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  color: white;
}

/* Button Sizes */
.btn-sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

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

.btn-xl {
  padding: 20px 50px;
  font-size: 1.2rem;
  font-weight: 700;
}

/* Icon Buttons */
.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-icon svg {
  width: 18px;
  height: 18px;
}

/* Projects Preview Section */
.projects-preview {
  padding: 80px 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0; /* Added margin top and bottom */
}

/* Button container styling */
.projects-preview .text-center {
  margin-top: 60px;
  position: relative;
}

.projects-preview .btn {
  padding: 12px 30px;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

/* Utility spacing classes */
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }

/* Footer Rows */
.footer-row {
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 30px;
}

.footer-middle {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    flex-direction: column;
    text-align: center;
}

.footer-logo img {
    height: 50px;
    width: auto;
}

.footer-social a {
    color: white;
    font-size: 1.2rem;
    margin: 0 10px;
    transition: all 0.3s ease;
}

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

/* Stats Section */
.stats {
  padding: 80px 0;
  background-color: #f9f9f9; /* Adjust to match your theme */
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.stat-card {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 15px;
  box-sizing: border-box;
}

.stat-card h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #eb6b09; /* Use your color variable */
}

.stat-card p {
  font-size: 1rem;
  color: var(--text-color); /* Use your color variable */
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .stats-grid {
    flex-direction: column;
  }
  .stat-card {
    width: 100%;
  }
}

:root {
    --primary-color: #4287f5;
    --primary-dark: #8bb7d1;
    --primary-light: #d4ebf7;
    --secondary-color: #0a0d62;
    --accent-color: #e36a00;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #777777;
    --white: #ffffff;
    --black: #000000;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--secondary-color);
    background-color: var(--white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--accent-color);
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

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

section {
    padding: 80px 0;
}

h1, h2, h3, h4 {
    margin-bottom: 20px;
    line-height: 1.2;
    text-align: center;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 2.2rem;
    color: var(--secondary-color);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 15px;
    color: var(--dark-gray);
}

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 15px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover, 
.nav-links a.active {
  color: #eb6b09;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;background: 
        linear-gradient(#000000b3, rgba(0, 0, 0, 0.7)),
        url('../assets/images/IMG-20250519-WA0131.jpg') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    filter: brightness(0.7); /* Darkens the background for better text contrast */
}

/* Hero section center alignment with header offset */
.hero {
  position: relative;
  width: 100%;
  /* /* Account for fixed header height (adjust as needed, currently 80px) */
  padding: calc(2rem + 120px) 2rem 2rem; /* increased top offset */
  min-height: calc(100vh - 120px);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: none; /* background defined elsewhere */
  box-sizing: border-box;
}

/* Override any .hero .container rules */
.hero-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto;
}



.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 0px;
    color: whitesmoke;
}

.threejs-container {
    flex: 1;
    height: 500px;
    position: relative;
}

/* Featured Services */
.featured-services {
    background-color: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px #eb6b09;
}

.icon-3d {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    transition: var(--transition);
}

.service-card:hover .icon-3d {
    transform: rotateY(180deg);
}

/* Projects Preview */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.project-card {
    background-color: var(--white);
    border-radius: 8px;
    text-align: center;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.project-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.project-details {
    padding: 25px;
}

.project-meta {
    display: flex;
    justify-content: space-between;
    margin: 15px 0;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.project-meta i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background-color: var(--primary-light);
}

.testimonial-slider {
    margin-top: 50px;
    position: relative;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    display: none;
}

.testimonial.active {
    display: block;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 20px;
    position: relative;
}

.testimonial p::before,
.testimonial p::after {
    content: '"';
    font-size: 2rem;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial h4 {
    color: var(--secondary-color);
}

.testimonial span {
    color: var(--dark-gray);
    font-size: 0.9rem;
}

/* Page Hero */
.page-hero {
background-color: #eb6b09;
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.page-hero h1 {
    color: var(--white);
    text-align: center;
}

.page-hero p {
    color: var(--white);
    opacity: 0.9;
    text-align: center;
}

/* Company History */
.company-history {
    display: flex;
    align-items: center;
    gap: 50px;
}

.history-content {
    flex: 1;
}

.history-image {
    flex: 1;
}

.history-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
}

/* Mission and Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

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

.value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Leadership Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid var(--white);
    box-shadow: var(--box-shadow);
}

.position {
    color: #eb6b09;
    font-weight: 600;
    margin-bottom: 10px;
}

.bio {
    font-size: 0.9rem;
}

/* Certifications */
.certs-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.certs-grid img {
    height: 80px;
    width: auto;
    opacity: 0.7;
    transition: var(--transition);
}

.certs-grid img:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 10px;
}

.tab-btn {
    padding: 12px 25px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.tab-btn:hover:not(.active) {
    background-color: var(#eb6b09);
}

.service-content {
    display: none;
    align-items: center;
    gap: 50px;
    padding: 40px 0;
}

.service-content.active {
    display: flex;
}

.service-details {
    flex: 1;
}

.service-image {
    flex: 1;
    height: 400px;
}

.service-features li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.service-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

/* Specialized Services */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.specialized-card {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition);
}

.specialized-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
    background-color: var(--primary-color);
    color: var(--white);
}

.specialized-card:hover p {
    color: var(--white);
}

.card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.specialized-card:hover .card-icon {
    color: var(--white);
}

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

.cta-section h2 {
    color: var(--white);
}

.cta-section p {
    color: var(--white);
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
}

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

/* Projects Filter */
.filter-options {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.filter-btn {
    padding: 10px 20px;
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.filter-btn:hover:not(.active) {
    background-color: var(--primary-light);
}

/* Projects Grid */
.projects-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.project-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

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

.project-link {
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px;
    border: 2px solid var(--white);
    border-radius: 4px;
    transition: var(--transition);
}

.project-link:hover {
    background-color: var(--white);
    color: var(#eb6b09);
}

.project-category {
    display: inline-block;
    background-color: var(--primary-light);
    color: var(--primary-dark);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

/* Project Showcase */
.model-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.model-controls button {
    padding: 10px 20px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.model-controls button:hover {
    background-color: var(--primary-dark);
}

.model-controls i {
    margin-right: 8px;
}

/* Awards */
.awards-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scroll-snap-type: x mandatory;
}

.award {
    min-width: 300px;
    text-align: center;
    padding: 30px;
    background-color: var(--light-gray);
    border-radius: 8px;
    scroll-snap-align: start;
}

.award img {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus

@media (max-width: 768px) {
  .projects-preview {
    padding: 60px 0;
  }
  
  .projects-grid {
    gap: 20px;
    margin: 30px 0;
  }
  
  .projects-preview .text-center {
    margin-top: 40px;
  }
}
I/* Mobile menu button - hidden on desktop */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* Mobile styles only activate below 992px */
@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.3s ease;
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 15px 0;
    }
    
    /* Hamburger to X animation */
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}
/* ======================
   Mobile Responsive Menu
   ====================== */

/* Mobile Menu Toggle Button - Hidden on Desktop */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
    z-index: 1000;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.mobile-menu-toggle span:nth-child(3) { bottom: 0; }

/* Mobile Styles (won't affect desktop) */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: #fff;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 30px;
        transition: all 0.3s ease;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        margin: 15px 0 !important;
    }
    
    /* Hamburger to X animation */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }
}

/* ======================
   FORCEFUL MOBILE MENU STYLES
   ====================== */
.hamburger {
    display: none !important;
    cursor: pointer !important;
    background: none !important;
    border: none !important;
    padding: 10px !important;
    z-index: 1001 !important;
    position: absolute !important;
    right: 20px !important;
    top: 20px !important;
}

.hamburger .bar {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    background-color: #333 !important;
    margin: 5px 0 !important;
    transition: all 0.3s ease !important;
}

.nav-links {
    display: flex !important;
}

@media (max-width: 768px) {
    .hamburger {
        display: block !important;
    }
    
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 70% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background-color: #fff !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: flex-start !important;
        padding-top: 80px !important;
        transition: all 0.3s ease !important;
        box-shadow: 2px 0 15px rgba(0,0,0,0.1) !important;
        z-index: 1000 !important;
        margin: 0 !important;
    }
    
    .nav-links.active {
        left: 0 !important;
    }
    
    .nav-links li {
        margin: 15px 0 !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0 !important;
    }
    
    .nav-links a {
        display: block !important;
        padding: 12px 20px !important;
        width: 100% !important;
    }
    
    /* Hamburger animation */
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg) !important;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0 !important;
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg) !important;
    }
    
    /* Body lock when menu is open */
    body.menu-open {
        overflow: hidden !important;
        position: fixed !important;
        width: 100% !important;
    }
}