*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body{
  font-family: poppins,sans-serif;
}
/*MAIN HEADING*/

:root{
--primary-color: #2a9d8f;
--accent-color:#FFB703;
--dark-text:#212529;
--light-text:#f8f9fa;
}



header {
  
  background:#2a9d8f;
  max-width: 100%;
  z-index: 1000;
}
header ul li a {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8f9fa;
}
.contact-banner {
  display: flex;
  justify-content: space-around;
  padding: 30px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8f9fa;
  list-style-type: none;
}

/*NEW NAVBAR GOES HERE*/
.nav-bar{
    position: sticky;
    top: -1px;
    z-index: 1000;
}
nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #f8f9fa;
  color: var(--light-text-color);
  padding: 15px 20px;
  position: relative;
}

.logo {
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: bold;
  
}
.logo a {
  text-decoration: none;
  color: #212529;
  cursor: pointer;
}
.brand{
    color: #FFB703;
    /* background-color: #c1121f; */
    border-radius: 6px;
}
.city{
    font-size: 1.3rem;
    letter-spacing: .3rem;
}
.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
}

.nav-links li {
  position: relative;
}

.nav-links li a {
  color: #212529;
  font-weight: 600;
  text-decoration: none;
  padding: 10px;
  display: block;
}

.nav-links li a.active,
.nav-links li a[href*="#"]:not([href="#"]):visited {
  border-bottom: 2px solid #9e2a2b;
}

.nav-links li a.active,
.nav-links ul li a.active,
.nav-links li.has-submenu > a.active,
.nav-links li a:hover,
.nav-links ul li a:hover {
  border-bottom: 1px solid #9e2a2b;
}

.nav-links li:hover > ul {
  display: block;
  transition: all .8s ease-in;
}

.nav-links ul {
  display: none;
  position: absolute;
  background-color: #f8f9fa;
  top: 100%;
  left: 0;
  list-style: none;
  min-width: 180px;
  z-index: 999;
  transition: all .8s ease-in;
}

.nav-links ul li a {
  padding: 10px;
}
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 20px;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  background: #212529;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/*ABOUT HERO SECTION*/
.aboutus-hero{
    padding: 60px 0;
     background:linear-gradient(to right,#bde0fe,#c9efdc,#f2bbf1);
}
#aboutus{
    font-size: 2.5rem;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 15px;
    text-decoration-color: rgb(65, 65, 66);
    margin-bottom: 50px;
}

.aboutus-text{
    color: var(--dark-text);
    /* border: 1px solid #a63c06; */
    padding: 40px;
    border-radius: 20px;   
    
}
.aboutus-text h1{
    font-size: 2.4rem;
    padding-bottom: 30px;
}
.aboutus-text h1 span{
color: #713ca5;
}
.aboutus-text h1 .aboutus-italics{
  font-style: italic;
  color: var(--dark-text);
}
.aboutus-text p{
    font-size: 1.6rem;
    margin-bottom: 20px;
}
.aboutus-text p span{
    color: #1b5f52;
    font-size: 1.8rem;
    font-weight: 900;
}


.aboutus-image img{
width: 100%;
max-width: 450px;
object-fit: cover;
vertical-align: middle;
border-radius: 20px;
}

.aboutus-container{
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
    display: flex;
    flex-wrap: wrap-reverse;
    align-items: center;
    justify-content: space-around;
    gap: 2rem;
}
.aboutus-text{
    flex: 1;
}


/*WELCOME SECTION*/
.abt-welcome-container {
  max-width: 1400px;
  padding: 60px 40px;
  margin: 0 auto;
  
}
.abt-welcome-container p span {
    font-size: 2rem;
    font-weight: 600;
    color: #a63c06;
    
}
.abt-welcome-container p{
    font-size: 1.2rem;
    font-weight: 500;
}

/*FOUNDER STORY*/
.founder-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 30px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: flex-start;
}

.founder-text {
  flex: 2;
}

