/* ======================================
   GLOBAL STYLES
====================================== */
:root {
  --primary-color: #002366; /* Royal Blue */
  --secondary-color: #cc5500; /* Burnt Orange */
  --light-bg: #f9f9f9;
  --dark-text: #222;
  --light-text: #fff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Roboto', 'Montserrat', 'Raleway', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
}

/* ======================================
   HEADER & NAVBAR
====================================== */
header {
  width: 100%;
  background-color: var(--primary-color);
  color: var(--light-text);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}

.navbar .logo img {
  height: 50px;
  width: auto;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
}

.navbar ul li {
  position: relative;
}

.navbar ul li a {
  color: var(--light-text);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: inline-block;
}

/* Hover state */
.navbar ul li a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* ACTIVE (current page) state */
.navbar ul li a.active {
  background-color: var(--secondary-color);
  color: #fff;
}

.navbar ul li a:hover {
  background-color: var(--secondary-color);
  color: #fff;
}

/* Hamburger Menu (Mobile) */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background-color: var(--light-text);
  height: 3px;
  width: 25px;
  margin: 4px 0;
  transition: all 0.3s ease;
}

/* Hamburger open animation */
.menu-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .navbar ul {
    position: absolute;
    top: 70px;
    right: 0;
    background-color: var(--primary-color);
    flex-direction: column;
    width: 220px;
    padding: 15px 0;
    display: none;
    z-index: 1000;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    text-align: right;
    padding: 10px 20px;
  }

  .menu-toggle {
    display: flex;
  }
}
@media (max-width: 768px) {
  .navbar ul li a {
    width: 100%;
    text-align: right;
  }

  .navbar ul li a.active {
    background-color: var(--secondary-color);
    color: #fff;
  }
}


/* ======================================
   HOMEPAGE SLIDER
====================================== */
.slider {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  margin-top: 0; /* close gap with navbar */
}

.slider-wrapper {
  display: flex;
  transition: transform 1s ease-in-out;
  height: 100%;
  width: 100%;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,35,102,0.65) 0%, rgba(204,85,0,0.55) 100%);
  mix-blend-mode: multiply;
  z-index: 1;
}

.slide-content {
  position: relative;
  bottom: 15%;
  left: 10%;
  color: #fff;
  max-width: 550px;
  z-index: 2;
  animation: fadeInUp 1s ease-in-out;
}

.slide-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.slide-content p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 25px;
}

/* Slide Buttons */
.slide-content .btn {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.slide-content .btn:hover {
  background-color: #ff6600;
  transform: scale(1.05);
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 3;
  padding: 0 20px;
}

.slider-controls span {
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s;
}

.slider-controls span:hover {
  color: #cc5500;
}

/* Pagination Dots */
.slider-dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}

.slider-dots span {
  display: block;
  width: 12px;
  height: 12px;
  background-color: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s;
}

.slider-dots .active {
  background-color: #cc5500;
}

/* ==========================
   ANIMATIONS
========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================
   RESPONSIVE SLIDER
========================== */
@media (max-width: 1024px) {
  .slider {
    height: 75vh;
  }
  .slide-content {
    bottom: 12%;
    left: 8%;
    max-width: 450px;
  }
  .slide-content h2 { font-size: 2.2rem; }
  .slide-content p { font-size: 1rem; }
}

@media (max-width: 768px) {
  .slider {
    height: 70vh;
  }
  .slide-content {
    bottom: 10%;
    left: 6%;
    max-width: 400px;
  }
  .slide-content h2 { font-size: 1.8rem; }
  .slide-content p { font-size: 0.95rem; }
}

@media (max-width: 480px) {
  .slider {
    height: 60vh;
  }
  .slide-wrapper { flex-direction: column; }
  .slide-content {
    bottom: 8%;
    left: 5%;
    max-width: 90%;
    text-align: left;
  }
  .slide-content h2 { font-size: 1.5rem; }
  .slide-content p { font-size: 0.9rem; }
  .slide-content .btn { padding: 8px 16px; font-size: 0.9rem; }
}




/* =========================
   ABOUT / INTRO SECTION
========================= */

.about-section {
  position: relative;
  width: 100%;
  min-height: 70vh;
  background-image: url('../images/defaults/about-bg.jpg'); /* placeholder image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
}

/* Black overlay */
.about-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75); /* strong black overlay */
  z-index: 1;
}

/* Content */
.about-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
  color: #ffffff;
}

.about-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.about-content p {
  font-size: 1.15rem;
  line-height: 1.7;
  opacity: 0.95;
}

