:root {
    --color-primary: #007bff;
    --color-primary-dark: #007bff;
    --color-primary-light: #4c99ff;
    --color-primary-foreground: #ffffff;

    /* === Secondary Colors === */
    --color-secondary: #1a202c;
    --color-secondary-95: rgba(0, 0, 0, 0.676);
    --color-secondary-80: rgba(26, 32, 44, 0.80);

    /* === Backgrounds === */
    --color-background: #1d2533;
    --color-background-dark: #111827;
    --color-background-light: #f9fafb;
    --color-card: #222831;
    --color-card-dark: #1f2937;
    --color-card-light: #ffffff;

    /* === Text Colors === */
    --color-foreground: #ffffff;
    --color-muted-foreground: #9ca3af;
    --color-text-dark: #1f2937; 

    /* === Borders === */
    --color-border: #374151;

    /* === Layout === */
    --header-height: 70px;
    --max-width: 1280px;
    --padding-x: 1rem;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--color-foreground);
    background-color: var(--color-background);
    line-height: 1.5;
}

a {
    text-decoration: none;
    color: inherit;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 72px;
  z-index: 20;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-menu li a {
  text-decoration: none;
  color: #1d2533;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-menu li a:hover {
  color: #007bff;
}

.nav-menu li a.active {
  color: #007bff;
  font-weight: 700;
  border-bottom: 2px solid #007bff;
  padding-bottom: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 30;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #0a2b47;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Close icon animation */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translateY(8px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translateY(-13px) translateX(2px);
}

/* Responsive Menu */
@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 72px;
    right: -100%;
    width: 250px;
    height: calc(100% - 80px);
    background-color: #111;
    flex-direction: column;
    gap: 1.5rem;
    padding: 40px 20px;
    transition: right 0.3s ease;
  }

  .nav-menu.show {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .logo-text {
    display: none;
  }

  .cta-button {
    display: none;
  }

  .nav-menu li a {
    font-size: 1.1rem;
    color: #fff;
  }

  .nav-menu li a:hover {
    color: #007bff;
  }
}

@media (max-width: 908px) {
  .logo-text {
    display: none;
  }
}

.logo-container {
  display: flex;
  align-items: center;
  line-height: 1.2;
}

.logo-mit {
  padding: 10px;
  font-size: 1.2rem;
  font-weight: 700;
  margin-right: 10px;
  border-radius: 4px;
}
.logo-mit img {
  width: 100px;
  height: 75px;
}

.logo-text h1 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #386b9c;
}
.logo-text p {
  font-size: 0.7rem;
  font-weight: 400;
  color: #386b9c;
}

.cta-button {
  padding: 8px 16px;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  font-weight: 600;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0056b3;
}

.hero-content-wrapper {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--padding-x);
    position: relative;
    width: 100%;
}