.founder-text h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.founder-text h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: 600;
}
.credentials-table {
  width: 100%;
  border-collapse: collapse;
}
.credentials-table tr:nth-child(odd) {
  background-color: #e9ecef;
}
.credentials-table tr:nth-child(even) {
  background-color: #f8f9fa;
}
.credentials-table td {
  padding: 10px 5px;
  font-size: 1.3rem;
  font-weight: 600;
  color: #5a2328;
}

.founder-text h4 {
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 600;
}

.founder-text p {
  font-size: 1.2rem;
  line-height: 1.7;
}

.founder-photo {
  flex: 1;
}

.founder-photo img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
}
/*FOUNDER TEXT EXTENSION*/
.founder-text-extn-container{
max-width: 1300px;
margin: auto;

}

.founder-text-extn-container p{
  font-size: 1.2rem;
  padding: 0 40px 30px 0
}
.founder-text-extn-container h4{
  font-size: 1.5rem;
  font-weight: 600;
}

/*ACCOMPLISHMENTS*/
.accomplishments {
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 40px;
  text-align: center;
}

.accomplishments h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.accomplishments p {
  font-size: 1.2rem;
  text-align: left;
  line-height: 1.6;
  max-width: 1400px;
  margin: 0 auto 20px;
}

.awards-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-top: 65px;
}

.award-card {
  background-color: #e3e6e9;
  border-radius: 10px;
  overflow: hidden;
  width: 300px;
  box-shadow: 0 10px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  text-align: left;
  transition: transform 0.3s ease;
}

.award-card:hover {
  transform: translateY(-5px);
}

.award-card img {
  width: 100%;
  height: auto;
}

.award-content {
  padding: 20px;
}

.award-content h4 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.award-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 12px;
}

.award-content a {
  font-size: 1.1rem;
  font-weight: 600;
  color: #762519;                      ;
  text-decoration: none;
}

/*OUR VALUES SECTION*/
.our-values {
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  text-align: center;
}

.our-values h2 {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  text-align: left;
}

