/* AMANI PETROCHEMICAL AND GAS - PROFESSIONAL DESIGN */

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

:root {
  --dark-bg: #ffffff;
  --dark-secondary: #f5f7fa;
  --orange-primary: #0055cc;
  --orange-secondary: #e63946;
  --yellow-accent: #ffb700;
  --text-white: #0a0e27;
  --text-gray: #4a5568;
  --border: #e0e5ed;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  background: #ffffff;
  color: #1a1a1a;
  overflow-x: hidden;
}

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

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo img {
  height: 60px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  color: #000000;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s;
  position: relative;
}

nav a:hover {
  color: #0055cc;
}

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

nav a:hover::after {
  width: 100%;
}

.btn-cta {
  background: #0055cc;
  color: #ffffff !important;
  padding: 0.8rem 1.8rem;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-cta:hover {
  background: #dc2626;
  transform: translateY(-2px);
}

.desktop-cta {
  display: block;
}

.mobile-cta {
  display: none;
}

.mobile-cta .btn-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
}

/* HAMBURGER MENU */
.menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  gap: 0.4rem;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  transition: all 0.3s ease;
  display: block;
}

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

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

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

/* MOBILE NAVIGATION */
.nav-menu {
  display: block;
}

.nav-menu ul {
  display: flex;
  flex-direction: row;
}

.nav-menu.active {
  max-height: 500px;
}

/* SCROLL ANIMATIONS */
.fade-in-up {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.6s ease-out,
    transform 0.6s ease-out;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 85vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background-attachment: scroll;
  margin: 0;
  padding: 0;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 14, 39, 0.4),
    rgba(10, 14, 39, 0.35)
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 2rem;
  max-width: 800px;
  animation: slideUp 0.8s ease;
}

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

.hero h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
}

.hero .orange {
  color: #ffb700;
}

.hero p {
  font-size: 1.2rem;
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-primary {
  background: var(--orange-primary);
  color: var(--text-white);
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--orange-secondary);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-white);
  padding: 1rem 2rem;
  border: 2px solid var(--text-white);
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
}

/* SECTION TITLES */
.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: 2.8rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title .accent {
  color: var(--orange-primary);
}

.section-title p {
  font-size: 1.1rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* STATS SECTION */
.stats {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa, #e8ecf3);
  margin: 0;
  min-height: auto;
  display: flex;
  align-items: center;
}

.stats .container {
  width: 100%;
}

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

.stat-card {
  text-align: center;
  padding: 1.8rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 85, 204, 0.03);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 107, 53, 0.1),
    transparent
  );
  transition: left 0.5s;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-card:hover {
  border-color: var(--orange-primary);
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0055cc;
  margin-bottom: 0.3rem;
}