.block-highlight {
    color: var(--color-primary);
}
.divider {
    width: 5rem;
    height: 4px;
    background-color: var(--color-primary);
    margin-bottom: 1.5rem;
    border-radius: 2px;
}
.section-header {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.section-title2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-foreground);
    text-transform: uppercase;
}
@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-divider {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.section-subtitle1 {
    font-size: 1.125rem; 
    color:white !important;
}
.feature-card, .expertise-card {
    background-color: rgb(255, 255, 255);
    border: 1px solid #007bff;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    cursor: default;
    padding: 2rem;
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.feature-card:hover, .expertise-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.5);
    transform: translateY(-5px);
}
.icon-container1 {
    width: 4rem;
    height: 4rem;
    background-color: rgba(0, 123, 255, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.feature-card:hover .icon-container1,
.expertise-card:hover .icon-container1 {
    background-color: #107AC6;
    transform: scale(1.1);
}
.icon-lucide {
    font-size: 1.6rem;
    color: #107AC6;
    transition: color 0.3s ease;
    line-height: 1;
}
.feature-card:hover .icon-lucide,
.expertise-card:hover .icon-lucide {
    color: var(--color-primary-foreground);
}
.icon-lucide1 {
    font-size: 1.6rem;
    color: white;
    transition: color 0.3s ease;
    line-height: 1;
}
.feature-card:hover .icon-lucide1,
.expertise-card:hover .icon-lucide1 {
    color: var(--color-primary-foreground);
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.75rem;
}
.card-description {
    color: var(--color-muted-foreground);
    line-height: 1.6;
}

.focus-list, .details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    line-height: 1.5;
}

.focus-list .list-item {
    display: flex;
    align-items: flex-start;
    color: var(--color-muted-foreground);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.bullet-icon {
    color: var(--color-primary);
    margin-right: 0.5rem;
    line-height: 1.6;
}
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: var(--header-height);
}
.tagline-badge{
  display: inline-block;
  padding: 8px 16px;
  background: rgba(0, 123, 255, 0.201); 
  border: 1px solid rgba(0, 123, 255, 0.4); 
  border-radius: 9999px;
  color: #ffffff; 
  font-weight: 600;
  font-size: 0.875rem; 
  margin-bottom: 1.5rem;
}

.hero-section .content-box {
    animation: fadeInUp 1s ease-out 0.3s forwards;
}
.background-image {
    position: absolute;
    inset: 0;
    background-image: url('images/2.jpg');
    background-size: cover;
    background-position: center;
    z-index: 0;
}
.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right, 
        var(--color-secondary) 0%, 
        var(--color-secondary-95) 50%, 
        var(--color-secondary-80) 100%
    );
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-foreground);
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}
.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--color-muted-foreground);
}

@media (min-width: 768px) {
    .hero-description {
        font-size: 1.5rem;
    }
}
.button-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .button-group {
        flex-direction: row;
    }
}
.btn {
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.btn-primary1 {
  font-size: 1rem;
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 15px #007bff8c;
}

.btn-primary1:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}
.btn-secondary1 {
    background-color: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
}

.btn-secondary1:hover {
    background-color: var(--color-primary);
    color: var(--color-primary-foreground);
}
.arrow-icon {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}
.btn-primary1:hover .arrow-icon {
    transform: translateX(4px); 
}
.scroll-indicator-container {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 15;
    animation: bounce 2s infinite;
}

.scroll-indicator-body {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid var(--color-primary);
    border-radius: 9999px;
    display: flex;
    justify-content: center;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    background-color: var(--color-primary);
    border-radius: 9999px;
    margin-top: 0.5rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    justify-content: center;
    padding: 2rem 1.25rem;
    text-align: center;
  }

  .content-box {
    max-width: 100%;
    padding: 0 1rem;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .button-group {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }

  .btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.95rem;
  }

  .tagline-badge {
    font-size: 0.75rem;
    padding: 6px 14px;
    margin-bottom: 1rem;
  }

  .scroll-indicator-container {
    bottom: 1.2rem;
  }
}

/* For very small screens (phones under 480px) */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .btn {
    font-size: 0.85rem;
    padding: 0.65rem 1rem;
  }

  .arrow-icon {
    font-size: 1rem;
  }

  .divider {
    width: 60px;
    height: 3px;
  }

  .scroll-indicator-body {
    width: 1.2rem;
    height: 2rem;
  }
}

.about-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-background);
}
.feature-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.focus-block {
  width: 100%;
    background: linear-gradient(
        to bottom right,
        var(--color-secondary),
        var(--color-secondary-80)
    );
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}

@media (min-width: 768px) {
    .focus-block {
        padding: 3rem;
    }
}

.focus-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
    .focus-title {
        font-size: 1.875rem;
    }
}

.focus-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.focus-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-foreground);
    margin-bottom: 0.75rem;
}

.expertise-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--color-background);
}

.expertise-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .expertise-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.expertise-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: black;
    margin-bottom: 0.75rem;
}

.expertise-description {
    color: var(--color-muted-foreground);
    line-height: 1.6;
    margin-bottom: 1rem;
}
.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.stats-box {
    text-align: right;
    line-height: 1.2;
}
.stat-label{
  color: black !important;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #107AC6 !important;
}

