*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Segoe UI',sans-serif;
}

body ,html{
  background:#f7f4f1;
  color:#333;
  overflow-x: hidden;
}
a{
    text-decoration: none;
}
/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

/* HEADER */
.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:10px 8%;
  display:flex;
  justify-content:space-between;
  align-items:center;

  background:rgba(255,255,255,0.6);
  backdrop-filter:blur(12px);

  z-index:1000;
  transition:0.3s;
}

/* SCROLL EFFECT */
.header.scrolled{
  background:#fff;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

/* LOGO */
.logo img{
  height:60px;
  object-fit:contain;
}

/* NAV */
.nav{
  display:flex;
  gap:30px;
}

.nav a{
  text-decoration:none;
  color:#2b2b2b;
  font-size:15px;
  position:relative;
  font-weight:500;
}

/* UNDERLINE ANIMATION */
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-5px;
  width:0;
  height:2px;
  background:#c9a27e;
  transition:0.3s;
}

.nav a:hover::after{
  width:100%;
}

/* HAMBURGER */
.hamburger{
  display:none;
  width:30px;
  height:22px;
  flex-direction:column;
  justify-content:space-between;
  cursor:pointer;
  z-index:1100;
}

.hamburger span{
  display:block;
  height:3px;
  width:100%;
  background:#2b2b2b;
  border-radius:3px;
  transition:0.4s;
}

/* ANIMATION → 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);
}


@media(max-width:768px){

/* SHOW HAMBURGER */
.hamburger{
  display:flex !important;
}

/* NAV PANEL */
.nav{
  position:fixed;
  top:0;
  right:-100%;
  width:260px;
  height:100vh;

  background:#fff;
  flex-direction:column;
  align-items:flex-start;
  padding:100px 30px;
  gap:25px;

  box-shadow:-10px 0 30px rgba(0,0,0,0.1);
  transition:0.4s;
  z-index:1050;
}

/* ACTIVE MENU */
.nav.active{
  right:0;
}

/* NAV LINKS */
.nav a{
  font-size:16px;
}

/* OVERLAY BACKGROUND */
.nav::before{
  content:"";
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;
  background:rgba(0,0,0,0.3);
  opacity:0;
  pointer-events:none;
  transition:0.3s;
}

.nav.active::before{
  opacity:1;
  pointer-events:auto;
}

}
/* ==================== */
/* HERO BASE */
.hero{
   
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  padding:0 8%;
  overflow:hidden;

  /* IMAGE */
  background:url('images/bg3.png') right center/cover no-repeat;
}

/* 🔥 MAIN OVERLAY (THIS IS THE MAGIC) */
.hero-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    #f5f1ecb0 35%,
    rgba(245, 241, 236, 0.874) 50%,
    rgba(245, 241, 236, 0.9) 65%,
    rgba(245,241,236,0.4) 75%,
    transparent 90%
  );

  z-index:1;
}

/* CONTENT */
.hero-content{
  position:relative;
  z-index:2;
  max-width:550px;
}

.hero-content h1{
  font-size:44px;
  font-weight:500;
  color:#2b2b2b;
  margin-bottom:20px;
}

.hero-content p{
  color:#6b6b6b;
  line-height:1.7;
}

/* BUTTON */
.btn{
  display:inline-block;
  margin-top:25px;
  padding:14px 30px;
  background:#c9a27e;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  transition:0.3s;
}

