/* =====================================================
   ROOT VARIABLES START
===================================================== */
:root{
  --bg-cream: #F4EFEA;
  --bg-beige: #D6CCC2;
  --bg-soft-gray: #EDE6E3;

  --accent-clay: #B08968;
  --accent-deep: #7F5539;
  --accent-sage: #A3B18A;
  --accent-muted-navy: #344E5C;
  --accent-dusty-rose: #C9ADA7;

  --text-dark: #3E3E3E;
  --white: #FFFFFF;
}
/* =====================================================
   ROOT VARIABLES END
===================================================== */


/* =====================================================
   GLOBAL RESET START
===================================================== */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}
html{
  scroll-behavior: smooth;
}
body{
  font-family:'Poppins',sans-serif;
  background:var(--bg-cream);
  color:var(--text-dark);
  line-height:1.6;
}
/* =====================================================
   GLOBAL RESET END
===================================================== */

/* ==========================================================================
   TOP BAR SECTION START
   ========================================================================== */
.container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background-color: var(--accent-deep);
}

.top-bar {
  transition: transform 0.4s ease;
}

.top-bar.hide {
  transform: translateY(-100%);
}

.left-top {
  background: var(--accent-clay);
  color: white;
  padding: 12px 40px;
  position: relative;
  width: 50%;
  clip-path: polygon(0 19%, 0 0, 38% 0%, 71% 0%, 100% 0, 100% 0, 94% 106%, 100% 104%, 100% 29%, 100% 100%, 0 100%, 0 48%);
}

.left-top h3 {
  font-size: 16px;
  margin-left: 150px;
  font-weight: 500;
}

.right-content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  gap: 50px;
  padding-right: 100px;
  color: aliceblue;
  font-size: 15px;
}
/* TOP BAR SECTION END */

/* ==========================================================================
   TOP BAR MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  
  .left-top {
    width: 100%;
    clip-path: none;
    padding: 10px;
  }
  
  .left-top h3 {
    margin-left: 0;
  }
  
  .right-content {
    padding-right: 0;
    gap: 15px;
    margin: 10px 0;
    flex-direction: column;
  }
}
/* =========================================================
   HAMBURGER MENU
========================================================= */

.hamburger{
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 6px;
  z-index: 1100;
}

.hamburger span{
  width: 28px;
  height: 3px;
  background: white;
  border-radius: 3px;
  transition: 0.4s ease;
}

/* Animate into X */
.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);
}
   
/* ==========================================================================
   NAVBAR SECTION START
   ========================================================================== */
.navbar {
  position: fixed;
  top: 50px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content:space-between;
  align-items: center;
  padding: 10px 5px;
  background-color: var(--accent-deep);
  z-index: 1000;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  top: 0;
}

.navbar h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--white);
}

.nav-section {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  list-style-type: none;
}

.nav-section i {
  transition: transform 0.4s ease;
}

.nav-section i:hover {
  transform: rotate(180deg);
}

.nav-item {
  position: relative;
  display: inline-block;
}

.nav-section li a {
  font-size: 18px;
  text-decoration: none;
  color: var(--white);
}

#nav-button {
  position: relative;
  overflow: hidden;
  background: var(--accent-clay);
  color: var(--white);
  padding: 0px 14px;
  margin-right: 30px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

#nav-button::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 50%;
  height: 200%;
  background: var(--accent-deep);
  transform: rotate(25deg);
  transition: 0.6s ease;
}

#nav-button:hover::before {
  left: 120%;
}

#nav-button:hover {
  transform: translateY(-3px);
}
/* NAVBAR SECTION END */

/* ==========================================================================
   NAVBAR MEDIA QUERIES
   ========================================================================== */
@media (max-width: 768px) {
  /* Navbar Mobile */
.navbar{
  /* flex-direction: row; */
  justify-content: space-between;
  padding: 0px 20px;
  top:128px;
}

.hamburger{
  display: flex;
}

.nav-section{
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--accent-deep);
  flex-direction: column;
  align-items: center;
  gap: 25px;
  padding: 30px 0;
  transform: translateY(-120%);
  opacity: 0;
  transition: 0.4s ease;
}

.nav-section.active{
  transform: translateY(0);
  opacity: 1;
}

#nav-button{
  display: none;
}
}
@media (max-width: 1024px) {
  .nav-section {
    gap: 40px;
  }
}

