:root {
  --heading-color: #2d2a2b; /* Bigger text (headings) */
  --body-text-color: #707070; /* Smaller/regular text */
  --highlight-text: #bc6c31; /* Special text / CTA */
  --background1-color:#FEF9ED;
  --background2-color:#F0E6D8;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  outline: none;
  border: none;
  text-decoration: none;
  text-transform: capitalize;
  transition: 0.2s linear;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
  overflow: auto;
}

.navbar .landing{
    color: #bc6c31;
}

section{
padding: 2rem 9%;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  padding: 1rem 9%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 1000;
  box-shadow: 0 0.1rem 0.5rem rgb(124, 124, 124);
}

header .logo {
  height: 50px;
}

header #toggler {
  display: none;
}

header .fa-bars {
  font-size: 3rem;
  columns: #333;
  border-radius: 0.5rem;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  border: 0.1rem solid rgba(0, 0, 0, 0.1);
  display: none;
}

header .navbar {
  display: flex;
  align-items: center;
  gap: 3rem; /* space between links */
}

header .navbar a {
  font-size: 1.6rem;
  color: var(--body-text-color);
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  transition: 0.3s;
}

/* hover for normal links */
header .navbar a:hover {
  color: var(--highlight-text);
}

/* style the last link (FAQ) as a button */
header .navbar a:last-child {
  background-color: var(--highlight-text);
  color: white;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.6rem 1.4rem;
}

/* hover effect for button */
header .navbar a:last-child:hover {
  background-color: #a45828; /* darker shade */
  color: #fff;
}


.disclaimer {
  width: 100%;
  background: #ffcc00;  /* Yellow background */
  color: #000;
  font-size: 1.2rem;
  font-weight: 300;
  padding: 8px 0;
  overflow: hidden;
  position: sticky;   /* Stick it just below navbar */
  top: 60px;          /* Adjust based on navbar height */
  z-index: 1000;
  white-space: nowrap;
  
}

.disclaimer p {
  display: inline-block;
  padding-left: 100%;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}


/* about hero section*/

.about{
    display: flex;
    align-items: center;
    min-height: 100vh;
    background-color: var(--background1-color);
    justify-content: space-between;
    gap: 20px;
}

.content h3{
    font-size: 5rem;
    font-weight: 500;
    color: #bc6c31;
    margin-bottom: 20px;
    
    
}

.content h4{
    font-size: 4rem;
    font-weight: 150;
    color: #000000;
}

.content p{
    font-size: 2rem;
    color: var(--body-text-color);
    font-weight: 50;
    margin-top: 100px;
}

/* about section3 starts here */

.section2{
  background: var(--background2-color);
  padding: 50px;
  

}


.our-journey{
background: var(--highlight-text);
padding: 10px;
border-radius: 15px;
margin-top: 30px;
margin-bottom: 30px;
padding: 20px;
}

.our-journey h3{
  font-size: 4rem;
  font-weight: 300;
  color: var(--background2-color);
  padding-bottom: 10px;
}

.our-journey p{
  font-size: 2rem;
  font-weight: smaller;
}



.our-goal{
  background: var(--highlight-text);
padding: 10px;
border-radius: 15px;
margin-top: 30px;
margin-bottom: 30px;
padding: 20px;
}

.our-goal h3{
  font-size: 4rem;
  font-weight: 300;
  color: var(--background2-color);
  padding-bottom: 10px;
}

.our-goal p{
  font-size: 2rem;
  font-weight: smaller;
}


.why-choose-us{
background: var(--highlight-text);
padding: 10px;
border-radius: 15px;
margin-top: 30px;
margin-bottom: 50px;
width: 800px;
padding: 20px;
flex: 1;

}

.why-choose-us h3{
  font-size: 4rem;
  font-weight: 300;
  color: var(--background2-color);
  padding-bottom: 10px;
}

.why-choose-us ul{
   font-size: 2rem;
  font-weight: smaller;
  padding-left: 20px;
  
}
.section2 .btn{
    font-size: 2rem;
  color: #bc6c31;
  border: 2px solid #bc6c31;
  border-radius: 50px;
  padding: 15px 25px;
  background: white;
  cursor: pointer;
  transition: 0.3s;
  align-self: flex-start; 
  
}

.btn:hover{
background: #bc6c31;
  color: #fff;
}

.img{
flex-shrink: 0;
margin-left: 20px;
}

.img img{
  height: 300px;
  width: 430;

}

/* Footer */
.site-footer {
  background: #f6f2e9;
  padding: 40px 10%;
  font-family: 'Poppins', sans-serif;
  color: #444;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.footer-logo img {
  max-width: 150px;
  
}

.footer-links h4 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
  font-size: 1.4rem;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.footer-links ul li a {
  color: #444;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #bc6c31;
}

.footer-contact {
  margin: 20px 0;
  font-size: 1.2rem;
  line-height: 1.6;
}

.footer-contact p {
  margin: 5px 0;
  font-size: 1.2rem;
}

.social-icons {
  margin-top: 15px;
}

