* {
  text-align: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
  
}

/* Add this to your CSS */
.reveal {
  position: relative;
  transform: translateY(100px);
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  transform: translateY(0px);
  opacity: 1;
}


.nav {
  color: rgb(240, 146, 74);
  background-color: rgb(102, 121, 111);
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  position: sticky;
  top: 0px;
  z-index: 10;
}



.nav-c{
display: flex; 
align-items: center;

}

.nav div img {
  height: 100px;
}

.nav-c div:hover{
   color: rgb(240, 146, 74);
}

.nav-c div{
  font-size:30px;
  
  color: white;
  margin-left: 10px;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  font-size: 18px;
  color: white;
  transition: 0.3s;
}

.nav-links a:hover {
  color: rgb(240, 146, 74);
}



/* ---------- Mobile Responsive ---------- */
@media (max-width: 768px) {
  .nav {
    justify-content: space-between;
  }

  
.nav-c div{
  font-size:25px;
  color: white;
  margin-left: 10px;
}

  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: rgb(102, 121, 111);
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
     z-index: 333;
  }

  .nav-links a {
    opacity: 0;
    transform: translateY(-10px);
    padding: 12px 0;
    border-top: 1px solid #f7f4f4;
    font-size: 18px;
    transition: opacity 0.4s ease, transform 0.4s ease;

  }

  .nav-links.active {
    max-height: 400px; /* enough to show all items */
  }

  .nav-links.active a {
    opacity: 1;
    transform: translateY(0);
  }

  /* staggered animation */
  .nav-links.active a:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.active a:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.active a:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.active a:nth-child(4) { transition-delay: 0.4s; }
  .nav-links.active a:nth-child(5) { transition-delay: 0.5s; }
}


/*First page*/

/* Hero Section */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px;
  gap: 40px;
  min-height: 100vh;
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(-45deg, #ff914d, #f0b35c, #f9f9f9, #fff7ec);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
}

/* Left Side - Text */
.hero-text {
  flex: 1;
  max-width: 600px;
  text-align: left;
}

.hero-text h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.8rem;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #ff914d, #f05c5c);
   background-clip: text;  
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 20px;
}

.hero-text ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.hero-text ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #222;
  font-weight: 500;
}

