/* =========================================
   1. GLOBAL SETTINGS
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

:root {
  --primary-blue: #007bff;
  --secondary-blue: #1a4f9c;
  --light-bg: #f4f8fb;
  --white: #ffffff;
  --text-dark: #1e1e2f;
  --text-muted: #666666;
  --shadow-light: rgba(0,0,0,0.08);
  --shadow-hover: rgba(0,0,0,0.15);
  --btn-radius: 8px;
  --card-radius: 12px;
  --transition: 0.3s ease;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.center { text-align: center; }
.small { color: var(--text-muted); font-size: 15px; margin: 10px auto 40px; max-width: 600px; }

/* =====================================
   HEADER BASE
===================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
  padding: 12px 50px;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  max-height: 90px;
  width: auto;
}

/* =====================================
   DESKTOP NAVIGATION
===================================== */

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.main-nav li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: 0.3s;
}

.main-nav a:hover {
  color: #0077ff;
}
.dropdown-menu {
  display: none !important; 
  flex-direction: column;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-radius: 8px;
  padding: 10px 0;
  min-width: 220px;
  z-index: 999;
}

/* Desktop hover */
@media (min-width: 992px) {
  .dropdown:hover > .dropdown-menu {
    display: flex !important;
    padding-left: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
    color: ;
  }
}

@media (max-width: 991px) {
  .dropdown-menu {
    display: none;
    position: relative;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
  }

  .dropdown-menu.active {
    display: block !important;
  }
}



/* =====================================
   CTA BUTTON
===================================== */

.header-cta {
  display: flex;
  align-items: center;
}

.header-cta .btn-primary {
  padding: 12px 30px;
  font-size: 14px;
  font-weight: 600;
  background: #ff8a00;
  color: #fff;
  border-radius: 6px;
  transition: 0.3s;
  text-decoration: none;
}

.header-cta .btn-primary:hover {
  background: #e66600;
}

/* =====================================
   MOBILE STYLES
===================================== */

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  cursor: pointer;
  z-index: 1001;
}

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 998;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}


@media (max-width: 991px) {

  .mobile-toggle {
    display: block !important;
  }

  .header-cta {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: #fff;
    padding: 90px 30px 40px;
    box-shadow: -15px 0 40px rgba(0,0,0,0.08);
    transition: right 0.45s cubic-bezier(.77,0,.18,1);
    z-index: 999;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 20px;
  }

  .main-nav a {
    font-size: 18px;
    display: block;
    padding: 6px 0;
  }

  /* Mobile dropdown */
  .dropdown-menu {
    position: relative;
    box-shadow: none;
    border-radius: 0;
    padding-left: 15px;
    display: none;
  }

  .dropdown-menu.active {
    display: block;
  }

  .dropdown-menu li {
    padding: 6px 0;
  }
}





/* =========================================
   3. BUTTONS 
========================================= */
.btn-primary,
.btn-secondary,
.about-content .btn-primary,
.service-btn,
.quote-form-card .btn-primary,
.hero-buttons a {
  padding: 12px 35px 12px 22px; 
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.3s ease;
}

/* PRIMARY BUTTON ORANGE */
.btn-primary,
.about-content .btn-primary,
.quote-form-card .btn-primary,
.hero-buttons a.btn-primary,
.btn-secondary,
.hero-buttons a.btn-secondary,
.service-btn {
  background: #F57C00;
  color: #fff;
  border: none;
}

/* ARROW ICON */
.btn-primary::after,
.btn-secondary::after,
.about-content .btn-primary::after,
.service-btn::after,
.quote-form-card .btn-primary::after,
.hero-buttons a::after {
  content: "→";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}

/* HOVER EFFECT — ONLY ARROW MOVES */
.btn-primary:hover::after,
.btn-secondary:hover::after,
.about-content .btn-primary:hover::after,
.service-btn:hover::after,
.quote-form-card .btn-primary:hover::after,
.hero-buttons a:hover::after {
  transform: translateY(-50%) translateX(6px);
}

/* ICON INSIDE BUTTON */
.hero-buttons a i,
.service-btn i {
  font-size: 18px;
  
}

.service-btn:hover i,
.hero-buttons a:hover i {
  transform: translateX(4px);
}


/* =========================================
   4. HERO SECTION
========================================= */
.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.7)), 
              url('images/10.jpg') no-repeat center center/cover;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   5. ABOUT SECTION
========================================= */
.about-section {
  padding: 100px 0;
  background: var(--light-bg);
}
.about-wrapper {
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}
.about-image {
  flex: 1;
  min-width: 280px;
}
.about-image img {
  width: 100%;
  border-radius: var(--card-radius);
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}
.about-content {
  flex: 1;
  min-width: 280px;
}
.about-content h2 {
  font-size: 36px;
  color: var(--primary-blue);
  margin-bottom: 15px;
}
.about-content p {
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-points {
  list-style: none;
  margin-bottom: 25px;
}
.about-points li {
  margin-bottom: 10px;
  padding-left: 22px;
  position: relative;
}
.about-points li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--secondary-blue);
  font-weight: bold;
}
#about { scroll-margin-top: 120px; }

