/* -----------------------------------
   Global Theme Variables
----------------------------------- */
:root {
    --primary-color: #039ADD; /* Bright Blue */
    --secondary-color: #0a0a0a; /* Jet Black */
    --accent-color: #00C8FF; /* Cyan Accent */
    --text-dark: #333;
    --text-light: #ffffff;
    --shadow-light: rgba(0, 0, 0, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.4);
}

/* -----------------------------------
   Base Typography
----------------------------------- */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.7;
    background-color: #f8f9fa;
    color: var(--text-dark);
    scroll-behavior: smooth;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
}

/* -----------------------------------
   Navbar
----------------------------------- */
.custom-navbar {
    background-color: var(--secondary-color) !important;
    border-bottom: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px var(--shadow-dark);
    transition: all 0.3s ease;
}

.custom-logo-img {
    height: 70px;
    width: auto;
    transition: transform 0.3s ease;
}
.custom-logo-img:hover {
    transform: scale(1.1);
}

.nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    text-align: center;
    transition: color 0.3s ease;
}
.nav-link:hover {
    color: var(--primary-color) !important;
}
.nav-link::after {
    content: '';
    position: absolute;
    width: 0%;
    height: 2px;
    bottom: 0;
    left: 0;
    background: var(--primary-color);
    transition: width 0.3s;
}
.nav-link:hover::after {
    width: 100%;
}

/* -----------------------------------
   Hero Section
----------------------------------- */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(3, 154, 221, 0.4)),
                url('./assets/hero-bg.jpg') center/cover no-repeat fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding-top: 100px;
}
.hero-section h1 {
    font-size: 3.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1.5s ease-in-out;
}
.hero-section .lead {
    font-size: 1.4rem;
    font-weight: 300;
    margin: 20px 0 40px;
}

/* CTA Button */
.custom-cta-btn {
    background-color: var(--primary-color);
    color: var(--text-light);
    border: 3px solid transparent;
    border-radius: 50px;
    font-weight: 700;
    padding: 15px 60px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.custom-cta-btn:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    /* color: var(--primary-color); */
    box-shadow: 0 0 20px var(--primary-color);
    transform: scale(1.05);
    background-color: #000;
    color: var(--primary-color);
}

/* -----------------------------------
   About Section
----------------------------------- */
#about {
    background: linear-gradient(120deg, #fff 60%, #f0faff 40%);
    padding: 80px 0;
}
#about img {
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
#about img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px var(--shadow-dark);
}

/* -----------------------------------
   Services Section
/* ===== SERVICES SECTION (CLEAN & PROFESSIONAL) ===== */
.services-section {
  background: #f8faff;
  padding: 80px 0;
}

.custom-section-title {
  color: #0b2239;
  font-weight: 700;
  text-align: center;
}

/* --- Service Card --- */
.service-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  height: 370px;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease-in-out;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  transition: all 0.4s ease;
}

.overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  color: #fff;
  z-index: 2;
}

.overlay i {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 15px;
  padding: 15px;
}

.overlay h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.overlay p {
  font-size: 0.95rem;
  color: #f2f2f2;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 90%;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 0 40px var(--primary-color);

}

.service-card:hover::before {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.15));
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    height: 320px;
  }
}

@media (max-width: 768px) {
  .service-card {
    height: 280px;
  }

  .overlay h3 {
    font-size: 1.1rem;
  }

  .overlay p {
    font-size: 0.85rem;
  }
}

/* -----------------------------------
   Crew Section
----------------------------------- */
.custom-dark-section {
    background: linear-gradient(rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0.95)),
                url('./assets/bg-crew.jpg') center/cover no-repeat fixed;
    padding: 100px 0;
    text-align: center;
}
.crew-member-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #03a0dd;
}
.crew-member-card img {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 20px rgba(3, 154, 221, 0.3);
    object-fit: cover;
}
.crew-member-card:hover {
    transform: translateY(-5px);
}
.crew-member-card h4 {
    color: var(--text-light);
    margin-top: 15px;
}
.crew-member-card p {
    color: #bbb;
}
.crew-member-card i {
    font-size: 70px;
    color: #03a0dd; /* Blue icon color */
    border: 1px solid #03a0dd; /* Blue border */
    border-radius: 50%;
    padding: 30px;
    box-shadow: 0 0 20px rgba(3, 154, 221, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* -----------------------------------
   Contact Section
----------------------------------- */
.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px var(--shadow-light);
}
.contact-form .form-control {
    border-radius: 8px;
    box-shadow: none;
    transition: border 0.3s ease;
}
.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(3, 154, 221, 0.2);
}
.contact-form button {
    background-color: var(--primary-color);
    color: #fff;
    font-weight: 700;
    background-color: #03a0dd;
    border-radius: 50px;
    border: none;
    transition: all 0.3s ease;
}
.contact-form button:hover {
    background-color: #000;
    color: var(--primary-color);
}

/* -----------------------------------
   Footer
----------------------------------- */
footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    border-top: 3px solid var(--primary-color);
    text-align: center;
}

/* -----------------------------------
   Animations
----------------------------------- */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* -----------------------------------
   Responsive Adjustments
----------------------------------- */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    .custom-cta-btn {
        padding: 12px 40px;
    }
    .service-card {
        height: 260px;
    }
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-bottom: 80%; /* Larger height to span more vertically */
  overflow: hidden;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

#gallery {
  background-color: #f8f9fa;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* Lightbox Modal */
#galleryModal .modal-content {
  border: none;
  background: rgba(0, 0, 0, 0.9);
}

#galleryModal img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
