:root {
  --primary: #0d3b66;
  --secondary: #5988b7;
  --neutral-gray: #333;
  --white: #fff;
  --black: #000;
  --gray: #f7f7f7;
  --dark-navy: #0a2a66;
  --btn-gradient: linear-gradient(184deg, var(--primary) 40%, var(--secondary) 100%);
  /* --btn-gradient: linear-gradient(45deg, #094963, #4B8EA9 100% ); */
  --btn-gradient-hover: linear-gradient(184deg, var(--secondary) 40%, var(--primary) 100%);
  --font-family: 'Segoe UI', sans-serif;
  /* --font-family: 'Montserrat', sans-serif; */

}

/* Base font settings */
body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 16px;          /* base size */
    line-height: 1.6;
    color: #333;              /* optional, easy reading */
    margin: 0;
    padding: 0;
}

/* Headings (responsive) */
h1 {
    font-size: 2.5rem;        /* 40px */
    line-height: 1.2;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2rem;          /* 32px */
    line-height: 1.25;
    margin-bottom: 0.9rem;
}

h3 {
    font-size: 1.75rem;       /* 28px */
    line-height: 1.3;
    margin-bottom: 0.8rem;
}

h4 {
    font-size: 1.5rem;        /* 24px */
    line-height: 1.35;
    margin-bottom: 0.75rem;
}

