/* ============================================================
   GLOBAL RESET & BASE STYLES
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", "Segoe UI", Helvetica, Arial, sans-serif;
  background-color: #fff;
  color: #000;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInPage 0.8s forwards;
  scroll-behavior: smooth;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
  background: #0033CC;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header img {
  height: 55px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

nav ul li a:hover {
  opacity: 0.7;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-container {
  display: flex;
  max-width: 1350px;
  margin: 40px auto 20px auto;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.hero-left {
  width: 28%;
  height: 340px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left center;
  border-radius: 6px;
}

.hero-right {
  width: 72%;
  text-align: left;
}

.hero-right h2 {
  font-size: 34px;
  margin-bottom: 15px;
  font-weight: 700;
}

.hero-right p {
  font-size: 18px;
  color: #333;
  line-height: 1.6;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  text-align: center;
  margin: 20px auto 30px auto;
  max-width: 1000px;
}

.cta-text {
  font-size: 20px;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
}

.cta-btn {
  background: #0033CC;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #005bb5;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section {
  max-width: 1200px;
  margin: 60px auto;
  text-align: center;
}

.why-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.why-card {
  width: 22%;
  padding: 20px;
  border-radius: 10px;
  background: #f7f9fc;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.why-card i {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  color: #0033CC;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-container {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.services-container h1 {
  text-align: center;
  margin-bottom: 50px;
}

.services-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.service-card {
  width: 33%;
  text-align: left;
  padding: 20px;
  border-radius: 10px;
  background: #fff;
}

.shadow-card {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-icon {
  width: 40px;
  height: 40px;
  color: #0033CC;
  margin-bottom: 15px;
}

.service-image-wrapper {
  overflow: hidden;
  border-radius: 8px;
}

.service-image {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-image:hover {
  transform: scale(1.05);
}

.service-title {
  text-transform: uppercase;
  margin-top: 25px;
  font-weight: 700;
}

.service-subtitle {
  font-weight: 600;
  margin-top: 10px;
}

.service-text {
  margin-top: 20px;
  line-height: 1.7;
  color: #333;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-container {
  max-width: 1300px;
  margin: 60px auto;
  padding: 0 20px;
}

.about-container h1 {
  text-align: center;
  margin-bottom: 50px;
}

.about-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
}

.about-image-wrapper {
  width: 50%;
  overflow: hidden;
  border-radius: 8px;
}

.about-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.about-image:hover {
  transform: scale(1.05);
}

.about-text-block {
  width: 50%;
  text-align: left;
  padding: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-container {
  max-width: 700px;
  margin: 40px auto;
  text-align: center;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 16px;
}

/* ============================================================
   FOOTER (UPDATED)
   ============================================================ */
footer {
  background: #0033CC;
  color: white;
  text-align: center;
  padding: 25px 20px;
  margin-top: 40px;
}

.footer-menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 35px;
  margin-bottom: 15px;
}

.footer-menu li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: opacity 0.3s ease;
}

.footer-menu li a:hover {
  opacity: 0.7;
}

.footer-contact {
  margin: 10px 0;
}

.footer-contact p {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: white;
}

.footer-copy {
  font-size: 13px;
  color: white;
}
/* ============================================================
   BACK TO TOP BUTTON
   ============================================================ */
#backToTop {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #0033CC;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

#backToTop:hover {
  background: #005bb5;
}

/* ============================================================
   RESPONSIVE DESIGN
   ============================================================ */
@media (max-width: 900px) {
  .services-row,
  .about-row,
  .why-row {
    flex-wrap: wrap;
  }

  .service-card,
  .about-text-block,
  .about-image-wrapper,
  .why-card {
    width: 100%;
  }

  .hero-container {
    flex-wrap: wrap;
  }

  .hero-left {
    width: 100%;
    height: 250px;
  }

  .hero-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .footer-menu {
    flex-direction: column;
    gap: 10px;
  }
}

* THANK YOU PAGE */
.thankyou-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70vh;
  text-align: center;
}

.thankyou-box {
  background: #f7f9fc;
  padding: 40px 50px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  animation: fadeIn 0.8s ease-out, slideUp 0.8s ease-out;
}

.success-icon {
  width: 60px;
  height: 60px;
  color: #0033CC;
  margin-bottom: 20px;
}

.thankyou-box h1 {
  margin-bottom: 20px;
  font-size: 32px;
  font-weight: 700;
}

.thankyou-box p {
  margin-bottom: 25px;
  font-size: 18px;
  color: #333;
}

