/* ========= GLOBAL RESET ========= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #f5f5f5;
  color: #222;
  line-height: 1.6;
  scroll-behavior: smooth;
}

/* ========= NAVBAR ========= */
.navbar {
  width: 100%;
  padding: 18px 5%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: 0.3s;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.133);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(238, 238, 238, 0.8);
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-left: -40px;
}

.logo img{
  margin-top: -40px;
  margin-bottom: -40px;
  margin-right: -30px;
}

.navbar.scrolled .logo{
  color: #000000;
}

/* Navbar Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 30px;
}

.nav-links li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.navbar.scrolled .nav-links li a {
  color: #000000;
}

.nav-links li a:hover {
  color: #0cd835;
}

/* CTA */
.cta {
  background: #ffffff;
  padding: 10px 16px;
  color: rgb(4, 207, 38) !important;
  border-radius: 6px;
}

.cta:hover {
  background: #ffffff17;
  color: rgb(24, 255, 40) !important;
}

/* ========= HAMBURGER MENU ========= */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 26px;
  height: 3px;
  background: white;
  transition: 0.3s;
}

.navbar.scrolled .hamburger span {
  background: #333;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    right: 5%;
    background: white;
    width: 200px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    margin-bottom: 15px;
  }

  .nav-links li a {
    color: #333;
  }
}

/* ========= HERO SECTION ========= */
.hero {
  height: 100vh;
  width: 100%;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url('assets/hero-img.webp') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  filter: blur(3px);
  z-index: -1;
}

.hero-content {
  text-align: center;
  color: white;
  max-width: 650px;
  z-index: 2;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* ========= BROWSE BUTTON ========= */
.browse-section {
  margin-top: 30px;
}

.browse-btn {
  display: inline-block;
  padding: 12px 40px;
  background: #007acc00;
  color: white;      
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  transition: 0.3s;
  border: 2px solid rgb(255, 255, 255);
}

.browse-btn:hover {
  background: transparent;
  color: white;
  border-color: rgb(62, 255, 68);
  transform: translateY(-2px);
}

/* ========= SMOOTH SECTIONS ========= */
.services-section,
.about-section {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.services-section.visible,
.about-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========= SERVICES SECTION ========= */
.services-section {
  padding: 30px 5%;
  background: #fff;
}

.section-title {
  font-size: 36px;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  color: #333;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  background: #f5f5f5;
}

.service-content {
  padding: 20px;
}

.service-card h3 {
  margin: 0 0 15px 0;
  font-size: 22px;
  color: #333;
}

.service-card p {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.6;
}

.view-btn {
  display: inline-block;
  padding: 5px 20px;
  background: #000000;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.view-btn:hover {
  background: #00000000;
  color: #000000;
  border:2px solid black
}

/* ========= SERVICE DETAILS PAGE ========= */
.service-details-section {
  padding: 120px 5% 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-details-section h1 {
  text-align: center;
  font-size: 36px;
  margin-bottom: 20px;
  color: #007acc;
}

.service-main-img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  margin: 20px auto;
  display: block;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.service-details-section h2 {
  text-align: center;
  font-size: 28px;
  margin: 40px 0 20px;
  color: #333;
}

.provider-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

/* ========= PROVIDER CARD IMAGES ========= */
.provider-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  background: #f5f5f5;
  object-position: center;
  border: 3px solid #f0f0f0;
}

.provider-card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 400px;
}

.provider-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
  min-height: 30px;
}

.provider-card p {
  color: #666;
  margin-bottom: 15px;
  line-height: 1.5;
  flex-grow: 1;
  min-height: 60px;
}

.provider-contact {
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #eee;
  width: 100%;
}

/* ========= ABOUT SECTION ========= */
.about-section {
  padding: 80px 5%;
  background: #f3f3f4;
  text-align: center;
}

.about-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #333;
}

.about-section p {
  max-width: 700px;
  margin: auto;
  font-size: 18px;
  color: #666;
}

/* ========= PROVIDER CTA SECTION ========= */
.provider-cta-section {
  background: linear-gradient(135deg, #3c3c3c 0%, #161b69 100%);
  padding: 60px 5%;
  text-align: center;
  color: white;
  margin: 60px 0;
}

.provider-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.provider-cta-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.provider-cta-section p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
  line-height: 1.6;
}