.stat-label {
    font-size: 0.75rem;
    color: #107AC6;
}
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Responsive: Mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card-lg {
        padding: 25px 15px;
    }

    .stat-icon-container1 {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .stat-value-lg {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }
}
.details-list .list-item {
    display: flex;
    align-items: flex-start;
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.list-detail-text {
    padding-top: 0.125rem;
}
.partnerships-block {
    margin-top: 4rem;
    background: linear-gradient(
        to bottom right,
        var(--color-secondary),
        var(--color-secondary),
        rgba(26, 32, 44, 0.9)
    );
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid var(--color-border);
    animation: fadeInUp 1s ease-out forwards;
    opacity: 0;
}
@media (min-width: 768px) {
    .partnerships-block {
        padding: 3rem;
    }
}

.partnerships-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}
@media (min-width: 768px) {
    .partnerships-title {
        font-size: 1.875rem;
    }
}

.partnerships-grid {
    display: grid;
    gap: 2rem;
    text-align: center;
}
@media (min-width: 768px) {
    .partnerships-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.partnership-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-foreground);
    margin-bottom: 0.75rem;
}

.partnership-item p {
    color: var(--color-muted-foreground);
    font-size: 0.875rem;
}


@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.animate-fade-in { animation: fadeIn 0.8s ease-out forwards; opacity: 0; }
.animate-slide-in-right { animation: slideInRight 0.8s ease-out forwards; opacity: 0; }

.services-section {
    padding: 5rem 0;
    background-color: var(--color-background-light);
    font-family: 'Inter', sans-serif;
    color: var(--color-text-dark);
}

.dark-mode .services-section {
    background-color: var(--color-background-dark);
    color: var(--color-foreground);
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-header {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem; 
    font-weight: 800;
    margin-bottom: 1rem;
}
@media (min-width: 768px) {
    .section-title { font-size: 3rem; }
}

.text-primary { color: var(--color-primary); }

.dark-mode .section-title { color: var(--color-foreground); }
.dark-mode .text-primary { color: var(--color-primary); }

.divider {
    width: 5rem;
    height: 4px;
    background-color: var(--color-primary);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}
.dark-mode .section-subtitle { color: var(--color-muted-foreground); }
.content-grid {
    display: grid;
    gap: 2.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
    .content-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.text-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.card {
    background-color: var(--color-card-light);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.dark-mode .card {
    background-color: var(--color-card-dark);
    border-color: var(--color-border);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}
.dark-mode .card-title {
    color: var(--color-foreground);
}

.rationale-title {
    border-bottom: 1px solid rgba(34, 197, 94, 0.5);
    padding-bottom: 0.75rem;
    margin-bottom: 1.5rem;
}
.rationale-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #4b5563;
}
.dark-mode .rationale-list {
    color: var(--color-muted-foreground);
}
.list-item {
    display: flex;
    align-items: flex-start;
    line-height: 1.5;
}
.bullet-icon {
    color: var(--color-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    line-height: 1;
}
.milestone-card {
    border: 1px solid rgba(34, 197, 94, 0.5);
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.1), 0 10px 10px -5px rgba(34, 197, 94, 0.04); /* Adjusted shadow for glow effect */
}
.dark-mode .milestone-card {
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.2), 0 10px 10px -5px rgba(34, 197, 94, 0.08); /* Dark glow */
}
.card-description {
    line-height: 1.625;
    color: #4b5563;
}
.dark-mode .card-description {
    color: var(--color-muted-foreground);
}
.image-block {
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid #d1d5db;
}
.dark-mode .image-block {
    border-color: var(--color-border);
}

.image-component {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}
@media (min-width: 768px) {
    .image-component {
        aspect-ratio: auto;
    }
}
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.insight-card {
    padding: 1.5rem;
    text-align: center;
    border-color: #e5e7eb;
    transition: all 0.3s ease;
    box-shadow: none;
}
.dark-mode .insight-card {
    border-color: var(--color-border);
}

.insight-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3), 0 4px 6px -4px rgba(34, 197, 94, 0.2);
}
.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    background-color: var(--color-primary-light);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.dark-mode .icon-container {
    background-color: rgba(16, 185, 129, 0.2); 
}