.btn:hover{
  transform:translateY(-3px);
  box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

/* .hero::after{
  content:"";
  position:absolute;
  bottom:-120px;
  left:-120px;
  width:450px;
  height:450px;
  background:#e9e1d8;
  border-radius:50%;
  filter:blur(10px);
  z-index:0;
} */

@media(max-width:768px){

.hero{
  background-position:center;
  margin-top: 40px;
}

.hero-overlay{
  background:rgba(245,241,236,0.95);
}

.hero-content{
  text-align:center;
}

.hero-content h1{
  font-size:28px;
}

}

/* ================================= */

.featured-section {
  padding: 70px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.featured-title {
  font-size: 22px;
  font-weight: 600;
  color: #222;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.featured-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}

.featured-logos img {
  max-width: 180px;
  width: 100%;
  height: auto;
  opacity: 0.7;
  transition: all 0.4s ease;
  filter: grayscale(100%);
}

.featured-logos img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Tablet */
@media (max-width: 768px) {
  .featured-logos {
    gap: 35px;
  }

  .featured-logos img {
    max-width: 140px;
  }

  .featured-title {
    font-size: 20px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .featured-logos {
    gap: 25px;
    flex-direction: column;
  }

  .featured-logos img {
    max-width: 130px;
  }

  .featured-title {
    font-size: 18px;
  }
}







/* ============================ */

/* Section */
.about-section{
    position:relative;
    padding:90px 50px;
    /* background:#f8f5f0; */
    overflow:hidden;
     background:url('images/aboutbg2.png') right center/cover no-repeat;

}

/* Bottom overlay curve */
/* .about-section::before{
    content:'';
    position:absolute;
    right:-150px;
    bottom:-150px;
    width:450px;
    height:450px;
    background:rgba(224,219,210,0.45);
    border-radius:50%;
    z-index:1;
} */

/* Left leaf */
.about-section::after{
    content:'';
    position:absolute;
    left:-60px;
    bottom:20px;
    width:220px;
    height:220px;
    background:
    radial-gradient(circle at 40% 40%, rgba(190,200,180,0.18) 20%, transparent 21%);
    z-index:1;
}

/* Right leaf SVG */
.leaf-right{
    position:absolute;
    right:30px;
    top:40px;
    width:160px;
    opacity:0.12;
    z-index:1;
}

/* Container */
.about-container{
    max-width:1200px;
    margin:auto;
    display:flex;
    align-items:center;
    gap:60px;
    position:relative;
    z-index:2;
}

/* Image */
.about-image{
    flex:1;
    max-width:380px;
}


/* 🔥 MAIN OVERLAY (THIS IS THE MAGIC) */
.hero-overlay{
  position:absolute;
  inset:0;

  background:linear-gradient(
    to right,
    #f5f1ecb0 35%,
    rgba(245, 241, 236, 0.874) 50%,
    rgba(245, 241, 236, 0.9) 65%,
    rgba(245,241,236,0.4) 75%,
    transparent 90%
  );

  z-index:1;
}

.about-image img{
    width:100%;
    border-radius:22px;
    display:block;
    object-fit:cover;
}

/* Content */
.about-content{
    flex:1.5;
}

.about-content h2{
    font-size:54px;
    color:#2d2d2d;
    margin-bottom:25px;
    font-weight:500;
    font-family:'Georgia',serif;
}

.about-content p{
    font-size:22px;
    line-height:1.8;
    color:#555;
    margin-bottom:18px;
}

/* Button */
.about-btn{
    display:inline-block;
    margin-top:20px;
    padding:16px 38px;
    background:#c1a57a;
    color:white;
    text-decoration:none;
    border-radius:40px;
    font-size:20px;
    transition:.3s;
}

.about-btn:hover{
    background:#b39264;
}

/* Responsive */
@media(max-width:992px){
    .about-container{
        flex-direction:column;
        text-align:center;
    }

    .about-content h2{
        font-size:40px;
    }

    .about-content p{
        font-size:18px;
    }

    .about-image{
        max-width:320px;
    }
}

@media(max-width:576px){
    .about-section{
        padding:60px 20px;
    }

    .about-content h2{
        font-size:30px;
    }

    .about-content p{
        font-size:16px;
        line-height:1.6;
    }

    .about-btn{
        font-size:16px;
        padding:14px 28px;
    }
}
/* ============================== */




.about{
  background:#f5f1ec;
  padding:80px 8%;
}

.about-wrapper{
  display:flex;
  align-items:center;
  gap:40px;
  background:#fff;
  border-radius:20px;
  padding:30px;
  box-shadow:0 10px 40px rgba(0,0,0,0.08);
}

.about-wrapper img{
  width:220px;
  border-radius:15px;
}

.about-text h2{
  font-size:30px;
  margin-bottom:15px;
  color:#2b2b2b;
}


.logos{
  text-align:center;
  padding:40px 8%;
  background:#f5f1ec;
}

.logo-row{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:20px;
  flex-wrap:wrap;
  color:#888;
}



.research-section {
  padding: 90px 20px;
  background: #f8f6f4;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 34px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #222;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.research-card {
  background: white;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.08);
  transition: 0.4s ease;
}

.research-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.research-card h3 {
  font-size: 24px;
  margin-bottom: 25px;
  color: #222;
}

.book-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.book-content img {
  width: 110px;
  border-radius: 10px;
}

.book-text h4 {
  font-size: 22px;
  margin-bottom: 10px;
}

.book-text p {
  font-size: 15px;
  line-height: 1.6;
}

.research-card ul {
  padding-left: 20px;
  margin-bottom: 25px;
}

.research-card ul li {
  margin-bottom: 14px;
  line-height: 1.7;
}

.btn {
  display: inline-block;
  background: #c6a26b;
  color: white;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #b18d58;
}

.review-box {
  text-align: center;
}

.review-box img {
  width: 100%;
  border-radius: 12px;
  margin-top: 20px;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(70px);
  transition: 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.review-box iframe{
    height: 40vh;
    width: 20vw;


}

/* Tablet */
@media (max-width: 992px) {
  .research-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .section-title {
    font-size: 28px;
  }

  .book-content {
    flex-direction: column;
    text-align: center;
  }

  .research-card {
    padding: 25px;
  }
  .review-box iframe{
    height: 40vh;
    width: 40vw;


}
}

/* SECTION */
.services{
  padding:100px 8%;
  background:#f5f1ec;
  position:relative;
}

/* HEADER */
.section-header{
  text-align:center;
  margin-bottom:50px;
}

.section-header h2{
  font-size:34px;
  color:#2b2b2b;
  font-weight:500;
}

/* GRID */
.service-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

/* CARD */
.service-card{
  position:relative;
  padding:28px;
  border-radius:18px;

  background:rgba(255,255,255,0.75);
  backdrop-filter:blur(12px);

  border:1px solid rgba(255,255,255,0.5);
  transition:all 0.4s ease;
  overflow:hidden;
}

/* SOFT OVERLAY INSIDE CARD */
.service-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to bottom right,
    rgba(255,255,255,0.7),
    rgba(255,255,255,0.2)
  );
  z-index:0;
}

/* CONTENT ABOVE */
.service-card *{
  position:relative;
  z-index:1;
}

/* TITLE */
.service-card h3{
  font-size:18px;
  color:#2b2b2b;
  margin-bottom:10px;
}

/* TEXT */
.service-card p{
  font-size:14px;
  color:#6b6b6b;
  line-height:1.6;
  margin-bottom:15px;
}

/* LINK */
.service-card a{
  font-size:14px;
  color:#c9a27e;
  text-decoration:none;
  font-weight:500;
}

/* HOVER */
.service-card:hover{
  transform:translateY(-10px);
  box-shadow:0 20px 50px rgba(0,0,0,0.12);
}

/* BACKGROUND SHAPE */
.services::after{
  content:"";
  position:absolute;
  top:-120px;
  right:-120px;
  width:320px;
  height:320px;
  background:#e9e1d8;
  border-radius:50%;
  filter:blur(90px);
  z-index:0;
}
/* CTA */
.cta{
  padding:80px 8%;
  text-align:center;
}

/* FOOTER */
.footer{
  padding:20px;
  text-align:center;
  background:#333;
  color:#fff;
}

/* MOBILE */
@media(max-width:768px){

.nav{
  display:none;
  flex-direction:column;
  background:#fff;
  position:absolute;
  top:70px;
  right:20px;
  padding:20px;
}

.nav.active{
  display:flex;
}

.hamburger{
  display:block;
}

.about{
  flex-direction:column;
}

.hero h1{
  font-size:28px;
}
}


@media(max-width:768px){

.hero{
  background-position:center;
}

.hero-overlay{
  background:rgba(245,241,236,0.95);
}

.hero h1{
  font-size:28px;
}

.about-wrapper{
  flex-direction:column;
  text-align:center;
}

.about-wrapper img{
  width:100%;
}

}




/* ================ */

/* ==============================service page ================================================= */


/* ==============================About page ================================================= */




/* ==============================contact page ================================================= */