h5 {
    font-size: 1.25rem;       /* 20px */
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

h6 {
    font-size: 1rem;          /* 16px */
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

/* Paragraphs */
p {
    font-size: 1rem;          /* 16px */
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Optional: smaller text */
small {
    font-size: 0.875rem;      /* 14px */
    line-height: 1.4;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.25rem; }
    h5 { font-size: 1.125rem; }
    h6 { font-size: 1rem; }
    p  { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.25rem; }
    h4 { font-size: 1.125rem; }
    h5 { font-size: 1rem; }
    h6 { font-size: 0.95rem; }
    p  { font-size: 0.9rem; }
}



body {
      margin: 0;
      /* font-family: Lato,Helvetica,sans-serif !important; */
      font-family: var(--font-family) !important;
      background: var(--white);
      color: var(--neutral-gray);
    }

    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 95%;
      z-index: 1000;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background: #28282891;
    }
    
    header .logo-container {
      max-height: 80px;
      /* position: relative;
      left: 10%; */
    }
    header img.logo {
      height: 100%;
    }
    

    /* Header separate from hero */
    /* Sticky Header */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      width: 95%;
      background: var(--white);
      border-bottom: solid 3px var(--primary);
      box-shadow: 0 2px 6px rgba(0,0,0,0.1);
      padding: 15px 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      z-index: 1000;
    }

    /* Navigation */
    nav {
      display: flex;
      gap: 20px;
      transition: max-height 0.3s ease;
    }
    nav a {
      text-decoration: none;
      color: var(--primary);
      font-weight: bold;
      transition: color 0.3s;
    }
    nav a:hover {
      color: var(--white);
    }

    /* Hamburger button */
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      width: 30px;
      height: 25px;
      justify-content: space-between;
    }
    .menu-toggle span {
      display: block;
      height: 3px;
      background: var(--white);
      border-radius: 3px;
    }

    /* Hero section starts below header */
    .hero {
      position: relative;
      width: 100%;
      min-height: 90vh; 
      background: url('images/hero-bg-new.jpg') no-repeat center center/cover;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      padding: 80px 40px;
      color: var(--white);
    }

    
    .hero .overlay {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.45);
    }
    
    
    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 800px;
    }

    .hero-content h1 {
      font-size: 2rem;
      margin-bottom: 20px;
      text-shadow: 1px 1px 6px rgba(0,0,0,0.6);
    }
    .hero-content p {
      font-size: 1.1rem;
      line-height: 1.6;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    }

    .info-section {
        background: white;
        padding: 40px 20px;
        max-width: 1170px;
        margin: auto;
        text-align: center;
        

    }
    .info-section h2 {
        color: var(--primary);
        font-size: 2rem;
        margin-bottom: 15px;
    }

    /* Company cards */
  
    .company {
      background: var(--white);
      margin: 20px auto;
      max-width: 1170px;
      border-radius: 10px;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      overflow: hidden;
    }
    .company img {
      width: 100%;
      /* height: 300px; */
      object-fit: cover;
      display: block;
    }
    .company-content {
      padding: 20px;
    }
    .company h2 {
      margin: 0 0 10px;
      color: #007BFF;
    }
    .company p {
      margin: 0 0 15px;
      line-height: 1.5;
    }
    .actions {
      display: flex;
      gap: 15px;
      flex-wrap: wrap;
      justify-content: center;
    }
    .actions a {
      text-decoration: none;
     
      transition: background 0.3s;
    }
    /* .actions a img {
      width: 2rem;
    } */
    .book-btn {
      background: linear-gradient(135deg, #0d3b66 40%, #5988b7 100%);
      padding: 10px 15px !important;
      border-radius: 25px;
      color: var(--white);
      font-weight: bold;
    }

    /* Footer */
    footer {
      background: var(--white);
      color: var(--primary);
      text-align: center;
      padding: 20px;
      font-size: 0.9rem;
      margin-top: 5px;
    }
    footer a {
      color: var(--primary);
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }
    footer .footer-top {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 10px;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        display: none;
        position: absolute;
        top: 70px;
        right: 20px;
        background: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-radius: 8px;
      }
      nav.show {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
      .book-btn {
        padding: 5px 10px !important;
      }
      .info-section h2{
        font-size: 1.1rem;
      }
      .info-section p{
        font-size: 0.95rem;
      }
    }

    @media (max-width: 480px) {
      .hero-content h1 {
        font-size: 1.1rem;
      }
      .hero-content p {
        font-size: 0.8rem;
      }
      .company img {
        height: 100%;
      }
      .actions {
        flex-direction: row;
      }
      .actions a {
        /* width: 100%; */
        text-align: center;
      }
    }


    
.company-list {
  max-width: 100%;
  margin: 40px auto;
  padding: 0 20px;
  margin-top: 0px;
}

.company-profile {
  display: flex;
  align-items: center;
  justify-content: center;   /* ✅ centers content */
  max-width: 1170px;         /* ✅ constrain width */
  margin: 0 auto 50px;       /* ✅ center horizontally + spacing */
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-height: 250px;
  transition: transform 0.3s ease;
}

.company-profile:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.company-profile.reverse {
  flex-direction: row-reverse;
}

.company-image {
  flex: 1;
  min-width: 40%;
}
.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-image .company-profile  img  {
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 0px;
}
.company-image .company-profile.reverse  img  {
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 0px;
}

.company-info {
  flex: 2;
  padding: 30px;
}
.company-info h2 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--dark-navy)
}
.company-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #444;
}

/* Actions */
.actions {
  display: flex;
  align-items: center;
  gap: 15px;
}
.actions img {
  width: 36px;
  height: 36px;
}


/* Responsive */
@media (max-width: 900px) {
  .company-profile,
  .company-profile.reverse {
    flex-direction: column;
    max-width: 100%;   /* ✅ full width on mobile */
  }
  .company-image {
    width: 100%;
    height: 250px;
  }
  .company-info {
    padding: 20px;
  }
}

/* contact section */