.insight-card:hover .icon-container {
    background-color: var(--color-primary);
    transform: scale(1.05);
}

.icon {
    font-size: 1.75rem;
    color: var(--color-primary);
    line-height: 1;
    transition: color 0.3s ease;
}

.insight-card:hover .icon {
    color: var(--color-primary-foreground);
}

.stat-value2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: white !important;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.dark-mode .stat-label {
    color: var(--color-foreground);
}

.stat-description {
    font-size: 0.875rem;
    color: #6b7280;
}
.dark-mode .stat-description {
    color: var(--color-muted-foreground);
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}


.text-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.card {
    background-color: var(--color-card-light);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); 
}
.dark-mode .card {
    background-color: var(--color-card-dark);
    border-color: var(--color-border);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}
.dark-mode .card-title {
    color: var(--color-foreground);
}

.card-description {
    line-height: 1.625; /* leading-relaxed */
    color: #4b5563; /* Gray-600 */
}
.dark-mode .card-description {
    color: var(--color-muted-foreground);
}


/* --- Market Insights Grid (Small Cards) --- */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* grid-cols-2 */
    gap: 1.5rem; /* gap-6 */
}
@media (min-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
    }
}

.insight-card {
    /* Inherits base card style but adjusted padding/border */
    padding: 1.5rem; /* p-6 */
    text-align: center;
    border-color: #e5e7eb; /* border-gray-200 */
    transition: all 0.3s ease;
    box-shadow: none;
}
.dark-mode .insight-card {
    border-color: var(--color-border);
}
.dark-mode .icon-container {
    background-color: rgba(16, 185, 129, 0.2); /* Green-900/50 approx */
}

.insight-card:hover .icon-container {
    background-color: var(--color-primary); /* hover:bg-green-600 */
    transform: scale(1.05); /* hover:scale-105 */
}

.icon {
    font-size: 1.75rem; /* size={28} */
    color: var(--color-primary);
    line-height: 1;
    transition: color 0.3s ease;
}

.insight-card:hover .icon {
    color: var(--color-primary-foreground); /* group-hover:text-white */
}

.stat-value {
    font-size: 2.25rem; /* text-3xl */
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.dark-mode .stat-label {
    color: var(--color-foreground);
}

.stat-description {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* Gray-500 */
}
.dark-mode .stat-description {
    color: var(--color-muted-foreground);
}


.stat-card-lg {
    padding: 2rem; /* p-8 */
    text-align: center;
    border-color: #e5e7eb;
    transition: all 0.3s ease;
    /* bg-card/50 backdrop-blur-sm */
    background-color: rgba(255, 255, 255, 0.5); 
    backdrop-filter: blur(5px); 
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.dark-mode .stat-card-lg {
    background-color: rgba(31, 41, 55, 0.5); /* bg-card-dark/50 */
    border-color: var(--color-border);
}

.stat-card-lg:hover {
    border-color: var(--color-primary); /* hover:border-primary */
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3), 0 4px 6px -4px rgba(34, 197, 94, 0.2); /* shadow-glow */
}

/* Icon Container for Stats (W-16 H-16) */
.stat-icon-container1 {
    width: 4rem; /* w-16 (64px) */
    height: 4rem; 
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}
.dark-mode .stat-icon-container1 {
    background-color: rgba(16, 185, 129, 0.2); /* bg-primary/10 */
}

.stat-card-lg:hover .stat-icon-container1  {
    /* background-color: var(--color-primary); */
    transform: scale(1.1); /* hover:scale-110 */
}

.stat-icon {
    font-size: 2rem;
    line-height: 1;
    transition: color 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

.text-blocks-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.card {
    background-color: var(--color-card-light);
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 2rem; 
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); /* shadow-xl */
}
.dark-mode .card {
    background-color: var(--color-card-dark);
    border-color: var(--color-border);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-dark);
}
.dark-mode .card-title {
    color: var(--color-foreground);
}
.card-description {
    line-height: 1.625;
    color: #4b5563;
}
.dark-mode .card-description {
    color: var(--color-muted-foreground);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 1.5rem; /* gap-6 */
}
@media (min-width: 1024px) {
    .insights-grid {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
    }
}

