 html {
  scroll-behavior: smooth;
}
     :root {
  --primary-color: #008080;
  --secondary-color: #006666;
  --accent-color: #00cccc;
  --light-color: #ffffff;
  --dark-color: #333333;
  --gray-color: #f5f5f5;
  --highlight-color: #f97316;
   --indicator-bg: #ccc;
}
 *, *::before, *::after {
  box-sizing: border-box;
  max-width: 100%;
}

.contact-section, 
.contact-wrapper, 
.contact-form, 
.contact-info, 
.contact-form form, 
.info-box, 
footer {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow: visible; /* ✅ fix */
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--dark-color);
  line-height: 1.6;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  background-color: var(--gray-color);
}

/* ========== NAVIGATION ========== */
.navbar {
  background: transparent;
  transition: background 0.3s ease;
  padding: 15px 0;
  z-index: 1030; 
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.navbar-brand img {
  margin-right: 10px;
}
.navbar-brand .brand-text {
  font-weight: bold;
  font-size: 2rem;
}
.navbar-brand .alora {
  color: var(--light-color);
}
.navbar-brand .net {
  color: var(--highlight-color);
}
.nav-link {
  color: var(--light-color);
  font-weight: 500;
  margin: 0 10px;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--highlight-color);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--highlight-color);
}

#mainNavbar {
  background-color: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

#mainNavbar.scrolled {
  background-color: rgba(0, 133, 133, 0.9); /* Teal with transparency */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ========== HERO SECTION ========== */
.hero {
  background: linear-gradient(rgba(0, 128, 128, 0.8), rgba(0, 128, 128, 0.8)),
    url('Heroimg.avif');
  background-size: cover;
  background-position: center;
  color: var(--light-color);
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
}
.hero-content {
   max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  text-align: center; /* Ensure text is centered */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* ========== FEATURES SECTION ========== */
.features {
  padding: 80px 0;
  background-color: var(--gray-color);
}
.feature-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease;
  text-align: center;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-icon {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}
/* ========== SLIDER SECTION ========== */
    .slider{
        background-color: var(--gray-color);
    }
    .slider-wrapper {
      background-color: #f7fffd;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      overflow: hidden;
      margin-bottom: 100px;
    }

    .slider-row {
      display: flex;
      flex-wrap: wrap;
    }

    .slider-img {
      flex: 1 1 50%;
      padding: 0;
    }

    .slider-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .slider-content {
      flex: 1 1 50%;
      padding: 40px 40px 20px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .carousel-inner {
      flex-grow: 1;
    }

    .carousel-item h3 {
      font-size: 2rem;
      font-weight: 500;
      color: var(--primary-color);
      margin-bottom: 15px;
    }

    .carousel-item p {
      font-size: 1.1rem;
      color: #333;
      margin-bottom: 40px;
    }
    
    #infoSlider {
  scroll-margin-top: 100px; /* Adjust based on navbar height */
   
   }

    /* Place indicators outside carousel */
    .custom-indicators {
      display: flex;
      justify-content: flex-start;
      padding: 0 40px 30px;
      margin: 0;
    }

    .custom-indicators button {
      background-color: var(--indicator-bg);
      width: 12px;
      height: 12px;
      border-radius: 50%;
      margin-right: 10px;
      border: none;
      opacity: 1;
      transition: background-color 0.3s ease;
    }

    .custom-indicators .active {
      background-color: var(--primary-color);
    }

    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }


/* ========== SERVICES SECTION ========== */
.services {
  background-color: var(--gray-color);
  padding: 80px 0;
}
.service-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 30px;
}
.service-card:hover {
  border-color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 128, 128, 0.1);
}
.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
}
.price {
  font-size: 2rem;
  color: var(--secondary-color);
  font-weight: 700;
  margin: 20px 0;
}

.service-card .btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  transition: background 0.3s ease;
  text-decoration: none;
 
}
.service-card .btn-primary:hover {
  background: var(--secondary-color);
}


/* Develped by Alishba Sehar */

/* ========== CTA SECTION ========== */
.cta {
  background: linear-gradient(rgba(0, 128, 128, 0.68), rgba(0, 128, 128, 0.318)),
              url('homepage3.avif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--light-color);
  padding: 80px 20px;
  text-align: center;
  margin-top: 70px;
}

.cta h2 {
  font-size: 2.1rem;
  font-weight: 600;
  margin: 0 auto 20px;
  max-width: 900px;
}

.cta p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 800px;
  padding: 0 15px;
}

/* ========== FOOTER ========== */
footer {
  background-color: rgb(0, 32, 32);
  color: var(--light-color);
  padding: 50px 0 20px;
 
}
.footer-links h4 {
  color: var(--light-color);
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
}
.footer-links li {
  margin-bottom: 10px;
  
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color: var(--light-color);
}

.footer-links-group {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
}

footer .container {
  padding-left: 30px;
  padding-right: 30px;
}