.social-icons a {
  font-size: 1.5rem;
  margin: 0 8px;
  color: #000;
  background: #fff;
  padding: 8px;
  border-radius: 6px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.social-icons a:hover {
  background: #bc6c31;
  color: #fff;
}

hr {
  border: none;
  border-top: 1px solid #aaa;
  margin: 20px 0;
}

.footer-bottom {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  line-height: 1.6;
}

.footer-bottom strong {
  color: #bc6c31;
}

.footer-bottom-links {
  margin-top: 10px;
}

.footer-bottom-links a {
  color: #bc6c31;
  text-decoration: none;
  margin: 0 8px;
}

.footer-bottom-links a:hover {
  color: #000;
}

.site-footer {
  margin-top: auto;
}










/* about section3 ends here */























/* media queries */
@media (max-width: 991px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 2rem;
  }
}


@media (max-width: 768px) {
  header .fa-bars {
    display: block;
  }

  header .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #eee;
    border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    flex-direction: column;
  }

  header #toggler:checked ~ .navbar {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  header .navbar a {
    margin: 0; /* no gap at all */
    padding: 0.5rem;
    background: #fff;
    border: 0.1rem solid rgba(0, 0, 0, 0.1);
    width: 90%; /* nice wide buttons */
    text-align: center;
    display: block;
  }
}

@media (max-width: 450px) {
  html {
    font-size: 55%;
  }

  header {
    padding: 2rem;
  }
}


/* ======================= ABOUT PAGE — FULL MEDIA QUERIES ======================= */

/* Large tablets & down (≤1200px) */
@media (max-width: 1200px){
  .content h3 { font-size: 4rem !important; }
  .content h4 { font-size: 3rem !important; }
  .content p  { margin-top: 2rem !important; font-size: 1.8rem !important; }
}

/* Tablets (≤992px) */
@media (max-width: 992px){

  /* Hero → stack into one column */
  .about{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    min-height: auto !important;
    padding: 2rem 9% !important;
  }
  .about .content { order: 1; }
  .about .hero-image{
    order: 2;
    width: 100% !important;
    max-width: 560px !important;
    margin: 0 auto !important;
    display: block !important;
  }

  /* Section 2 blocks full width */
  .section2{ padding: 30px 9% !important; }
  .our-journey, .our-goal, .why-choose-us{
    width: 100% !important;
    margin: 16px 0 !important;
  }

  /* Footer → 2 columns */
  .footer-top{
    display: grid !important;
    grid-template-columns: repeat(2,1fr) !important;
    gap: 2rem !important;
  }
}

/* Mobiles & Small Tablets (≤768px) */
@media (max-width: 768px){

  /* ===== NAVBAR ===== */
  header .fa-bars{ display: block !important; }
  header .navbar{
    position: absolute !important;
    top: 100%; left: 0; right: 0;
    background: #eee !important;
    border-top: 1px solid rgba(0,0,0,.1) !important;
    clip-path: polygon(0 0,100% 0,100% 0,0 0) !important;
    flex-direction: column !important;
    z-index: 2500 !important;
  }
  header #toggler:checked ~ .navbar{
    clip-path: polygon(0 0,100% 0,100% 100%,0 100%) !important;
  }
  header .navbar a{
    width: 92% !important;
    margin: .5rem auto !important;
    text-align: center !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    padding: .8rem !important;
  }

  /* ===== TEXT RESIZE ===== */
  .content h3{ font-size: 2.6rem !important; }
  .content h4{ font-size: 2rem !important; }
  .content p { font-size: 1.5rem !important; margin-top: 1rem !important; }
  .our-journey h3, .our-goal h3, .why-choose-us h3{ font-size: 2.2rem !important; }
  .our-journey p, .our-goal p, .why-choose-us ul{ font-size: 1.4rem !important; }
  .btn{font-size: 1.5rem !important;}
  .btn{min-height: auto; width: auto;}

  /* ===== DISCLAIMER FIX ===== */
  header{ position: fixed !important; top: 0; left: 0; right: 0; z-index: 3000 !important; }
  .disclaimer{
    position: fixed !important;
    top: 80px !important;   /* adjust if header taller */
    z-index: 2500 !important;
    width: 100% !important;
  }
  body{ padding-top: 100px !important; } /* header + disclaimer */
}

/* Small Mobiles (≤600px) */
@media (max-width: 600px){
  .footer-top{ grid-template-columns: 1fr !important; }
}

/* Very Small Screens (≤450px) */
@media (max-width: 450px){
  html{ font-size: 55%; }
  header{ padding: 1rem 5% !important; }
  .disclaimer{ top: 65px !important; }
  body{ padding-top: 95px !important; }
}

@media (max-width: 768px){
  header .navbar a,
  header .navbar a:last-child {
    width: 92% !important;
    margin: .5rem auto !important;
    text-align: center !important;
    background: #fff !important;
    border: 1px solid rgba(0,0,0,0.1) !important;
    padding: .8rem !important;
    color: #333 !important;          /* ensure text visible */
    border-radius: 6px !important;
  }

  /* optional: highlight FAQ button a bit */
  header .navbar a:last-child {
    font-weight: 600 !important;
    color: #bc6c31 !important;       /* highlight color */
    border: 2px solid #bc6c31 !important;
  }
}