.insight-card {
    /* Inherits base card style but adjusted padding/border */
    padding: 1.5rem; /* p-6 */
    text-align: center;
    border-color: #e5e7eb; /* border-gray-200 */
    transition: all 0.3s ease;
    box-shadow: none;
}
.dark-mode .insight-card {
    border-color: var(--color-border);
}

.dark-mode .icon-container {
    background-color: rgba(16, 185, 129, 0.2); /* Green-900/50 approx */
}

.insight-card:hover .icon-container {
    background-color: var(--color-primary); /* hover:bg-green-600 */
    transform: scale(1.05); /* hover:scale-105 */
}

.icon {
    font-size: 1.75rem; /* size={28} */
    color: var(--color-primary);
    line-height: 1;
    transition: color 0.3s ease;
}

.insight-card:hover .icon {
    color: var(--color-primary-foreground); /* group-hover:text-white */
}

.stat-value {
    font-size: 2.25rem; /* text-3xl */
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 0.5rem;
}
.dark-mode .stat-label {
    color: var(--color-foreground);
}

.stat-description {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* Gray-500 */
}
.dark-mode .stat-description {
    color: var(--color-muted-foreground);
}



.stats-section {
    padding: 5rem 0;
    background-color: white;
    background-image: linear-gradient(to bottom right, #f3f4f6, #f9fafb, rgba(249, 250, 251, 0.9));
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    text-align: center;
}

.dark-mode .stats-section {
    background-color: var(--color-background-dark);
    background-image: linear-gradient(to bottom right, #1f2937, #111827, rgba(17, 24, 39, 0.9));
    border-top-color: var(--color-border);
    border-bottom-color: var(--color-border);
}

/* ==== Grid Layout ==== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    justify-items: center;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.stat-card-lg {
    background: transparent;
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.stat-card-lg:hover {
    transform: translateY(-5px);
}

.stat-icon-container1 {
    width: 4rem;
    height: 4rem;
    background-color: rgba(34, 197, 94, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    transition: all 0.3s ease;
}

.dark-mode .stat-icon-container1 {
    background-color: rgba(16, 185, 129, 0.15);
}

.stat-card-lg:hover .stat-icon-container1 {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.stat-icon {
    font-size: 2rem;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.stat-card-lg:hover .stat-icon {
    color: var(--color-primary-foreground);
}

/* ==== Stat Texts ==== */
.stat-value-lg {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-foreground);
}

.stat-description {
    font-size: 0.95rem;
    color: var(--color-muted-foreground);
    margin-top: 0.25rem;
}

/* ==== Responsive Breakpoints ==== */
@media (max-width: 768px) {
    .stats-section {
        padding: 3.5rem 1.25rem;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.25rem;
    }

    .stat-card-lg {
        padding: 1.25rem;
    }

    .stat-value-lg {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.85rem;
    }

    .stat-icon-container1 {
        width: 3.5rem;
        height: 3.5rem;
    }

    .stat-icon {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-value-lg {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .stat-description {
        font-size: 0.8rem;
    }
}

.manufacturing-section {
    padding: 5rem 0;
    background-color: var(--color-background);
}
.dark-mode .manufacturing-section {
    background-color: var(--color-background-dark);
}


.processes-grid {
    display: grid;
    gap: 2rem;
}
@media (min-width: 768px) {
    .processes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .processes-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.process-card {
    padding: 2rem;
    text-align: left;
}
.process-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3), 0 4px 6px -4px rgba(34, 197, 94, 0.2); /* shadow-glow */
}
.process-icon-container {
    width: 4rem;
    height: 4rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}
.dark-mode .process-icon-container {
    background-color: rgba(16, 185, 129, 0.2);
}

.process-card:hover .process-icon-container {
    background-color: var(--color-primary);
    transform: scale(1.1);
}

.process-icon {
    font-size: 2rem;
    color: var(--color-primary);
    line-height: 1;
    transition: color 0.3s ease;
}
.process-card:hover .process-icon {
    color: var(--color-primary-foreground);
}

.process-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-text-dark);
}
.dark-mode .process-title {
    color: var(--color-foreground);
}

