*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body{
  background-color: #f5f5f5;
  

}
html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  

}

.menu-btn{
  font-size:24px;
  cursor:pointer;
  padding:20px;
}
/* SIDEBAR */


.sidebar{
  width:260px;
  height:100vh;
  background:#1b1b1b;
  position:fixed;
  top:0;
  left:-260px;
  transition:0.4s ease;
  z-index:9999;
}

.sidebar.show{
  left:0;
}

.sidebar-top{
  display:flex;
  justify-content:flex-end;
  align-items:center;
  padding:20px;
  padding-bottom:40px; 
  border-bottom:1px solid #333;
}

.close-btn{
  color:#ffffff;
  font-weight:bold;
  cursor:pointer;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:0.3s ease;
  padding:8px;
  font-size:35px; 
}


@media(max-width:768px){
  .close-btn{
    font-size:26px; 
  }
}

@media(min-width:769px){
  .close-btn{
    font-size:38px; 
  }
}

.close-btn:hover{
  color:#ff4d6d;
  transform:rotate(90deg);
}

.sidebar a{
  display:block;
  color:#ffffff;
  text-decoration:none;
  padding:18px 20px;
  border-bottom:1px solid #2f2f2f;
  transition:0.3s ease;
  font-size:16px;
}

.sidebar a:hover{
  background:#2d5a27;
  padding-left:28px;
}

.main{
  width: 100%;
}

/* ================================
   TOP HEADER
================================ */

.top-header {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 125px;

  padding: 10px 30px;

  background: linear-gradient(
    to right,
    #2d5a27,
    #6b4f3a
  );

  color: white;

  position: fixed;
  top: 0;
  left: 0;

  z-index: 1000;

  box-sizing: border-box;

  gap: 25px;
}


/* ================================
   LEFT SECTION
================================ */

.left-section {
  display: flex;
  align-items: center;

  gap: 18px;

  flex-shrink: 0;
}


/* MENU ICON */

.menu-icon {
  font-size: 36px;

  cursor: pointer;

  color: white;

  margin-left: 0;
  margin-right: 5px;

  line-height: 1;
}


/* LEFT LOGO */

.left-logo {
  width: 105px;
  height: 105px;

  object-fit: contain;

  flex-shrink: 0;
}


/* ================================
   WEBSITE TITLE
================================ */

.website-title {
  display: flex;
  flex-direction: column;

  justify-content: center;

  color: white;

  min-width: 270px;
}


.website-name {
  margin: 0 0 2px 0;

  font-size: 36px;

  line-height: 1.1;

  font-weight: bold;

  font-family:
    "Times New Roman",
    Times,
    serif;

  color: white;
}


.powered-text {
  margin: 0;

  color: white;

  font-family:
    "Times New Roman",
    Times,
    serif;

  font-weight: normal;

  line-height: 1.2;
}

.website-title h4 {
  font-size: 17px;
  margin-top: 4px;
}

.website-title h5 {
  font-size: 15px;
}


/* ================================
   INFORMATION CONTAINER
================================ */

.info-container {
  display: flex;

  align-items: center;

  justify-content: space-between;

  flex: 1;

  min-width: 0;

  gap: 20px;

  margin-left: 20px;
}


/* ================================
   INFO BOX
================================ */

.info-box {
  display: flex;

  align-items: center;

  gap: 12px;

  flex: 1;

  min-width: 0;

  margin: 0;

  padding: 0 15px;

  border-right: 1px solid rgba(255, 255, 255, 0.35);
}

.info-box:last-child {
  border-right: none;
}


/* ICON */

.info-box i {
  width: 42px;
  height: 42px;

  display: flex;

  align-items: center;
  justify-content: center;

  color: white;

  font-size: 20px;

  flex-shrink: 0;
}


/* TEXT */

.info-box p {
  margin: 0;

  color: white;

  font-size: 14px;

  line-height: 1.5;

  white-space: normal;
}


/* ================================
   RIGHT SECTION
================================ */

.right-section {
  display: flex;

  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  margin-left: 10px;

  padding-left: 20px;
}


/* RIGHT LOGO */

.right-logo {
  width: 95px;
  height: 95px;

  object-fit: contain;

  display: block;
}


/* ================================
   SIDEBAR
================================ */