/* ========== MOBILE MENU ========== */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
}
.mobile-menu-btn i {
  color: white;
  font-size: 1.7rem;
}
.mobile-menu-btn.hidden {
  display: none !important;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: white;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
  z-index: 1100;
  transition: right 0.3s ease;
  padding: 20px;
}
.mobile-menu-header {
  display: flex;
  justify-content: flex-end;
}

.mobile-menu.active {
  right: 0;
}
.close-menu-btn {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--dark-color);
}
.mobile-nav {
  list-style: none;
  padding: 0;
}
.mobile-nav li {
  margin-bottom: 15px;
}
.mobile-nav a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 1.1rem;
  display: block;
  padding: 8px 0;
  transition: color 0.3s ease;
}
.mobile-nav a:hover {
  color: var(--highlight-color);
  font-weight: 400;
}
.mobile-nav a.active {
  color: var(--primary-color);
  font-weight: 600;
}
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}


/* ========== SCROLL REVEAL ANIMATION ========== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* Develped by Alishba Sehar */
/* ========== Contact page  ========== */
/* Hero Banner */
.contact-hero {
  background: linear-gradient(rgba(0, 128, 128, 0.7), rgba(0, 128, 128, 0.5)),
    url('services.avif') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
}

.contact-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.contact-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
}

.contactus-hero {
  background: linear-gradient(rgba(0, 128, 128, 0.7), rgba(0, 128, 128, 0.5)),
    url('Contactus.avif') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
}

.contactus-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.contactus-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
}


/* Contact Section */
.contact-section {
  padding: 80px 30px;
  background: var(--gray-color);
}

.contact-wrapper {
   display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1200px;
} 

.contact-info {
  flex: 1 1 40%;
}

.contact-form {
  flex: 1 1 55%;
}

.info-box {
  display: flex;
  align-items: flex-start; /* aligns icon with heading */
  gap: 20px;
  padding: 20px 10px;
  background-color: white;
  margin-bottom: 20px;
 box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.info-box i {
  font-size: 2.3rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 4px; /* better alignment with heading */
}

.info-box .info-text {
  display: flex;
  flex-direction: column;
}


.info-box .info-text h4 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
}

.info-box .info-text p {
  margin: 5px 0 0;
  color: #333;
}

.contact-form form {

  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.form-row {
  display: flex;
  gap: 20px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  margin-bottom: 25px;
}

.contact-form .btn-primary {
  background: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn-primary:hover {
  background: var(--secondary-color);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color:  var(--primary-color);    
  outline: none;          /* Removes the browser's default black outline */
  transition: border-color 0.3s ease;
}

/*========== FORM SUCCESS MESSAGE ========== */
.formMessage {
  visibility: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  background-color: var(--primary-color);
  color: white;
  padding: 15px;
  border-radius: 5px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}

.formMessage.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Develped by Alishba Sehar */
/* ========== ABOUT PAGE STYLES ========== */
.about-hero {
  background: linear-gradient(rgba(0, 128, 128, 0.7), rgba(0, 128, 128, 0.5)),
    url('abouthero.avif') no-repeat center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
}
.about-hero h1 {
  font-size: 2.8rem;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-box-orient: vertical;
}
.about-hero p a {
  color: var(--highlight-color);
  text-decoration: none;
  font-weight: 500;
  
}



.about-section {
  background-color: var(--gray-color);
  padding: 80px 20px;
  text-align: center;
}

.about-section h4 {
  font-size: 2.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.about-section h4::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 3px;
}

.about-section p.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #252525;
  margin: 25px auto 0;
  padding: 0 15px;
}


.about-content-section {
  width: 100%;
  background-color: var(--gray-color); /* Full-width grey */
  padding: 80px 20px;
  box-sizing: border-box;

}

.about-content-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  
   max-width: 1100px;
}

.about-text {
  flex: 1 1 50%;
}