.contact-section {
  /* background: linear-gradient(135deg, #003366 40%, #00BFA6 100%); */
  /* background: linear-gradient(135deg, #0d3b66 40%, #5f87ad 100%); */
  background: linear-gradient(135deg, #0d3b66 40%, #5988b7 100%);
  background: linear-gradient(45deg, #094963, #4B8EA9,#F4F8F9 );
  #094963,#4B8EA9,#F4F8F9
  padding: 80px 20px;
  color: var(--white);
}

.contact-container {
  max-width: 1170px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
}

/* Contact Info */
.contact-info {
  flex: 1;
  min-width: 300px;
}
.contact-info h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--white); /* Gold accent */
}
.contact-info p {
  margin-bottom: 25px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e8f6f4;
}
.contact-info ul {
  list-style: none;
  padding: 0;
}
.contact-info ul li {
  margin-bottom: 15px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-info i {
  color: var(--white);
  font-size: 1.2rem;
}
.contact-info a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
}
.contact-info a:hover {
  text-decoration: underline;
  color: var(--white);
}

/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
  color: var(--neutral-gray);
  margin: auto;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.contact-form input,
.contact-form textarea {
  padding: 10px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00BFA6;
  box-shadow: 0 0 8px rgba(0,191,166,0.3);
}

/* Button */
.send-btn {
  background: var(--btn-gradient); 
  color: var(--white);
  border: none;
  padding: 14px;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.send-btn:hover {
  color: var(--white);
  background: var(--btn-gradient-hover); 
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.2);
}

/* Google Map */
.map-container {
  margin-top: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
  .contact-form {
    padding: 45px;
    margin-bottom: 30px;
  }
  .company-profile {
    max-height: 100%
  }
  
}

/* Hero content left side */
.hero {
  position: relative;
  height: 100vh;
  background: url('../images/hero-bg-new.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;   /* vertical center */
  justify-content: flex-start; /* push content to left */
  padding: 0 10%;        /* left/right padding */
  color: var(--white);
}

.hero-content {
  position: relative;
  max-width: 600px;
  text-align: left;   /* text aligned left */
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.hero-content .actions .book-btn {
  background: var(--btn-gradient); 
  padding: 12px 25px;
  border-radius: 8px;
  color: var(--white);
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-content .actions .book-btn:hover {
  background: var(--btn-gradient-hover); 
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    padding: 0 5%;
  }
  .hero-content h1 {
    font-size: 1.1rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
}

/* Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10%;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  z-index: 1000;
}

.logo {
  height: 50px;
}

#nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

#nav-menu a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

#nav-menu a:hover {
  color: var(--primary);
}

#nav-menu .book-now {
  background: var(--btn-gradient); 
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s;
  color:#fff;
}
#nav-menu .book-now:hover {
  background: var(--btn-gradient-hover); 
  color:#fff;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}
.menu-toggle span {
  height: 3px;
  width: 25px;
  background: var(--white);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  height: 90vh;
  background: url('../images/hero-bg-new.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10%;
  color: var(--white);
}

.hero-content {
  position: relative;
  max-width: 600px;
  text-align: left;
  z-index: 2;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--dark-navy)
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  /* color: #596e9b; */
  color: var(--neutral-gray)
}

.hero-content .actions .book-btn {
  background: var(--white);
  padding: 12px 25px;
  border-radius: 8px;
  color: var(--dark-navy)
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.hero-content .actions .book-btn:hover {
  background: #e6c200;
}

/* Responsive */
@media (max-width: 768px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    right: 10%;
    background: rgba(0, 0, 0, 0.9);
    padding: 20px;
    border-radius: 10px;
  }
  #nav-menu.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .hero {
    padding: 0 5%;
  }
  .hero-content h1 {
    font-size: 1.1rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
}

/* Desktop Nav */
#nav-menu {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  /* position: relative;
  right: 5%; */
}

/* Mobile Nav (Hidden by default) */
@media (max-width: 768px) {
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;          /* just below header */
    right: 0;
    left: 0;            /* make it full width */
    background: rgba(0, 0, 0, 0.95);
    padding: 20px;
    border-radius: 0 0 12px 12px;
    text-align: center;
    gap: 20px;
  }

  #nav-menu.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Services Section Full Width Background */
.services-section {
  background: #f7f7f7; /* light background, change as you want */
  padding: 60px 0px;
  width: 100%;
}

.services-section .container {
  max-width: 1170px;
  margin: 0 auto;
  text-align: center;
}

/* Title & Intro */
.services-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--primary);
}

