/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0a2239;
  color: white;
  padding: 1rem 2rem;
  position: relative;
  z-index: 1000;
}

/* Logo */
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.logo span {
  color: #00bcd4;
}

/* Nav links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}
.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s;
}
.nav-links li a:hover {
  color: #00bcd4;
}
.nav-links li a.active {
  color: #00bcd4;
  border-bottom: 2px solid #00bcd4;
}

/* CTA */
.nav-links .cta {
  padding: 0.3rem 1rem;
  background-color: #00bcd4;
  border-radius: 20px;
  color: #fff;
  font-weight: bold;
}
.nav-links .cta:hover {
  background-color: #089eb2;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  width: 25px;
  height: 3px;
  background-color: white;
  transition: all 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #0a2239;
    flex-direction: column;
    width: 200px;
    display: none;
    padding: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  .hamburger {
    display: flex;
  }
}



/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

/* Slider Backgrounds */

/* Add this inside .slide */
.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide.active {
  opacity: 1;
}

/* Dark overlay */
.slide .overlay {
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.5); /* Dark transparent overlay */
  top: 0;
  left: 0;
  z-index: 1;
}

/* Hero content tweaks */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 2rem;
  animation: fadeInUp 2s ease forwards;
  max-width: 900px;
  margin: 0 auto;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.3;
  color: #f4f7f9;
  animation: bounceIn 1.8s ease;
  text-shadow: 1px 1px 3px #000;
}

.hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: fadeIn 2.5s ease;
}
.hero-cta:hover {
  background-color: #089eb2;
  transform: translateY(-3px);
}

/* Fancy Animations */
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-30px);
  }
  60% {
    opacity: 1;
    transform: scale(1.05) translateY(10px);
  }
  100% {
    transform: scale(1) translateY(0);
  }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-cta {
    font-size: 1rem;
    padding: 0.75rem 1.5rem;
  }
}

.slider {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0; left: 0;
  z-index: 1;
}

.slide {
  position: absolute;
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
}

/* Hero Text & CTA */
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 2rem;
  animation: fadeInUp 2s ease forwards;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  color: #f4f7f9;
  animation: slideInDown 1.5s ease;
}

.hero-cta {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #00bcd4;
  color: white;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  animation: fadeIn 2.5s ease;
}
.hero-cta:hover {
  background-color: #089eb2;
}

/* Animations */
@keyframes slideInDown {
  0% { transform: translateY(-50px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.8rem;
  }

  .hero-cta {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
  }
}



/* Intro Section */
.intro-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 10%;
  gap: 3rem;
  background-color: #f4f7f9;
  flex-wrap: wrap;
}

.intro-text {
  flex: 1;
  min-width: 300px;
  animation: slideInLeft 1.5s ease forwards;
}

.intro-text h2 {
  font-size: 2.5rem;
  color: #0a2239;
  font-weight: bold;
  margin-bottom: 1rem;
}

.intro-text h2 span {
  color: #00bcd4;
}

.intro-text p {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.intro-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
  animation: fadeInRight 1.8s ease forwards;
}

.intro-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cta-button {
  display: inline-block;
  margin-top: 1.5rem;
  padding: 0.9rem 2rem;
  background-color: #00bcd4;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}
.cta-button:hover {
  background-color: #089eb2;
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0, 188, 212, 0.4);
}




/* Animations */
@keyframes slideInLeft {
  0% {
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes fadeInRight {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .intro-section {
    flex-direction: column;
    padding: 3rem 2rem;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 2rem;
  }

  .intro-text p {
    font-size: 1rem;
  }
}



/* Services Section */
.services-section {
  padding: 5rem 10%;
  background-color: #fff;
  text-align: center;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background-color: #f4f7f9;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.25rem;
  color: #0a2239;
  margin: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #333;
  margin: 0 1rem 1.5rem;
}

.service-card .btn {
  margin: auto 1rem 1.5rem;
  background-color: #00bcd4;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 500;
  width: fit-content;
}

.service-card .btn:hover {
  background-color: #0a2239;
}

.service-cta {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background-color: #00bcd4;
  color: #fff;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.service-cta:hover {
  background-color: #089eb2;
  transform: scale(1.05);
}

.card-description {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

/* Extra Hover Effect on Entire Card */
.service-card:hover .card-description {
  color: #0a2239;
}

.service-card:hover img {
  filter: brightness(0.7);
  transition: filter 0.3s ease;
}

.service-card:hover h3 {
  color: #00bcd4;
}


/* Responsive */
@media (max-width: 768px) {
  .services-cards {
    flex-direction: column;
    align-items: center;
  }

  .service-card {
    max-width: 100%;
  }
}



/* Sectors Section */
.sectors-section {
  padding: 5rem 10%;
  background-color: #f4f7f9;
  text-align: center;
}

.sectors-section .section-title {
  font-size: 2rem;
  color: #0a2239;
  margin-bottom: 3rem;
}

.sectors-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.sector-card {
  background-color: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
}

.sector-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.sector-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.sector-card h3 {
  font-size: 1.25rem;
  color: #0a2239;
  margin: 1rem;
}

.sector-card p {
  font-size: 0.95rem;
  color: #333;
  margin: 0 1rem 1.5rem;
}

.sector-card .btn {
  margin: auto 1rem 1.5rem;
  background-color: #00bcd4;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  font-weight: 500;
  width: fit-content;
}

.sector-card .btn:hover {
  background-color: #0a2239;
}

.sector-cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #00bcd4;
  color: #fff;
  border-radius: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.sector-cta:hover {
  background-color: #0a2239;
  transform: translateY(-2px);
}


/* Responsive */
@media (max-width: 768px) {
  .sectors-cards {
    flex-direction: column;
    align-items: center;
  }

  .sector-card {
    max-width: 100%;
  }
}


.why-choose-section {
  background-color: #f4f7f9;
  padding: 5rem 10% 4rem;
  text-align: center;
}

.why-choose-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.choose-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.choose-card .icon {
  color: #00bcd4;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
}

.choose-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a2239;
}


.choose-card {
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.choose-card .icon {
  color: #00bcd4;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  transition: color 0.3s ease;
}

.choose-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0a2239;
  transition: color 0.3s ease;
}

.choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
  background-color: #e0f7fa;
}

.choose-card:hover .icon {
  color: #0a2239;
}

.choose-card:hover h3 {
  color: #00bcd4;
}


.cta-section {
  background-color: #0a2239;
  color: #fff;
  padding: 4rem 10%;
  text-align: center;
}

.cta-container h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.cta-container p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #f4f7f9;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #00bcd4;
  color: #fff;
}

.btn-primary:hover {
  background-color: #0097a7;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid #00bcd4;
  color: #00bcd4;
}

.btn-secondary:hover {
  background-color: #00bcd4;
  color: #fff;
}


.site-footer {
  background-color: #003566;
  color: #f4f7f9;
  padding: 4rem 10% 2rem;
  font-size: 0.95rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #00bcd4;
  margin-bottom: 1rem;
}

.footer-section p {
  margin: 0.3rem 0;
  color: #f4f7f9;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  color: #f4f7f9;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00bcd4;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 0.8rem;
  margin-top: 0.5rem;
}

.social-icon {
  background-color: #333;
  color: #f4f7f9;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1rem;
}

.social-icon:hover {
  background-color: #00bcd4;
  color: #0a2239;
}

/* Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  font-size: 0.85rem;
}

.footer-bottom span {
  color: #de0089;
}