.process-description {
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.6;
}
.dark-mode .process-description {
    color: var(--color-muted-foreground);
}

.capabilities-list {
    list-style: none;
    padding: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem; /* space-y-2 */
}

.capability-item {
    display: flex;
    align-items: flex-start;
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-muted-foreground */
}
.dark-mode .capability-item {
    color: var(--color-muted-foreground);
}

.capability-bullet {
    color: var(--color-primary);
    margin-right: 0.5rem; /* mr-2 */
    margin-top: 0.05rem; /* mt-1 */
    font-size: 0.875rem;
    line-height: 1;
}


.capacity-block {
    margin-top: 4rem; /* mt-16 */
    /* Primary/10 is usually light green/teal */
    background-image: linear-gradient(to bottom right, rgba(255, 255, 255, 0.1), rgba(100, 116, 139, 0.1)); 
    border-radius: 1rem; /* rounded-2xl */
    padding: 3rem; /* md:p-12, default to p-8, larger on md */
    border: 1px solid rgba(34, 72, 197, 0.3); /* border-primary/30 */
    box-shadow: 0 20px 25px -5px rgba(34, 37, 197, 0.1), 0 10px 10px -5px rgba(34, 197, 94, 0.04); /* shadow-glow */
}

@media (max-width: 768px) {
    .capacity-block {
        padding: 2rem; /* p-8 */
    }
}

.dark-mode .capacity-block {
    background-image: linear-gradient(to bottom right, rgba(34, 197, 94, 0.15), rgba(55, 65, 81, 0.15)); 
    box-shadow: 0 20px 25px -5px rgba(34, 197, 94, 0.15), 0 10px 10px -5px rgba(34, 197, 94, 0.06);
}

.capacity-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 1.5rem; /* mb-6 */
    text-align: center;
    color: white;
}
.dark-mode .capacity-title {
    color: var(--color-foreground);
}
@media (min-width: 768px) {
    .capacity-title {
        font-size: 1.875rem; /* md:text-3xl */
    }
}

.capacity-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-4 */
    gap: 2rem; /* gap-8 */
    margin-top: 2rem; /* mt-8 */
    text-align: center;
}
@media (min-width: 768px) {
    .capacity-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.capacity-value {
    font-size: 2.25rem; /* text-4xl */
    font-weight: 700;
    color: #0056B3;
    margin-bottom: 0.5rem; /* mb-2 */
}

.capacity-label {
    font-size: 0.875rem; /* text-sm */
    font-weight: 600;
    color: white;
    margin-bottom: 0.25rem; /* mb-1 */
}
.dark-mode .capacity-label {
    color: var(--color-foreground);
}

.capacity-description {
    font-size: 0.75rem; /* text-xs */
    color: #6b7280; /* text-muted-foreground */
}
.dark-mode .capacity-description {
    color: var(--color-muted-foreground);
}

.certifications-section {
    padding: 5rem 0;
    /* Custom gradient from-background via-muted/30 to-background */
    background-image: linear-gradient(to bottom right, var(--color-background-light), rgba(7, 19, 45, 0.3), var(--color-background-light));
}
.dark-mode .certifications-section {
    background-image: linear-gradient(to bottom right, var(--color-background-dark), rgba(31, 41, 55, 0.3), var(--color-background-dark));
}

.certifications-header {
    /* Inherits section-header styles */
}

.certifications-grid {
    display: grid;
    gap: 1.5rem; /* gap-6 */
    margin-bottom: 4rem; /* mb-16 */
}
@media (min-width: 768px) {
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }
}
@media (min-width: 1024px) {
    .certifications-grid {
        grid-template-columns: repeat(4, 1fr); /* lg:grid-cols-4 */
    }
}