.services-section .section-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Grid Layout companies-all-page */
 .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
} 


/* Hero Slider */

.hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  top: 0vh;
  overflow: hidden;
}

.slider-container {
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 8%;
  color: var(--white);
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

/* Right aligned slides */
.slide.right-align {
  justify-content: flex-end;
  text-align: right;
}

.slide.right-align .hero-content {
  max-width: 650px;
  padding-right: 12%; /* push content a little left */
}



.hero-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.book-btn {
  display: inline-block;
  padding: 12px 28px;
  /* background: linear-gradient(184deg, #00a3c8 40%, #5988b7 100%); */

  background: var(--btn-gradient); 
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.book-btn:hover {
  background: var(--btn-gradient-hover); 
  /* color: #FFD700; */
  color: var(--white);
}

/* Slider Navigation */
.slider-nav {
  position: absolute;
  top: 65%;
  width: -webkit-fill-available;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0px 35px;
  z-index: 2;
}

.slider-nav span {
  cursor: pointer;
  font-size: 2rem;
  color: var(--white);
  user-select: none;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  z-index: 2;
}

.slider-dots span {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;

}

/* ===============================
   RESPONSIVE FIXES
================================*/

/* Large Tablets (max 1024px) */
@media (max-width: 1024px) {
  header {
    padding: 15px 5%;
  }

  .hero-content h1 {
    font-size: 1.5rem;
  }
  .hero-content p {
    font-size: 0.95rem;
  }

  .slide.right-align .hero-content {
    padding-right: 8%;
  }
}

/* Tablets (max 900px) */
@media (max-width: 900px) {
  .company-profile,
  .company-profile.reverse {
    flex-direction: column;
    max-width: 100%;
  }

  .company-image {
    width: 100%;
    height: 220px;
  }
  .company-info {
    padding: 20px;
    text-align: center;
  }
  .company-info h2 {
    font-size: 1.5rem;
  }
  .company-info p {
    font-size: 1rem;
  }
  .actions {
    justify-content: center;
  }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {
  /* Header */
  #nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    left: 50%;
    background: var(--white);
    border: solid 1px var(--primary);
    padding: 20px;
    border-radius: 0 0 0px 12px;
    text-align: center;
    gap: 20px;
    width: fit-content;
  }
  #nav-menu.show {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }

  /* Hero */
  .hero,
  .slide {
    padding: 0 5%;
  }
  .hero-content,
  .slide .hero-content {
    max-width: 85%;
    top:5vh;

    /* text-align: center; */
  }
  .hero-content h1 {
    font-size: 1.1rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
  .slide.right-align .hero-content {
    max-width: 85%;
    padding-right: 0%;
    padding: 3%;
  }

  .slide.right-align {
    justify-content: flex-start;
    text-align: left;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }

  /* Contact */
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  .contact-info h2 {
    font-size: 1.5rem;
  }

  header .logo-container{
    left: 0 !important;
  }

  .slider-nav{
    padding: 0px 10px ;
  }
 
}

/* Small Mobile (max 480px) */
@media (max-width: 480px) {
  header {
    padding: 10px 15px;
  }
  .logo {
    height: 40px;
  }

  .hero-content h1 {
    font-size: 1.1rem;
  }
  .hero-content p {
    font-size: 0.8rem;
  }
  .book-btn {
    padding: 5px 10px;
    font-size: 0.8rem;
  }

  .service-card img {
    height: 150px;
  }

  .footer .footer-top {
    flex-direction: column;
    gap: 6px;
    font-size: 0.85rem;
  }
}

/* Center content on smaller screens */
@media (max-width: 768px) {
  .hero-slider {
    /* position: relative;
    height: 30vh !important;
    top:9vh !important; */
    height: 360px; /* Adjust for your design */
    overflow: hidden;
    position: relative;
  }
  
  .hero-content {
    max-width: 100%;
  }
  .hero-content, .slide .hero-content {
    padding: 3%;
  }

  .info-section h1{
    font-size: 1.5rem;
  }

  .services-section .section-intro {
    font-size: 0.9rem;
  }

  .actions a img {
    width: 1.5rem;
  }
  .actions img {
      width: 36px;
      height: 25px;
  }
  .contact-info{
    margin: 20px;
  }
}

/* Hamburger Menu Toggle */
.menu-toggle {
  flex-direction: column;
  justify-content: center;
  cursor: pointer;
  gap: 5px;
  position: absolute;
  right: 20%;
  z-index: 1100;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--black); /* white so it's visible on hero image */
  border-radius: 2px;
}

/* Section */
.tags-section {
  background: var(--white);
  padding: 70px 20px;
}

.tags-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #002b5b;
}

/* Tabs */
.tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
}