.sidebar a {
  display: block;

  color: #ffffff;

  text-decoration: none;

  padding: 18px 20px;

  border-bottom: 1px solid #2f2f2f;

  transition: 0.3s ease;

  font-size: 16px;
}

.sidebar a:hover {
  background: #2d5a27;

  padding-left: 28px;
}


/* ================================
   MAIN
================================ */

.main {
  width: 100%;
}


/* ================================
   TABLET
================================ */

@media (max-width: 1200px) {

  .top-header {
    gap: 15px;

    padding: 10px 20px;
  }

  .left-section {
    gap: 12px;
  }

  .left-logo {
    width: 85px;
    height: 85px;
  }

  .website-title {
    min-width: 220px;
  }

  .website-name {
    font-size: 30px;
  }

  .website-title h4 {
    font-size: 14px;
  }

  .website-title h5 {
    font-size: 12px;
  }

  .info-container {
    gap: 5px;
    margin-left: 5px;
  }

  .info-box {
    padding: 0 8px;
    gap: 5px;
  }

  .info-box p {
    font-size: 12px;
  }

  .right-logo {
    width: 75px;
    height: 75px;
  }
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

  .top-header {
    min-height: 75px;

    padding: 8px 12px;

    gap: 8px;

    justify-content: flex-start;
  }


  /* MENU */

  .menu-icon {
    font-size: 30px;

    margin: 0;
  }


  /* LEFT LOGO */

  .left-logo {
    width: 55px;
    height: 55px;
  }


  /* TITLE */

  .website-title {
    min-width: 0;
  }

  .website-name {
    font-size: 23px;

    line-height: 1;
  }

  .website-title h4 {
    font-size: 10px;

    line-height: 1.1;
  }

  .website-title h5 {
    font-size: 8px;

    line-height: 1.1;
  }


  /* HIDE CONTACT INFO */

  .info-container {
    display: none;
  }


  /* RIGHT LOGO */

  .right-section {
    margin-left: auto;

    padding-left: 0;
  }

  .right-logo {
    width: 55px;
    height: 55px;
  }

}
.home{
  width: 100%;
  min-height: 100vh;

  background-image: url("background.png");
  background-size: cover;
  background-position: center;

  margin-top: 0; 

  position: relative;
}

.overlay{
  width: 100%;
  min-height: 100vh;

  background: rgba(0,0,0,0.6);

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 40px;

  padding: 80px;
}

.home-left{
  width: 50%;

  color: white;
}

.home-left h1{
  font-size: 50px;

  margin-bottom: 20px;
}

.home-left h2{
  font-size: 25px;

  color: #d4b17a;

  margin-bottom: 20px;
}

.home-left p{
  font-size: 18px;

  line-height: 1.8;

  margin-bottom: 30px;
}

.home-left button{
  padding: 15px 35px;

  border: none;

  background-color: #c58c5d;

  color: white;

  font-size: 16px;

  cursor: pointer;

  border-radius: 8px;

  transition: 0.3s;
}

.home-left button:hover{
  background-color: #a86f43;
}
@media (max-width:768px){

  .home{
    min-height: auto;
    margin-top: 0 !important;
  }

  .overlay{
    padding-top: 5px !important;
    align-items: flex-start;
  }

  .home-left{
    width: 100%;
    margin-top: 30px; 
  }

  .home-left h1{
    margin-top: 0;
  }
}

.appointment-box{
  width: 400px;

  background-color: white;

  padding: 35px;

  border-radius: 15px;
}

.appointment-box h2{
  font-size: 26px;

  color: #2d5a27;

  margin-bottom: 10px;
}


.appointment-box h3{
  font-size: 18px;

  margin-bottom: 10px;
}

.appointment-box p{
  color: #666;

  margin-bottom: 25px;
}

.appointment-box input,
.appointment-box textarea{
  width: 100%;

  padding: 14px;

  margin-bottom: 18px;

  border: 1px solid #ccc;

  border-radius: 6px;

  font-size: 14px;

  outline: none;
}


.appointment-box textarea{
  height: 120px;

  resize: none;
}

.appointment-box button{
  width: 100%;

  padding: 15px;

  border: none;

  background-color: #2d5a27;

  color: white;

  font-size: 16px;

  border-radius: 6px;

  cursor: pointer;

  transition: 0.3s;
}

