* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy-blue: #000063;
  --light-navy: #000081;
  --silver: #a4a9ac;
  --light-gray: #cfcfcf;
  --very-light-gray: #e3e3e3;
  --white: #ffffff;
}

body {
  font-family: "Arial", sans-serif;
  line-height: 1.6;
  color: var(--navy-blue);
  background-color: var(--very-light-gray);
  overflow-x: hidden;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--light-gray);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
  box-shadow: 0 2px 20px rgba(0, 0, 99, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2rem;
}

.logo {
  color: var(--white);
  animation: slideInLeft 1s ease;
}
.logo img {
  width: 350px;
  height: auto;
  display: block;
  background: transparent;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--navy-blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--navy-blue);
  transform: translateY(-2px);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--light-gray);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  font-size: 50px;
  cursor: pointer;
  color: var(--light-navy);
  user-select: none;
}


/* Hero Section */
.hero {
  height: 100vh;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(bg-img.png);
  background-size: cover;
  background-position: center;
  filter: blur(5px) brightness(75%);          
  transform: scale(1.08);      
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to top, rgba(227, 227, 227, 0.1), transparent);
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero .tagline {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--light-gray);
  animation: fadeInUp 1s ease 0.7s both;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease 0.9s both;
}

.highlight {
  color: var(--navy-blue);
}

.hero-content .cta-button {
  display: inline-block;
  background: var(--light-gray);
  color: var(--navy-blue);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 2s infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}
.contact-grid .cta-button {
  display: block;
  text-align: center;
  background: var(--navy-blue);
  color: var(--light-gray);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 2s infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  margin-top: 20px;
}
.cta-button {
  display: inline-block;
  background: var(--white);
  color: var(--navy-blue);
  padding: 1.2rem 2.5rem;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  animation: pulse 2s infinite;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 99, 0.1), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--light-gray);
  animation: none;
}
.contact-grid .cta-button:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  background: var(--white);
  color: var(--light-navy);
  animation: none;
}

/* Services Section */
.services {
  padding: 5rem 2rem;
  background: var(--white);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--navy-blue);
  animation: fadeInUp 1s ease;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: var(--light-navy);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.2s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--very-light-gray);
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  animation: fadeInUp 1s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 99, 0.1), transparent);
  transition: left 0.5s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 99, 0.15);
  border-color: var(--navy-blue);
  background: var(--white);
}

.service-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--navy-blue), var(--light-navy));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgba(0, 0, 99, 0.2);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 0, 99, 0.3);
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--navy-blue);
}

/* Why Choose Us Section */
.why-choose {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--light-gray) 0%, var(--very-light-gray) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-top: 3rem;
}

.why-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--navy-blue);
}

.why-list {
  list-style: none;
  margin: 2rem 0;
}

.why-list li {
  padding: 0.5rem 0;
  position: relative;
  padding-left: 2rem;
  animation: slideInLeft 1s ease;
}

.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--navy-blue);
  font-weight: bold;
}

.credentials {
  background: var(--white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  animation: fadeInRight 1s ease;
}

.credentials h3 {
  color: var(--navy-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* About Page Styles */
.about-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy-blue);
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(bg-img.png);
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(75%);
  transform: scale(1.08);
  z-index: 1;
}

.about-content {
  padding: 5rem 2rem;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.about-card {
  background: var(--very-light-gray);
  padding: 2.5rem;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.about-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 99, 0.1);
  border-color: var(--navy-blue);
  background: var(--white);
}

.about-card h3 {
  color: var(--navy-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

/* Contact Page Styles */
.contact-hero {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: var(--navy-blue);
}
.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url(bg-img.png);
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(75%);
  transform: scale(1.08);
  z-index: 1;
}

.contact-content {
  padding: 5rem 2rem;
  background: var(--white);
}

.contact-grid {
  display: block;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-info {
  background: var(--very-light-gray);
  padding: 2.5rem;
  border-radius: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(10px);
  box-shadow: 0 5px 15px rgba(0, 0, 99, 0.1);
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--navy-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-right: 1rem;
  font-size: 1.2rem;
}

.working-hours {
  background: var(--white);
  padding: 2rem;
  border-radius: 10px;
  margin-top: 2rem;
}

.working-hours h4 {
  color: var(--navy-blue);
  margin-bottom: 1rem;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--light-gray);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Footer */
.footer {
  background: var(--navy-blue);
  color: var(--white);
  padding: 3rem 2rem 1rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
  .logo img {
    width: 220px;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--light-gray);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 0;
    display: none;
    gap: 1rem;
  }
  
  .nav-menu.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }
  
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}
