/* ========== GLOBAL RESET ========== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f6f8fc;
  color: #1585b9;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ========== LOADER ========== */
#loader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #2d7d96, #00b4db);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 9999;
  transition: opacity 0.8s ease;
}

#loader.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 100px;
  animation: bounce 1.5s infinite ease-in-out;
}

.loader-text {
  color: #fff;
  font-size: 1.3rem;
  margin-top: 15px;
  letter-spacing: 1px;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* ========== HEADER ========== */
header {
  background: linear-gradient(135deg, #f3f4f5, #0077c8);
  color: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ===== Logo Styling ===== */
.logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
}

.logo-container img {
  width: 100px;  /* Increase or decrease as needed (try 150px if still small) */
  height: auto;
}

.logo-container h2 {
  font-size: 2.8rem;
  color: #fff;
  margin: 0;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Optional: make it responsive */
@media (max-width: 768px) {
  .logo-container img {
    width: 90px;
  }
  .logo-container h2 {
    font-size: 2rem;
  }
}

nav {
  display: flex;
  gap: 20px;
}

nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

nav a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background: #fff;
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* ========== HERO SECTION ========== */
#hero {
  background: url('https://images.unsplash.com/photo-1502877338535-766e1452684a?auto=format&fit=crop&w=1600&q=80') no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 150px 20px;
  position: relative;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

#hero h1, #hero p, #hero a {
  position: relative;
  z-index: 1;
}

#hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  animation: fadeInDown 1.2s ease;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 25px;
  animation: fadeInUp 1.5s ease;
}

.btn-primary {
  background: #ffcc00;
  color: #000;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background: #ff9900;
  transform: translateY(-3px);
}

/* ========== ABOUT ========== */
#about {
  padding: 100px 20px;
  text-align: center;
  background: #ffffff;
}

#about h2 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 20px;
}

#about p {
  max-width: 900px;
  margin: 50px auto;
  font-size: 1.1rem;
}

/* ========== SERVICES ========== */
#services {
  padding: 80px 20px;
  background: #f0f7ff;
  text-align: center;
}

#services h2 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 40px;
}

.service-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.btn-secondary {
  display: inline-block;
  margin-top: 15px;
  color: #004aad;
  border: 2px solid #004aad;
  padding: 8px 20px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #004aad;
  color: #fff;
}

/* ========== SERVICE DETAILS ========== */
#service-details {
  padding: 70px 20px;
  text-align: center;
  background: #fff;
}

#service-details h2 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 20px;
}

#service-details ul {
  list-style: none;
  padding: 0;
  margin-top: 15px;
}

#service-details li {
  margin: 8px 0;
  font-weight: 500;
}

/* ========== PRICING ========== */
#pricing {
  padding: 80px 20px;
  background: #f8fbff;
  text-align: center;
}

#pricing h2 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 40px;
}

.pricing-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.price-box {
  background: #fff;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.price-box:hover {
  transform: translateY(-5px);
}

.price-box h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.price-box p {
  font-size: 1.6rem;
  font-weight: bold;
  color: #ff9900;
  margin-bottom: 15px;
}

.price-box ul {
  list-style: none;
  margin-bottom: 15px;
}

.price-box ul li {
  margin: 5px 0;
}

/* ========== BLOG ========== */
#blog {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

#blog h2 {
  color: #004aad;
  font-size: 2rem;
  margin-bottom: 40px;
}

.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-post {
  background: #f7f9fc;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.blog-post:hover {
  transform: translateY(-5px);
}

/* ========== TESTIMONIALS ========== */
#testimonials {
  background: #eaf6ff;
  padding: 80px 20px;
  text-align: center;
}

.testi-container {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.testi-box {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  width: 280px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.testi-box:hover {
  transform: translateY(-5px);
}

/* ========== CONTACT ========== */
#contact {
  background: linear-gradient(135deg,rgb(43, 200, 228), #0077c8);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

#contact form {
  max-width: 450px;
  margin: 0 auto;
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

#contact input, #contact textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 2px solid #ddd;
  margin-bottom: 15px;
  font-size: 1rem;
}

#contact button {
  background:rgb(16, 63, 216);
  color: #0b021b;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

#contact button:hover {
  background:rgb(45, 18, 197);
  transform: translateY(-3px);
}

/* ========== FOOTER ========== */
footer {
  background: linear-gradient(135deg, #00264d, #004aad);
  color: #fff;
  text-align: center;
  padding: 25px;
  font-size: 0.9rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
  }

  #hero h1 {
    font-size: 2rem;
  }

  .testi-container {
    flex-direction: column;
    align-items: center;
  }
}
/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

