/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Header Styles */
.baner {
  background: linear-gradient(rgb(22, 2, 94), black);
  color: white;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  font-size: 14px;
}

.icon {
  color: #ffd700;
}

.losv {
  height: 100px; /* control size */
  width: auto; /* keep aspect ratio */
  object-fit: contain; /* ensures no distortion */
  margin-right: 10px; /* space between image and text */
  vertical-align: middle;
}

.header {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #1a2a6c;
  text-decoration: none;
}

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

.nav-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: #1a2a6c;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a2a6c;
  transition: width 0.3s;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
/* Logo section */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.losv {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo {
  font-size: 20px;
  font-weight: bold;
  color: #1a1a1a;
  text-decoration: none;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(63, 63, 63, 0.6), rgba(50, 50, 50, 0.6)),
    url("/images/sv.img1.jpg");
  background-size: cover;
  background-position: center;
  height: 80vh;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
  padding: 0 20px;
}

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

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.3s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s ease 0.6s both;
}

/* Button Styles */
.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: #ffd700;
  color: #1a2a6c;
}

.btn-primary:hover {
  background: #ffed4e;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

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

.btn-secondary:hover {
  background: white;
  color: #1a2a6c;
  transform: translateY(-3px);
}

/* Section Title */
.section-title {
  text-align: center;
  margin-bottom: 50px;
  padding: 0 20px;
}

.section-title h2 {
  font-size: 2.5rem;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* About Section */
.about {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.about-content h3 {
  color: #1a2a6c;
  margin-bottom: 20px;
  font-size: 1.8rem;
}

.about-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  margin-bottom: 10px;
}

/* Services Section */
.services {
  padding: 80px 0;
  background: white;
}

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

.service-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.service-card h3 {
  color: #1a2a6c;
  margin-bottom: 15px;
}

/* Why Choose Us */
.why-choose {
  background: linear-gradient(rgba(82, 82, 82, 0.288), rgba(25, 25, 25, 0.374)),
    url("/images/sv.img3.jpg");
  background-size: cover;
  background-position: center;
  padding: 150px 0;
  width: 100%;
  height: 100%;
  color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.section-title h1,
h3 {
  color: #ffffff;
}
.section-title p {
  color: #8c9aa5bc;
  font-size: x-large;
  font-weight: 600;
}
h5 {
  color: #023353a1;
  font-size: x-large;
  font-weight: 600;
}
.section-title i {
  font-family: sans-serif;
  color: #f1f0f1;
  font-weight: 900;
  font-style: normal;
  font-size: x-large;
}
.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: #ffd700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: #1a2a6c;
  font-size: 1.5rem;
}

/* Footer */
.footer {
  background: linear-gradient(rgb(22, 2, 94), black);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.footer-section h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: #ffd700;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #ffd700;
}

.footer-section p {
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-section p i {
  color: #ffd700;
  margin-top: 5px;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.social-links a:hover {
  background: #ffd700;
  color: #1a2a6c;
  transform: translateY(-3px);
}

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

/* Page Header (for all pages except home) */
.page-header {
  background: linear-gradient(rgba(26, 42, 108, 0.8), rgba(25, 0, 46, 0.8)),
    url("/images/sv.img5.jpg");
  background-size: cover;
  background-position: center;
  height: 300px;
  display: flex;
  align-items: center;
  color: white;
  text-align: center;
}

.page-header-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.breadcrumb a {
  color: #ffd700;
  text-decoration: none;
}

/* Services Page Specific Styles */
.services-intro {
  padding: 80px 0;
  background: #f8f9fa;
}
.service-header h3 {
  color: #ffffff9d;
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.intro-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.stat {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffd700;
  display: block;
}

.stat-label {
  color: #666;
  font-weight: 500;
}

.detailed-services {
  padding: 80px 0;
  background: white;
}

.detailed-services .services-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.detailed-services .service-card {
  text-align: left;
  padding: 0;
  overflow: hidden;
}

.service-header {
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  color: white;
  padding: 30px;
  text-align: center;
}

.service-header .service-icon {
  background: #ffd700;
  color: #1a2a6c;
}

.service-content {
  padding: 30px;
}

.service-description {
  color: #555;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-features {
  margin-bottom: 20px;
}

.service-features h4 {
  color: #1a2a6c;
  margin-bottom: 15px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-features ul {
  list-style: none;
}

.service-features li {
  color: #666;
  padding-left: 25px;
  position: relative;
  margin-bottom: 8px;
}

.service-features li::before {
  content: "⚡";
  position: absolute;
  left: 0;
  color: #ffd700;
}

.learn-more-btn {
  background: #1a2a6c;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.learn-more-btn:hover {
  background: #2a5298;
  transform: translateY(-3px);
}

/* Process Section */
.process-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-size: 1.5rem;
  font-weight: bold;
}

.process-step h4 {
  color: #1a2a6c;
  margin-bottom: 15px;
}

/* CTA Section */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Works Page Styles */
.project-categories {
  padding: 80px 0 40px;
  background: white;
}

.category-filters {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.filter-btn {
  padding: 10px 20px;
  border: 2px solid #1a2a6c;
  background: transparent;
  color: #1a2a6c;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
  background: #1a2a6c;
  color: white;
}

.projects-showcase {
  padding: 40px 0 80px;
  background: white;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.project-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

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

.image1 {
  background: linear-gradient(rgba(2, 39, 125, 0.695), rgba(2, 31, 103, 0.428)),
    url(/images/image.111.jpeg);
  justify-items: center;
  background-position: center;
  background-size: cover;
}

.image2 {
  background: linear-gradient(rgba(2, 39, 125, 0.695), rgba(2, 31, 103, 0.428)),
    url(/images/image.22.jpeg);
  justify-items: center;
  background-position: center;
  background-size: cover;
}

.image3 {
  background: linear-gradient(rgba(2, 39, 125, 0.695), rgba(2, 31, 103, 0.428)),
    url(/images/image.55.jpeg);
  justify-items: center;
  background-position: center;
  background-size: cover;
}

.image4 {
  background: linear-gradient(rgba(2, 39, 125, 0.695), rgba(2, 31, 103, 0.428)),
    url(/images/image.222.jpeg);
  justify-items: center;
  background-position: center;
  background-size: cover;
}

.image5 {
  background: linear-gradient(rgba(2, 39, 125, 0.695), rgba(2, 31, 103, 0.428)),
    url(/images/smt.hm.jpeg);
  justify-items: center;
  background-position: center;
  background-size: cover;
}

.image6 {
  background: linear-gradient(rgba(2, 39, 125, 0.695), rgba(2, 31, 103, 0.428)),
    url(/images/anc.jpeg);
  justify-items: center;
  background-position: center;
  background-size: cover;
}

.project-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 42, 108, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.project-info {
  text-align: center;
  color: white;
}

.project-info h4 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.view-project {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ffd700;
  color: #1a2a6c;
  border-radius: 50%;
  text-decoration: none;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.view-project:hover {
  transform: scale(1.1);
}

.project-details {
  padding: 25px;
}

.project-details h3 {
  color: #1a2a6c;
  margin-bottom: 15px;
}

.project-location {
  color: #666;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.project-description {
  color: #555;
  line-height: 1.6;
  margin-bottom: 15px;
}

.project-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tag {
  background: #e9ecef;
  color: #495057;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.project-stats {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  color: white;
}

.stats-grid-large {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.stat-card {
  text-align: center;
  padding: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.stat-card .stat-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.stat-card .stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  color: white;
  display: block;
  margin-bottom: 10px;
}
.stat-label {
  color: #d6d6d6;
}
.section-title h2 {
  color: #1a2a6c;
  margin-top: 25px;
}

/* Contact Page Styles */
.contact-info {
  padding: 80px 0;
  background: #f8f9fa;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.contact-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

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

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2rem;
}

.contact-card h3 {
  color: #1a2a6c;
  margin-bottom: 15px;
}

.contact-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.contact-link {
  background: #ffd700;
  color: #1a2a6c;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.contact-link:hover {
  background: #ffed4e;
  transform: translateY(-3px);
}

.closed {
  color: #999;
  font-style: italic;
}

.contact-form-section {
  padding: 80px 0;
  background: white;
}

.contact-content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

.contact-form-container h3 {
  color: #1a2a6c;
  margin-bottom: 30px;
  font-size: 2rem;
}

.contact-form {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 10px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #e9ecef;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #1a2a6c;
}

.submit-btn {
  background: linear-gradient(135deg, #1a2a6c, #2a5298);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(26, 42, 108, 0.3);
}

.map-container h3 {
  color: #1a2a6c;
  margin-bottom: 30px;
  font-size: 2rem;
}

.map-placeholder {
  background: #f8f9fa;
  border-radius: 10px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border: 2px solid #e9ecef;
}

.map-content {
  text-align: center;
  color: #666;
}

.map-content i {
  font-size: 3rem;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.map-link {
  background: #000000;
  color: white;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  transition: all 0.3s ease;
}

.map-link:hover {
  background: #2a5298;
  transform: translateY(-3px);
}

.quick-contact {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.quick-contact h4 {
  color: #1a2a6c;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.quick-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.quick-contact-item i {
  width: 40px;
  height: 40px;
  background: #ffd700;
  color: #1a2a6c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.quick-contact-item strong {
  color: #1a2a6c;
  display: block;
  margin-bottom: 5px;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 10px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background: white;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question h4 {
  color: #1a2a6c;
  font-size: 1.1rem;
}

.faq-answer {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

/* Clients Page Styles */
.client-intro {
  padding: 80px 0;
  background: #f8f9fa;
}

.intro-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.intro-content h2 {
  font-size: 2.5rem;
  color: #1a2a6c;
  margin-bottom: 20px;
}

.intro-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
}

.client-achievements {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.achievement {
  display: flex;
  align-items: center;
  gap: 15px;
  text-align: left;
}

.achievement i {
  width: 60px;
  height: 60px;
  background: #ffd700;
  color: #1a2a6c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.achievement h4 {
  color: #1a2a6c;
  margin-bottom: 5px;
}

.client-logos {
  padding: 80px 0;
  background: white;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
}

.logo-card {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.client-logo {
  margin-bottom: 15px;
}

.client-logo i {
  font-size: 3rem;
  color: #1a2a6c;
  margin-bottom: 10px;
}

.client-logo h4 {
  color: #1a2a6c;
}

.testimonials {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.testimonial-card {
  background: white;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.stars {
  color: #ffd700;
  margin-bottom: 15px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: #e9ecef;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a2a6c;
  font-size: 1.2rem;
}

.author-info h4 {
  color: #1a2a6c;
  margin-bottom: 5px;
}

.client-sectors {
  padding: 80px 0;
  background: white;
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.sector-card {
  text-align: center;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  transition: all 0.3s ease;
}

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

.sector-card i {
  font-size: 3rem;
  color: #1a2a6c;
  margin-bottom: 15px;
}

.sector-card h3 {
  color: #1a2a6c;
  margin-bottom: 10px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 equal columns */
  gap: 30px; /* uniform spacing */
  padding: 50px;
}
.our-clints h3 {
  font-size: 3rem;
  color: #1a2a6c;
  margin-bottom: 15px;
  margin-left: 650px;
}

/* Common styles for all client images */
.grid div {
  padding: 20px;
  text-align: center;
  background-position: center;
  background-size: contain; /* keeps logos visible without cropping */
  background-repeat: no-repeat;
  width: 100%;
  height: 150px; /* fixed height for consistency */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}

/* Individual images */
.clint-image1 {
  background-image: url("/images/20220217101427.jpeg");
}
.clint-image2 {
  background-image: url("/images/1686496195mercedes-car-logo.png");
}
.clint-image3 {
  background-image: url("/images/ENPH_BIG-d9e52f41.png");
}
.clint-image4 {
  background-image: url("/images/bosch-logo-png-transparent.png");
}
.clint-image5 {
  background-image: url("/images/Larsen-Toubro-LT-Logo-Vector.svg-.png");
}
.clint-image6 {
  background-image: url("/images/tcs_logo.png");
}
.clint-image7 {
  background-image: url("/images/OIP.jpeg");
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 70%;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

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

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

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .intro-stats {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .projects-grid {
    grid-template-columns: 1fr;
  }

  .category-filters {
    flex-direction: column;
    align-items: center;
  }
}