.appointment-box button:hover{
  background-color: #1d3d18;
}
.home-text{
  font-family: serif;
}

@media(max-width:1000px){

  .overlay{

    flex-direction: column;

    text-align: left;

    padding: 60px 25px;

    gap: 35px;
  }


  .home-left{

    width: 100%;
  }

  .home-left h1{

    font-size: 42px;

    line-height: 1.3;
  }

  .home-left h2{

    font-size: 30px;

    line-height: 1.4;
  }

  .home-left p{

    font-size: 18px;

    line-height: 1.8;
  }

  .home-left button{

    width: 100%;

    max-width: 300px;
  }

  .appointment-box{

    width: 100%;

    max-width: 100%;
  }

}

@media(max-width:768px){

  .home{

    margin-top: 80px;
  }

  .overlay{

    padding: 40px 20px;
  }

  .home-left h1{

    font-size: 34px;
  }

  .home-left h2{

    font-size: 24px;
  }

  .home-left p{

    font-size: 16px;

    text-align: justify;
  }

  /* APPOINTMENT FORM */

  .appointment-box{

    padding: 25px 20px;
  }

  .appointment-box h2{

    font-size: 26px;
  }

  .appointment-box h3{

    font-size: 20px;
  }

  .appointment-box p{

    font-size: 15px;
  }

  .appointment-box input,
  .appointment-box textarea{

    font-size: 15px;

    padding: 12px;
  }

  .appointment-box button{

    font-size: 16px;

    padding: 14px;
  }

}

@media(max-width:480px){

  .overlay{

    padding: 30px 15px;
  }

  .home-left h1{

    font-size: 28px;
  }

  .home-left h2{

    font-size: 20px;
  }

  .home-left p{

    font-size: 15px;

    line-height: 1.7;
  }

  .appointment-box{

    padding: 20px 15px;
  }

  .appointment-box h2{

    font-size: 22px;
  }

  .appointment-box h3{

    font-size: 18px;
  }

}

.play-circle {
  width: 90px;
  height: 90px;
  font-size: 30px;
}


@media (max-width: 768px) {
  .play-circle {
    width: 40px;
    height: 40px;   
    font-size: 22px;
  }
}