/* CTA Button */
.cta-btn {
  display: inline-block;
  padding: 14px 28px;
  background: linear-gradient(135deg, #5c7cf0, #ff914d);
  color: white;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  margin-top: 15px;
}

.cta-btn:hover {
  background: linear-gradient(135deg, #ff914d,#5c7cf0);
  transform: translateY(-3px);
  box-shadow: 4px 6px 14px rgba(0, 0, 0, 4);
}

/* Right Side - Image */
.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}


/* Glow & Bounce Effect for Features */
.hero-text ul li {
  font-size: 1rem;
  margin-bottom: 8px;
  color: #222;
  font-weight: 500;
  display: inline-block;
  animation: glowText 2s infinite alternate, bounce 4s infinite;
}

/* Glow Keyframes */
@keyframes glowText {
  from { color: #222; text-shadow: none; }
  to { color: #1b1b1b; text-shadow: 0 0 10px #fe0c0c; }
}


@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}


/* Floating Animation */
.floating img {
  animation: float 4s ease-in-out infinite;
}

/* Background Gradient Animation */
@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Floating Effect */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 992px) {

  * {
  text-align: center;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

  .hero {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-text {
    text-align: center;
    max-width: 100%;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text h2 {
    font-size: 1.4rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-image img {
    margin-top: 20px;
  }
}
/* Location*/

#Location{

  padding: 0px;
  border-radius: 2%;
   background: linear-gradient(135deg, #fdddb1, #fecaca);
}


/* ===== Stats Section ===== */
.stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  padding: 60px 20px;
  background: linear-gradient(-45deg, #ff914d, #f0b35c, #f9f9f9, #fff7ec);
   animation: gradientShift 15s ease infinite;
     background-size: 400% 400%; 
  text-align: center;
}

.stat {
  background: #ffffff;
  padding: 25px 35px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeInUp 1s ease forwards;
  opacity: 1;
   background: linear-gradient(45deg, #ff914d, #f0b35c, #f9f9f9, #fff7ec);
   animation: gradientShift 15s ease infinite;
     background-size: 400% 400%;   /* Add this */
  
}

.stat:nth-child(1) { animation-delay: 0.3s; }
.stat:nth-child(2) { animation-delay: 0.6s; }
.stat:nth-child(3) { animation-delay: 0.9s; }

.stat:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 10px 25px rgba(255, 145, 77, 0.3);
}

.stat h3 {
  font-size: 2.5rem;
  color: #ff914d;
  margin-bottom: 10px;
  font-weight: 700;
  animation: pulse 2s infinite;
}

.stat p {
  font-size: 1.1rem;
  color: #333;
  font-weight: 500;
}

/* ===== Services Section ===== */
.services {
  padding: 80px 20px;
 
   background: linear-gradient(45deg, #ff914d, #f0b35c, #f9f9f9, #fff7ec);
   animation: gradientShift 15s ease infinite;
     background-size: 400% 400%;   /* Add this */
  text-align: center;
}

.services h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #ff914d, #f0b35c);
  transform: translateX(-50%);
  border-radius: 5px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.service-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  transform: translateY(40px);
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
  
}

.service-card:nth-child(1) { animation-delay: 0.3s; }
.service-card:nth-child(2) { animation-delay: 0.6s; }
.service-card:nth-child(3) { animation-delay: 0.9s; }
.service-card:nth-child(4) { animation-delay: 1.2s; }

.service-card:hover {
  transform: translateY(-15px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 145, 77, 0.25);
}

.service-card i {
  font-size: 2.5rem;
  color: #ff914d;
  margin-bottom: 15px;
  display: inline-block;
  animation: bounce 2s infinite;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #333;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .stats {
    flex-direction: column;
    gap: 25px;
  }

  .stat h3 {
    font-size: 2rem;
  }

  .services h2 {
    font-size: 1.8rem;
  }

  .service-card {
    padding: 20px 15px;
  }
}



/*location*/

#Location{
  padding: 40px;
}


/*About*/

.about {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 80px 20px;
  background: linear-gradient(45deg, #ff914d, #f0b35c, #f9f9f9, #fff7ec);
   animation: gradientShift 15s ease infinite;
     background-size: 400% 400%; 
}
.about-content { flex: 1; }
.about-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #ff914d;
  position: relative;
}
.about-content h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #ff914d;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.about-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-content ul { list-style: none; padding: 0; }
.about-content ul li {
  margin: 10px 0;
  font-size: 1rem;
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
}
.about-image { flex: 1; }
.about-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  animation: zoomIn 1s ease forwards;
  opacity: 0;
}
/* Animations */
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}
/* Responsive */
@media(max-width: 768px){
  .about { flex-direction: column; text-align: center; }
  .about-content h2::after { left: 50%; transform: translateX(-50%); }
}


/*Review Section*/

.testimonials {
  padding: 80px 20px;
  background: #fff7ec;
  text-align: center;
}
.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #ff914d;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 25px;
}
.testimonial {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  animation: slideUp 1s ease forwards;
  opacity: 0;
}
.testimonial p {
  font-style: italic;
  color: #444;
  margin-bottom: 15px;
}
.testimonial h4 {
  font-size: 1rem;
  color: #333;
  font-weight: bold;
}
/* Animations */
@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}



  /*contacts 2*/


