/* Modern Theme Variables */
:root {
  --primary: #005f73;
  --primary-dark: #003d4d;
  --primary-light: #4d8fa3;
  --secondary: #ee9b00;
  --secondary-dark: #b57500;
  --secondary-light: #ffb733;
  --accent: #0a9396;
  --dark: #001219;
  --gray-dark: #495057;
  --gray: #6c757d;
  --gray-light: #e9ecef;
  --light: #f8f9fa;
  --white: #ffffff;
  --success: #28a745;
  --danger: #dc3545;
  --warning: #ffc107;
  --info: #17a2b8;
}

/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--gray-dark);
  background-color: var(--light);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-subtitle {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.section-description {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn i {
  margin-left: 8px;
}

.btn-primary {
  background-color: var(--secondary);
  color: var(--dark);
}

.btn-primary:hover {
  background-color: var(--secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 155, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 95, 115, 0.2);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
}

.logo h1 span {
  color: var(--secondary);
}

.tagline {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 2px;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

.main-nav a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--secondary);
  transition: width 0.3s ease;
}

.main-nav a:hover:after,
.main-nav a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--dark);
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0, 30, 43, 0.9), rgba(0, 30, 43, 0.0)), url('00000.jpg') no-repeat center center/cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--white);
}

.hero h2 span {
  color: var(--secondary);
}

.hero .lead {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}

.stat-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Services Section */
.services {
  padding: 100px 0;
  background-color: var(--white);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid var(--gray-light);
  text-align: center;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--primary-light);
}

.service-icon {
  width: 80px;
  height: 80px;
  background-color: rgba(10, 147, 150, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
  font-size: 1.8rem;
}

.service-card h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

.service-card p {
  margin-bottom: 20px;
  color: var(--gray);
}

.service-link {
  font-weight: 500;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
}

.service-link i {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.service-link:hover i {
  transform: translateX(5px);
}

/* About Section */
.about {
  padding: 100px 0;
  background-color: var(--light);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  margin-bottom: 20px;
}

.expertise-list li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.expertise-list i {
  color: var(--secondary);
  margin-right: 10px;
  margin-top: 3px;
}

.certifications {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.cert-badge {
  background-color: var(--white);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cert-badge i {
  margin-right: 8px;
  color: var(--secondary);
}

.about-image {
  flex: 1;
  position: relative;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--secondary);
  color: var(--dark);
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 10px 20px rgba(238, 155, 0, 0.3);
  display: flex;
  flex-direction: column;
}

/* Contact Section */
.contact {
  padding: 100px 0;
  background-color: var(--white);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form {
  background-color: var(--light);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
  position: relative;
  margin-bottom: 25px;
}

.form-group label {
  position: absolute;
  top: 12px;
  left: 15px;
  color: var(--gray);
  font-weight: 400;
  transition: all 0.3s ease;
  pointer-events: none;
  background-color: var(--light);
  padding: 0 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--gray-light);
  border-radius: 4px;
  background-color: var(--light);
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 95, 115, 0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select:not([value=""]) + label {
  top: -10px;
  font-size: 0.8rem;
  color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-card {
  background-color: var(--light);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.info-content h4 {
  margin-bottom: 5px;
  color: var(--primary);
}

.emergency-contact {
  background-color: rgba(220, 53, 69, 0.1);
  padding: 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  border-left: 4px solid var(--danger);
}

.emergency-icon {
  width: 50px;
  height: 50px;
  background-color: var(--danger);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.emergency-content h4 {
  color: var(--danger);
  margin-bottom: 5px;
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-about h3 {
  color: var(--white);
  margin-bottom: 15px;
}

.footer-about h3 span {
  color: var(--secondary);
}

.footer-about p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--secondary);
  color: var(--dark);
}

.footer-links h4,
.footer-services h4,
.footer-newsletter h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.footer-links li,
.footer-services li {
  margin-bottom: 10px;
}

.footer-links a,
.footer-services a {
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-links i,
.footer-services i {
  margin-right: 8px;
  font-size: 0.8rem;
}

.footer-newsletter p {
  opacity: 0.8;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-family: 'Roboto', sans-serif;
}

.newsletter-form button {
  background-color: var(--secondary);
  color: var(--dark);
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: var(--secondary-dark);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-bottom p {
  opacity: 0.7;
  font-size: 0.9rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  color: var(--secondary);
}

/* Responsive Design */
@media (max-width: 992px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-top: 40px;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .main-nav ul {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: all 0.5s ease;
  }
  
  .main-nav ul.active {
    left: 0;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .header .container {
    height: 70px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
  
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }
  
  .section-header {
    margin-bottom: 30px;
  }
  
  .services,
  .about,
  .contact {
    padding: 60px 0;
  }
}