/* =====================================================
   HERO SECTION START
===================================================== */
.hero-section{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  color:#fff;
}

.hero-bg-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  z-index:-2;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(127,85,57,0.10);
  z-index:-1;
}

.hero-inner{
  max-width:700px;
  padding:20px;
}

.hero-title{
  font-size:3rem;
  margin-bottom:15px;
}

.hero-subtitle{
  font-size:2.1rem;
  margin-bottom:25px;
}

.primary-btn{
  background:var(--accent-clay);
  color:#fff;
  padding:12px 30px;
  border-radius:8px;
  font-size: 20px;
  text-decoration:none;
}
/* =====================================================
   HERO SECTION END
===================================================== */


/* =====================================================
   BLOG LAYOUT START
===================================================== */
.blog-layout{
  padding:100px 5%;
  background:#f5f5f5;
}

.blog-container{
  /* display:grid;
  grid-template-columns:2.2fr 1fr;
  gap:40px; */
  width:100%;
max-width:1200px;
margin:auto;
}
/* =====================================================
   BLOG LAYOUT END
===================================================== */
/* =====================================================
   ABOUT SECTION START
===================================================== */

.about-section{
  padding:100px 5%;
  background:var(--bg-soft-gray);
  text-align:center;
}

.content-wrapper{
  max-width:800px;
  margin:0 auto;
}

.section-heading{
  font-size:2.4rem;
  font-weight:600;
  color:var(--accent-deep);
  margin-bottom:25px;
  position:relative;
}

/* Decorative underline */
.section-heading::after{
  content:"";
  width:60px;
  height:3px;
  background:var(--accent-clay);
  display:block;
  margin:15px auto 0;
  border-radius:2px;
}

.section-description{
  font-size:1.1rem;
  line-height:1.8;
  color:#555;
  max-width:650px;
  margin:0 auto;
}

/* =====================================================
   ABOUT SECTION END
===================================================== */

/* =====================================================
   EVENT CARD START
===================================================== */
.events-container{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.event-card{
  background:#fff;
  padding:5px 10px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  transition:0.35s ease;
  display: flex;
  flex-direction: column;
}

.event-card:hover{
  transform:translateY(-10px);
}

.event-image-wrapper{
  position:relative;
  height:180px;
  overflow:hidden;
}

.event-image-wrapper img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.event-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
/* =====================================================
   EVENT CARD END
===================================================== */


/* =====================================================
   EVENT CARD DETAILS START
===================================================== */
.meta-info{
  display:flex;
  gap:15px;
  font-size:14px;
  color:#777;
  margin-bottom:15px;
  margin-top: 15px;
}

.event-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--accent-deep);
}

.event-description{
  font-size:14px;
  color:#555;
  /* margin-bottom:20px; */
  line-height:1.4;
  /* text-align:justify; */
}

/* =====================================================
   EVENT CARD DETAILS END
===================================================== */


/* =====================================================
   BADGES START
===================================================== */
.badge{
  position:absolute;
  top:15px;
  padding:6px 14px;
  border-radius:20px;
  font-size:13px;
  font-weight:500;
}

.badge-category{
  left:15px;
  background:#fff;
  color:#333;
  position: absolute;
  top: 12px;
  left: 12px;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.badge-trending{
  right:15px;
  background:#ff2d55;
  color:#fff;
}

.badge-popular{
  right:15px;
  background:#ff9500;
  color:#fff;
}
/* =====================================================
   BADGES END
===================================================== */


/* =====================================================
   SIDEBAR START
===================================================== */
.blog-sidebar{
  position:sticky;
  top:120px;
  display:flex;
  flex-direction:column;
  gap:30px;
}

.sidebar-card{
  background:#fff;
  padding:25px;
  border-radius:16px;
  box-shadow:0 8px 30px rgba(0,0,0,0.05);
}

.sidebar-title{
  font-size:20px;
  margin-bottom:20px;
}

.tags-wrapper{
  display:flex;
  flex-wrap:wrap;
  gap:35px;
}

.tags-wrapper a{
  background:#eef1f4;
  padding:8px 16px;
  border-radius:20px;
  text-decoration:none;
  color:#333;
  transition:0.3s;
}

.tags-wrapper a:hover{
  background:#ff2d55;
  color:#fff;
}
/* =====================================================
   SIDEBAR END
===================================================== */
/* =====================================================
   EXPERTISE SECTION START
===================================================== */

.expertise-section{
  padding:10px 5%;
  background:var(--bg-soft-gray);
}

.expertise-wrapper{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

.expertise-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:30px;
}

.expertise-card{
  background:#fff;
  padding:40px 30px;
  border-radius:18px;
  box-shadow:0 10px 35px rgba(0,0,0,0.06);
  transition:0.35s ease;
  text-align:left;
}

.expertise-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.1);
}