/* =========================================
   6. SERVICES, ADVANCED SERVICES, GRIDS, CARDS
========================================= */
.services-advanced {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
  font-family: 'Inter', sans-serif;
  color: #1e1e2f;
}
.services-advanced h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 10px;
  text-align: center;
}
.services-advanced p.center.small {
  font-size: 1rem;
  color: #555;
  margin-bottom: 60px;
  text-align: center;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 60px;
}
.service-card, .service-box {
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #e5eef6;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover, .service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}
.service-card h3, .service-box h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  margin-top: 5px;
  font-weight: 700;
  color: #1e1e2f;
  text-align: center;
  line-height: 1.2em;
}
.service-card p, .service-box p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #555;
  line-height: 1.6;
  text-align: center;
}




/* =========================================
   DELIVERY PROCESS — PIXEL MATCH DESIGN
========================================= */
.process {
  padding: 120px 0;
  background: #f4f8fb;
}

.process h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
}

.process .small {
  text-align: center;
  max-width: 600px;
  margin: 10px auto 0;
}

/* GRID */
.process-grid {
  width: 900px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* CARD FRAME */
.process-card {
  position: relative;
  height: 260px;
  border: 6px solid var(--primary-blue);
  background: #fff;
  border-radius: 0; 
  overflow: hidden;
}

/* IMAGE HOLDER */
.img-wrap {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: inherit;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.process-card:hover img {
  transform: scale(1.07);
}

/* EXACT CORNERS */
.item-tl { border-radius: 100px 0 0 0; }
.item-tr { border-radius: 0 100px 0 0; }
.item-bl { border-radius: 0 0 0 100px; }
.item-br { border-radius: 0 0 100px 0; }

/* FLOAT LABELS */
.step-label {
  position: absolute;
  top: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 7px 14px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.18);
  z-index: 3;
}

.label-left { left: 100px; }
.label-right { right: -80px; }

/* NUMBER BADGE */
.step-badge {
  width: 26px;
  height: 26px;
  background: var(--primary-blue);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .process-grid {
    width: 100%;
    max-width: 700px;
    margin: 40px auto 0;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .step-label.label-left { left: -30px; }
  .step-label.label-right { right: -30px; }
  .process-card { height: 220px; border-width: 5px; }
}

@media (max-width: 576px) {
  .process-grid {
    width: 90%;
    margin: 30px auto 0;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .step-label {
    top: 30px;
    left: 50% !important;
    transform: translateX(-50%);
  }
  .process-card { height: 200px; border-width: 4px; }
  .process h2 { font-size: 28px; }
  .process .small { font-size: 14px; }
}

/* =========================================
   FAQ SECTION
========================================= */
.faq {
  padding: 10px 0;
  background: #fff;
}

.faq-wrapper {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

.faq-left, .faq-right {
  flex: 1;
}

.faq-left h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-blue);
  margin-bottom: 5px;
  line-height: 1.2em;
}

.faq-left p {
  color: var(--text-muted);
  margin-bottom: 30px;
}

.faq-left img {
  width: 100%;
  border-radius: 18px;
  border: 6px solid var(--primary-blue);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
  transition: transform 0.35s ease;
}

.faq-left img:hover { transform: scale(1.02); }

/* ACCORDION */
.accordion {
  background: #f8fbff;
  border-radius: 14px;
  margin-bottom: 18px;
  overflow: hidden;
  border: 1px solid #e5eef6;
  transition: 0.25s ease;
}

.accordion:hover { border-color: var(--primary-blue); }
.accordion.active {
  background: #fff;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  border-color: var(--primary-blue);
}

.accordion-header {
  padding: 20px 24px;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-blue);
  cursor: pointer;
  position: relative;
}

.accordion-header::after {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 20px;
  transition: 0.3s;
}

.accordion.active .accordion-header::after { content: "–"; }

.accordion-body {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  color: #555;
  transition: all 0.3s ease;
}

.accordion.active .accordion-body {
  padding: 18px 24px 24px;
  max-height: 200px;
}

/* =========================================
   SERVICE BOXES
========================================= */
.service-box {
  display: flex;
  flex-direction: column;
  padding: 40px 30px;
  background: rgba(255,255,255,0.9);
  border-radius: 18px;
  border: 1px solid #e5eef6;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
  color: #fff;
}

.service-box p { flex-grow:1; color: var(--text-muted); margin-bottom:0; }

.service-btn {
  display: inline-block;
  margin-top: 18px;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  transition: all 0.3s ease;
  align-self: center;
}

.service-btn:hover,
.service-box:hover .service-btn {
  background: var(--primary-blue);
  color: #fff;
}

.service-btn i { margin-left: 6px; transition: transform 0.25s ease; }
.service-btn:hover i { transform: translateX(4px); }

/* =========================================
   WHY + FORM SECTION
========================================= */
.why-form-section { padding:80px 0; background:#f4f8fb; }

.why-form-wrapper {
  display:flex;
  gap:50px;
  align-items:flex-start;
  justify-content:space-between;
  flex-wrap:wrap;
}

.why-left { flex:1; min-width:300px; }
.why-left h2 { font-size:36px; color:var(--primary-blue); margin-bottom:15px; }
.why-left .small { font-size:15px; color:var(--text-muted); max-width:500px; margin-bottom:30px; }

.why-points { display:flex; flex-direction:column; gap:18px; }
.why-point {
  display:flex; align-items:center; gap:12px; font-weight:500;
  background:#fff; padding:14px 16px; border-radius:var(--card-radius);
  box-shadow:0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-point i { color:var(--secondary-blue); font-size:18px; }
.why-point:hover { transform:translateY(-4px); box-shadow:0 14px 28px rgba(0,0,0,0.12); }

/* FORM CARD */
.quote-form-card {
  flex:1 1 300px;
  max-width:100%;
  background:#fff;
  padding:35px 28px;
  border-radius:var(--card-radius);
  box-shadow:0 15px 35px rgba(0,0,0,0.1);
  box-sizing:border-box;
}

.quote-form-card h3 { margin-bottom:20px; color:var(--primary-blue); }

.quote-form-card form { display:flex; flex-direction:column; gap:15px; width:100%; }
.quote-form-card input,
.quote-form-card textarea {
  width:100%;
  padding:14px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
  outline:none;
  box-sizing: border-box;
}
.quote-form-card textarea { resize:none; }
.quote-form-card input:focus,
.quote-form-card textarea:focus { border-color:var(--secondary-blue); }

/* BUTTON — HERO STYLE */
.quote-form-card .btn-primary {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width:30%;
  background:#F57C00;
  color:#fff;
  border:none;
  border-radius:8px;
  font-weight:600;
  padding:12px 28px;
  font-size:15px;
  cursor:pointer;
  position: relative;
  transition: all 0.3s ease;
}

.quote-form-card .btn-primary::after {
  content:"→";
  margin-left:2px !important;
  font-size:16px;
  transition: margin-left 0.3s ease;
}

.quote-form-card .btn-primary:hover {
  background: rgb(230,102,0);
}
.quote-form-card .btn-primary:hover::after { margin-left:4px; }


/* =========================================
   TESTIMONIALS SECTION
========================================= */
.testimonials {
  padding: 100px 0;
  background: var(--light-bg);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.testimonial-card {
  background: var(--white);
  padding: 35px 25px;
  border-radius: 12px;
  border-bottom: 4px solid var(--primary-blue);
  transition: all var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px var(--shadow-hover);
}

.review {
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
}

.client {
  display: flex;
  align-items: center;
  gap: 12px;
}

.client img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-blue);
}

.client h4 {
  font-size: 16px;
  color: var(--primary-blue);
  margin: 0;
}

.client span {
  font-size: 13px;
  color: var(--text-muted);
}

/* RESPONSIVE TESTIMONIALS */
@media (max-width: 992px) {
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  position: relative;
  background: url("images/footerbg.jpg") center/cover no-repeat;
  color: white;
  padding: 60px 20px 30px;
  overflow: hidden;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 1;
}

.site-footer .footer-wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 30px;
  z-index: 2;
}

.footer-about, .footer-links, .footer-contact {
  flex: 1;
  min-width: 220px;
}

.footer-about {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-about .footer-logo {
  margin-bottom: 15px;
  text-align: left;
}

.footer-about .footer-logo img {
  max-height: 180px;
  width: auto;
  display: block;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover { text-decoration: none; }

.footer-contact p {
  margin: 0 0 10px 0;
}

.social-icons a {
  display: inline-block;
  color: white;
  margin-right: 12px;
  transition: color 0.3s ease;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

/* FOOTER RESPONSIVE */
@media (max-width: 768px) {
  .site-footer .footer-wrapper {
    flex-direction: column;
    align-items: left;
  }
  .footer-about, .footer-links, .footer-contact {
    min-width: auto;
    text-align: left;
    align-items: left;
  }
  .footer-about .footer-logo {
    text-align: center;
  }
}


/* RESPONSIVE */
@media (max-width:992px) {
  .why-form-wrapper { gap:40px; }
  .why-left, .quote-form-card { flex:1 1 100%; max-width:100%; text-align:center; }
}

@media (max-width:576px) {
  .why-left h2 { font-size:28px; text-align:center; }
  .quote-form-card { padding:25px; text-align:center; }
}