.play-overlay{
  width: 70px;
  height: 70px;

  border-radius: 50%;

  background: linear-gradient(to bottom, #8b5e3c, #c99a6b);

  color: white;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 30px;
}

.close-btn{
  position: absolute;

  top: 30px;
  right: 40px;

  font-size: 35px;

  color: white;

  cursor: pointer;
}
.video-popup{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.shorts-box{
    width:100%;
    max-width:380px;
    height:650px;
    margin:auto;
    overflow:hidden;
    border-radius:20px;
}

.shorts-box iframe{
    width:100%;
    height:100%;
    border:none;
}
.close-btn{
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 32px;
  cursor: pointer;
}

@media (max-width:768px){

  .shorts-box{
    width: 95vw;
    height: 75vh;
  }

  .shorts-box iframe{
    width: 100%;
    height: 100%;
    border-radius: 15px;
  }

  .close-btn{
    top: 12px;
    right: 15px;
    font-size: 24px;
  }
}
/* PLAY SECTION */

.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.video-popup.show {
  display: flex;
}

.popup-video {
  width: 90%;
  max-width: 900px;
  border-radius: 10px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: white;
  cursor: pointer;
}


.play-circle{

  width: 90px;

  height: 90px;

  border-radius: 50%;

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  display: flex;

  justify-content: center;

  align-items: center;

  cursor: pointer;

  transition: 0.3s ease;
}


.play-overlay{

  color: white;

  font-size: 32px;

  margin-left: 5px;
}


.play-circle:hover{

  transform: scale(1.08);
}
/* ABOUT US */

.about-section{
  width: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  gap: 80px;

  padding: 100px 80px;
  background:
  linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );

}


.about-left{
  flex: 1;

  display: flex;
  justify-content: center;
}

.about-logo{
  width: 100%;
  max-width: 500px;
}


.about-right{
  flex: 1;
}

.about-title{
  display: flex;
  align-items: center;

  gap: 15px;

  margin-bottom: 20px;
}

.line{
  width: 80px;
  height: 4px;

  background-color: #2d5a27;
}

.about-title p{
  font-size: 15px;
  letter-spacing: 2px;

  color: #2d5a27;
}

.about-right h1{
  font-size: 35px;

  color: black;

  line-height: 1.3;

  margin-bottom: 25px;
}


.about-text{
  font-size: 17px;

  color: #555;

  line-height: 1.8;

  margin-bottom: 25px;
}

.about-points{
  margin-top: 25px;
}

.point{
  font-size: 17px;

  margin-bottom: 15px;

  color: #333;
}

@media(max-width:1000px){

  .about-section{
    flex-direction: column;

    padding: 60px 25px;

    text-align: center;
  }

  .about-title{
    justify-content: center;
  }

  .about-right h1{
    font-size: 35px;
  }

  .about-text{
    font-size: 17px;
  }

}
/* FOUNDER SECTION */

.founder-section{
  width: 100%;

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 60px;

  padding: 100px 90px;

  background: linear-gradient(
    to right,
    #f5f0e6,
    #eef6ea
  );
}


.founder-content{
  flex: 1;
  
}

.founder-title{
  font-size: 16px;

  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 20px;
}


.founder-content h1{
  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.line-design{
  display: flex;
  align-items: center;

  margin-bottom: 30px;
}

.circle{
  width: 12px;
  height: 12px;

  border-radius: 50%;

  background-color: #8d6748;
}

.line{
  width: 90px;
  height: 4px;

  background-color: #8d6748;

  margin-left: 5px;

  border-radius: 10px;
}

.founder-text{
  font-size: 17px;

  line-height: 1.9;

  color: #5a5a5a;

  margin-bottom: 20px;
}

.founder-btn{
  margin-top: 20px;

  padding: 18px 40px;

  border: none;

  border-radius: 40px;

  background: linear-gradient(
    to right,
    #6f4e37,
    #b08968
  );

  color: white;

  font-size: 16px;
  font-weight: bold;

  cursor: pointer;

  transition: 0.3s;

  width: fit-content;
  min-width: 220px;
  display: inline-block;
}

.founder-btn:hover{
  transform: scale(1.05);
}

.founder-image{
  flex: 1;

  display: flex;
  justify-content: center;
}

.founder-image img{
  width: 100%;
 
  max-width: 300px;

  border-radius: 20px;

  box-shadow: 0px 8px 20px rgba(0,0,0,0.2);

  border: 6px solid #d9c2a7;
}

@media(max-width:1000px){

  .founder-section{

    flex-direction: column;

    text-align: center;

    padding: 60px 25px;
  }

  .founder-image{

    order: -1;

    width: 100%;

    display: flex;

    justify-content: center;
  }

  .founder-image img{

    width: 100%;

    max-width: 320px;
  }

  .line-design{
    justify-content: center;
  }

  .founder-content h1{
    font-size: 38px;
  }

  .founder-text{
    font-size: 17px;
  }

}
/* =====================================================
   FOUNDER IMAGE
===================================================== */

.founder-image {
    flex: 0 0 390px;

    width: 390px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-image img {
    display: block;

    width: 100%;
    max-width: 360px;
    height: auto;

    object-fit: contain;

    /* Clean professional frame */
    padding: 5px;

    box-sizing: border-box;

    background: #ffffff;

    border: 3px solid #d8c0a3;

    border-radius: 22px;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.12);

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.founder-image img:hover {
    transform: translateY(-4px);

    box-shadow:
        0 15px 32px rgba(0, 0, 0, 0.16);
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

  background: linear-gradient(
    to bottom,
    #f5f0e6,
    #eef6ea
  );
}

/* SECTION */

section{
  width: 100%;
  padding: 70px 40px;
}

body {

	margin: 0;

	padding: 0;

	background: linear-gradient(
		to bottom,
		#f5f0e6,
		#eef6ea
	);

	font-family: 'Segoe UI',
	Tahoma,
	Geneva,
	Verdana,
	sans-serif;
}
/* ===== TEAM SECTION ===== */

/* =====================================================
   TEAM SECTION
===================================================== */

.team-section {
    width: 100%;
    padding: 70px 20px;
    box-sizing: border-box;

    background: linear-gradient(
        135deg,
        #f7f6ed 0%,
        #eef4e9 100%
    );
}


/* =====================================================
   CONTAINER
===================================================== */

.team-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 65px;

    align-items: center;

    padding: 55px 60px;

    box-sizing: border-box;

    background: #ffffff;

    border-radius: 24px;

    border: 1px solid rgba(45, 90, 39, 0.08);

    box-shadow:
        0 15px 40px rgba(45, 70, 35, 0.09);

    position: relative;
    overflow: hidden;
}


/* Top accent */

.team-container::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 5px;

    background: linear-gradient(
        90deg,
        #2d5a27,
        #6d7e4b,
        #9a6337
    );
}


/* =====================================================
   OUR TEAM - HORIZONTAL
===================================================== */

.team-label {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    padding-top: 5px;
}

.team-label span {
    position: relative;

    display: inline-flex;
    align-items: center;

    padding-left: 18px;

    color: #536453;

    font-size: 15px;

    font-weight: 600;

    letter-spacing: 3px;

    white-space: nowrap;
}


/* Brown vertical accent */

.team-label span::before {
    content: "";

    position: absolute;

    left: 0;
    top: 50%;

    transform: translateY(-50%);

    width: 4px;
    height: 32px;

    background: #9a6337;

    border-radius: 10px;
}


/* =====================================================
   PROFILE CONTENT
===================================================== */

.profile-content {
    max-width: 650px;
}

.profile-content h3 {
    margin: 0;

    color: #2d5a27;

    font-size: 42px;

    font-weight: 700;

    line-height: 1.2;
}


/* Divider */

.profile-divider {
    display: flex;
    align-items: center;

    margin: 16px 0 18px;

    height: 10px;
}

.profile-divider span {
    width: 85px;
    height: 4px;

    background: #9a6337;

    border-radius: 10px;
}

.profile-divider i {
    width: 9px;
    height: 9px;

    margin-left: -4px;

    background: #9a6337;

    border-radius: 50%;
}


/* Position */

.profile-content h4 {
    margin: 0 0 22px;

    color: #9a6337;

    font-size: 21px;

    font-weight: 600;
}


/* Description */

.profile-content p {
    margin: 0;

    color: #455248;

    font-size: 16px;

    line-height: 1.85;

    text-align: left;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 768px) {

    .team-container {
        grid-template-columns: 150px 1fr;

        gap: 35px;

        padding: 45px 35px;
    }

    .team-label span {
        font-size: 13px;
        letter-spacing: 2px;
    }

    .profile-content h3 {
        font-size: 34px;
    }

    .profile-content h4 {
        font-size: 19px;
    }

    .profile-content p {
        font-size: 15px;
        line-height: 1.75;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 600px) {

    .team-section {
        padding: 40px 15px;
    }

    .team-container {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 40px 28px;
    }

    .team-label {
        padding-top: 0;
    }

    .team-label span {
        padding-left: 15px;

        font-size: 13px;
        letter-spacing: 2px;
    }

    .team-label span::before {
        height: 25px;
    }

    .profile-content h3 {
        font-size: 30px;
    }

    .profile-content h4 {
        font-size: 18px;

        margin-bottom: 18px;
    }

    .profile-content p {
        font-size: 14px;

        line-height: 1.7;
    }
}

@media (max-width:992px){
    .team-container{
        grid-template-columns:1fr;
    }
}

@media (max-width:768px){

    .team-container{
        grid-template-columns:1fr;
        padding:15px;
    }

    .profile-card{
        flex-direction:column;
        align-items:center;
        text-align:center;
        width:100%;
    }

    .image-wrapper{
        width:220px;
        height:280px;
        margin-bottom:15px;
    }

    .profile-content{
        width:100%;
    }

    .profile-content p{
        text-align:center;
    }
}


/* CORE VALUES */

.core-section{
  padding: 100px 80px;

  background: linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );

  text-align: center;
}
button{
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 40px;
  background: linear-gradient(to right,#2d5a27,#6f4e37);
  color: white;
  font-size: 18px;
  cursor: pointer;
  margin-top: auto;      
}



.core-small-title{
  font-size: 16px;
  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 15px;
}

.core-header h1{
  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.core-description{
  max-width: 850px;

  margin: auto;

  font-size: 18px;

  color: #666;

  line-height: 1.8;
}


.core-container{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 35px;              
  margin-top: 60px;
  align-items: stretch;
}


.core-card{
  background: #fff;
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.08);
  transition: 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 500px;     
}

.core-card:hover{
  transform: translateY(-10px);
}

.core-icon{
  font-size: 45px;

  margin-bottom: 20px;
}

.core-card h2{
  font-size: 25px;

  color: #6f4e37;

  margin-bottom: 15px;
}

.core-card p{
  font-size: 16px;

  color: #666;

  line-height: 1.8;
}

@media(max-width:768px){

  .core-section{
    padding: 60px 25px;
  }

  .core-header h1{
    font-size: 35px;
  }

  .core-description{
    font-size: 17px;
  }

}
/* TREATMENTS SECTION */

.treatments-section{

  padding: 100px 80px;

  background:
  linear-gradient(
    to bottom,
    #eef6ea,
    #f9f4eb
  );

  text-align: center;
}



.treatment-small-title{

  font-size: 16px;

  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 15px;
}

.treatment-header h1{

  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.treatment-description{

  max-width: 850px;

  margin: auto;

  font-size: 16px;

  line-height: 1.8;

  color: #666;
}


.treatment-container{

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap: 30px;

  margin-top: 60px;
}


.treatment-card{

  background: #fff;

  padding: 40px 30px;

  border-radius: 20px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);

  transition: 0.3s;
  display:flex;
  flex-direction:column;
  
}

.treatment-card:hover{

  transform:
  translateY(-10px);
}


.treatment-icon{

  font-size: 40px;

  margin-bottom: 20px;
}


.treatment-card h2{

  font-size: 24px;

  color: #6f4e37;

  margin-bottom: 15px;
}

.treatment-card p{

  font-size: 16px;

  color: #666;

  line-height: 1.8;

  flex-grow:1;
    margin-bottom: 25px;
}

@media(max-width:768px){

  .treatments-section{
    padding: 60px 25px;
  }

  .treatment-header h1{
    font-size: 35px;
  }

  .treatment-description{
    font-size: 17px;
  }

}

.medicine-section{

  padding:100px 80px;

  background:linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );
}

.medicine-header{
  text-align:center;
}

.medicine-small-title{

  font-size:16px;

  letter-spacing:2px;

  color:#557153;

  margin-bottom:15px;
}

.medicine-header h1{

  font-size:35px;

  color:#2d5a27;

  margin-bottom:20px;

  line-height:1.3;
}

.medicine-description{

  max-width:850px;

  margin:auto;

  font-size:16px;

  color:#666;

  line-height:1.8;
}

.medicine-container{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:35px;

  margin-top:70px;
}

.medicine-card{

  background:white;

  border-radius:25px;

  overflow:hidden;

  box-shadow:
  0px 8px 20px rgba(0,0,0,0.08);

  transition:0.3s;
  display:flex;
  flex-direction:column;
}

.medicine-card:hover{
  transform:translateY(-10px);
}

.medicine-card img{

  width:100%;

  height:280px;

  object-fit:cover;

  display:block;
}


.medicine-card h2{

  font-size:28px;

  color:#6f4e37;

  text-align:center;

  margin-top:25px;
}

.medicine-card p{

  font-size:16px;

  color:#666;

  line-height:1.8;

  text-align:center;

  padding:15px 25px 8px; 

  flex-grow:1;
}

.medicine-card a{
  text-decoration:none;
   margin-top:auto;
}

.medicine-card button {

  display:block;

  margin:0 auto 20px auto; 

  width:80%;

  max-width:250px;

  padding:14px 20px;

  border:none;

  border-radius:50px;

  color:white;

  font-size:16px;

  font-weight:600;

  cursor:pointer;

  background:linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );
}
  