/* Soft cinematic grain / glow (optional but classy) */
.about-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at center,
    rgba(255, 255, 255, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

.about-divider {
  width: 80px;
  height: 4px;
  background: var(--secondary-color); /* burnt orange */
  margin: 20px auto 30px;
  border-radius: 2px;
}


/* Highlight statement */
.about-highlight {
  font-size: 1.15rem;
  font-style: italic;
  color: #fff;
  opacity: 0.9;
}

/* =========================
   RESPONSIVE TWEAKS
========================= */

@media (max-width: 768px) {
  .about-section {
    min-height: 60vh;
    padding: 60px 20px;
  }

  .about-content h2 {
    font-size: 2rem;
  }

  .about-content p {
    font-size: 1rem;
  }
}




/* =========================
   SERVICES SECTION
========================= */

.services-section {
  background: #cc5500;
  color: #fff;
  padding: 50px 10px;
}

.services-container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: 2.6rem;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 10px;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  opacity: 0.85;
}

/* Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  align-items: stretch;
}

/* Card */
.service-card {
  background: #000;
  border-radius: 14px;
  padding: 25px 20px 30px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0.85;
}

/* Hover effect */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

/* =========================
   RESPONSIVE BREAKPOINTS
========================= */

/* Tablets */
@media (max-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large phones */
@media (max-width: 768px) {
  .services-section {
    padding: 80px 20px;
  }

  .section-title {
    font-size: 2.1rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Small phones */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 200px;
  }
}

/* Services Section CTA */
.services-cta {
  text-align: center;
  margin-top: 40px;
}

.services-btn {
  display: inline-block;
  padding: 14px 36px;
  background: #fff; /* brand orange */
  color: #000;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 40px;
  transition: all 0.35s ease;
}

/* Hover Effect */
.services-btn:hover {
  background: #111;
  color: #fff;
  transform: translateY(-3px);
}

@media (max-width: 600px) {
  .services-btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }
}


/* =========================
   PORTFOLIO SECTION
========================= */
.portfolio-section {
  position: relative;
  padding: 100px 20px;
  background-image: url("../images/defaults/portfolio-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

/* Dark Overlay */
.portfolio-overlay-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* Inner Content */
.portfolio-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.portfolio-inner h2 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.portfolio-inner p {
  max-width: 700px;
  margin: 0 auto 50px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Portfolio Item */
.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.portfolio-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Hover Effects */
.portfolio-item:hover {
  transform: translateY(-8px);
}

.portfolio-item:hover img {
  transform: scale(1.1);
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(204,85,0,0.5),
    rgba(0,0,0,0.6)
  );
  opacity: 0;
  transition: opacity 0.4s ease;
}

.portfolio-item:hover::after {
  opacity: 1;
}

/* Portfolio CTA */
.portfolio-cta {
  margin-top: 60px;
}

.portfolio-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #cc5500;
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.35s ease;
}

.portfolio-btn:hover {
  background: #fff;
  color: #000;
  transform: translateY(-4px);
}

@media (max-width: 900px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-inner h2 {
    font-size: 2rem;
  }

  .portfolio-item img {
    height: 220px;
  }
}

/* =========================
   LIGHTBOX (IMAGE + VIDEO)
========================= */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.lightbox.active {
  display: flex;
}

/* Inner Layout */
.lightbox-inner {
  position: relative;
  max-width: 90%;
  max-height: 80vh;
  display: flex;
  align-items: center;
}

.lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img,
.lightbox-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.6);  
}

.lightbox video {
  outline: none;
}
/* Close */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: color 0.3s;
}

.lightbox-close:hover {
  color: #cc5500;
}

/* Navigation */
.lightbox-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  transition: color 0.3s;
}

.lightbox-nav span:hover {
  color: #cc5500;
}

.lightbox-prev { left: 30px; }
.lightbox-next { right: 30px; }

/* ENSURE PORTFOLIO ITEMS ARE CLICKABLE */
.portfolio-item {
  cursor: pointer;
}

.portfolio-item img,
.portfolio-item video {
  pointer-events: auto;
}

/* Mobile */
@media (max-width: 600px) {
  .lightbox-nav span { font-size: 2.2rem; }
  .lightbox-close { top: 15px; right: 20px; }
}


/* LIGHTBOX OVERLAY */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  display: none;          /* hidden by default */
  align-items: center;
  justify-content: center;
  z-index: 9999;          /* MUST be higher than header/slider */
}

