
/* ===== Top Bar ===== */
.top-bar {
  background-color: #00ffff; /* Cyan color */
  font-family: 'Lexend', sans-serif;
  padding: 14px 0; /* Increased height */
  text-align: center;
}

.call-link {
  color: #005050; /* Black text for better contrast */
  font-size: 22px; /* Bigger text */
  font-weight: 700; /* Bold */
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.call-link:hover {
  color: #007bff; /* Blue hover color */
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

    .navbar {
  background-color: #005050; /* bluish sea green */
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}

    .navbar-brand {
      font-weight: bold;
      font-size: 24px;
      color: white !important;
    }

    .navbar-nav .nav-link {
  color: white !important;
  margin-right: 15px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #00ffff !important; /* light cyan hover color */
  text-shadow: 0 0 8px rgba(0, 255, 255, 0.7);
}

    /* Hero Section */
.hero-section {
  position: relative;
  background: url('/img/23171.jpg') 
              no-repeat center center/cover;
  width: 100%;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55); /* dark overlay for text clarity */
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-section .container .mb-3{
    font-size: 50px;
}

/* Button Style */
.call-btn {
  background-color: #008b8b;
  color: white;
  border: 2px solid transparent;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.call-btn:hover {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}
/* Services Section */
.services-section {
  background-color: #1c1c1c;
  color: white;
  width: 100%;
}

.section-title {
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
  color: #00ffff;
}

/* Service Cards */
.service-card {
  background: #2a2a2a;
  border-radius: 15px;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
  cursor: pointer;
}

.service-card i {
  color: #00ffff;
  transition: color 0.3s ease;
}

.service-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: #dcdcdc;
}

/* Hover Effects */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

.service-card:hover i {
  color: #ffffff;
}

/* Contact Button */
.service-btn {
  background-color: #008b8b;
  color: white;
  border-radius: 25px;
  padding: 8px 20px;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-btn:hover {
  background-color: transparent;
  border: 2px solid #00ffff;
  color: #00ffff;
}
.about-section {
  background: linear-gradient(135deg, #f9f9f9, #eef3f7);
  padding: 80px 0;
}

.about-text h2 {
  font-size: 2rem;
  color: #1c1c1c;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.about-text .highlight {
  color: #007bff;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.7;
}

.about-section .btn-primary {
  background-color: #007bff;
  border: none;
  border-radius: 25px;
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.about-section .btn-primary:hover {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}

.about-image img {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-image img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 123, 255, 0.3);
}
/* ===== Contact Section Styling ===== */
.contact-section {
  background: linear-gradient(135deg, #e8f0ff, #ffffff);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1c1c1c;
  text-shadow: 2px 2px 5px rgba(0,0,0,0.1);
}

.section-title span {
  color: #007bff;
}

.contact-card {
  background: #fff;
  border: none;
  transition: all 0.4s ease;
}

.contact-card .icon i {
  font-size: 40px;
  color: #007bff;
  transition: transform 0.3s ease;
}

.contact-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #1c1c1c;
}

.contact-card p {
  color: #666;
  font-size: 0.95rem;
}

.contact-card .btn {
  border-radius: 25px;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
}

.contact-card:hover .icon i {
  transform: scale(1.2);
}

.contact-card .btn:hover {
  background-color: #0060c7;
  color: #fff;
  border: none;
  box-shadow: 0 0 10px rgba(0, 123, 255, 0.5);
}
/* ===== Get Started Section ===== */
#get-started {
  background: linear-gradient(135deg, #0068d8, #00b6ce);
  height: 65vh;
  color: #fff;
}

.get-started-card {
  background: rgba(255, 255, 255, 0.1);
  width: 90%;
  height: 55vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.get-started-card h2 {
  font-size: 2rem;
  font-weight: 700;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.get-started-card p {
  font-size: 1.1rem;
  color: #f1f1f1;
}

.get-started-card .btn {
  border-radius: 30px;
  padding: 10px 30px;
  font-size: 1rem;
  background-color: #fff;
  color: #0055af;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
}

.get-started-card .btn:hover {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.get-started-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

    /* Footer */
    footer {
      background-color: #1c1c1c;
      color: white;
      padding: 20px 0;
      text-align: center;
    }