:root {
  --primary-blue:#003366;
  --secondary-blue:#00509d;
  --light-bg:#f4f8fb;
  --white:#ffffff;
  --text-dark:#222222;
  --text-muted:#666666;
  --shadow-light:rgba(0,0,0,0.08);
  --shadow-hover:rgba(0,0,0,0.15);
  --btn-radius:6px;
  --card-radius:12px;
  --transition:0.3s ease;
}

/* GLOBAL */
body{
  font-family:'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  line-height:1.6;
  color:var(--text-dark);
  margin:0;
  background:var(--white);
}
.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 */
.site-header{
  position:sticky;
  top:0;
  z-index:999;
  background:var(--white);
  box-shadow:0 2px 15px rgba(0,0,0,0.08);
  padding:12px 0;
}
.header-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

/* LOGO IMAGE */
.logo {
  display:flex;
  align-items:center;
}
.logo-img{
  max-height:90px;
  width:auto;
}
.logo span{
  margin-left:10px;
  font-size:24px;
  color:var(--secondary-blue);
}

/* 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:var(--text-dark);
  font-weight:500;
  transition:color 0.3s;
}
.main-nav a:hover{color:var(--primary-blue);}

/* DROPDOWN MENU */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  background:var(--white);
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
  border-radius:8px;
  padding:10px 0;
  display:none;
  flex-direction:column;
  min-width:200px;
  z-index:99;

  /* slide down animation */
  max-height:0;
  overflow:hidden;
  transition:max-height 0.35s ease, padding 0.35s ease;
}
.dropdown-menu.active{
  display:flex;
  max-height:500px; /* enough to show all items */
  padding:10px 0;
}
.dropdown:hover .dropdown-menu{
  display:flex;
  max-height:500px;
  padding:10px 0;
}

.dropdown-menu li{
  padding:8px 20px;
}
.dropdown-menu li a{
  color:var(--text-dark);
}

/* HEADER CTA */
.header-cta .btn-primary{
  padding:12px 20px;
  font-size:14px;
}

/* MOBILE TOGGLE */
.mobile-toggle{
  display:none;
  cursor:pointer;
  font-size:20px;
}

/* HERO SECTION */
.hero{
  position: relative;
  height: 450px;
  background: url("images/5.jfif") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

/* BLACK GRADIENT */
.hero-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.55)
  );
  z-index: 1;
}

/* CONTENT */
.hero-content{
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding: 0 20px;
}

.hero h1{
  font-size: 38px;
  margin-bottom: 15px;
}

.hero p{
  font-size: 17px;
  margin-bottom: 25px;
  opacity: 0.95;
}

