/* =====================================================
   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
===================================================== */
/* ===== NAVBAR FIXED TOP ===== */
.navbar{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 12px 5px;
  background: var(--accent-deep);
  z-index: 1000;
}
.nav-section{
  display: flex;
  justify-content: space-between;
  gap:40px;
  list-style-type: none;
}
.nav-section li a{
  color:var(--white);
  text-decoration: none;
}
#nav-button{
    position: relative;
    overflow: hidden;
    background: var(--accent-clay);
    color: var(--white);
    padding: 16px 24px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Light Sweep Layer */
#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;
}

/* Hover Animation */
#nav-button:hover::before{
    left: 120%;
}

/* Slight lift effect */
#nav-button:hover{
    transform: translateY(-3px);
}
/* =====================================================
   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:1.1rem;
  margin-bottom:25px;
}

.primary-btn{
  background:var(--accent-clay);
  color:#fff;
  padding:12px 30px;
  border-radius:8px;
  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;
}
/* =====================================================
   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;
}

.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 CARD END
===================================================== */


/* =====================================================
   EVENT CARD DETAILS START
===================================================== */
.meta-info{
  display:flex;
  gap:15px;
  font-size:14px;
  color:#777;
  margin-bottom:15px;
}

.event-title{
  font-size:18px;
  font-weight:600;
  margin-bottom:12px;
  color:var(--accent-deep);
}

.event-description{
  font-size:15px;
  color:#555;
  margin-bottom:20px;
  line-height:1.8;
  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;
}

.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:50px;
  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:100px 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:100px 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;
}

.footer-container{
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-col{
    flex: 1;
    min-width: 220px;
}

.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.7;
    color: #ddd;
}

.footer-col ul{
    list-style: none;
}

.footer-col ul li{
    margin-bottom: 12px;
    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 */
.social-icons{
    margin-top: 15px;
}

.social-icons i{
    margin-right: 12px;
    font-size: 18px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

.social-icons i:hover{
    color: var(--accent-clay);
}

/* Bottom Line */
.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.2);
    margin-top: 40px;
    padding-top: 20px;
    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;
}