.tab-btn {
  background: none;
  border: none;
  padding: 12px 18px;
  font-size: 1rem;
  cursor: pointer;
  color: #555;
  position: relative;
  transition: color 0.3s ease;
}

.tab-btn.active {
  color: #0077cc;
  border-bottom: 3px solid #0077cc;
}

/* Sub-tabs */
.sub-tabs {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-bottom: 25px;
}

.sub-tab-btn {
  background: #f4f8fb;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s;
}

.sub-tab-btn.active,
.sub-tab-btn:hover {
  background: #0077cc;
  color: var(--white);
  border-color: #0077cc;
}

/* Categories */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.category h4 {
  font-size: 1rem;
  margin-bottom: 12px;
  color: #444;
  font-weight: 600;
}

.category ul {
  list-style: none;
  padding: 0;
}

.category ul li {
  margin-bottom: 8px;
}

.category ul li a {
  text-decoration: none;
  color: #0077cc;
  transition: color 0.3s;
}

.category ul li a:hover {
  color: #005599;
}

/* Hide inactive tabs */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}



/* Same styling as before... plus collapsible control */


.tags-section {
  background: var(--white);
  padding: 60px 20px;
  border-top: 1px solid #eee;
}

.section-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 30px;
  font-weight: 600;
  color: #222;
}

/* Tabs */
/* Tabs container */
.tabs {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 25px;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 8px 16px;
  background: var(--white);
  width: fit-content;
  margin: 25px auto;
}

/* Tab buttons */
.tab-btn {
  background: none;
  border: none;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border-radius: 6px;
  color: var(--neutral-gray);
  transition: all 0.3s ease;
  position: relative;
}

/* Active tab */
.tab-btn.active {
  color: #00796b;
  font-weight: 600;
  background: rgba(0, 121, 107, 0.08);
}

/* Active underline */
.tab-btn.active::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  height: 2px;
  background: #00796b;
  border-radius: 2px;
}


/* Tags Grid */
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 1170px;
  margin: auto;
}

.tags-grid a {
  display: inline-block;
  background: var(--white);
  padding: 8px 16px;
  border: 1px solid #ddd;
  border-radius: 20px;
  text-decoration: none;
  color: #00796b;
  font-size: 14px;
  transition: all 0.3s ease;
}

.tags-grid a:hover {
  background: #00796b;
  color: var(--white);
  border-color: #00796b;
}

/* Tab Switching */
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}


/* Collapse effect */
.collapsible {
  max-height: 140px; /* shows first 2–3 lines */
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.collapsible.expanded {
  max-height: 1300px; /* expand to show more */
}

/* View More Button */
.view-more-container {
  text-align: center;
  margin-top: 20px;
}

.view-more-btn {
  background: none;
  border: 1px solid #00796b;
  color: #00796b;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease;
  width: auto;
}

.view-more-btn:hover {
  background: #00796b;
  color: var(--white);
}

.tags-intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #666;
  text-align: center;
}


/* Make logo bigger */
.logo-container .logo {
  height: 80px;   
  width: auto;    
  max-height: 100px; 
}