.cta-steps {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.cta-step {
  background: rgba(0, 0, 0, 0.1);
  padding: 25px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  flex: 1;
  min-width: 200px;
  max-width: 250px;
}

.cta-step-number {
  width: 40px;
  height: 40px;
  background: white;
  color: #007acc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 15px;
}

.cta-step h4 {
  font-size: 18px;
  margin-bottom: 10px;
}

.cta-step p {
  font-size: 14px;
  margin-bottom: 0;
  opacity: 0.8;
}

.provider-cta-btn {
  display: inline-block;
  padding: 15px 35px;
  background: white;
  color: #007acc;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 18px;
  transition: 0.3s;
  border: 2px solid white;
}

.provider-cta-btn:hover {
  background: transparent;
  color: white;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .cta-steps {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-step {
    max-width: 100%;
  }
  
  .provider-cta-section h2 {
    font-size: 28px;
  }
}

/* ========= FOOTER ========= */
.footer {
  background: #0d0d0d;
  color: #fff;
  padding: 60px 20px 30px;
  margin-top: 60px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 35px;
}

.footer-logo {
  color: #00aaff;
  font-size: 26px;
  font-weight: 700;
}

.footer-section h3 {
  margin-bottom: 8px;
}

.footer-section p,
.footer-section ul li a {
  color: #ccc;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  text-decoration: none;
  transition: 0.3s;
}

.footer-section ul li a:hover {
  color: #00aaff;
}

.social-links a {
  margin-right: 12px;
  color: #4eb1f7;
  text-decoration: none;
  transition: 0.3s;
}

.social-links a:hover {
  color: #ffffff;
}

/* Newsletter */
.newsletter-form {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px;
  border-radius: 6px;
  border: none;
}

.newsletter-form button {
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  background: #00aaff;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
  background: #007acc;
}

.footer-bottom {
  margin-top: 40px;
  text-align: center;
  color: #777;
  border-top: 1px solid #222;
  padding-top: 15px;
}

/* ========= RESPONSIVE ========= */
@media (max-width: 768px) {
  .hero {
    height: 80vh;
    padding: 0 8%;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 18px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .provider-list {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* ========= SERVICE PAGE NAVBAR FIX ========= */
body:not(#home) .navbar {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(238, 238, 238, 0.8);
}

body:not(#home) .logo {
  color: #000000;
}

body:not(#home) .nav-links li a {
  color: #333;
}

body:not(#home) .hamburger span {
  background: #333;
}

/* ========= PROVIDER CONTACT INFO ========= */
.provider-contact {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

/* ========= ORDER BUTTON ========= */
.order-btn {
  display: inline-block;
  padding: 10px 16px;
  background: #000000;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
  border: none;
  cursor: pointer;
  width: 100%;
}

.order-btn:hover {
  background: #333333;
}

/* ========= MODAL OVERLAY ========= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

.order-modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid #eee;
  background: #f8f9fa;
}

.modal-header h3 {
  margin: 0;
  color: #333;
}

.close-modal {
  font-size: 24px;
  cursor: pointer;
  color: #666;
  transition: 0.3s;
}

.close-modal:hover {
  color: #000;
}

.modal-body {
  padding: 20px;
}

.order-summary {
  background: #f0f8ff;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #007acc;
}

/* ========= FORM STYLES ========= */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #007acc;
  box-shadow: 0 0 0 3px rgba(0, 122, 204, 0.1);
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.cancel-btn,
.submit-btn {
  flex: 1;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.cancel-btn {
  background: #f5f5f5;
  color: #333;
}

.cancel-btn:hover {
  background: #e5e5e5;
}

.submit-btn {
  background: #007acc;
  color: white;
}

.submit-btn:hover {
  background: #005a9e;
}

/* ========= CONFIRMATION MODAL ========= */
.confirmation-modal {
  background: white;
  border-radius: 12px;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  text-align: center;
}

.confirmation-header {
  padding: 30px 20px 20px;
  background: #f8f9fa;
}

.confirmation-icon {
  width: 60px;
  height: 60px;
  background: #4CAF50;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  margin: 0 auto 15px;
}

.confirmation-header h3 {
  margin: 0;
  color: #333;
  font-size: 22px;
}

.confirmation-body {
  padding: 20px 25px;
}

.confirmation-body p {
  margin-bottom: 15px;
  line-height: 1.5;
  color: #555;
}

.confirmation-details {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  border-left: 4px solid #4CAF50;
}

.confirmation-actions {
  padding: 20px;
  border-top: 1px solid #eee;
}

.confirm-ok-btn {
  padding: 12px 30px;
  background: #007acc;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-size: 16px;
}

.confirm-ok-btn:hover {
  background: #005a9e;
}

.success-notice {
  background: #4CAF50;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;

}