.value-box { 
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.icon-box{
  width: 60px;
  height: 60px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon-box1{
  background: green;
}
.icon-box2{
  background: purple;
}
.icon-box3{
  background: rgb(78, 148, 240);
}
.icon-box4{
  background: orange;
}
.icon-box5{
  background: #6D9773;
}
.icon-box6{
  background: powderblue;
}

.icon-title img {
  width: 40px;
  height: 40px;
}

.icon-title h4 {
  font-size: 1.2rem;
  font-weight: 700;
}

.value-box p {
  margin: 10px 0 16px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.dropdown-toggle {
  background: none;
  border: none;
  font-weight: 600;
  font-size: 1.1rem;
  cursor: pointer;
  padding: 0;
  color: #134942;
  display: flex;
  align-items: center;
  gap: 6px;
}

.dropdown-toggle i {
  transition: transform 0.3s;
}

.value-box.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-content {
  margin-top: 10px;
  padding-left: 18px;
  font-size: 1.1rem;
  display: none;
}

.value-box.active .dropdown-content {
  display: block;
}

/*OUR JOURNEY*/
/* .journey-section {
  padding: 30px 20px;
  text-align: center;
  background-color: #fff;
}
.journey-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
}
 .carousel-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.carousel-track {
  display: flex;
  width: fit-content;
  animation: scrollLeft 60s linear infinite;
}
  .carousel-track img:nth-child(even) {
   margin-top: 60px; 
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-img {
  flex: 0 0 auto;
  width: 20vw;
  max-width: 250px;
  max-height: 200px;
  aspect-ratio: 1 / 1;
  height: auto;
  margin: 0 8px;
  border-radius: 10px;
  object-fit: cover;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}  */

/*REVIEWS SECTION*/

.reviews-container{
    max-width: 1300px;
    margin: auto;
    padding-bottom: 40px;
    background-color:#F7FFF7;
    border-radius: 30px;
}
.reviews-container h3{
font-size: 2.4rem;
padding: 40px 0 70px 70px;
}
.reviews-container img {
  display: block;              /* removes extra bottom space from inline images */
  margin: 0 auto;              /* centers image horizontally */
  width: 100%;
  max-width: 60%;
  transform: rotate(-5deg);    /* tilts the image 20 degrees */
}
/*REVIEWS SECTION FALL ANIMATION */
#reviewImage {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 60%;
  transform: rotate(-4deg) translateY(-100px);
  opacity: 0;
  transition: all 1s ease;
}

#reviewImage.animate {
  transform: rotate(0deg) translateY(0);
  opacity: 1;
}
/* ✅ Styling the button */
.reviews-btn {
  text-align: center;
}
.reviews-btn a {
  display: inline-block;
  text-align: center;
  margin-top: 60px;
  padding: 1rem 2.4rem;
  background-color: #424242;
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: background 0.3s;
}

.reviews-btn a:hover {
  background-color: #1b1a1a;
}



/*APPOINTMENT SECTION*/
.appointment-section {
  background: linear-gradient(to right, rgba(141, 123, 89, 1), rgba(80, 79, 79, 0.9));
  padding: 60px 20px;
  margin-top: 70px;
}

.appointment-container {
  max-width: 970px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-box {
  flex: 1;
  background: var(--optional);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  min-width: 300px;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input,
.form-box textarea {
  padding: 12px;
  font-size: 1.1rem;
  border-radius: 5px;
  border: 1px solid #ccc;
  resize: none;
}

.form-box button {
  background-color: #1b1a1a  ;
  color: var(--light-text);
  font-weight: 600;
  border: none;
  padding: 10px 25px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.form-box button:hover {
  background-color: #424242;
}

.info-box {
  flex: 1;
  color: white;
  min-width: 300px;
}

.section-tag-appointment {
  font-weight: 600;
  color: var(--text-color-secondary);
  margin-bottom: 5px;
  position: relative;
}

.info-box h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 10px 0;
}

.phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f9f9f9;
}

.info-text {
  font-size: 1.2rem;
  max-width: 400px;
  margin: 15px 0 30px;
  line-height: 1.5;
}

.timings {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.timing-row {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid white;
  padding-bottom: 5px;
  font-weight: 500;
}

/*LOCATION*/
.location{
    margin: 70px;
}
.location h1{
    font-size: 2.4rem;
    text-align: center;
}
.location p{
  text-align: center;
  padding: 20px;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.location-container{
    display: flex;
    justify-content: space-around;
    max-width: 900px;
    margin: auto;
}

.location-map{
    min-width: 100%;
    margin: auto;
    height: 500px;
}
.location-map iframe{
  border-radius: 20px;
}

/* .location-map .map-script{
    margin-right: 40px;
} */
/*FOOTER SECTION*/
.footer {
  background-color: #333533;
  color: var(--light-text);
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-box {
  flex: 1;
  min-width: 250px;
  margin: 20px;
}
/*   Social media    */
.footer-box h4{
 padding-left: 30px;
 margin-top: 15px;
}
.social-media .fa-brands{
  font-size: 1.2rem;
}
.social-media{
  max-width: 80px;
  display: flex;
  justify-content: space-between;
  margin: 7px 30px 0;
}
.footer-box h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-box p,
.footer-box ul,
.footer-box li,
.footer-box a {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--light-text);
  text-decoration: none;
}
.footer-box p {
  padding-left: 30px;
}

.footer-box ul {
  list-style: none;
  padding-left: 32px;
}

.footer-box ul li {
  margin-bottom: 8px;
}

.footer-box a:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright {
  margin-top: 20px;
  text-align: center;
  color: var(--text-color-secondary);
  font-size: 0.9rem;
}
.copyright a {
  color: var(--text-color-secondary);
  font-size: 0.9rem;
}
/*******************************CONTACT FLOATING BUTTON**********************************/
.contact-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 999;
}
.fa-whatsapp{
  color: #25D366;
  font-size: 2rem;
}
.contact-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  /* background-color: #2a9d8f; */
  background-color: #6600a5;
  color: white;
  border: none;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.contact-btn:hover {
  /* background-color: #21867c; */
  background-color: #af44f2;
}

.phone-btn,
.whatsapp-btn,
.appointment-btn {
  text-decoration: none;
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
}

.contact-wrapper.active .phone-btn,
.contact-wrapper.active .whatsapp-btn,
.contact-wrapper.active .appointment-btn {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}