.info-section p{
    font-size: 1.1rem;
}

.color-red {
  color: red;
}


.error {
  color: red;
  font-size: 13px;
}

input.error-border, textarea.error-border {
  border: 1px solid red;
}


.services-page .services-section{
  background: var(--white);
  padding: 5px 0px;
}

.about-us {
  position: relative;
  padding: 60px 20px;
  font-family: var(--font-family) !important;
  color: #1b1b1b;
  overflow: hidden;
  text-align: center;
  background: var(--btn-gradient);
}

.about-us-container {
  max-width: 1170px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #f0f4f8, #e6f0f8);
  /* border: solid 2px #1b3a57; */
   box-shadow: 5px 5px 15px #1b3a57;
  border-radius: 12px;
  padding: 40px 0px;
}

.about-us h2 {
  font-size: 2rem;
  color: #1b3a57;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  margin-top: 0px;
}

.about-us p {
  font-size: 1.1rem;
  color: #4a4a4a;
  line-height: 1.9;
  margin-bottom: 30px;
  padding: 0px 20px;
}

.feature-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  padding: 0px 20px;
}

.feature-list div {
  flex: 1 1 200px;
  min-width: 200px;
  font-size: 1.1rem;
  color: #555;
  font-weight: 500;
  border-left: 3px solid #1b3a57;
  padding-left: 15px;
  text-align: left;
}

.cta-button {
  display: inline-block;
  background: #1b3a57;
  color: white;
  text-decoration: none;
  padding: 11px 25px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 8px 20px rgba(27,58,87,0.2);
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(27,58,87,0.3);
}

/* Decorative shapes */
.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(27,58,87,0.05);
}

.shape1 {
  width: 250px;
  height: 250px;
  top: -60px;
  left: -80px;
  transform: rotate(45deg);
}

.shape2 {
  width: 200px;
  height: 200px;
  bottom: -80px;
  right: -50px;
  transform: rotate(-30deg);
}

/* Responsive */
@media (max-width:768px) {
  .feature-list {
    flex-direction: column;
    gap: 20px;
  }
  
  .feature-list div {
    text-align: center;
    border-left: none;
    padding-left: 0;
  }
  .about-us {
    padding: 45px 20px;
  }
  .feature-list div {
    flex: 1 1 !important;
  }
  .about-us h2{
    font-size: 1.5rem !important;
  }
  .about-us p{
    font-size: 1rem !important;
  }
  .feature-list div{
    font-size: 1rem !important;
  }
  .slide .overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: #bbbdbe99;
    z-index: 0;
  }
}

.locations-div .tabs{
  gap:30px;
  width: 50%;
}
.locations-div .collapsible{
  max-height: 500px;
}

.locations-div .collapsible.expanded {
    max-height: 3000px;
}

.tags-div .tabs{
  gap:30px;
  width: 50%;
}
.tags-div .collapsible{
  max-height: 500px;
}

.tags-div .collapsible.expanded {
    max-height: 2550px;
}

.text-center{
    text-align: center;
}

.text-left{
    text-align: left;
}

.text-right{
    text-align: right;
}

.company-info a{
  text-decoration: none !important;
  color: #444;
}
a.book-btn{
  color: #fff !important;
}
.company-profile .fa-angle-double-right{
  color: var(--dark-navy);
  font-size: 0.8rem;
}

em{
    color: var(--dark-navy);
}

/* Desktop slider visible only on desktop */
.hero-slider {
    display: block;
}

.hero-mobile {
    display: none;
}