.certification-card {
    /* p-6 bg-card border-border text-center */
    padding: 1.5rem; /* p-6 */
    text-align: center;
    border-color: var(--color-border);
}
.dark-mode .certification-card {
    border-color: var(--color-border);
}

.certification-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 10px 15px -3px rgba(34, 197, 94, 0.3), 0 4px 6px -4px rgba(34, 197, 94, 0.2); /* hover:shadow-glow */
}

/* Icon Container for Certifications (w-16 h-16 bg-primary/10 rounded-full) */
.cert-icon-container {
    width: 4rem;
    height: 4rem;
    background-color: var(--color-primary-light);
    border-radius: 9999px; /* rounded-full */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1rem; /* mb-4 */
    transition: all 0.3s ease;
}
.dark-mode .cert-icon-container {
    background-color: rgba(16, 185, 129, 0.2); /* bg-primary/10 */
}

.certification-card:hover .cert-icon-container {
    background-color: var(--color-primary);
    transform: scale(1.1); /* group-hover:scale-110 */
}

.cert-icon {
    font-size: 2rem;
    color: white;
    line-height: 1;
    transition: color 0.3s ease;
}
.certification-card:hover .cert-icon {
    color: var(--color-primary-foreground);
}

.cert-title {
    font-size: 1.125rem; /* text-lg */
    font-weight: 700;
    margin-bottom: 0.5rem; /* mb-2 */
    color: var(--color-text-dark);
}
.dark-mode .cert-title {
    color: var(--color-foreground);
}

.cert-description {
    font-size: 0.875rem; /* text-sm */
    color: #6b7280; /* text-muted-foreground */
    line-height: 1.6;
}
.dark-mode .cert-description {
    color: var(--color-muted-foreground);
}

/* --- Quality Standards Block --- */

