* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy: #06285f;
  --deep-navy: #031e49;
  --orange: #ff6b1a;
  --dark: #111827;
  --text: #4b5563;
  --light: #f4f7fb;
  --white: #ffffff;
  --border: #e5e7eb;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1180px;
  margin: auto;
}

.section-padding {
  padding: 85px 0;
}

/* Top Bar */

.top-bar {
  background: var(--deep-navy);
  color: #fff;
  font-size: 15px;
}

.top-bar-content {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  padding: 8px 0;
  
}

.top-bar-content p {
  display: flex;
  align-items: center;
  gap: 8px;
  
}

/* Header */

.main-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 3px 18px rgba(0, 0, 0, 0.06);
}

.navbar {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  
}

.logo img {
  width: 400px;
  max-width: 100%;
  height: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  color: var(--dark);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-menu a:hover {
  color: var(--orange);
}

.header-btn {
  background: var(--orange);
  color: #fff;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  white-space: nowrap;
}

.header-btn:hover {
  background: var(--navy);
  color: #fff;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 34px;
  color: var(--navy);
  cursor: pointer;
}

/* Hero */

.hero-section {
  position: relative;
  min-height: 680px;
  background:
    linear-gradient(
      90deg,
      rgba(3, 30, 73, 0.92) 0%,
      rgba(3, 30, 73, 0.78) 42%,
      rgba(3, 30, 73, 0.2) 100%
    ),
    url("images/hero1.png");
  background-size: cover;
  background-position: center right;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 680px;
}

.hero-label {
  display: inline-block;
  color: #ff6b1a;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}

.hero-content h1 {
  color: #ffffff;
  font-size: 54px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 24px;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hero-btn-primary {
  background: #ff6b1a;
  color: #ffffff;
}

.hero-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.9);
}

.hero-btn-primary:hover {
  background: #ffffff;
  color: #06285f;
}

.hero-btn-secondary:hover {
  background: #ffffff;
  color: #06285f;
}

@media (max-width: 768px) {
  .hero-section {
    min-height: 620px;
    background:
      linear-gradient(
        90deg,
        rgba(3, 30, 73, 0.95) 0%,
        rgba(3, 30, 73, 0.85) 100%
      ),
      url("images/hero1.png");
    background-size: cover;
    background-position: center;
  }

  .hero-content h1 {
    font-size: 34px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .hero-btn {
    width: 100%;
  }
}

/* Section Titles */

.section-title {
  text-align: center;
  margin-bottom: 55px;
}

.section-title span {
  display: inline-block;
  color: var(--orange);
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.section-title h2 {
  color: var(--navy);
  font-size: 35px;
  font-weight: 800;
  line-height: 1.2;
  max-width: 820px;
  margin: auto;
}

/* About */

.about-section {
  background: var(--light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.about-content {
  background: #fff;
  padding: 45px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.about-content p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 16px;
}

.about-points {
  margin-top: 25px;
}

.about-points div {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 13px;
}

.about-points i {
  color: var(--orange);
  margin-right: 8px;
}

/* Services */

.services-section {
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.service-card {
  background: #fff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.service-content {
  padding: 30px;
  border-bottom: 3px solid var(--orange);
}

.service-content h3 {
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--text);
  font-size: 15px;
}

/* Why */

.why-section {
  background: var(--light);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.why-item {
  background: #fff;
  padding: 30px;
  display: flex;
  gap: 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.why-item span {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.why-item h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.why-item p {
  color: var(--text);
  font-size: 15px;
}

/* Process */

.process-section {
  background: #fff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-box {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-bottom: 3px solid var(--orange);
}

.process-box span {
  width: 58px;
  height: 58px;
  background: var(--navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-weight: 800;
}

.process-box h3 {
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.process-box p {
  color: var(--text);
  font-size: 15px;
}

/* Contact */

.contact-section {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  background: #fff;
  padding: 40px;
  border-left: 4px solid var(--orange);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.contact-info h3 {
  color: var(--navy);
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 16px;
}

.contact-info p {
  color: var(--text);
  font-size: 15px;
  margin-bottom: 18px;
}

.contact-details {
  margin-top: 28px;
}

.contact-details p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
}

.contact-details i {
  color: var(--orange);
}

.contact-details a {
  color: var(--dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.contact-form {
  background: #fff;
  padding: 36px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  border-top: 4px solid var(--orange);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid var(--border);
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.contact-form button {
  background: var(--navy);
  color: #fff;
  min-height: 48px;
  border: none;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  cursor: pointer;
}

.contact-form button:hover {
  background: var(--orange);
}

/* Footer */

.footer {
  background: var(--deep-navy);
  color: #fff;
  padding: 75px 0 0;
  border-top: 4px solid var(--orange);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-column:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  padding-right: 30px;
}

.footer-logo {
  width: 300px;
  max-width: 100%;
  height: auto;
}

.footer-column p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.8;
}

.footer-column h4 {
  position: relative;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 26px;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 52px;
  height: 3px;
  background: var(--orange);
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.86);
  font-size: 14px;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 4px;
}

.footer-column ul li a:hover,
.footer-contact a:hover {
  color: var(--orange);
  text-decoration-color: var(--orange);
}

.footer-contact p {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 15px;
}

.footer-contact i {
  color: var(--orange);
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 55px;
  padding: 22px 0;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
}

/* Responsive */

@media (max-width: 1200px) {
  .logo img {
    width: 400px;
    max-width: 100%;
    height: auto;
  }

  .hero-left h1 {
    font-size: 40px;
  }

  .hero-left {
    padding: 75px 45px;
  }
}

@media (max-width: 992px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .logo img {
    width: 380px;
    max-width: 100%;
    height: auto;
  }

  .hero-left::after {
    display: none;
  }
  .hero-right {
    height: 420px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-column:nth-child(2) {
    border-right: none;
  }
}

@media (max-width: 768px) {
  .top-bar-content {
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  .navbar {
    min-height: 76px;
  }

  .logo img {
    width: 380px;
    max-width: 100%;
    height: auto;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
  }

  .nav-menu.active {
    display: flex;
    position: absolute;
    top: 76px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 5%;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active li {
    margin-bottom: 14px;
  }

  .header-btn {
    display: none;
  }

  .hero-left {
    padding: 55px 25px;
  }

  .hero-left h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-btn {
    width: 100%;
  }

  .hero-right {
    height: 320px;
  }

  .section-title h2 {
    font-size: 30px;
  }

  .services-grid,
  .why-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-content,
  .contact-info,
  .contact-form {
    padding: 28px;
  }

  .section-padding {
    padding: 65px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-column {
    border-right: none !important;
    padding-right: 0 !important;
    padding-bottom: 28px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-column:last-child {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .logo img {
    width: 350px;
    max-width: 100%;
    height: auto;
  }

  .hero-left h1 {
    font-size: 29px;
  }
}

/* Floating Contact Buttons */
.floating-call {
  position: fixed;
  right: 25px;
  bottom: 25px;
  z-index: 9999;

  display: flex;
  align-items: center;
  gap: 10px;

  background: #ff6b1a;
  color: #fff;

  padding: 14px 22px;
  border-radius: 50px;

  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);

  transition: 0.3s;
}

.floating-call:hover {
  background: #06285f;
  color: #fff;
  transform: translateY(-3px);
}