/* Mobile view */
@media (max-width: 767px) {
    .hero-slider {
        display: none !important;
    }
    .hero-mobile {
        display: block !important;
    }
    .mobile-hero-slide{
      height: 100%;
      position: relative;
    }
    .mobile-hero-slide img {
      width: 100%;
    }
     /* Mobile hero styles */
    .hero-mobile .mobile-hero-image {
        position: relative;
        width: 100%;
        height: 31vh;
        overflow: hidden;
        top: 12vh;
    }

    .hero-mobile .mobile-hero-image img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: cover;
    }

    .tabs {
      padding: 8px 8px !important;
    }

    .contact-form{
      min-width: inherit;
    }

    #nav-menu{
      padding: 30px;
    }

    .profile-container .profile-header{
      display: block !important;
      text-align: center !important;
    }

    .profile-container .profile-header img{
      margin-right: 0px !important;
    }

    .profile-container .profile-actions{
      margin-top: 10% !important;
    }

    
}


.intro-section-gradient {
  background: linear-gradient(135deg, #e8f1ff 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 60px 0px;
}

.section-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #212529;
}

.section-text {
  font-size: 1rem;
  color: #5c6c7f;
  line-height: 1.8;
  max-width: 1170px;
  margin: auto;
  text-align: justify;
}

.intro-section-gradient .btn-primary {
  background-color: #0d6efd;
  border: none;
  transition: background-color 0.3s ease;
}

.intro-section-gradient .btn-primary:hover {
  background-color: #0b5ed7;
}


.nursing-section {
  /* background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%); */
      /* background: linear-gradient(45deg, #094963, #4B8EA9, #F4F8F9);
          background: linear-gradient(45deg, #094963, #4B8EA9, #F4F8F9); */
         
  /* border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0; */
}


/* .background-overlay{

    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, #000000 0%, #000000 100%);
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s;
}
.nursing-box {
  /* background: #ffffff;
  border: 1px solid #e2e8f0; */
  /* border-radius: 12px;
  padding: 30px 25px;
  max-width: 1170px;
  margin: auto; */
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
/* }

.nursing-title {
  font-size: 1.9rem;
  font-weight: 600;
  color: #1e2a38;
  line-height: 1.3;
}

.nursing-text {
  font-size: 1rem;
  color: #5c6c7f;
  line-height: 1.8;
  margin-bottom: 15px;
}

.nursing-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.nursing-section .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  background-image: url(https://www.sharestates.com/wp-content/uploads/2023/12/sts-web-home-full-1-1920x600-1.jpg);
  background-size: cover;
  
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1; */
  /* opacity: 0.6; */
   /* adjust transparency */
/* } */

/* Optional: gradient overlay for better readability */
/* .nursing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
   background-color: transparent;
    background-image: linear-gradient(180deg, #000000 0%, #000000 100%);
    opacity: 0.6;
    transition: background 0.3s, border-radius 0.3s, opacity 0.3s; */
  /* background: rgba(255,255,255,0.85);  */
  /* soft white overlay */
  /* z-index: 2;
} */ 

.nursing-section {
  position: relative;
  padding: 60px 0;
  overflow: hidden;
  /* margin: 60px 0px; */
}

/* Background image */
.nursing-section .background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  background-image: url('../images/slide-5.jpg'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

/* Gradient or color overlay for readability */
.nursing-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
    background-image: linear-gradient(180deg, #000000 0%, #000000 100%);
    opacity: 0.6;
  z-index: 2;
}

/* Content container */
.nursing-section .container {
  position: relative;
  z-index: 3; /* makes sure text is on top */
}

/* Text box styling */
.nursing-box {
  background: rgb(218 220 221 / 71%);
  backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 30px 25px;
  max-width: 1170px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nursing-title {
  font-size: 2rem;
  font-weight: 600;
  color: #1e2a38;
  margin-bottom: 20px;
}

.nursing-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 15px;
  text-align: justify;
}
.nursing-box{
  color:#fff;
  background: transparent;
}

.nursing-box .nursing-text, .demo .nursing-title{
  color: #fff !important;
}

.contact-form select,
.contact-form textarea {
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 10px;
  font-size: 1rem;
  color: #757575;
}

.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid #555;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    display: inline-block;
    animation: spin 0.6s linear infinite;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.send-btn[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
}
.service-card a{
  text-decoration: none !important;
}