/* ===== BUTTON AREA ===== */
.hero-buttons{
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Common button styles */
.btn-primary,
.btn-secondary {
  padding: 12px 26px;
  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;
  background: #F57C00;           
  color: #fff;                   
  transition: all 0.3s ease;
  gap: 8px;                      
}

/* Hover effect */
.btn-primary:hover,
.btn-secondary:hover {
  background: rgb(230, 102, 0);  
}

/* Arrow after text */
.btn-primary::after,
.btn-secondary::after {
  content: "→";
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary:hover::after,
.btn-secondary:hover::after {
  transform: translateX(4px);
}

/* Icon inside buttons */
.hero-buttons a i {
  font-size: 18px;
}

/* MOBILE RESPONSIVE */
@media (max-width:768px){
  .hero{
    height: 380px;
  }

  .hero h1{
    font-size: 26px;
  }

  .hero p{
    font-size: 14px;
  }

  .hero-buttons a {
    width: 100%;            
    justify-content: center;
    padding: 12px 0;
  }
}



/* SERVICES */
.moving-services{
  padding:80px 0;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}
.service-card{
  background:#fff;
  border-radius:var(--card-radius);
  padding:30px 20px;
  position:relative;
  overflow:hidden;
  border:1px solid rgba(0,0,0,0.05);
  transition:transform .35s ease,box-shadow .35s ease;
}
.service-card::before{
  content:'';
  position:absolute;
  top:-50%;
  left:-50%;
  width:200%;
  height:200%;
  background:linear-gradient(45deg,#004a99,#007acc,#00bfff);
  opacity:0.08;
  transform:rotate(25deg);
}
.service-card:hover{
  transform:translateY(-8px);
  box-shadow:0 20px 35px rgba(0,0,0,0.12);
}
.card-content{position:relative;z-index:2;}
.icon-wrapper{
  width:70px;
  height:70px;
  border-radius:50%;
  background:linear-gradient(135deg,#004a99,#007acc);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:15px;
  transition:transform 0.3s;
}
.icon-wrapper i{color:white;font-size:28px;}
.service-card:hover .icon-wrapper{transform:scale(1.1);}
.service-card h3{
  font-size:1.2rem;
  margin-bottom:10px;
  color:var(--primary-blue);
}
.service-card:hover h3{color:var(--secondary-blue);}
.service-card p{font-size:0.95rem;margin-bottom:10px;color:#555;}
.service-card ul{list-style:none;padding:0;font-size:0.9rem;}
.service-card ul li{margin-bottom:6px;transition:transform .3s;}
.service-card:hover ul li{transform:translateX(5px);}
.service-card ul li::before{content:'✔';margin-right:8px;color:#007acc;}

/* ===== WHY CHOOSE + 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 .3s ease, box-shadow .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);
}

/* Center align button text */
.quote-form-card .btn-primary {
  display: inline-flex;        
  justify-content: center;     
  align-items: center;         
  text-align: center;          
  width: 20%;                 
}


.quote-form-card .btn-primary:hover {
  background: rgb(230, 102, 0);
}

@media (max-width: 576px) {
  .why-left h2 {
    font-size: 28px;
    text-align: center;
  }
  .quote-form-card {
    padding: 25px;
    text-align: center;
  }

  /* Buttons 50% width on mobile */
  .btn-primary,
  .btn-secondary,
  .about-content .btn-primary,
  .service-btn,
  .quote-form-card .btn-primary,
  .hero-buttons a {
    width: 50%;
    max-width: 50%;
    box-sizing: border-box; /* padding included in width */
    padding: 12px; /* adjust if needed */
    font-size: 14px;
    display: inline-flex; /* keeps arrow alignment */
    justify-content: center;
    margin: 0 auto; /* centers the button */
  }
}

/* TESTIMONIALS */
.testimonials{
  padding-bottom:80px; /* spacing from bottom */
}
.testimonial-carousel{
  position:relative;
  overflow:hidden;
  max-width:700px;
  margin:60px auto 0;
}
.t-card{
  display:none;
  background:var(--primary-blue);
  padding:40px 30px;
  border-radius:16px;
  color:white;
  text-align:center;
  font-style:italic;
}
.t-card.active{display:block;}
.carousel-controls{
  margin-top:25px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
}
.carousel-controls button{
  background:var(--primary-blue);
  color:white;
  border-radius:50%;
  border:none;
  width:45px;
  height:45px;
  cursor:pointer;
  font-size:18px;
  transition:all 0.3s;
}
.carousel-controls button:hover{background:var(--secondary-blue);}
.dots span{
  width:10px;
  height:10px;
  background:#ccc;
  border-radius:50%;
  cursor:pointer;
}
.dots span.active{background:var(--secondary-blue);}



/* CTA */
.moving-cta {
  padding: 100px 0;
  background: var(--primary-blue);
  color: white;
  text-align: center;
  border-radius: 0; /* remove any rounded borders */
  position: relative;
}

/* Divider line instead of border */
.moving-cta::after {
  content: "";
  display: block;
  width: 80px;           /* width of divider */
  height: 3px;           /* thickness */
  background: #F57C00;   /* orange divider color */
  margin: 40px auto 0;   /* spacing and centered */
  border-radius: 2px;     /* rounded ends for divider */
}

.moving-cta h2 {
  font-size: 36px;
  margin-bottom: 15px;
}

.moving-cta p {
  font-size: 16px;
  margin-bottom: 25px;
  color: #ffffff;
}

/* Optional: make CTA button full width on small screens */
.moving-cta .btn-primary {
  margin-top: 20px;
  padding: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}


/* FOOTER */
.site-footer {
  position: relative;
  background: url("images/footerbg.jpg") center/cover no-repeat; 
  color: white;
  padding: 60px 20px 30px; 
  overflow: hidden;
}

.footer-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85); 
  z-index: 1;
}

/* Footer content wrapper */
.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 logo */
.footer-logo img {
  max-height: 200px;
  width: auto;
  display: block;
}

/* Footer columns */
.footer-about, .footer-links, .footer-contact {
  flex: 1;
  min-width: 220px;
}

/* Footer links styling */
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: white;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: none;
}

/* Footer contact */
.footer-contact p {
  margin-top: 0px;
  margin-bottom: 10px;
}
.social-icons a {
  display: inline-block;
  color: white;
  margin-right: 12px;
}

/* Footer bottom */
.footer-bottom {
  text-align: center;
  padding: 20px 0 0;
  color: #fff;
  font-size: 14px;
  position: relative;
  z-index: 2;
}

/* RESPONSIVE */
@media(max-width:991px){
  .main-nav ul{
    display:none;
    flex-direction:column;
    gap:15px;
    background:#fff;
    position:absolute;
    top:100%;
    right:0;
    width:200px;
    padding:15px;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    border-radius:8px;
  }
  .header-cta{
    display:none;
  }
  .main-nav ul.active{display:flex;}
  .mobile-toggle{display:block;}
}