/* bg-gradient-to-br from-secondary via-secondary to-secondary/90 rounded-2xl p-12 border border-border shadow-card */
.standards-block {
    background-color: var(--color-background-light); /* Fallback */
    background-image: linear-gradient(to bottom right, #f3f4f6, #f9fafb, rgba(249, 250, 251, 0.9));
    border-radius: 1rem; /* rounded-2xl */
    padding: 3rem; /* md:p-12, default to p-8, larger on md */
    border: 1px solid #d1d5db; /* border-border */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06); /* shadow-card */
}

@media (max-width: 768px) {
    .standards-block {
        padding: 2rem; /* p-8 */
    }
}

.dark-mode .standards-block {
    background-color: var(--color-card-dark);
    background-image: linear-gradient(to bottom right, #1f2937, #111827, rgba(17, 24, 39, 0.9));
    border-color: var(--color-border);
}

.standards-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    margin-bottom: 2rem; /* mb-8 */
    text-align: center;
    color: var(--color-text-dark);
}
.dark-mode .standards-title {
    color: var(--color-foreground);
}
@media (min-width: 768px) {
    .standards-title {
        font-size: 1.875rem; /* md:text-3xl */
    }
}

.standards-list-grid {
    display: grid;
    gap: 1.5rem; /* gap-6 */
}
@media (min-width: 768px) {
    .standards-list-grid {
        grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
    }
}

.standard-item {
    display: flex;
    align-items: flex-start;
    transition: color 0.3s ease;
}

.standard-check-container {
    width: 1.5rem;
    height: 1.5rem;
    background-color: rgba(34, 197, 94, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    margin-top: 0.25rem; 
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.standard-check {
    font-size: 0.75rem; 
    color: var(--color-primary);
    line-height: 1;
    transition: color 0.3s ease;
}

.standard-item:hover .standard-check {
    color: var(--color-primary-foreground);
}

.standard-text {
    color: #6b7280; 
    line-height: 1.6;
}
.dark-mode .standard-text {
    color: var(--color-muted-foreground);
}

/* === PROJECTS SECTION === */
.projects-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  color: #222;
}

.projects-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}



.section-header p {
  color: #555;
  font-size: 1.1rem;
}

/* === GRID LAYOUT === */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.left-side {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* === CAPABILITIES CARD === */
.capabilities-card {
  background: linear-gradient(135deg, #007bff1e, #007bff2a);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid #c5cae9;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.capabilities-card h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.capabilities-list {
  list-style: none;
  padding: 0;
}

.capabilities-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 12px;
  color: #555;
}

.capabilities-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #007bff;
  font-weight: bold;
}

/* === PRODUCTION SCOPE CARD === */
.scope-card {
  background: #fff;
  border: 1px solid #ddd;
  border-left: 4px solid #007bff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.scope-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.scope-card p {
  color: #666;
  margin-bottom: 20px;
}

.progress-info {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
  color: #444;
  font-size: 0.95rem;
}

.progress-bar {
  height: 8px;
  background: #ddd;
  border-radius: 5px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  height: 100%;
  border-radius: 5px;
}

.progress-fill.initial {
  width: 20%;
  background: #007bff47;
}

.progress-fill.target {
  width: 80%;
  background: #007bff;
}

/* === IMAGE SIDE === */
.right-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
  border: 1px solid #ccc;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(0, 47, 255, 0.1) !important;
  border-radius: 50%;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-circle i {
  color: #007bff !important;
  font-size: 1.3rem;
}

.contact-section {
  padding: 80px 20px;
  background-color: #f9f9f9;
  color: #222;
}

.contact-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.section-header p {
  color: #555;
  font-size: 1.1rem;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}
.contact-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: #007bff;
  box-shadow: 0 6px 16px rgba(0, 123, 255, 0.2);
}
.contact-card .icon-circle {
  width: 60px;
  height: 60px;
  background: rgba(0, 123, 255, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 15px;
  transition: all 0.3s ease;
}
.contact-card:hover .icon-circle {
  background: #007bff;
  transform: scale(1.1);
}
.contact-card .icon-circle i {
  font-size: 1.4rem;
  color: #007bff;
}
.contact-card:hover .icon-circle i {
  color: #fff;
}
.contact-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222;
}
.contact-card p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 5px;
}
.contact-form-card {
  background: linear-gradient(135deg, #e3f2fd, #007bff46);
  padding: 50px 30px;
  border-radius: 15px;
  border: 1px solid #c5cae9;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.form-group label {
  font-weight: 600;
  color: #333;
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 5px rgba(0,123,255,0.3);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.btn-primary {
  display: inline-block;
  width: 100%;
  background: #007bff;
  color: #fff;
  border: none;
  font-weight: 600;
  padding: 14px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background: #005fcc;
  box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}
.footer {
  background: #111827;
  color: #d1d5db;
  padding: 60px 20px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.logo-icon {
  width: 73px;
  height: 53px;
  background: #007bff;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 1.2rem;
  border-radius: 10px;
}
.logo-icon img{
  border-radius: 10px;
}
.footer-about h3 {
  color: #fff;
  font-weight: bold;
}
.footer-about p {
  color: #9ca3af;
}
.footer-about .desc {
  margin: 15px 0;
  line-height: 1.6;
}
.social-links a {
  color: #007bff;
  font-size: 1.2rem;
  margin-right: 15px;
  transition: 0.3s;
}
.social-links a:hover {
  color: #fff;
  transform: scale(1.1);
}
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  margin-bottom: 15px;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 8px;
}
.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #007bff;
}
.footer-contact p {
  color: #9ca3af;
  margin-bottom: 10px;
}
.footer-contact i {
  color: #007bff;
  margin-right: 8px;
}
.footer-bottom {
  border-top: 1px solid #2d3748;
  text-align: center;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #9ca3af;
}
.wits{
  color: #FF4962;
  cursor: pointer;
}
.wits:hover{
   text-decoration: underline;

}
.makeinindia{
    width: auto;
    height: 80px;
    background: #fff;
    border-radius: 10px;
}