.medicine-card button:hover{

  transform:scale(1.05);

  opacity:0.9;
}

@media(max-width:768px){

  .medicine-section{
    padding:60px 20px;
  }

  .medicine-header h1{
    font-size:36px;
  }

  .medicine-description{
    font-size:17px;
  }

  .medicine-card h2{
    font-size:28px;
  }

  .medicine-card p{
    font-size:16px;
  }

}

.course-section{

  padding: 100px 80px;

  background:
  linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );

  text-align: center;
}

.course-small-title{

  font-size: 16px;

  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 15px;
}

.course-header h1{

  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.course-description{

  max-width: 850px;

  margin: auto;

  font-size: 16px;

  line-height: 1.8;

  color: #666;
}

.course-container{

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap: 30px;

  margin-top: 60px;
}

.course-card{

  background: white;

  padding: 40px 30px;

  border-radius: 20px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);

  transition: 0.3s;
  display:flex;
  flex-direction:column;
}

.course-card:hover{

  transform:
  translateY(-10px);
}


.course-icon{

  font-size: 45px;

  margin-bottom: 20px;
}


.course-card h2{

  font-size: 24px;

  color: #6f4e37;

  margin-bottom: 15px;
}



.course-card p{

  font-size: 16px;

  color: #666;

  line-height: 1.8;

  margin-bottom: 20px;

   flex-grow:1;
}