.expertise-card h3{
  font-size:1.4rem;
  color:var(--accent-deep);
  margin-bottom:15px;
}
/* Image under heading */
.expertise-image{
  width:100%;
  height:200px;
  overflow:hidden;
  border-radius:14px;
  margin:15px 0 20px 0;  /* space between h3 & paragraph */
}

.expertise-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:0.5s ease;
}

/* Hover zoom */
.expertise-card:hover .expertise-image img{
  transform:scale(1.08);
}

.expertise-card p{
  font-size:0.95rem;
  line-height:1.8;
  color:#555;
}

/* =====================================================
   EXPERTISE SECTION END
===================================================== */
/* =====================================================
   FEATURED STORIES SECTION START
===================================================== */

.stories-section{
  padding:30px 5%;
  background:var(--bg-cream);
}

.wrapper-stories{
  max-width:1200px;
  margin:0 auto;
  text-align:center;
}

/* Grid Layout */
.story-grid{
  margin-top:60px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
}

/* Individual Card */
.story-card{
  background:var(--white);
  padding:40px 30px;
  border-radius:16px;
  box-shadow:0 10px 30px rgba(0,0,0,0.06);
  transition:all 0.35s ease;
  text-align:left;
}

.story-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,0.1);
}

/* Title */
.story-title{
  font-size:1.4rem;
  font-weight:600;
  color:var(--accent-deep);
  margin-bottom:15px;
}

/* Description */
.story-text{
  font-size:1rem;
  line-height:1.8;
  color:#555;
  margin-bottom:20px;
}

/* =====================================================
   FEATURED STORIES SECTION END
===================================================== */
/* =====================================================
   QUOTE SECTION START
===================================================== */

.quote-block{
  padding:20px 5%;
  background:var(--accent-deep);
  text-align:center;
  position:relative;
  overflow:hidden;
}

.wrapper-quote{
  max-width:900px;
  margin:0 auto;
}

.quote-text{
  font-size:1.8rem;
  font-weight:300;
  line-height:1.8;
  color:var(--white);
  font-style:italic;
  position:relative;
  padding:0 20px;
}

/* Decorative quotation marks */
.quote-text::before{
  content:"“";
  font-size:4rem;
  position:absolute;
  left:-10px;
  top:-20px;
  opacity:0.2;
}

.quote-text::after{
  content:"”";
  font-size:4rem;
  position:absolute;
  right:-10px;
  bottom:-30px;
  opacity:0.2;
}

/* =====================================================
   QUOTE SECTION END
===================================================== */

/* =====================================================
   FOOTER START
===================================================== */
/* ===== Footer ===== */

/* .footer{
    background:var(--accent-deep);
    color: white;
    padding: 80px 10% 20px;
    align-items: center;
}


 .footer-container{
display:flex;
justify-content:space-between;
align-items: flex-start;
gap:40px;
flex-wrap:wrap;
max-width: 1200px;

margin: auto;
}

.footer-col{
    flex: 1;
    min-width: 220px; 
    width:220px;
    display:flex;
    flex-direction:column;
    align-items:center;
    text-align:left;
}

.footer-col h3{
    font-size: 24px;
    margin-bottom: 20px;
}

.footer-col h4{
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-clay);
}

.footer-col p{
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
}

.footer-col ul{
    list-style: none;
    padding: 0;
    text-align: left;
}

.footer-col ul li{
    margin-bottom: 9px;
    font-size: 14px;
    color: #ddd;
    cursor: pointer;
    transition: 0.3s;
}

.footer-col ul li a{
    text-decoration: none;
    color: #ddd;
}

.footer-col ul li:hover,
.terter-col ul li a:hover{
    color: var(--accent-clay);
}


.social-icons{
    margin-top: 15px;
    display: flex;
    gap: 12px;
}

.social-icons i{
    margin-right: 12px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover{
    color: var(--accent-clay);
}




.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px 0px;
  text-align: center;
  font-size: 14px;
  color: #ccc;
} */