.about-text h2 {
  color: var(--primary-color);
  font-size: 2rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

.about-image {
  flex: 1 1 40%;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
/* About Section end */


/* services section */

.services {
  background-color: var(--gray-color);
  padding: 0 0;
  margin-top: 0 !important;
}

.servicepage-items {
  background-color: var(--gray-color);
  width: 100%;
  padding: 60px 20px;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.service-details-section {
    background-color: var(--gray-color);
    padding: 50px 0;
  
}
   .service-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-icon {
  margin-right: 15px;
}

.service-icon i {
  color: var(--primary-color);
  font-size: 2.5rem;
}

.service-text h4 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.service-text p {
  font-size: 1rem;
  color: #333;
}

/* === Privacy Policy Section === */
.privacy-policy {
  background-color: var(--gray-color); /* same as your site theme */
  color: var(--light-color);
  padding: 60px 20px;
  line-height: 1.7;
}

.privacy-policy .container-fluid {
 margin: 0 auto;
  padding: 20px 30px;
  background-color: rgb(9, 29, 29);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.privacy-policy .main-heading {
  font-size: 2rem;
  color: var(--accent-color); /* use your site's accent if available */
  margin-bottom: 30px;
}

.privacy-policy h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 1.3rem;
  color: var(--light-color);
}

.privacy-policy p,ul {
  margin-bottom: 15px;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
}


/* Develped by Alishba Sehar */

/* ========== RESPONSIVE QUERIES ========== */

/* Tablets & below */
@media (max-width: 992px) {
  .hero h1 {
    font-size: 2.5rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .desktop-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }

  .about-content-wrapper {
    padding: 0 50px;
  }
  
}

/* Small tablets & phones */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .cta h2 {
    font-size: 1.8rem;
    padding: 0 10px;
  }

  .cta p {
    font-size: 1rem;
    padding: 0 10px;
  }

  
  .slider-row {
    flex-direction: column;
      }

  .slider-img,
  .slider-content {
    flex: 1 1 100%;
      }

  .slider-content {
    padding: 30px 20px 20px;
      }

  .carousel-item h2 {
    font-size: 1.6rem;
      }

  .carousel-item p {
    font-size: 1rem;
      }

  .custom-indicators {
    justify-content: center;
    padding: 0 20px 30px;
      }
      .price{
        font-size: 1.5rem;
      }


      /* About page styles */
      .contact-wrapper {
        flex-direction: column;
    }
    .form-row {
        flex-direction: column;
    }
    .about-section h4 {
    font-size: 1.6rem;
  }

  .about-section p.lead {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 10px;
  }

    .about-content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .about-text, .about-image {
    flex: 1 1 100%;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 1rem;
  }
  
   .about-content-wrapper {
    padding: 0 20px;
  }

  /* Services section */

  .service-icon i {
    font-size: 2rem;
  }
  .service-text h4 {
    font-size: 1rem;
  }
  .service-text p {
    font-size: 0.9rem;
  }

  .about-section h4 {
    font-size: 1.6rem;
  }
  .about-section p {
    font-size: 1rem;
  }

  .service-card .btn-primary {
    padding: 10px 20px;
    font-size: 0.9rem;
  }

/*footer styles */
  .footer-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: space-between;
  }
    }
/* Mobile phones */
@media (max-width: 576px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .mobile-menu {
    width: 250px;
  }
  .cta {
    padding: 60px 15px;
  }

  .cta h2 {
    font-size: 1.6rem;
  }

  .cta p {
    font-size: 0.95rem;
  }

  .navbar-brand .brand-text {
    font-size: 1.3rem;
  }
  .navbar-brand img {
    height: 45px;
    margin-right: 8px;
  }

  .footer-links-group {
      flex-direction: row;
      justify-content: space-between;
    }
    .footer-links ul {
    padding-left: 0;
  }

  .footer-links li {
    margin-bottom: 10px;
  }
 
}

@media (max-width: 400px) {
  .navbar-brand .brand-text {
    font-size: 1.1rem;
  }

  .navbar-brand img {
    height: 40px;
    margin-right: 6px;
  }

  .contact-wrapper {
    flex-direction: column;
    gap: 20px;
  }

  .contact-form form,
  .info-box {
    font-size: 0.95rem;
    padding: 20px 15px;
  }

  .contact-form input,
  .contact-form textarea {
    font-size: 0.95rem;
  }

  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .service-icon i {
    font-size: 1.7rem;
  }
  .service-text h4 {
    font-size: 0.95rem;
  }
  .service-text p {
    font-size: 0.85rem;
  }

  .about-section h4 {
    font-size: 1.4rem;
  }
   
   
}

/* Mobile adjustments for main heading */
@media (max-width: 767px) {
  .main-heading {
    font-size: 20px !important;       /* smaller font size */
    line-height: 1.1;       /* better spacing */     /* center it for mobile */
    padding: 10px;          /* space around */
    word-wrap: break-word;  /* avoid overflow */
  }
  .privacy-policy h2 {
    font-size:  18px !important; /* smaller heading */
  }
  .privacy-policy p, .privacy-policy ul {
    font-size: 0.9rem; /* smaller text */
    line-height: 1.5; /* better readability */
  }
  .contact-hero h1 {
    font-size: 2.2rem;
  }
  .contact-hero p {
    font-size: 1rem !important;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  /* Tablet styles here */
  .price {
    font-size: 1.2rem;
  }
  .service-card h3 {
    font-size: 1.1rem;
  }
  .service-card p {
    font-size: 0.9rem;
  }
  .feature-card h3 {
    font-size: 1.2rem;

  }
  .feature-card p {
    font-size: 0.9rem;  }

    .feature-icon{
    font-size: 2rem;
    }

   .footer-links h4 {
    font-size: 0.7rem;
  }
  .footer-group h4 {
    font-size: 1rem;
  }
  .footer-group p{
    font-size: 0.8rem;
  }
  .footer-links ul li{
    font-size: 0.6rem;
  }
  .footer-links i {
    font-size: 0.8rem;
  }
  .copyright {
    font-size: 0.8rem;
  }
}

/* Make container wider on large screens, but with clean padding */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;  /* Wider than default Bootstrap container */
  }
}