.course-card button{

  padding: 12px 30px;

  border: none;

  border-radius: 30px;

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  color: white;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s;
   margin-top:auto;
  width:100%;
}

.course-card button:hover{

  transform: scale(1.05);
}

@media(max-width:768px){

  .course-section{
    padding: 60px 25px;
  }

  .course-header h1{
    font-size: 35px;
  }

  .course-description{
    font-size: 17px;
  }

}

.apply-section{

  padding: 100px 80px;

  background:
  linear-gradient(
    to right,
    #eef6ea,
    #f5f0e6
  );
}

.apply-container{

  display: flex;
  justify-content: space-between;
  align-items: center;

  gap: 50px;
}

.apply-left{
  flex: 1;
}

.apply-small-title{

  font-size: 16px;

  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 15px;
}

.apply-left h1{

  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.apply-text{

  font-size: 20px;

  line-height: 1.8;

  color: #666;

  margin-bottom: 30px;
}

.course-list{
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.course-item{

  background: white;

  padding: 15px 20px;

  border-radius: 10px;

  font-size: 18px;

  color: #6f4e37;

  box-shadow:
  0 4px 10px rgba(0,0,0,0.08);
}

.apply-form-box{

  flex: 1;

  background: white;

  padding: 40px;

  border-radius: 20px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);
}

.apply-form-box h2{

  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.apply-form-box input,
.apply-form-box select,
.apply-form-box textarea{

  width: 100%;

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid #ccc;

  border-radius: 10px;

  font-size: 16px;

  outline: none;
}

.apply-form-box button{

  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 30px;

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  color: white;

  font-size: 18px;

  cursor: pointer;

  transition: 0.3s;
}

.apply-form-box button:hover{
  transform: scale(1.02);
}

@media(max-width:900px){

  .apply-container{
    flex-direction: column;
  }

  .apply-section{
    padding: 60px 25px;
  }

  .apply-left h1{
    font-size: 36px;
  }

  .apply-text{
    font-size: 17px;
  }

}
/* DOCTOR SECTION */

.doctor-section{
  padding:100px 80px;
  background:#f4f7ef;
  text-align:center;
}



.doctor-small-title{
  color:#557153;
  letter-spacing:2px;
  font-size:16px;
  margin-bottom:15px;
}

.doctor-header h1{
  font-size:35px;
  color:#2d5a27;
  margin-bottom:20px;
}

.doctor-description{
  max-width:850px;
  margin:auto;
  color:#666;
  font-size:16px;
  line-height:1.8;
}


.doctor-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:35px;
  margin-top:60px;
}

.doctor-card{
  background:white;
  padding:30px;
  border-radius:25px;
  box-shadow:0px 8px 20px rgba(0,0,0,0.08);
  transition:0.3s;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  min-height:550px;
}

.doctor-card:hover{
  transform:translateY(-10px);
}

.doctor-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:18px;
  margin-bottom:25px;
}