.contact2{
  
  background: #f9f9f9;
  text-align: center;
}
.contact h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #ff914d;
}
.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1;
  text-align: left;
  font-size: 1.1rem;
}
.contact-info a { color: #ff914d; text-decoration: none; }






  /*contacts 1*/



        /* contact image */
      .contact {
        padding: 60px 20px;
       background: linear-gradient(135deg, #fdddb1, #fecaca);
      }
      
      .contact-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 30px;
        max-width: 1000px;
        margin: auto;
      }
      
      .contact-image img {
        width: 250px;
        height: 350px;
        object-fit: cover;
        border-radius: 50%;
        border: 5px solid rgb(75, 120, 120);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }

      .contact-image img:hover {
        border-radius: 10%;
        border: 5px solid rgb(28, 26, 23);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      }
      
      .contact-details {
        text-align: left;
        max-width: 400px;
      }
      
      .contact-details h2 {
        color: #008080;
        margin-bottom: 15px;
      }
      
      .contact-details h2:hover{
        color: #fbb63e;
        transform: scale(1.2);
        transform: translateX(10px);
        margin-bottom: 15px;
      }

      .contact-details p {
        margin: 10px 0;
        font-size: 16px;
        color: #333;
      }
      
      .contact-details a {
        color: #008080;
        text-decoration: none;
        font-weight: bold;
      }
      
      .contact-details a:hover {
        text-decoration: underline;
        
            color:rgb(23, 22, 21);
          
      }


      /* Basic Setup and Font Imports */


.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Section Styling --- */
.why-us {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(-45deg, #ff914d, #f0b35c, #f9f9f9, #fff7ec);
   animation: gradientShift 15s ease infinite;
     background-size: 400% 400%; 
}

.header-section {
    max-width: 700px;
    margin: 0 auto;
}

.pre-heading {
    font-size: 1.2rem;
    color: #888;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.header-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-top: 10px;
    margin-bottom: 20px;
}

.divider {
    width: 60px;
    height: 3px;
    background-color: #d10a11;
    margin: 0 auto 30px;
}

.stats-section {
    margin-top: 40px;
}

.stats-section h4 {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.8;
}


/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.icon-wrapper {
    margin-bottom: 20px;
}

.icon-wrapper .fa-solid {
    font-size: 3rem;
    color: #d10a11;
    transition: transform 0.3s ease;
}
.feature-card:hover .icon-wrapper .fa-solid {
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .header-section h2 {
        font-size: 2rem;
    }

    .stats-section h4 {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .header-section h2 {
        font-size: 1.8rem;
    }
}



/* --- Main Footer Styles --- */
.site-footer {
    background: #2c3e50;
    color: #fff;
    padding: 50px 20px 20px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 20px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h3 {
    font-size: 1.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: #ffcc00;
}
.footer-map h3::after {
    left: 0; /* Align left for map section */
    transform: none;
}

/* Quick Links Column */
.footer-col ul {
    list-style: none;
    padding: 0;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s, transform 0.3s;
    display: inline-block;
}
.footer-col ul li a:hover {
    color: #ffcc00;
    transform: translateX(5px);
}

/* FAQs Column */
.faq-accordion {
    width: 100%;
}
.faq-item {
    background: #444;
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    padding: 15px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #555;
}
.faq-question .fas {
    transition: transform 0.3s ease;
}
.faq-item.active .fa-chevron-down {
    transform: rotate(180deg);
}
.faq-answer {
    padding: 0 15px;
    background: #3a3a3a;
    color: #ccc;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

/* Map Column */
.footer-map iframe {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    border: none;
}

/* Bottom Section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #444;
    padding-top: 20px;
    margin-top: 20px;
    flex-wrap: wrap; /* Allows wrapping on small screens */
}

/* --- New Footer Bottom Layout --- */

.copyright-info {
    font-size: 0.9rem;
    color: #aaa;
}

.creator-info {
    text-align: right;
    margin-top: 10px; /* Space on small screens */
}

.creator-info h4 {
    font-size: 1rem;
    color: #ffcc00;
    margin: 0;
}

.creator-info p {
    font-size: 0.8rem;
    color: #aaa;
    margin: 0;
}



.creator-info a { 
  color: #ff914d;
  margin-left: 5px;
 
  }

  .creator-info a i:hover{ 
  color: #f6af82;
  transform: scale(2);
  
  }

/* --- Responsive adjustments for Footer Bottom --- */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .creator-info {
        text-align: center;
        margin-top: 15px; /* Increase space when stacked */
    }
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #aaa;
    margin: 0;
}
.legal-links a {
    color: #aaa;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
    transition: color 0.3s;
}
.legal-links a:hover {
    color: #ffcc00;
}


/* --- Responsive Styles for Footer --- */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }
    .legal-links a {
        margin: 0 10px;
    }
}

  .go-top {
  position: fixed;
  bottom: 90px;
  right: 30px;
  background:orange;
  color: lavender;
  border: 2px;
  border-color: #222;
  padding: 12px 14px;
  font-size: 20px;
  border-radius: 50%;
  box-shadow: 1px 4px 12px rgba(0, 0, 0, 1.15);
  cursor: pointer;
  opacity: 1;
   text-decoration: none;

  z-index: 999;
}

.go-top:hover{

  color: orange;
  background-color: white;
  text-decoration-line: underline;


}