/* ACTIVE STATE */
#lightbox.active {
  display: flex;
}

/* LIGHTBOX CONTENT */
#lightbox img,
#lightbox video {
  max-width: 90%;
  max-height: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}


/* ======================================
   PORTFOLIO VIDEO ASPECT RATIO (CSS ONLY)
====================================== */

.portfolio-item {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;   /* Enforces 600 Ã— 400 ratio */
  overflow: hidden;
  border-radius: 12px;
  background-color: #000; /* fallback while loading */
}

/* Image & Video behave the same */
.portfolio-item img,
.portfolio-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* crops, never stretches */
  display: block;
}

/* Prevent video controls from showing */
.portfolio-item video {
  pointer-events: none;
}

/* Navigation */
.lightbox-prev,
.lightbox-next {
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
  padding: 0 15px;
  user-select: none;
  transition: color 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: #cc5500;
}

/* Close */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
}

/* Caption */
.lightbox-caption {
  position: absolute;
  bottom: 30px;
  color: #fff;
  font-size: 1rem;
  text-align: center;
  max-width: 80%;
}

/* Mobile */
@media (max-width: 768px) {
  .lightbox-prev,
  .lightbox-next {
    font-size: 2.2rem;
  }
}

/* ======================================
   CTA CONTACT
====================================== */
.cta-contact {
  background: linear-gradient(
    135deg,
    rgba(0,35,102,0.95),
    rgba(204,85,0,0.95)
  );
  padding: 100px 20px;
  text-align: center;
  color: #fff;
}

.cta-content {
  max-width: 700px;
  margin: auto;
}

.cta-contact h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  font-family: 'Montserrat', sans-serif;
}

.cta-contact p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
}

/* CTA Button â€” Strong Emphasis */
.btn-cta {
  padding: 16px 44px;          /* Much larger button */
  font-size: 1.25rem;          /* Bigger text */
  font-weight: 700;            /* Extra bold */
  letter-spacing: 0.8px;
  background: #cc5500;
  color: #fff;
  border-radius: 36px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
  white-space: nowrap;
  line-height: 1;
}

/* Hover / Focus */
.btn-cta:hover,
.btn-cta:focus {
  background: #ffffff;
  color: #002366;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
}


.contact-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.contact-modal.active {
  display: block;
}

.contact-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.contact-modal-box {
  position: relative;
  max-width: 420px;
  margin: 6% auto;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  z-index: 2;
  animation: popIn 0.35s ease;
}

.contact-modal-box h3 {
  text-align: center;
  margin-bottom: 20px;
}

.contact-modal-box input,
.contact-modal-box textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 0.95rem;
}

.contact-modal-box textarea {
  resize: none;
}

.btn-submit {
  width: 100%;
  padding: 12px;
  background: #002366;
  color: #fff;
  font-size: 1rem;
}

.btn-submit:hover {
  background: #cc5500;
}

.contact-modal-close {
  position: absolute;
  top: 12px;
  right: 15px;
  font-size: 1.8rem;
  cursor: pointer;
}

.form-feedback {
  margin-top: 12px;
  font-size: 0.9rem;
  text-align: center;
}

.form-feedback.success {
  color: green;
}

.form-feedback.error {
  color: red;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* =========================
   CTA STRIP â€” TWO COLUMN
========================= */
.cta-strip {
  background: linear-gradient(
    135deg,
    rgba(0,35,102,0.9),
    rgba(204,85,0,0.9)
  );
  padding: 12px 20px; /* LESS vertical padding */
}

.cta-strip-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  align-items: center;
  gap: 20px;
}

.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  max-width: 1200px;
  margin: auto;
}

/* Text column */
.cta-text-group h3 {
  margin: 0;
  font-size: 1.5rem;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
}

.cta-text-group p {
  margin: 0;
  font-size: 1.0rem;
  color: #eee;
  line-height: 1.3;
}


@media (max-width: 768px) {
  .cta-flex {
    flex-direction: column;
    text-align: center;
  }

  .cta-button-group {
    margin-top: 8px;
  }
}


/* Button loading state */
.btn-submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid #fff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  display: none;
  animation: spin 0.6s linear infinite;
}

.btn-submit.loading .btn-spinner {
  display: inline-block;
}

.btn-submit.loading .btn-text {
  opacity: 0.7;
}

/* Spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Feedback animation */
.form-feedback {
  margin-top: 10px;
  opacity: 0;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.form-feedback.show {
  opacity: 1;
  transform: translateY(0);
}

/* Success + error colors */
.form-feedback.success {
  color: #28a745;
}

.form-feedback.error {
  color: #dc3545;
}

/* Modal fade out */
.contact-modal.fade-out {
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

/* ======================================
   CONTACT SECTION
====================================== */
.contact-section {
  padding: 60px 20px;
  background-color: var(--light-bg);
  text-align: center;
}

.contact-section h2 {
  color: var(--primary-color);
  margin-bottom: 30px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info p {
  margin: 5px 0;
}

form#contactForm {
  max-width: 600px;
  margin: 0 auto;
}

form#contactForm input,
form#contactForm textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: 'Roboto', sans-serif;
}

form#contactForm button {
  background-color: var(--secondary-color);
  color: #fff;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form#contactForm button:hover {
  background-color: #ff6600;
}

/* ======================================
   FOOTER
====================================== */

.site-footer {
  background: #002366; /* Existing blue */
  color: #fff;
  padding: 60px 20px 50px;
}

.footer-inner {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
  font-weight: 700;
  color: #fff;
}

.footer-col p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #fff;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-col a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover,
.footer-col a:hover {
  color: #cc5500;
}

/* Divider */
.footer-divider {
  width: 1px;
  background: rgba(255,255,255,0.5);
}

/* Center column */
.footer-center {
  text-align: center;
}

.footer-address {
  margin-bottom: 15px;
  line-height: 1.6;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}


.footer-social svg {
  width: 22px;
  height: 22px;
  fill: #fff;
  transition: transform 0.3s ease, fill 0.3s ease;
}


.footer-social a:hover {
  background: #ff7a00;
  transform: translateY(-3px);
}

.footer-social a:hover svg {
  fill: #cc5500;
  transform: translateY(-2px);
}


/* Services list in 2 columns */
.footer-services {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
}

.footer-services li {
  font-size: 0.9rem;
  color: #fff;
  line-height: 1.4;
}

@media (max-width: 600px) {
  .footer-services {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CREDIT ROW
========================= */
.footer-credit {
  background: #001a4d;
  color: #fff;
  text-align: center;
  font-size: 0.85rem;
  padding: 12px 10px;
}

@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-divider {
    width: 100%;
    height: 1px;
  }
}


/* =========================
   BACK TO TOP BUTTON
========================= */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 25px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #cc5500;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  display: none;
  z-index: 999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s, opacity 0.3s;
}

#backToTop:hover {
  transform: translateY(-4px);
  opacity: 0.9;
}
/* =========================
   WHATSAPP FLOATING BUTTON
========================= */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  left: 25px; /* ðŸ‘ˆ moved from right to left */
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  z-index: 9999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  transition: transform 0.35s ease, opacity 0.35s ease, box-shadow 0.25s ease;
  
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
}

.whatsapp-float svg {
  flex-shrink: 0;
}




/* =========================
   ABOUT PAGE - HEADER INTRO
========================= */
.page-hero {
  position: relative;
  height: 30vh;
  min-height: 300px; /* ensures it doesn't collapse on large screens */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.page-hero-content {
  position: relative;
  max-width: 900px;
  padding: 0 20px;
  z-index: 2;
}

.page-hero .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    rgba(0, 35, 102, 0.75),
    rgba(0, 0, 0, 0.65)
  );
}

.page-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero p {
  font-size: 1.1rem;
  color: #f1f1f1;
  line-height: 1.6;
  margin-top: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-hero {
    height: 38vh;
    min-height: 260px;
  }

  .page-hero h1 {
    font-size: 2rem;
  }

  .page-hero p {
    font-size: 1rem;
  }
}

/* =========================
   BREADCRUMB
========================= */
.breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 15px;
  opacity: 0.85;
}

.breadcrumb a {
  color: #ff7a00; /* brand orange */
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb span {
  color: #ddd;
  margin: 0 6px;
}


/* =========================
   ABOUT PAGE - WHO WE ARE
========================= */

.section {
  padding: 40px 20px 0px 20px;
}

.section h2 {
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #002366;
}

.section p {
  max-width: 900px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}



/* =========================
   ABOUT PAGE - MISSION/VISION
========================= */

.mission-vision-section {
  background-color: #002366;
  color: #ffffff;
  padding: 40px 20px;
}

.mission-vision-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

/* Mission & Vision Boxes */
.mission-box {
  width: 45%;
  opacity: 1;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.mission-box.show {
  opacity: 1;
  transform: translateY(0);
}

.mission-box h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #ffffff;
}

.mission-box p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #f1f1f1;
  text-align: left;
}