.doctor-card h2{
  color:#2d5a27;
  font-size:26px;
  margin-bottom:15px;
}

.doctor-card p{
  color:#666;
  font-size:16px;
  line-height:1.8;
}

.doctor-btn-card{
  width:100%;
  margin-top:25px;
  padding:16px;
  border:none;
  border-radius:40px;
  background:linear-gradient(to right,#2d5a27,#6f4e37);
  color:white;
  font-size:16px;
  cursor:pointer;
}

@media(max-width:768px){

  .doctor-section{
    padding:60px 25px;
  }

  .doctor-header h1{
    font-size:35px;
  }

  .doctor-description{
    font-size:17px;
  }

}
/* MEMBERSHIP SECTION */

.membership-section{

  padding: 100px 80px;

  background:
  linear-gradient(
    to bottom,
    #eef6ea,
    #f5f0e6
  );

  text-align: center;
}


.membership-small-title{

  font-size: 16px;

  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 15px;
}

.membership-header h1{

  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.membership-description{

  max-width: 850px;

  margin: auto;

  font-size: 16px;

  line-height: 1.8;

  color: #666;
}


.membership-container{

  display: grid;

  grid-template-columns:
  repeat(auto-fit,minmax(300px,1fr));

  gap: 30px;

  margin-top: 60px;
}

.membership-card{

  background: white;

  padding: 40px;

  border-radius: 20px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);

  transition: 0.3s;

  position: relative;
}

.membership-card:hover{

  transform:
  translateY(-10px);
}

.featured{

  border: 3px solid #2d5a27;
}

.popular-tag{

  position: absolute;

  top: -15px;
  right: 20px;

  background: #2d5a27;

  color: white;

  padding: 8px 15px;

  border-radius: 20px;

  font-size: 14px;
}

.membership-card h2{

  font-size: 24px;

  color: #6f4e37;

  margin-bottom: 10px;
}

.membership-card h3{

  font-size: 22px;

  color: #2d5a27;

  margin-bottom: 25px;
}

.membership-card ul{

  list-style: none;

  text-align: left;

  margin-bottom: 25px;
}

.membership-card li{

  font-size: 16px;

  color: #666;

  margin-bottom: 15px;
}


.membership-card button{

  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 30px;

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  color: white;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s;
}

.membership-card button:hover{
  transform: scale(1.03);
}


@media(max-width:768px){

  .membership-section{
    padding: 60px 25px;
  }

  .membership-header h1{
    font-size: 35px;
  }

  .membership-description{
    font-size: 17px;
  }

}

.email-link{

  color: inherit;

  text-decoration: none;

  font-weight: 500;
}

.email-link:hover{

  text-decoration: underline;
}

.contact-section{

  padding: 100px 80px;

  background:
  linear-gradient(
    to bottom,
    #f5f0e6,
    #eef6ea
  );

  text-align: center;
}

.contact-small-title{

  font-size: 16px;

  letter-spacing: 2px;

  color: #557153;

  margin-bottom: 15px;
}

.contact-header h1{

  font-size: 35px;

  color: #2d5a27;

  margin-bottom: 20px;
}

.contact-description{

  max-width: 850px;

  margin: auto;

  font-size: 16px;

  color: #666;

  line-height: 1.8;
}

.contact-container{

  display: flex;

  justify-content: space-between;

  gap: 40px;

  margin-top: 60px;
}

.contact-info{

  flex: 1;

  background: white;

  padding: 40px;

  border-radius: 20px;

  text-align: left;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);
}