/* =====================================================
   FOOTER END
===================================================== */


/* =====================================================
   RESPONSIVE START
===================================================== */
@media(max-width:992px){
  .blog-container{
    grid-template-columns:1fr;
  }

  .blog-sidebar{
    position:relative;
    top:0;
  }
}
/* =====================================================
   RESPONSIVE END
===================================================== */




.company-link{
  text-decoration: none;
  color: rgb(254, 173, 11);
}
.container{
  /* padding-left: 50px; */
  text-align: center;
}
/* logo */
.logo img{
height:55px;
width:auto;
object-fit:contain;
}
/* .logo{
  margin-left: 45px;
} */


/* ===============================
   WHATSAPP FLOAT BUTTON
================================ */

.whatsapp-float{
position:fixed;
bottom:25px;
right:25px;
width:60px;
height:60px;
background:#25D366;
color:white;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:30px;
box-shadow:0 6px 18px rgba(0,0,0,0.25);
z-index:2000;
text-decoration:none;
transition:0.3s;
}

.whatsapp-float:hover{
transform:scale(1.1);
background:#1ebe5d;
}

/* ============================
   EXPERTISE MOBILE FIX
============================ */

@media (max-width:768px){

.expertise-grid{
grid-template-columns:1fr;
}

}

/* ============================
   BLOG MOBILE FIX
============================ */
/* 
@media (max-width:768px){


  .footer-container{
flex-direction:column;
align-items:center;

gap:35px;
} */

/* .footer-col{
max-width:500px;
width:100%;
}

.footer-col ul{
padding:0;
}

.footer-col ul li{
text-align:center;
}

.footer-col h3,
.footer-col h4{
text-align:center;
}

.social-icons{
display:flex;
justify-content:center;
} */


/* .events-container{
grid-template-columns:1fr;
} */

/* } */

/* ===============================
BLOG RESPONSIVE
=============================== */

@media (max-width:992px){

.events-container{
grid-template-columns:repeat(2,1fr);
}

}

@media (max-width:600px){

.events-container{
grid-template-columns:1fr;
}

.event-image-wrapper {
  height: 180px;
}

}
.link{
  color: white;
  text-decoration: none;
}

/* .footer-col{
display:flex;
flex-direction:column;

} */
 
 /* ============================
   FOOTER MOBILE CENTER FIX
============================ */

/* @media (max-width:768px){


} */





/* //updated footer css */
/* =========================
   FOOTER BASE
========================= */
.footer {
  background: #7F5539;
  color: #fff;
  padding: 60px 20px 20px;
}

/* =========================
   CONTAINER
========================= */
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

/* =========================
   COLUMNS
========================= */
.footer-col {
  flex: 1 1 220px; /* auto responsive */
  min-width: 220px;
}

/* =========================
   HEADINGS
========================= */
.footer-col h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.footer-col h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #B08968;
}

/* =========================
   TEXT
========================= */
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

/* =========================
   LINKS
========================= */
.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
  font-size: 14px;
}

.footer-col ul li a {
  text-decoration: none;
  color: #ddd;
  /* margin-bottom: 0px; */
  transition: 0.3s;
}

.footer-col ul li a:hover {
  color: #B08968;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
  margin-top: 10px;
  display: flex;
  gap: 12px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: white;
  font-size: 16px;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #B08968;
}

/* =========================
   COPYRIGHT
========================= */
.footer-bottom {
  width: 100%;
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.2);
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #ccc;
}

.footer-bottom a {
  color: #fff;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: #B08968;
}

/* =========================
   TABLET (<= 992px)
========================= */
@media (max-width: 992px) {
  .footer-container {
    justify-content: center;
    text-align: center;
  }

  .footer-col {
    flex: 1 1 45%;
  }

  .social-icons {
    justify-content: center;
  }
}

/* =========================
   MOBILE (<= 600px)
========================= */
@media (max-width: 600px) {
  .footer {
    padding: 50px 15px 20px;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  .footer-col {
    width: 100%;
    max-width: 400px;
  }

  .footer-col h3,
  .footer-col h4 {
    text-align: center;
  }

  .footer-col ul {
    padding: 0;
  }

  .footer-col ul li {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}