/* ===== SIDEBAR ===== */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 220px;
  height: 100%;
  background-color: #004aad;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 20px 0;
}

.sidebar .logo {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar .logo img {
  height: 60px;
  margin-bottom: 10px;
}

.sidebar nav a {
  display: flex;
  align-items: center;
  padding: 12px 20px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.sidebar nav a i {
  margin-right: 10px;
}

.sidebar nav a:hover {
  background-color: #003080;
}

/* ===== MAIN CONTENT ===== */
.main-content {
  margin-left: 220px;
  padding: 20px 40px;
}

/* ===== TOPBAR ===== */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #e9ecef;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
}

.topbar .user-info {
  display: flex;
  align-items: center;
}

.topbar .user-info img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

/* ===== CARDS ===== */
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}

.card {
  background-color: #fff;
  padding: 20px;
  width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

.card h3 {
  color: #004aad;
  margin-bottom: 10px;
}

.card p {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333;
}

/* ===== TABLE ===== */
.table-section {
  background-color: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.table-section h2 {
  color: #004aad;
  margin-bottom: 20px;
}

.table-section table {
  width: 100%;
  border-collapse: collapse;
}

.table-section table th, 
.table-section table td {
  padding: 12px 15px;
  border: 1px solid #ddd;
  text-align: left;
}

.table-section table th {
  background-color: #004aad;
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .main-content {
    margin-left: 0;
    padding: 20px;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
    flex-direction: row;
    overflow-x: auto;
  }

  .sidebar nav a {
    flex: 1 0 auto;
    justify-content: center;
  }

  .cards {
    justify-content: center;
  }
}
/* ----------------- Global ----------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #f8f9fa;
  color: #333;
  line-height: 1.6;
}


/* ----------------- Blog Section ----------------- */
#blog-details {
  display: flex;
  justify-content: space-between;
  padding: 50px;
  gap: 30px;
}

.blog-main {
  flex: 3;
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.blog-post-detail h1 {
  font-size: 32px;
  color: #1c1c1c;
  margin-bottom: 10px;
}

.blog-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 20px;
}

.blog-img {
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  border-radius: 8px;
}

.blog-post-detail p, .blog-post-detail li {
  font-size: 16px;
  margin-bottom: 15px;
}

.blog-post-detail ol {
  padding-left: 20px;
}

.blog-post-detail li {
  margin-bottom: 10px;
}

/* ----------------- Comments ----------------- */
.comments {
  margin-top: 40px;
}

.comments h2 {
  font-size: 24px;
  margin-bottom: 20px;
}

.comment {
  background-color: #f1f1f1;
  padding: 15px 20px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.comment h4 {
  margin-bottom: 5px;
  color: #ff9800;
}

.comment p {
  font-size: 15px;
}

/* Comment Form */
.comment-form {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.comment-form input,
.comment-form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

.comment-form button {
  background-color: #ff9800;
  color: #fff;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.comment-form button:hover {
  background-color: #e68a00;
}

/* ----------------- Sidebar ----------------- */
.blog-sidebar {
  flex: 1;
}

.sidebar-widget {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.sidebar-widget h3 {
  font-size: 20px;
  margin-bottom: 15px;
  color: #1c1c1c;
}

.sidebar-widget ul {
  list-style: none;
}

.sidebar-widget ul li {
  margin-bottom: 10px;
}

.sidebar-widget ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.3s;
}

.sidebar-widget ul li a:hover {
  color: #ff9800;
}

/* ----------------- Footer ----------------- */
footer {
  text-align: center;
  padding: 20px;
  background-color: #1c1c1c;
  color: #fff;
  margin-top: 50px;
}

/* ----------------- Responsive ----------------- */
@media screen and (max-width: 1024px) {
  #blog-details {
    flex-direction: column;
    padding: 30px;
  }
  .blog-sidebar {
    order: -1;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 600px) {
  header {
    padding: 15px 20px;
  }
  header nav a {
    margin-left: 15px;
    font-size: 14px;
  }
}
.blog-tags {
  margin-top: 20px;
}

.blog-tags h4 {
  display: inline-block;
  margin-right: 10px;
  font-size: 16px;
  color: #333;
}

.blog-tags .tag {
  display: inline-block;
  margin: 5px 5px 0 0;
  padding: 5px 12px;
  background-color: #ff9800;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s;
}

.blog-tags .tag:hover {
  background-color: #e68a00;
}
/* Base menu */
.menu {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: white;
  display: inline-block;
  font-family: Arial, sans-serif;
}

.menu > li {
  position: relative; /* needed for dropdown */
}

.menu li a {
  display: block;
  padding: 10px 20px;
  color:black;
  text-decoration: none;
  transition: background 0.3s;
}

.menu li a:hover {
  background-color:blue;
  color:black;
}

/* Dropdown menu */
.menu li ul.dropdown {
  display: none; /* hide by default */
  position: absolute;
  top: 100%; /* show below parent */
  left: 0;
  background-color:blue;
  min-width: 150px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 1000;
}

/* Dropdown links */
.menu li ul.dropdown li a {
  padding: 4px 10px;
  white-space: nowrap;
}

.menu li ul.dropdown li a:hover {
  background-color:blue;
  color:black;
}

/* Show dropdown on hover */
.menu li:hover > ul.dropdown {
  display: block;
}
form select{
    height: 45px;
    width: 390px;
    color: bl;
    margin-bottom: 10px;
    border-radius: 5px;
}
footer svg{
  height: 20px;
  width:20px;
}
nav ul li a svg{
  height: 20px;
  width: 20px;
  display: flex;
}
/* ======= ADVANCED FOOTER CSS ======= */

.footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #e2e8f0;
  font-family: 'Poppins', sans-serif;
  padding-top: 60px;
  border-top: 3px solid #2563eb;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -80px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(59,130,246,0.25), transparent 60%);
  filter: blur(40px);
  animation: float 6s ease-in-out infinite alternate;
}

@keyframes float {
  from { transform: translateY(0); }
  to { transform: translateY(20px); }
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

/* Footer Columns */
.footer-col h4, .footer-col h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
  color: #ffffff;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40px;
  height: 2px;
  background: #2563eb;
  border-radius: 10px;
}

/* About section */
.footer-col.about p {
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.6;
}

/* Links */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.3s;
  position: relative;
}

.footer-col ul li a::before {
  content: "›";
  position: absolute;
  left: -14px;
  color: #2563eb;
  opacity: 0;
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-col ul li a:hover::before {
  opacity: 1;
  left: -8px;
}

/* Social Icons */
.social-icons {
  margin-top: 20px;
}

.social-icons a {
  display: flex;
  
  width: 100px;
  height: 30px;
  justify-content: space-between;
  text-align: center;
  margin-left: 200px;
  transition: all 0.3s ease;
}



/* Newsletter */
.newsletter-form {
  display: flex;
  background: rgba(255,255,255,0.05);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  margin-top: 10px;
}

.newsletter-form input {
  border: none;
  outline: none;
  background: transparent;
  color: #2da2d1;
  padding: 10px 14px;
  flex: 1;
}

.newsletter-form input::placeholder {
  color: #94a3b8;
}

.newsletter-form button {
  background: #2563eb;
  border: none;
  color: white;
  width: 44px;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #2e4eb9;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  padding: 18px 0;
  background: rgba(90, 121, 192, 0.7);
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 14px;
  color: #cbd5e1;
  margin-top: 40px;
}

.footer-bottom strong {
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }
  .social-icons a {
    margin: 6px;
  }
  .newsletter-form {
    flex-direction: column;
  }
  .newsletter-form button {
    width: 100%;
    border-radius: 0 0 40px 40px;
  }
}
#Book Now {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 60px 20px;
    }

    #Book Now h2 {
      text-align: center;
      margin-bottom: 30px;
      font-size: 32px;
      color: #fff;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .Book Now {
      background: #fff;
      padding: 40px 30px;
      border-radius: 12px;
      box-shadow: 0 15px 35px rgba(0,0,0,0.3);
      width: 100%;
      max-width: 500px;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .Book Now input,
    .Book Now select {
      padding: 12px 15px;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 14px;
      transition: all 0.3s ease;
    }

    .Book Nowm input:focus,
    .Book Now select:focus {
      border-color: #3498db;
      box-shadow: 0 0 10px rgba(52, 152, 219, 0.5);
      outline: none;
    }

    .Book Now button.btn {
      background: #3498db;
      color: #fff;
      padding: 15px;
      font-size: 16px;
      font-weight: bold;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .Book Now button.btn:hover {
      background: #2c3e50;
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    /* ===== FOOTER ===== */
    footer {
      background: #2c3e50;
      color: #fff;
      text-align: center;
      padding: 20px 10px;
      font-size: 14px;
    }

    /* ===== RESPONSIVE ===== */
    @media(max-width: 600px) {
      #booking-form-section {
        padding: 40px 10px;
      }
      .booking-form {
        padding: 30px 20px;
      }
    }