.contact-info h2{

  color: #2d5a27;

  margin-bottom: 30px;
}

.info-item{

  font-size: 16px;

  color: #666;

  margin-bottom: 25px;

  line-height: 1.8;
}

.contact-form-box{

  flex: 1;

  background: white;

  padding: 40px;

  border-radius: 20px;

  box-shadow:
  0 8px 20px rgba(0,0,0,0.08);
}

.contact-form-box h2{

  color: #2d5a27;

  margin-bottom: 25px;
}

.contact-form-box input,
.contact-form-box textarea{

  width: 100%;

  padding: 15px;

  margin-bottom: 20px;

  border: 1px solid #ccc;

  border-radius: 10px;

  font-size: 14px;

  outline: none;
}

.contact-form-box button{

  width: 100%;

  padding: 15px;

  border: none;

  border-radius: 30px;

  background:
  linear-gradient(
    to right,
    #2d5a27,
    #6f4e37
  );

  color: white;

  font-size: 16px;

  cursor: pointer;

  width: fit-content;
  min-width: 220px;
  display: inline-block;
}

@media(max-width:900px){

  .contact-container{
    flex-direction: column;
  }

  .contact-section{
    padding: 60px 25px;
  }

  .contact-header h1{
    font-size: 35px;
  }

}
.footer{
  background:#2d5a27;
  color:white;
  text-align:center;
  padding:20px;
  margin-top:50px;
}

.footer p{
  margin:5px 0;
  font-size:15px;
}
