/* Reset and Base Styles */
:root {
  --primary-dark: #003049;
  --primary-light: #669bbc;
  --accent: #f77f00;
  --light-bg: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --white: #ffffff;
  --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --error-color: #e74c3c;
  --success-color: #2ecc71;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

/* Header & Navigation */
header {
  background-color: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-dark);
  text-decoration: none;
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.logo span {
  font-family: 'Lobster', cursive;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: #003049;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: var(--primary-light);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-light);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Button Styles */
.btn {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 30px;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(102, 155, 188, 0.3);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 155, 188, 0.4);
  background: linear-gradient(135deg, var(--primary-light), var(--primary-dark));
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 5%;
  max-width: 1400px;
  margin: 0 auto;
  gap: 4rem;
  background: linear-gradient(135deg, rgba(0, 48, 73, 0.05), rgba(102, 155, 188, 0.05));
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.hero-text p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.hero-img {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  transition: var(--transition);
}

.hero-img:hover img {
  transform: scale(1.05);
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.section-header h2 {
  font-size: 2.8rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

/* Services Section */
.services {
  padding: 6rem 5%;
  background-color: var(--light-bg);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
  border-top: 5px solid var(--primary-light);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.card:nth-child(1) {
  animation-delay: 0.2s;
}

.card:nth-child(2) {
  animation-delay: 0.4s;
}

.card:nth-child(3) {
  animation-delay: 0.6s;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 3.5rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(0, 48, 73, 0.1), rgba(102, 155, 188, 0.1));
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 1.5rem;
}

.card h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.card p {
  color: var(--text-light);
  line-height: 1.8;
}

/* About Section */
.about {
  padding: 6rem 5%;
  background-color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-item {
  padding: 2.5rem;
  background: var(--light-bg);
  border-radius: 15px;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

.about-item:nth-child(1) {
  animation-delay: 0.3s;
}

.about-item:nth-child(2) {
  animation-delay: 0.5s;
}

.about-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.about-icon {
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.about-item h3 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.about-item p {
  color: var(--text-light);
  line-height: 1.8;
}

/* Contact Section */
.contact {
  padding: 6rem 5%;
  background: linear-gradient(135deg, rgba(0, 48, 73, 0.05), rgba(102, 155, 188, 0.05));
}

.contact-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

#contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
  position: relative;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e1e5eb;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background-color: var(--white);
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(102, 155, 188, 0.2);
}

.form-group.error input,
.form-group.error textarea,
.form-group.error select {
  border-color: var(--error-color);
}

.error-message {
  color: var(--error-color);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.contact-info {
  padding: 2rem;
  background: var(--primary-dark);
  border-radius: 15px;
  color: var(--white);
}

.contact-info h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: var(--white);
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.2rem;
  color: var(--primary-light);
  width: 30px;
}

/* Popup Styles */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 48, 73, 0.9);
  z-index: 1001;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.popup-content {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  animation: popupFadeIn 0.3s ease-out;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary-dark);
  transition: var(--transition);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background: none;
  border: none;
  padding: 0;
}

.close-btn:hover {
  background-color: rgba(0, 48, 73, 0.1);
  color: var(--primary-light);
}

.popup-content h2 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}

.popup-content p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

/* Form styles in popup */
#bookingForm .form-group {
  margin-bottom: 1.5rem;
}

#bookingForm label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-dark);
}

#bookingForm input,
#bookingForm select,
#bookingForm textarea {
  width: 100%;
  padding: 0.875rem;
  border: 2px solid #e1e5eb;
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

#bookingForm input:focus,
#bookingForm select:focus,
#bookingForm textarea:focus {
  outline: none;
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(102, 155, 188, 0.2);
}

.form-row {
  display: flex;
  gap: 1rem;
}

.form-row .form-group {
  flex: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  position: relative;
}

.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 155, 188, 0.4);
}

.btn-text {
  display: inline-block;
}

.btn-loading {
  display: none;
}

.btn-primary.loading .btn-text {
  display: none;
}

.btn-primary.loading .btn-loading {
  display: inline-block;
}