/* Alignment */
.mission-box.left {
  text-align: left;
}

.mission-box.right {
  text-align: right;
}

/* Divider */
.divider {
  width: 2px;
  background: #ffffff;
  margin: 0 30px;
}

/* Icon Accent */
.mission-box .icon {
  color: #ff7a00;
  margin-right: 8px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .mission-vision-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .mission-box {
    width: 100%;
    text-align: center !important;
  }

  .divider {
    width: 60%;
    height: 2px;
    margin: 30px 0;
  }
}

/* =========================
   SVG ICON STYLING
========================= */

.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.svg-icon svg {
  width: 36px;
  height: 36px;
  fill: #ff7a00; /* brand orange accent */
  flex-shrink: 0;
}

/* Right-aligned icon spacing */
.mission-box.right .svg-icon {
  margin-right: 0;
  margin-left: 10px;
}

.mission-box.show .svg-icon svg {
  filter: drop-shadow(0 0 6px rgba(255, 122, 0, 0.45));
}

/* =========================
   ABOUT PAGE - MEET OUR TEAM
========================= */

.team-grid {
  max-width: 1100px;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.team-member {
  background: #f8f9fc;
  border-radius: 12px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-member img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.team-member h4 {
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 5px;
  color: #002366;
}

.team-member p {
  font-size: 0.95rem;
  color: #666;
}

@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero h1 {
    font-size: 2.2rem;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }
}



/* =========================
   SERVICES LIST
========================= */
.services-list {
  max-width: auto;
  margin: auto;
}

.section-intro {
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.service-row {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 0px;


  position: relative;
  padding: 50px 30px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  background: #002366;
  transition: background 0.4s ease, transform 0.35s ease;
}


/* Monochromatic variations */
.service-row:nth-child(odd) {
  background: #001f55;
}

.service-row:nth-child(even) {
  background: #002b77;
}



.service-media {
  flex: 0 0 30%;
  height: 200px;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.service-content {
  flex: 1;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.service-content h3 {
  font-size: 26px;
  margin: 0 0 12px;
  text-align: left;
  color:#fff;
}

.service-content p {
  margin: 0;
  line-height: 1.7;
  color: #fff;
  text-align: left;
}

.service-row:hover {
  transform: translateY(-4px);
}

.service-content {
  transition: transform 0.4s ease, opacity 0.4s ease;
  flex: 1;
}

.service-row:hover .service-content {
  transform: translateY(-6px);
}

.service-row::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 0;
  width: 0;
  height: 2px;
  background: rgba(255,255,255,0.6);
  transition: width 0.4s ease;
}

.service-row:hover::after {
  width: calc(100% - 60px);
}




/* =========================
   CAROUSEL
========================= */
.carousel {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel img.active {
  opacity: 1;
}

.service-carousel {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 3; /* or 16 / 9 */
  overflow: hidden;
  position: relative;
}

.service-carousel {
  float: none;
  position: relative;
  
  transition: transform 0.45s ease, box-shadow 0.45s ease;
  
  
/*  width: 40%;
  max-width: 420px;
  overflow: hidden;  */
  border-radius: 8px;
}
.service-carousel img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.service-carousel-slide {
  flex: 0 0 100%;
  height: 100%;
}

.service-carousel-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-carousel-track {
  display: flex;
  height: 100%;
  will-change: transform;
  animation: slide 12s infinite;
}


.service-row:hover .service-carousel {
  transform: scale(1.03);
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .service-carousel {
    aspect-ratio: 16 / 9;
  }

  .service-carousel img {
    height: 100%;
    object-fit: cover;
  }
  .service-content {
    margin-top: 18px;
  }
}

@media (max-width: 991px) {
  .service-carousel,
  .service-content {
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 991px) {
  .services-grid,
  .services-grid-three,
  .services-list {
    display: block !important;
  }
}


@media (max-width: 991px) {
  .service-carousel {
    order: 1;
  }

  .service-content {
    order: 2;
  }
}
@media (max-width: 991px) {
  .service-row {
    display: block !important;
  }
}


.service-title,
.service-description {
  color: #ffffff;
}

.service-description {
  opacity: 0.88;
  max-width: 650px;
}

@keyframes slide {
  0% {
    transform: translate3d(0, 0, 0);
  }
  30% {
    transform: translate3d(0, 0, 0);
  }

  35% {
    transform: translate3d(-100%, 0, 0);
  }
  65% {
    transform: translate3d(-100%, 0, 0);
  }

  70% {
    transform: translate3d(-200%, 0, 0);
  }
  100% {
    transform: translate3d(-200%, 0, 0);
  }
}

@media (max-width: 768px) {
  .service-carousel-track {
    animation-timing-function: linear;
  }
}


/* =========================
   PORTFOLIO VIDEO GRID
========================= */







.portfolio-video-grid {
  display: flex;
  flex-direction: column;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  padding: 80px 0 100px;
}


.portfolio-video-card {
  background: #0a1f44;
  border-radius: 18px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease;
}

.portfolio-video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,.4);
}

/* Video */
.portfolio-video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000;
}

/* Meta info */
.video-meta {
  padding: 20px 22px 26px;
}

.video-meta .category {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: #ffb000;
  margin-bottom: 8px;
}

.video-meta h3 {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 6px;
}

.video-meta p {
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* =========================
   FILTER BUTTONS
========================= */

.portfolio-filters {
  padding: 50px 0 20px;
  text-align: center;
}

.filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  color: #ffb000;
  padding: 10px 22px;
  border-radius: 30px;
  margin: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: all .3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #ffffff;
  color: #0a2a5e;
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 16 / 9; /* 🔥 KEY LINE */
  background: #000;
}


.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;  
  border: none;
}



























/* =========================
   RESPONSIVE
========================= */

@media (max-width: 992px) {
  .portfolio-video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .portfolio-video-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   CONTACT PAGE LAYOUT
========================= */

.contact-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.contact-form,
.contact-details {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

/* Headings */
.contact-form h2,
.contact-details h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.contact-details h3 {
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

/* Text */
.contact-details p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 10px;
}


/* =========================
   CONTACT SOCIAL ICONS
========================= */
/* =========================
   CONTACT SOCIAL ICONS
========================= */
.contact-social {
    display: flex;
    justify-content: center;  /* center icons horizontally */
    align-items: center;
    gap: 20px;                /* spacing between icons */
    margin-top: 10px;
    flex-wrap: wrap;          /* allow wrapping on small screens */
}

/* Icon container */
.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #0a2a5e; /* optional border */
    background-color: #f2f2f2;  /* optional bg */
    transition: all 0.3s ease;
}

/* Hover effect */
.contact-social a:hover {
    transform: scale(1.1);
    background-color: #ddd;
    border-color: #cc5500; /* brand accent */
}

/* SVG icon inside the link */
.contact-social a svg {
    width: 22px;
    height: 22px;
    fill: #0a2a5e;
    transition: transform 0.3s ease, fill 0.3s ease;
}

.contact-social a:hover svg {
    fill: #cc5500;
}

/* =========================
   RESPONSIVE: STACK VERTICALLY ON MOBILE
========================= */
@media (max-width: 480px) {
    .contact-social {
        flex-direction: column;  /* stack icons vertically */
        gap: 15px;               /* vertical spacing */
    }
}







/*
.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
}

.contact-social a {
  width: 40px;
  height: 40px;
  background: #f4f6fb;
  border: 1px solid #0a2a5e;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease, transform 0.3s ease;
}

.contact-social svg {
  width: 22px;
  height: 22px;
  fill: #0a2a5e;
  transition: transform 0.3s ease, fill 0.3s ease;
}

.contact-social a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.contact-social a:hover svg {
  fill: #cc5500;
  transform: translateY(-2px);
}
*/
/* =========================
   CONTACT FORM STYLING
========================= */

.contact-form form input,
.contact-form form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 16px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 0.95rem;
  font-family: 'Roboto', sans-serif;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0,35,102,0.12);
}

/* Submit Button */
.contact-form .btn {
  background: var(--primary-color);
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form .btn:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* =========================
   FORM RESPONSE MESSAGE
========================= */

#form-response {
  font-size: 0.9rem;
  font-weight: 500;
}

#form-response.success {
  color: #2e7d32;
}

#form-response.error {
  color: #c62828;
}

/* =========================
   CONTACT PAGE RESPONSIVE
========================= */

@media (max-width: 900px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-details {
    padding: 28px;
  }
}

@media (max-width: 480px) {
  .contact-form h2,
  .contact-details h2 {
    font-size: 1.5rem;
  }
}


/* =========================
   RESPONSIVE for services cont'd
========================= */

@media (max-width: 991px) {
  .service-row {
    display: flex;
    flex-direction: column !important;
    align-items: stretch !important;
  }
}
@media (max-width: 991px) {
  .service-row,
  .service-row * {
    position: static !important;
    float: none !important;
  }
}