.stat-label {
  color: var(--text-gray);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ABOUT SECTION WITH LAYERED IMAGES */
.about-section {
  padding: 6rem 2rem;
  background: #ffffff;
}

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

.about-images {
  position: relative;
  height: 500px;
}

/* NEW CEO SECTION LAYOUT */
.ceo-section-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.ceo-image-large {
  width: 100%;
  height: 900px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(255, 107, 53, 0.2);
}

.ceo-img-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.ceo-info-card {
  background: rgba(212, 175, 55, 0.05);
  padding: 2.5rem;
  border-left: 5px solid #1e3a8a;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.ceo-info-card h3 {
  font-size: 2rem;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.ceo-title {
  color: #1e3a8a;
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ceo-description {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.ceo-quote {
  background: rgba(255, 107, 53, 0.1);
  padding: 1.5rem;
  border-left: 4px solid var(--orange-primary);
  margin-top: 2rem;
  border-radius: 4px;
}

.ceo-quote p {
  font-style: italic;
  color: var(--text-gray);
  line-height: 1.8;
  margin: 0;
}

/* OLD CEO GRID - KEEP FOR REFERENCE */
.ceo-grid {
  display: none;
}

/* Old styles hidden */
.ceo-image-wrapper {
  display: none;
}

.ceo-glass-overlay {
  display: none;
  margin-bottom: 0.5rem;
}

.about-img-1 {
  position: absolute;
  width: 320px;
  height: 380px;
  top: 0;
  left: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.about-img-2 {
  position: absolute;
  width: 340px;
  height: 320px;
  bottom: 0;
  right: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.about-content h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.about-content p {
  color: var(--text-gray);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.about-list-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.2);
  border-left: 4px solid var(--orange-primary);
  border-radius: 4px;
  margin-bottom: 1rem;
  align-items: flex-start;
}

.about-list-icon {
  font-size: 2rem;
  color: var(--orange-primary);
  background: rgba(255, 107, 53, 0.15);
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s;
}

.about-list-item:hover .about-list-icon {
  background: rgba(255, 107, 53, 0.3);
  transform: scale(1.1);
}

.about-list-item strong {
  color: var(--orange-primary);
  display: block;
}

/* SERVICES SECTION WITH DARK CARDS */
.services-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0f4f8 100%);
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  height: 400px;
  position: relative;
  transition: all 0.3s;
}

.card-icon {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 2rem;
  color: var(--orange-primary);
  background: rgba(255, 107, 53, 0.2);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  z-index: 10;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}

.service-card:hover .card-icon {
  background: rgba(255, 107, 53, 0.4);
  transform: scale(1.1);
}

.service-card img {
  width: 100%;
  height: 50%;
  object-fit: cover;
}

.service-card-content {
  padding: 1.5rem;
  height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-content h3 {
  font-size: 1.2rem;
  color: #0055cc;
  margin-bottom: 0.4rem;
}

.service-card-content p {
  font-size: 0.8rem;
  color: #555555;
  line-height: 1.5;
}

.service-card:hover {
  border-color: #1e3a8a;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.2);
}

/* LAYERED CONTENT SECTION */
.content-overlap {
  background: var(--dark-bg);
  padding: 6rem 2rem;
  position: relative;
}

.overlap-container {
  position: relative;
  height: 600px;
  margin-bottom: 4rem;
}

.overlap-image-left {
  position: absolute;
  width: 45%;
  height: 400px;
  left: 0;
  top: 50px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.overlap-image-right {
  position: absolute;
  width: 45%;
  height: 400px;
  right: 0;
  bottom: 0;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.overlap-text {
  position: absolute;
  right: 0;
  top: 0;
  width: 50%;
  background: rgba(13, 17, 23, 0.95);
  padding: 3rem;
  border-radius: 8px;
  z-index: 3;
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
}

.overlap-text h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #1e3a8a;
}

.overlap-text p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* FEATURES GRID */
.features-section {
  padding: 6rem 2rem;
  background: #f8f9fa;
}

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

.feature-item {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  text-align: center;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  font-size: 3.5rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90px;
  height: 90px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 50%;
  transition: all 0.3s;
}

.feature-icon i {
  display: inline-block;
}

.feature-item:hover .feature-icon {
  background: rgba(212, 175, 55, 0.2);
  transform: scale(1.1);
}

.feature-item h4 {
  font-size: 1.2rem;
  color: #1a1a1a;
  margin-bottom: 0.8rem;
  font-weight: 700;
}

.feature-item p {
  color: #666666;
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-item:hover {
  border-color: #1e3a8a;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
}

/* CONTACT FORM SECTION */
.contact-section {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  padding: 2rem;
  background: rgba(212, 175, 55, 0.08);
  border-left: 4px solid #1e3a8a;
  border-radius: 8px;
}

.contact-info h3 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
  color: var(--orange-primary);
}

.contact-info-item {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-item h4 {
  color: var(--text-white);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.contact-info-item p {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.contact-form {
  background: rgba(13, 17, 23, 0.6);
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 8px;
}

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

.form-group label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  background: var(--dark-bg);
  border: 1px solid var(--border);
  color: var(--text-white);
  border-radius: 4px;
  font-family: inherit;
  transition: all 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-gray);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange-primary);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  background: #0055cc;
  color: #ffffff !important;
  padding: 1rem 2rem;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-submit:hover {
  background: #e63946;
  color: #ffffff;
  transform: translateY(-2px);
}

/* FOOTER */
footer {
  background: #f8f9fa;
  border-top: 2px solid #1e3a8a;
  padding: 4rem 2rem 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #1e3a8a;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 1px;
}

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

.footer-col ul li {
  margin-bottom: 0.8rem;
}

.footer-col a {
  color: #666666;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #1e3a8a;
}

.footer-logo-section {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer-logo-section img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-bottom {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.85rem;
  padding-top: 2rem;
}

/* ===== MOBILE RESPONSIVE ===== */

/* Tablet/Medium Screens (768px and below) */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  .header-content {
    padding: 0 15px;
  }

  .logo img {
    height: 45px;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 998;
  }

  .nav-menu.active {
    max-height: 400px;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 1.5rem 0;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(0, 85, 204, 0.15);
  }

  .nav-menu li:last-child {
    border-bottom: none;
  }

  .nav-menu a {
    display: block;
    padding: 1rem 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s;
  }

  .nav-menu a:hover {
    color: #ffb700;
    background: rgba(230, 57, 70, 0.1);
  }

  .mobile-cta {
    display: block;
  }

  .mobile-cta .btn-cta {
    display: block;
    margin: 0 15px 15px 15px;
    padding: 0.8rem 1.5rem;
  }

  .hero {
    height: 60vh;
    min-height: 400px;
  }

  .hero-content {
    padding: 2rem 1.5rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

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

  .section-title p {
    font-size: 0.95rem;
  }

  .stats {
    padding: 3rem 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .about-section {
    padding: 4rem 2rem;
  }

  .about-grid,
  .ceo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-images {
    height: 350px;
  }

  .about-img-1 {
    width: 200px;
    height: 250px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-img-2 {
    width: 220px;
    height: 200px;
    bottom: 0;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 0.95rem;
  }

  .ceo-image-wrapper {
    height: 450px;
    margin-bottom: 2rem;
  }

  .ceo-content {
    padding: 1.5rem;
  }

  .ceo-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }

  .ceo-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
  }

  .services-section {
    padding: 4rem 2rem;
  }

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

  .service-card {
    height: 350px;
  }

  .service-card-content h3 {
    font-size: 1.1rem;
  }

  .service-card-content p {
    font-size: 0.85rem;
  }

  .content-overlap {
    padding: 4rem 2rem;
  }

  .overlap-container {
    height: auto;
    margin-bottom: 2rem;
  }

  .overlap-image-left,
  .overlap-image-right {
    position: static !important;
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    left: 0 !important;
    right: 0 !important;
  }

  .overlap-text {
    position: static !important;
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 2rem;
    right: 0 !important;
    left: 0 !important;
    top: auto !important;
    background: rgba(13, 17, 23, 0.95);
  }

  .overlap-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
  }

  .overlap-text p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  /* CEO SECTION TABLET */
  .ceo-section-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ceo-image-large {
    height: 400px;
  }

  .ceo-info-card {
    padding: 2rem;
  }

  .ceo-info-card h3 {
    font-size: 1.6rem;
  }

  .ceo-title {
    font-size: 0.9rem;
  }

  .ceo-description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

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

  .feature-item {
    padding: 1.5rem;
  }

  .feature-item h4 {
    font-size: 1.1rem;
  }

  .feature-item p {
    font-size: 0.9rem;
  }

  .feature-icon {
    font-size: 2.8rem;
    width: 70px;
    height: 70px;
    margin-bottom: 1rem;
  }

  .contact-section {
    padding: 4rem 2rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .contact-info h3 {
    font-size: 1.3rem;
  }

  .contact-form {
    padding: 1.5rem;
  }

  footer {
    padding: 3rem 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .footer-col a {
    font-size: 0.85rem;
  }

  .footer-bottom {
    font-size: 0.8rem;
  }

  footer {
    padding: 3rem 2rem 1.5rem;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
  }

  .footer-col h4 {
    margin-bottom: 1rem;
    font-size: 0.9rem;
  }

  .footer-col ul li {
    margin-bottom: 0.7rem;
  }

  .footer-col a {
    font-size: 0.85rem;
  }

  .footer-logo-section {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .footer-logo-section img {
    height: 35px;
  }

  .footer-bottom {
    font-size: 0.75rem;
  }
}

/* Mobile Screens (480px and below) */
@media (max-width: 480px) {
  .container {
    padding: 0 12px;
  }

  .header-content {
    padding: 0 12px;
    gap: 1rem;
  }

  .logo img {
    height: 40px;
  }

  .menu-toggle {
    display: flex;
  }

  .desktop-cta {
    display: none;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(13, 17, 23, 0.98);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 998;
  }

  .nav-menu.active {
    max-height: 350px;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 1rem 0;
    gap: 0;
  }

  .nav-menu li {
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  }

  .nav-menu a {
    display: block;
    padding: 0.8rem 15px;
    font-size: 0.9rem;
    color: #ffffff;
  }

  .nav-menu a:hover {
    color: #ffb700;
  }

  .mobile-cta {
    display: block;
  }

  .mobile-cta .btn-cta {
    display: block;
    margin: 0 12px 12px 12px;
    padding: 0.7rem 1rem;
    font-size: 0.8rem;
  }

  .hero {
    height: 90vh;
    min-height: 350px;
  }

  .hero-content {
    padding: 1.5rem 1rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.5rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    width: 100%;
  }

  .section-title {
    margin-bottom: 2.5rem;
  }

  .section-title h2 {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    letter-spacing: 0;
  }

  .section-title p {
    font-size: 0.85rem;
  }

  .stats {
    padding: 2rem 1rem;
  }

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

  .stat-card {
    padding: 1.2rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.8rem;
  }

  .about-section {
    padding: 2.5rem 1rem;
  }

  .about-grid,
  .ceo-grid {
    gap: 1.5rem;
  }

  .about-images {
    height: 280px;
  }

  .about-img-1 {
    width: 160px;
    height: 200px;
  }

  .about-img-2 {
    width: 170px;
    height: 150px;
  }

  .about-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .about-content p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
  }

  .about-list {
    gap: 0.8rem;
    margin-top: 1.5rem;
  }

  .about-list-item {
    padding: 0.8rem;
    padding-left: 1rem;
  }

  .ceo-section-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .ceo-image-large {
    height: 480px;
  }

  .ceo-info-card {
    padding: 1.5rem;
    border-left-width: 4px;
  }

  .ceo-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .ceo-title {
    font-size: 0.8rem;
    margin-bottom: 1rem;
  }

  .ceo-description {
    font-size: 0.75rem;
    line-height: 1.6;
    margin-bottom: 0.8rem;
  }

  .ceo-quote {
    padding: 1rem;
    margin-top: 1.5rem;
  }

  .ceo-quote p {
    font-size: 0.7rem;
  }

  .services-section {
    padding: 2.5rem 1rem;
  }

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

  .service-card {
    height: auto;
    /* min-height: 280px; */
    height: 345px;
  }

  .service-card img {
    height: 40%;
    min-height: 150px;
  }

  .service-card-content {
    padding: 1.3rem;
    background: rgba(0, 85, 204, 0.02);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: auto;
    max-height: 60%;
    overflow: auto;
    transition: all 0.3s;
  }

  .service-card-content h3 {
    font-size: 1rem;
  }

  .service-card-content p {
    font-size: 0.8rem;
  }

  .service-card-content h3 {
    font-size: 1rem;
  }

  .service-card-content p {
    font-size: 0.8rem;
  }

  .card-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .content-overlap {
    padding: 2.5rem 1rem;
  }

  .overlap-container {
    margin-bottom: 1.5rem;
  }

  .overlap-image-left,
  .overlap-image-right {
    height: 250px;
    margin-bottom: 1.5rem;
  }

  .overlap-text {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .overlap-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
  }

  .overlap-text p {
    font-size: 0.85rem;
  }

  .features-grid {
    gap: 1rem;
  }

  .feature-item {
    padding: 1.2rem;
  }

  .feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .feature-item p {
    font-size: 0.8rem;
  }

  .feature-icon {
    font-size: 2.3rem;
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }

  .contact-section {
    padding: 2.5rem 1rem;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }

  .contact-info {
    padding: 1rem;
  }

  .contact-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .contact-info-item {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
  }

  .contact-info-item h4 {
    font-size: 0.9rem;
  }

  .contact-info-item p {
    font-size: 0.8rem;
  }

  .contact-form {
    padding: 1rem;
  }

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

  .form-group label {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
  }

  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #1e3a8a;
    color: #1a1a1a;
    background: #ffffff;
    border-radius: 4px;
    font-family: inherit;
    transition: all 0.3s;
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    color: #999999;
  }

  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
  }

  .form-group input::placeholder,
  .form-group textarea::placeholder {
    font-size: 0.9rem;
  }

  .form-group textarea {
    min-height: 90px;
  }

  .form-submit {
    padding: 0.8rem 1.2rem;
    font-size: 0.8rem;
    width: 100%;
  }

  /* HERO MOBILE */
  .hero {
    background-attachment: scroll;
    height: 75vh;
  }

  .hero-content {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 0.8rem;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  footer {
    padding: 2rem 1rem 1rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .footer-col h4 {
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
  }

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

  .footer-col a {
    font-size: 0.8rem;
  }

  .footer-logo-section {
    padding: 1.5rem 0;
    margin-bottom: 1.5rem;
  }

  .footer-logo-section img {
    height: 35px;
    margin-bottom: 0.8rem;
  }

  .footer-bottom {
    font-size: 0.75rem;
    padding-top: 1rem;
  }
}

/* Extra Small Screens (under 360px) */
@media (max-width: 360px) {
  .container {
    padding: 0 10px;
  }

  .header-content {
    padding: 0 10px;
  }

  .logo img {
    height: 35px;
  }

  nav ul {
    gap: 0.3rem;
    padding: 0.8rem 0;
  }

  nav a {
    font-size: 0.75rem;
  }

  .btn-cta {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }

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

  .hero p {
    font-size: 0.85rem;
  }

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

  .stats-grid {
    gap: 0.8rem;
  }

  .stat-card {
    padding: 1rem;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .about-img-1,
  .about-img-2 {
    width: 140px;
  }

  .about-img-1 {
    height: 180px;
  }

  .about-img-2 {
    height: 130px;
  }

  .service-card {
    height: 280px;
  }

  .overlap-image-left,
  .overlap-image-right {
    height: 220px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}