.required-note {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* Alternative Booking */
.booking-alternative {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eee;
}

.alternative-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.alt-option {
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary-light);
  border-radius: 6px;
  transition: var(--transition);
}

.alt-option:hover {
  background-color: var(--primary-light);
  color: white;
}

/* Footer */
footer {
  background-color: var(--primary-dark);
  color: var(--white);
  padding: 4rem 5% 2rem;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
}

.footer-logo h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.footer-logo p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-social h4 {
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-light);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  color: var(--white);
  background-color: rgba(102, 155, 188, 0.3);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

/* Notification Styles */
.notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: var(--primary-dark);
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 1002;
  max-width: 400px;
}

.notification.show {
  transform: translateX(0);
  opacity: 1;
}

.notification.success {
  background: linear-gradient(135deg, var(--success-color), #27ae60);
  border-left: 4px solid #219653;
}

.notification.error {
  background: linear-gradient(135deg, var(--error-color), #c0392b);
  border-left: 4px solid #e74c3c;
}

.notification-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.notification i {
  font-size: 1.2rem;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #003049;
  z-index: 1001;
}

.logo img {
  height: 50px;
  width: 50px;
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: #003049;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
  position: relative;
  padding: 0.5rem 0;
}

.nav-links a:hover {
  color: #669bbc;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #669bbc;
  transition: width 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0.5rem;
}

.bar {
  width: 25px;
  height: 3px;
  background-color: #003049;
  margin: 3px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .hamburger[aria-expanded="true"] .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
  }

  .hamburger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
  }

  .hamburger[aria-expanded="true"] .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: white;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 100px 2rem 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
  }

  .nav-links a {
    font-size: 1.2rem;
    padding: 0.5rem 0;
    width: 100%;
    display: block;
  }

  .nav-menu .btn {
    margin-top: 2rem;
    width: 100%;
  }

  /* Overlay for mobile menu */
  .nav-menu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
  }

  .nav-menu.active::before {
    opacity: 1;
    pointer-events: all;
  }

  /* Hero section mobile */
  .hero {
    flex-direction: column;
    text-align: center;
    gap: 3rem;
  }

  .hero-text h1 {
    font-size: 2.5rem;
  }

  .hero-img {
    width: 100%;
  }

  /* Form row mobile */
  .form-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .service-cards,
  .about-content,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .popup-content {
    padding: 1.5rem;
    margin: 0.5rem;
  }

  .alternative-options {
    flex-direction: column;
    align-items: stretch;
  }

  .logo span {
    font-size: 1.2rem;
  }

  .logo img {
    height: 40px;
    width: 40px;
  }

  .navbar {
    padding: 0.8rem 1rem;
  }

  .card,
  .about-item {
    padding: 1.5rem;
  }
}

.font12 h3 {
  font-family: Lobster, cursive;
  font-size: 1.8rem;
  font-weight: normal;
  letter-spacing: 1px;
  color: rgb(247, 247, 247);
}





/* Hiring Section Styles */
.hiring {
  padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hiring .section-header h2 {
  color: #2c3e50;
  margin-bottom: 15px;
}

.hiring .section-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto 40px;
}

.hiring-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hiring-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.hiring-icon {
  font-size: 2.5rem;
  color: #3498db;
  margin-bottom: 20px;
  text-align: center;
}

.hiring-card h3 {
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.positions-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.positions-list li {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 10px;
}

.positions-list li:last-child {
  border-bottom: none;
}

.positions-list li strong {
  color: #3498db;
  margin-right: 10px;
}

.hiring-cta {
  text-align: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px dashed #eee;
}

.hiring-cta h4 {
  color: #2c3e50;
  margin-bottom: 10px;
}

.hiring-cta p {
  color: #666;
  margin-bottom: 20px;
}

.hiring-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hiring-btn:hover {
  background: linear-gradient(135deg, #2980b9 0%, #1f639b 100%);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
  color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hiring {
    padding: 60px 15px;
  }

  .hiring-card {
    padding: 20px;
  }

  .hiring-btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
}