@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
  --poppins-: "Poppins", sans-serif;
  --roboto-: "Roboto", sans-serif;
  --primary-color: #ffffff;
  --second-color-: #1e1e21;
}

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

html {
  width: 100%;
  height: 100%;
}

/* --------------- Navbar ------------ */

/* Navbar Base */
.navbar {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
 
  background: white;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* Container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
  color: #1c9aa5;
}

.logo img {
  height: 100px;
  margin-left: 4rem;}


/* Nav Links */
.nav-links {
  display: flex;
  gap: 35px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: 0.3s ease;
}

/* Premium underline animation */
.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -6px;
  background: linear-gradient(90deg, #1c9aa5, #4dc3c8);
  transition: 0.3s;
}

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

.nav-links a:hover {
  color: #1c9aa5;
}

/* Active */
.nav-links a.active {
  color: #1c9aa5;
}

/* CTA Button */
.nav-btn {
  padding: 10px 20px;
  background: linear-gradient(135deg, #1c9aa5, #4dc3c8);
  color: white;
  border-radius: 25px;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* ---------- Main Background ------------ */
/* Hero Section */
.hero {
  position: relative;
  height: 90vh;
  background: url('hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay for readability */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

/* Content */
.hero-content {
  position: relative;
  text-align: center;
  color: #ff5a3c;
  max-width: 800px;
}

/* Heading */
.hero-content h1 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.3;
}

/* Line */
.line {
  width: 80%;
  height: 2px;
  background: #ddd;
  margin: 20px auto;
}

/* Subtitle */
.hero-content p {
  font-size: 20px;
  color: #fff;
  letter-spacing: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
      font-size: 30px;
  }

  .hero-content p {
      font-size: 16px;
  }
}





/* Welcome Section */
.welcome {
  text-align: center;
  padding: 60px 20px;
}

.welcome h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.welcome p {
  max-width: 600px;
  margin: auto;
  color: #666;
  line-height: 1.6;
}



.email-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 25px;
  background: linear-gradient(135deg, #1c9aa5, #4dc3c8);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s ease;
}

.email-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}


body {
  font-family: 'Segoe UI', sans-serif;
  background: #f5f7f8;
}

/* Section */
.about {
  margin-top: -40px;
  padding: 60px 10%;
}

/* Title */
.about-title {
  text-align: center;
  font-size: 40px;
  color: #1c9aa5;
  margin-bottom: 40px;
}

/* Container */
.about-container {
  display: flex;
  align-items: center;
  gap: 40px;
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Image */
.about-image img {
  width: 400px;
  border-radius: 20px;
  object-fit: cover;
}

/* Content */
.about-content h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333;
}

.about-content h2 span {
  color: #ff5a3c;
}

.about-content p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 15px;
}



/* Responsive */
@media (max-width: 900px) {
  .about-container {
      flex-direction: column;
      text-align: center;
  }

  .about-image img {
      width: 100%;
  }
}

/* Section */
.team {
  padding: 60px 10%;
  background: #f5f7f8;
  text-align: center;
}

/* Title */
.team-title {
  font-size: 36px;
  margin-bottom: 40px;
  color: #1c9aa5;
}

/* Container */
.team-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* Card */
.team-card {
  background: white;
  padding: 25px;
  width: 280px;
  border-radius: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* Image */
.team-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 15px;
}

/* Name */
.team-card h3 {
  font-size: 20px;
  margin-bottom: 5px;
}

/* Role */
.team-card span {
  display: block;
  color: #ff5a3c;
  font-weight: 600;
  margin-bottom: 10px;
}

/* Description */
.team-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

.services {
  padding: 60px 10%;
  background: #ffffff;
  text-align: center;
}

.services-title {
  font-size: 36px;
  color: #1c9aa5;
  margin-bottom: 10px;
}

.services-subtitle {
  color: #666;
  margin-bottom: 40px;
}

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

/* Card */
.service-card {
  background: #f5f7f8;
  padding: 25px;
  border-radius: 15px;
  text-align: left;
  transition: 0.3s;
  border: 1px solid transparent;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.service-card p {
  color: #555;
  font-size: 14px;
  line-height: 1.6;
}

/* Hover effect */
.service-card:hover {
  background: white;
  border: 1px solid #1c9aa5;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact {
  padding: 60px 10%;
  background: #f5f7f8;
  text-align: center;
}

.contact h2 {
  font-size: 36px;
  color: #1c9aa5;
  margin-bottom: 30px;
}

.contact-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-card {
  background: white;
  padding: 30px;
  width: 250px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.contact-card h3 {
  margin-bottom: 15px;
  color: #333;
}

.contact-card p {
  font-size: 16px;
  color: #555;
  margin: 5px 0;
}

/* Hover effect */
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}















