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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #02143a;
  color: #bcc4cf;
  
}
html,body{
  height: 100%;
  margin:0;
}

.page-wrapper{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main{
  flex: 1;
}
header {
  background: #0f172a;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px;
  position: relative;
  z-index: 10;
}

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

.header-left img {
  width: 60px;
  object-fit: contain;
  border-radius: 20px;
}

.m{
  color: gray;
}
.brand {
  display: flex;
  flex-direction: column;
}

.brand h1 {
  font-size: 1.5rem;
  margin-bottom: 0.2rem;
}

.brand p {
  font-style: italic;
  font-size: 0.9rem;
  color: #cbd5e1;
}

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

nav ul li a {
  text-decoration: none;
  color: #cbd5e1;
  font-weight: 600;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #60a5fa;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}


.popup-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 50%;
  background: rgba(15, 23, 42, 0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 1000;
  animation: slideIn 0.5s ease forwards;
}

.popup-menu a {
  color: white;
  font-size: 1.5rem;
  text-decoration: none;
  font-weight: bold;
}

.popup-menu .close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

.popup-menu.show {
  display: flex;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  background: url('smart2.jpg') center/cover no-repeat;
  padding: 6rem 2rem;
  text-align: center;
  color: #cbd5e1;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(2, 20, 58, 0.7);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1.5s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 2s ease-out;
}

.cta-button {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.cta-button.primary {
  background: #60a5fa;
  color: white;
  border: 2px solid #60a5fa;
}

.cta-button.primary:hover {
  background: #3b82f6;
  border-color: #3b82f6;
  transform: translateY(-2px);
}

.cta-button.secondary {
  background: transparent;
  color: #cbd5e1;
  border: 2px solid #cbd5e1;
}

.cta-button.secondary:hover {
  background: #cbd5e1;
  color: #02143a;
  transform: translateY(-2px);
}

/* Mission Section */
.mission-section {
  background: rgb(17, 22, 65);
  padding: 3rem 2rem;
  margin: 3rem 0;
  border-radius: 16px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  position: relative;
  overflow: hidden;
}

.mission-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(96, 165, 250, 0.05) 0%, rgba(59, 130, 246, 0.02) 100%);
  pointer-events: none;
}

.mission-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.mission-section h2 {
  color: #60a5fa;
  font-size: 2.5rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.mission-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mission-highlight {
  font-size: 1.3rem;
  font-weight: 600;
  color: #cbd5e1 !important;
  line-height: 1.6;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mission-text p {
  color: #bcc4cf;
  line-height: 1.7;
  font-size: 1.1rem;
}

.mission-text p:not(.mission-highlight) {
  color: #94a3b8;
}

/* Services Preview Section */
.services-preview {
  margin: 4rem 0;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-preview-card {
  background: rgb(17, 22, 65);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(96, 165, 250, 0.1);
}

.service-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.3);
}

.service-preview-card .service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-preview-card h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-preview-card p {
  color: #bcc4cf;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Why Choose Us Section */
.why-choose-us {
  margin: 4rem 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-card {
  background: rgb(17, 22, 65);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInCard 0.8s ease-out forwards;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.2);
}

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.benefit-card p {
  color: #bcc4cf;
  line-height: 1.6;
}

/* Stats Section */
.stats-section {
  background: rgb(17, 22, 65);
  padding: 3rem 2rem;
  margin: 4rem 0;
  border-radius: 12px;
  text-align: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.stat-item {
  padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: #60a5fa;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #bcc4cf;
  font-size: 1.1rem;
  font-weight: 500;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 3rem 0;
}

h2 {
  color: #91b7c9;
  margin-bottom: 1rem;
}

.services{
  text-align: center;
}

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

.card {
  background: rgb(17, 22, 65);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  animation: fadeInCard 0.8s ease-out forwards;
}




footer {
  background: #0f172a;
  color: white;
  text-align: center;
  padding: 1rem;
}


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

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}


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

  .menu-toggle {
    display: flex;
  }
  .hero h2 {
    font-size: 2.2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  .stat-number {
    font-size: 2.2rem;
  }
  
  .services-hero h1 {
    font-size: 2.2rem;
  }
  
  .services-hero p {
    font-size: 1.1rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-section h2 {
    font-size: 1.8rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-button {
    width: 100%;
    max-width: 250px;
  }
  
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  
  .contact-hero p {
    font-size: 1.1rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .contact-content {
    margin: 2rem 0;
  }
  
  .about-hero h1 {
    font-size: 2.2rem;
  }
  
  .about-hero p {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 1.5rem;
  }
  
  .services-hero {
    padding: 3rem 1rem;
  }
  
  .contact-hero {
    padding: 3rem 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 0 1rem;
  }
  
  .contact-card {
    padding: 1.5rem;
  }
  
  .team-highlights {
    grid-template-columns: 1fr;
  }
  
  .tech-tags {
    justify-content: center;
  }
  
  .values-section,
  .expertise-section,
  .location-section {
    padding: 3rem 1.5rem;
  }
}

/* Enhanced existing contact form styles */
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  margin-bottom: 0;
  border-radius: 8px;
  border: 2px solid #e5e7eb;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form button {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border: none;
  border-radius: 8px;
  color: white;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.3s ease;
  padding: 16px 32px;
  width: 100%;
}

.contact-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(96, 165, 250, 0.3);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: #94a3b8;
}

/* Portfolio Page Styles */
.portfolio-hero {
  background: linear-gradient(135deg, #02143a 0%, #1e293b 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #cbd5e1;
}

.portfolio-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.portfolio-hero p {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

/* Portfolio Introduction */
.portfolio-intro {
  margin: 4rem 0;
  text-align: center;
}

.portfolio-intro-text {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 800px;
  margin: 2rem auto 0;
  line-height: 1.7;
}

/* Enhanced Portfolio Grid */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin: 4rem 0;
}

.project-card {
  background: rgb(17, 22, 65);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(96, 165, 250, 0.1);
  position: relative;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(96, 165, 250, 0.2);
  border-color: rgba(96, 165, 250, 0.3);
}

.project-card.featured {
  border: 2px solid #60a5fa;
  box-shadow: 0 8px 32px rgba(96, 165, 250, 0.3);
}

.project-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #60a5fa, #3b82f6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.project-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.project-content {
  padding: 2.5rem;
}

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.project-title {
  color: #60a5fa;
  font-size: 1.5rem;
  margin: 0;
  font-weight: 600;
}
.project-file{
  color:rgb(47, 78, 97) ;
  font-weight: 600;
}

.project-duration {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
  white-space: nowrap;
}

.project-description h4 {
  color: #cbd5e1;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.project-description > p {
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.project-details h5,
.technologies-used h5 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.project-details ul {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.project-details li {
  color: #bcc4cf;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.project-details li:before {
  content: "✓";
  color: #60a5fa;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.technologies-used {
  margin-top: 2rem;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}

.tech-tag {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  border: 1px solid rgba(96, 165, 250, 0.2);
  transition: all 0.3s ease;
}

.tech-tag:hover {
  background: rgba(96, 165, 250, 0.2);
  transform: translateY(-2px);
}

.tech-tag.certification {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border-color: rgba(34, 197, 94, 0.2);
}

.tech-tag.certification:hover {
  background: rgba(34, 197, 94, 0.2);
}

/* Certifications Section */
.certifications-section {
  background: rgb(17, 22, 65);
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 16px;
}

.certifications-intro {
  color: #94a3b8;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.certifications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.certification-card {
  background: rgba(96, 165, 250, 0.05);
  padding: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(96, 165, 250, 0.1);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.certification-card:hover {
  transform: translateY(-5px);
  border-color: rgba(96, 165, 250, 0.3);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.certification-card h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.certification-card p {
  color: #bcc4cf;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.certification-card ul {
  list-style: none;
  padding: 0;
}

.certification-card li {
  color: #94a3b8;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.certification-card li:before {
  content: "•";
  color: #60a5fa;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Portfolio CTA Section */
.portfolio-cta {
  background: linear-gradient(135deg, #1e293b 0%, #02143a 100%);
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 4rem 0;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.cta-content p {
  color: #94a3b8;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Services Page Styles */
.services-hero {
  background: linear-gradient(135deg, #1e293b 0%, #02143a 100%);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  margin-bottom: 3rem;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.services-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.services-overview {
  margin-bottom: 4rem;
}

.services-intro {
  text-align: center;
  font-size: 1.2rem;
  color: #64748b;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

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

.service-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e2e8f0;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

.service-card h3 {
  color: #1e40af;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.service-details {
  list-style: none;
  padding: 0;
}

.service-details li {
  color: #475569;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-details li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.process-section {
  background: #f8fafc;
  padding: 4rem 2rem;
  margin: 4rem -2rem 2rem;
  border-radius: 16px;
}

.process-section h2 {
  text-align: center;
  color: #1e40af;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  text-align: center;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: #3b82f6;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 1rem;
}

.process-step h3 {
  color: #1e40af;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.process-step p {
  color: #64748b;
  line-height: 1.6;
}

/* Contact Page Styles */
.contact-hero {
   background: linear-gradient(135deg, #1e293b 0%, #02143a 100%);
  color: white;
  text-align: center;
  padding: 5rem 2rem;
  margin-bottom: 3rem;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.contact-hero p {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin: 4rem 0;
}

.contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .expertise-areas {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

.contact-info h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.contact-cards {
  display: grid;
  gap: 1.5rem;
}

.contact-card {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.contact-card h3 {
  color: #1e40af;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.contact-card p {
  color: #64748b;
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: #3b82f6;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

.contact-form {
  background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e2e8f0;
}

.contact-form h2 {
  color: #1e40af;
  margin-bottom: 2rem;
  font-size: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #374151;
  font-weight: 600;
}

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

.free-consultation {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 2rem;
  border-radius: 12px;
  margin: 3rem 0;
  text-align: center;
}

.free-consultation h3 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

/* About Page Styles */
.about-hero {
  background: linear-gradient(135deg, #02143a 0%, #1e293b 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #cbd5e1;
}

.about-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: white;
}

.about-hero p {
  font-size: 1.3rem;
  color: #94a3b8;
  max-width: 600px;
  margin: 0 auto;
}

.company-story {
  margin: 4rem 0;
}

.story-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

.story-text h2 {
  color: #60a5fa;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.lead-text {
  font-size: 1.2rem;
  color: #60a5fa;
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.story-text p {
  color: #bcc4cf;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-image {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}

.values-section {
  background: rgb(17, 22, 65);
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 16px;
}

.values-section h2 {
  color: #60a5fa;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

.value-card {
  text-align: center;
  padding: 2rem;
}

.value-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.value-card h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  color: #bcc4cf;
  line-height: 1.6;
}

.why-choose-section {
  margin: 4rem 0;
}

.why-choose-section h2 {
  color: #60a5fa;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

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

.why-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

.why-card {
  background: rgb(17, 22, 65);
  padding: 2rem;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

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

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.why-card h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.why-card p {
  color: #bcc4cf;
  line-height: 1.6;
}

.expertise-section {
  background: rgb(17, 22, 65);
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 16px;
}

.expertise-section h2 {
  color: #60a5fa;
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.expertise-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.expertise-areas {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

.expertise-category h3 {
  color: #60a5fa;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.team-section {
  margin: 4rem 0;
  text-align: center;
}

.team-section h2 {
  color: #60a5fa;
  margin-bottom: 2rem;
  font-size: 2.5rem;
}

.team-intro {
  color: #bcc4cf;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.team-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.team-stat {
  background: rgb(17, 22, 65);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}

.location-section {
  background: rgb(17, 22, 65);
  padding: 4rem 2rem;
  margin: 4rem 0;
  border-radius: 16px;
}

.location-section h2 {
  color: #60a5fa;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.location-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

.location-info h3 {
  color: #60a5fa;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.location-info p {
  color: #bcc4cf;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.location-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.location-benefits li {
  color: #bcc4cf;
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.location-benefits li:before {
  content: "✓";
  color: #60a5fa;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.contact-cta h4 {
  color: #60a5fa;
  margin-bottom: 1rem;
}

.map-placeholder {
  background: rgba(96, 165, 250, 0.1);
  border: 2px dashed rgba(96, 165, 250, 0.3);
  border-radius: 12px;
  padding: 3rem;
  text-align: center;
}

.map-content h4 {
  color: #60a5fa;
  margin-bottom: 1rem;
}

.map-content p {
  color: #bcc4cf;
  margin-bottom: 0.5rem;
}

.map-note {
  font-style: italic;
  color: #94a3b8;
}

.cta-section {
  text-align: center;
   background: linear-gradient(135deg, #1e293b 0%, #02143a 100%);
  color: white;
  padding: 4rem 2rem;
  border-radius: 16px;
  margin-top: 4rem;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-section p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2rem;
}


.lang-btn{
  display: inline-block;
  background-color: #7bff;
  color: white;
  padding: 6px 12px;
  margin-left: 5px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.lang-btn.fr::after{
  content: "";
}
.lang-btn:hover{
  background-color: #0056b3;
  transform: scale(1.05);
  color: pink;
}

@media (max-width: 768px) {
  .lang-toggle {
    margin-left: 0;  
    
  }

  .lang-btn {
    display: block;
    width: 45px;
    text-align: center;
  }
  .lang-btn:hover{
  background-color: #0056b3;
  transform: scale(1.05);
  color: pink;
}
}
