* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #fff;
}
.section{
     padding: 5rem 5rem;
      margin: auto;
}
/************************************************************************************
                                    Navbar Section Start
*************************************************************************************/

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: #ffffff;
  position: fixed;
  top: 0;
  width:100vw;
  max-width: 100vw;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 30px;
}

img.animated-star {                                                    
  animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.logo h1 {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.logo p {
  font-size: 15px;
  margin-top: -5px;
  color: #505050;
  letter-spacing: 3px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  font-size: 16px;
  transition: color 0.5s ease;
}
.nav-links a:hover{
  color: #FD2EFF;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-contact span {
  font-size: 14px;
  color: #000;
}

.enroll-btn {
  background: linear-gradient(45deg, #FD2EFF, #A646FF);
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}
.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #000;
}


/************************************************************************************
                                    Hero Section Start
*************************************************************************************/
.hero {
  background: url('../image/hero-image.png') no-repeat center center/cover;
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to right, rgba(253, 46, 255, 0.2),rgba(162, 70, 255, 0.2),rgba(230, 180, 255, 0.2));  
  /* background: linear-gradient(to right, rgba(253, 46, 255, 0.6),rgba(162, 70, 255, 0.6),rgba(230, 180, 255, 0.2));    */

  z-index: 1;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.hero-logo img {
  width: 28px;
  height: 28px;
}

.hero-logo h2 {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1px;
}

.hero-content {
  color: #fff;
  text-align: center;
  z-index: 2;
  position: relative;
  max-width: 1000px;
  padding: 2rem;
  animation: fadeInUp 1s ease-in-out;

}

.hero-content h3 {
  font-weight: 300;
  font-size: 18px;
  margin-bottom: 12px;
  color:#e2c8fa;
}

.hero-content h1 {
  font-size: 65px;
  font-weight: 600;
  line-height: 1;
}

.hero-content h1 span {
   background: linear-gradient(to right, 
              #ea9beb,                  /* Pink */
              /* #E6B4FF, */              /* Purple */
              #faf0ff                   /* White */
            );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;

  font-weight: 700;
}

.hero-content p {
  margin: 20px auto;
  font-size: 18px;
  color: #f8f8f8;
  max-width: 750px;
}

.hero-buttons {
  margin: 40px 0;
  display: flex;
  gap: 15px;
  justify-content: center;
}

.btn-purple {
  background: linear-gradient(45deg, #FF64D9, #A646FF);
  color: #fff;
  padding: 18px 45px;
  border: none;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: transform 0.4s ease;
}
.btn-purple:hover {
  transform: scale(1.1);
}

.btn-light {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 18px 25px;
  border: 1px solid #ea81f3;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.4s ease;
}
.btn-light:hover{
    background: rgba(255, 255, 255, 0.4);
}

.stats {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 40px;
}

.stats div {
  text-align: center;
}

.stats h2 {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.stats p {
  font-size: 14px;
  color: #eee;
}
/* animation in hero section */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/************************************************************************************
                                    Excellence Section Start
*************************************************************************************/

.excellence-section {
  background: #fdf6fa;
  background: #f7ecf9;
  padding: 5rem 2rem;
  font-family: 'Segoe UI', sans-serif;
}

.excellence-container {
  max-width: 1500px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 3rem;
}

.excellence-left {
  flex: 1 1 500px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #f9e1f7;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  color: #6d016d;
  margin-bottom: 1.5rem;
  font-size: 15px;
}

.excellence-left img {
  height: 20px;
  margin-right: 0.5rem;
}

.excellence-left h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.3;
  color: #1a1a1a;
}

.excellence-left h2 span {
  background: linear-gradient(to right, #b207b2, #9933ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.excellence-left p {
  font-size: 16px;
  color: #444;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.points {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.points li ion-icon {
  margin-right: 10px;
  width: 1.5rem;
  height: 1.5rem;
  color:rgb(201, 19, 201);
}
.points li {
  font-size: 16px;
  color: #5d166f;
  margin-bottom: 0.8rem;
  position: relative;
}
.points li ion-icon {
  font-size: 18px;
}

.tags-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  font-size: 14px;
  color: #5d166f;
  font-weight: 500;
  margin-top: 1rem;
}

.tags-footer img {
  vertical-align: middle;
  margin-right: 6px;
}

/* RIGHT SIDE - CARDS */
.excellence-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  flex: 2 500px;
  gap: 30px;
  justify-content: center;
  align-items: center;
}

.card {
  gap: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding:2rem 1.5rem;
  box-shadow: 0 0 0 1px #fbe9ff, 0 10px 25px rgba(245, 204, 255, 0.2);
  transition: 0.3s ease;
  height: 220px; /* <- Set fixed height */
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(255, 143, 211, 0.3);
}

.card img {
  width: 60px;
  height: 60px;
  padding: 12px;
  background: #ffe6fa;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 30px;
  margin: 0;
  color: #111;
}

.card p {
  font-size: 15px;
  color: #5d166f;
}

/************************************************************************************
                                    Our Mission Section Start
*************************************************************************************/

.mission-section {
  background: #f7ecf9;
  padding: 4rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mission-box {
  background: linear-gradient(to right, #fde7f1, #efd9f9);
  padding: 3rem 2rem;
  border-radius: 20px;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.5);

}

.mission-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #2b0a3d;
  margin-bottom: 1rem;
}

.mission-box p {
  font-size: 18px;
  line-height: 1.8;
  color: #755b7a;
}


/************************************************************************************
                                    Courses Section Start
*************************************************************************************/


.courses-section {
  padding: 5rem 5rem;
  background: #f7ecf9;
  text-align: center;
}

.courses-heading {
  font-size: 3.2rem;
  font-weight: 700;
  color: #1d1b25;
  margin-bottom: 1rem;
}

.courses-heading span {
  background: linear-gradient(to right, #b207b2, #9933ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.courses-subtext {
  font-size: 1.1rem;
  color: #7e7e7e;
  margin-bottom: 5rem;
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(520px, 1fr));
  gap: 2rem;
}

.course-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(213, 156, 231, 0.2);
  transition: transform 0.3s ease;
  position: relative;
  
}
.tag-top {
  position: absolute;
  top:10px;
  right:40px;
  z-index: 99;
  background-color: #c936dd;
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 8px;
}

.course-img-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.course-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-img-wrapper img {
  transform: scale(1.1);

}
.course-img-wrapper .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(78, 77, 78, 0.3); 
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.course-card:hover .overlay {
  opacity: 1;
}

.course-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.course-content {
  padding: 1.5rem;
  text-align: left;
}

.course-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.course-content p {
  font-size: 0.9rem;
  color: #6d6d6d;
  margin-bottom: 1rem;
}

.course-info {
  font-size: 0.8rem;
  color: #555;
  margin-bottom: 0.8rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.course-tags span {
  background-color: #f1dbf7;
  font-size: 0.75rem;
  padding: 3px 7px;
  border-radius: 10px;
  margin-right: 5px;
  display: inline-block;
  margin-bottom: 5px;
}

.course-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.fee {
  font-weight: bold;
  color: #c936dd;
}

.fee small {
  color: #777;
  font-weight: normal;
  display: block;
}

.rating {
  font-size: 0.9rem;
  color: #c936dd;
}

.learn-btn {
  display: inline-block;
  background: linear-gradient(45deg, #FD2EFF, #A646FF);
  color: white;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: background 0.5s;
}

.learn-btn:hover {
  background: linear-gradient(45deg, #A646FF, #FD2EFF);
}


/*****************************************************************************************
                                Beauty Journey Section Start
******************************************************************************************/ 

.journey-section{
  background: #f7ecf9;
}
.cta {
  background: linear-gradient(90deg,rgba(229, 67, 232, 1) 0%, rgba(177, 122, 230, 1) 50%, rgba(166, 70, 255, 1) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.5);

}
.cta h2 {
  font-size: 1.5rem;
  font-weight: bold;
}
.cta p {
  margin: 1rem 0 2rem;
  font-size: 1rem;
}
.cta-buttons button {
  margin: 0 10px;
  padding: 1rem 2rem;
  border-radius: 12px;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
.btn-outline {
  background: rgb(255, 241, 241, 0.3);
  border: 1px solid #fff;
  color: #fff;
  transition: background 0.4s ease;

}
.btn-outline:hover{
  background: rgb(255, 241, 241, 0.5);
}
.btn-filled {
  background: linear-gradient(90deg,rgba(229, 67, 232, 1) 0%, rgba(177, 122, 230, 1) 0%, rgba(166, 70, 255, 1) 100%);
  color: #fff;
  transition: transform 0.4s ease;
}
.btn-filled:hover{
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: scale(1.1);
}


/*****************************************************************************************
                                Contact Us Section Start
******************************************************************************************/ 

.section-contact{
  background: #f7ecf9;

  padding: 5rem 2rem;
}
.contact-header {
  color: #1d1b25;
  text-align: center;
  margin-bottom: 1rem;
}
.contact-header h2{
    font-size: 3rem;
}
.contact-header span {
  background: linear-gradient(to right, #b207b2, #9933ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.contact-subtext {
  font-size: 0.9rem;
  color: #7e7e7e;
  margin-bottom: 5rem;
} 
.contact-container{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2rem;
  max-width: 1400px;
  margin: auto;
  flex-wrap: wrap;
}
.contact-info{                    /*********** This affects footer contact-info. Be carefull while changing*******/
  flex: 0 0 400px;
  display: flex;
  flex-direction: column;
}
.contact-form{
  flex: 0 0 900px;
  background:white;  
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.5);
  border-radius: 20px;
  padding: 3rem 2rem;
  color: rgb(85, 2, 85);
} 

.info-box {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.3); 
  transition: box-shadow 0.3s ease;
}
.info-box:hover {
  box-shadow: 0 8px 20px rgba(210, 78, 234, 0.5); 
}
.info-icon ion-icon {
  color:rgb(184, 26, 176);
  background: #f6d0e5;
  width:25px;
  height:25px;
  padding: 0.7rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.info-text p{
  color: #7e7e7e;
  font-size: 0.8rem;
}
.info-text h4{
  font-size: 0.9rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
  color:rgb(86, 86, 86);
}
.form-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: left;
}
form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
input, select, textarea {
  background: #f7ecf9;
  width: 100%;
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 0.8rem;
}
.half {
  flex: 1 1 48%;
  text-align: left;
}
.label{
  font-size: 0.9rem;
  padding-top:1rem
}
.half input{
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
textarea {
  min-height: 100px;
  resize: vertical;
}
.form-buttons {
  margin-top: 1rem;
  display: flex;
  gap:2rem;
  width:100%;  
}
.form-buttons button{
  padding:0.8rem 0 0.8rem 0;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}
.send {
  background: linear-gradient(to right, #d66efb, #a96dff);
  color: white;
  width:48%;
  margin-right: 1rem;
  transition: transform 0.4s ease;
} 
.send:hover{
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transform: scale(1.1);
}
.schedule {
  background: #f1ebf5;
  color: #333;
  width:48%;
  transition: background 0.7s linear, color 0.3s ease;
} 
.schedule:hover {
    background:rgb(130, 5, 130, 0.6);
    color:white;
}
.follow-us {
  background: white;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.5);
  padding: 2rem;
}
.social-icons {                   /*********** This affects footer social-icons. Be carefull while changing*******/
  display: flex;
  gap: 1.5rem;
}
.social-icons a {                 /*********** This affects footer social-icons. Be carefull while changing*******/
  width: 45px;
  height: 45px;
  background: #f6d0e5;
  font-size: 1.3rem;
  color: #333;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}


/*******************************************************************************************
                               Visit Us Section Start
********************************************************************************************/ 

.visit-section{
  background: #f7ecf9;
  padding:3rem 1rem 5rem 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.visit-container{
  text-align: center;
  width:90%;
  height:400px;
  border:2px solid #f7ecf9;
  padding: 4rem 1rem;
  background: linear-gradient(to right, #fce4ec, #f3e5f5);
  border-radius: 20px;
  padding: 4rem 1rem;
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.5);
}

.visit-icon svg {
  margin-bottom: 1rem;
}

.visit-container h2 {
  font-size: 2rem;
  color: #111;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.visit-address {
  font-size: 1.2rem;
  color: #6c6c6c;
  margin-bottom: 3.5rem;
}

.visit-btn {
  background-color: #fff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}

.visit-btn:hover {
  background-color: deeppink;
  color: white;
}


/*******************************************************************************************
                               Footer Section Start
********************************************************************************************/ 

.footer {
  background: linear-gradient(to top, #d326b9, #1e1b1e);
  color: rgb(248, 218, 247);
  padding: 40px 20px 0;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-col h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: rgb(250, 231, 250);

}
.footer-col h2{
  font-size: 1.5 rem ;
  margin-bottom: 15px;
  color: rgb(250, 231, 250);

}
.footer-col p{
  font-size: 0.90rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
  font-size: 0.90rem;
}

.footer-col ul li i {
  margin-right: 8px;
}

.footer-col ul li a {
  color: rgb(248, 218, 247);
  text-decoration: none;
  transition:color 0.3s ease;
}

.footer-col ul li a:hover {
  color:white;
}

.footer-col .social-icons a{
  background: linear-gradient(to top, #d326b9, #1e1b1e);
  color: #fff;
  transition: transform 0.3s ease;
}
.social-icons a:hover {
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
  margin-top: 20px;
}

.heart {
  color: #fb7185;
}


/*******************************************************************************************
                               Courses Section Start in Course page 
********************************************************************************************/ 
 
.course-page-secton {
  background-color: rgb(254, 244, 246);
}
.course-page-secton {
  background-image: url("../image/hero-image.png");
  background-size: cover;
  background-position: center;
  background-attachment:fixed;   background-repeat: no-repeat;
  padding: 0 2rem;
}
.course-page-container{
  margin: 0rem auto;
  padding: 8rem 2rem 4rem 2rem;
  max-width: 900px;
}
.courses-page-heading{
  font-size: 3.2rem;
  font-weight: 700;
  color:white;
  text-align: center;
  border:3px solid white;
  border-radius: 30px;
  padding:0.5rem 0rem;
  background-color: rgba(104, 3, 3, 0.5);
}

.course-page-box{
  margin-bottom: 3rem;
}
.course-page-box h2 {
  margin-top: 5rem;
  margin-bottom: 3rem;
  text-align: center; 
  font-size: 2rem;
  border:2px solid white;
  border-radius: 30px;
  padding:0.5rem 1rem;
  background-color: rgb(249, 203, 203,0.5);
}

.course-page-sub-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-content: center;
}

.course-one {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(211, 143, 255, 0.3);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  padding: 1.5rem;
  text-align: center;
}

.course-one:hover {
  box-shadow: 0 8px 20px rgba(210, 78, 234, 0.5);
  transform: translateY(-5px);
}

.course-one h3 {
  margin: 1rem 0;
  font-size: 1.2rem;
 
}

.course-page-info{
  font-size: 0.95rem;
  color: #555;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
} 

.course-page-info span {
  background: #fce7ff;
  padding: 0.2rem 0.3rem;
  border-radius: 8px;
}


/*******************************************************************************************
                               Hero Section Start in Gallery page 
********************************************************************************************/ 

.gallery-hero {
  margin-top: 5rem;
  background: #fff5f9;
  padding: 4rem 2rem; 
}
.gallery-hero-container{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: auto;

}
.gallery-hero-video{
  display: flex;
  justify-content: center;
  align-items: center;
}
.gallery-hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  color: #d63384;
  margin-bottom: 1rem;
}
.gallery-hero-content p {
  font-size: 1.2rem;
  color: #444;
  margin-bottom: 2rem;
}
.hero-btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  background: linear-gradient(45deg, #d63384, #ff77b7);
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}
.hero-btn:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #ff77b7, #d63384);
}

/* Video Styling */
.gallery-hero-video video {
  width: 90%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15); 
}


/* ===== Animations ===== */

.gallery-hero-content {
  animation: slideInLeft 1s ease forwards;
}
.gallery-hero-video {
  animation: fadeIn 1.5s ease forwards;
}
@keyframes slideInLeft {
  0% { opacity: 0; transform: translateX(-50px); }
  100% { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
  0% { opacity: 0; transform: scale(1.05); }
  100% { opacity: 1; transform: scale(1); }
}


/* Mobile Responsive */
@media (max-width: 768px) {
  .gallery-hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .gallery-hero-content h1 {
    font-size: 2rem;
  }
  .gallery-hero-content p {
    font-size: 1rem;
  }
}



/*******************************************************************************************
                               Gallery Section Start in Gallery page 
********************************************************************************************/ 

.gallery-header {
  text-align: center;
  padding: 0rem 1rem 3rem;
  background: #fff5f9;
}

.gallery-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #d63384;
}

.gallery-header p {
  font-size: 1.1rem;
  color: #666;
}

.gallery-container {
  
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  padding: 1rem 2rem 4rem;
  background: #fff5f9;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover {
  transform: translateY(-5px);
} 

/* Different sizes for variety */
.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

.lightbox {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 10px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.3);
}

.lightbox span {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 3rem;
  color: white;
  cursor: pointer;
}
/***********************************************************************************************************************************
                               Responsive Section Start
***********************************************************************************************************************************/ 

@media (max-width: 1024px) {  
  .nav-contact button {
    display: none;
  }                                
  .hero-content h1 {          /*******************Hero Section Start***************/
    font-size: 50px;
  }

  .hero-content p {
    font-size: 18px;
    max-width: 600px;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .btn-purple,
  .btn-light {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }

  .stats {
    gap: 60px;
  }

  .excellence-section {                    /*******************Excellence Section Start***************/
    padding: 4rem 1.5rem;
  }

  .excellence-container {
    flex-direction: column;
    gap: 4rem;
  }

  .excellence-left {
    flex: 1 1 100%;
  }

  .excellence-right {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .excellence-left h2 {
    font-size: 36px;
  }

  .excellence-left p,
  .points li,
  .tags-footer {
    font-size: 15px;
  }

  .courses-section {                       /*******************Our Course Section Start********************/  
    padding: 3rem 2rem;
  }

  .courses-grid {
    grid-template-columns: 1fr;
  }

  .course-card img {
    height: 240px;
  }

  .course-content {
    padding: 1.2rem;
  }

  .course-content h3 {
    font-size: 1.2rem;
  }

  .course-content p {
    font-size: 0.9rem;
  }

  .course-info {
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .course-tags span {
    font-size: 0.7rem;
    padding: 3px 6px;
  }

  .learn-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .tag-top {
    top: 10px;
    right: 20px;
    font-size: 0.7rem;
    padding: 4px 7px;
  }

  .cta {                                   /*******************Beauty Journey Section Start********************/  
    padding: 2.5rem 1.5rem;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .cta p {
    font-size: 0.95rem;
    margin: 1rem 0 2rem;
  }

  .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }

  .cta-buttons button {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
  .contact-container {                    /*******************Contact Us Section Start********************/
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-form, .contact-info {
    width: 100%;
  }
  .half {
    flex: 1 1 100%;
  }
  .course-page-secton {                 /*******************Course Section Start on Course.html********************/
    margin: 0rem auto;
    padding: 0 1.5rem;
  }
}
/*********************************************************************************************************************************/

@media (max-width: 768px) {  
  
  .hamburger {                              /*******************Hero Section Start***************/ 
    display: block;
  }
  .navbar{
    padding: 1rem 2rem 1rem 1rem;
  }
  #nav-menu {
    display: none;
  }
  #nav-menu.active {
    display: block;
    position: absolute;
    top: 81px;
    left: 0;
    width: 100vw;
    max-width: 100vw;
    /* height:90vh; */
    overflow-x: hidden;
    background: #fff;
    background: rgb(245, 243, 243);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    z-index: 999;
    display: flex;
    justify-content: center;;
    align-items: center;
    padding:3rem 0;
    
  }
  .nav-links {
    flex-direction: column;  
  }
  .nav-links li {
    width: 100%;
    box-sizing: border-box;
  } 
  .nav-contact {
    display: none;
  }

  .hero {                                     /*******************Hero Section Start***************/ 
    padding: 100px 1.5rem 2rem;
    height: auto;
  }

  .hero-content {
    padding: 1rem;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero-content h3 {
    font-size: 16px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-logo h2 {
    font-size: 30px;
  }

  .stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }

  .stats h2 {
    font-size: 22px;
  }

  .stats p {
    font-size: 13px;
  }
  
  .excellence-right {                            /*******************Excellence Section Start***************/
    grid-template-columns: 1fr;
  }

  .excellence-left h2 {
    font-size: 30px;
  }

  .tag {
    font-size: 13px;
    padding: 6px 10px;
  }

  .points li {
    font-size: 14px;
  }

  .card {
    height: auto;
    padding: 1.5rem 1rem;
  }

  .card h3 {
    font-size: 24px;
  }

  .card p {
    font-size: 14px;
  }

  .card img {
    width: 50px;
    height: 50px;
    padding: 10px;
  }

  .tags-footer {
    flex-direction: column;
    gap: 10px;
    font-size: 13px;
  }  

  .section-contact{                               /*******************Contact Us Section Start***************/
    padding: 3rem 1rem;
  }
  .contact-header h2 {
    font-size: 2rem;
  }

  .contact-subtext {
    font-size: 0.85rem;
    margin-bottom: 3rem;
  }

  .contact-form {
    padding: 2rem 1.5rem;
  }

  input,
  select,
  textarea {
    font-size: 0.9rem;
  }

  .form-title {
    font-size: 1.2rem;
  }

  .info-box {
    padding: 1.5rem;
    font-size: 0.85rem;
  }

  .info-icon {
    width: 30px;
    height: 30px;
    font-size: 1rem;
    margin-right: 1rem;
  }
  .form-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .form-buttons button{
    padding:0.5rem 0 0.5rem 0;
  }
  .send, .schedule{
    width:100%;
  }   

  .visit-container h2 {                /*******************Visit Us Section Start***************/
    font-size: 1.6rem;
  }

  .visit-address {
    font-size: 1rem;
  }

   .footer-col .social-icons {            /*******************Footer Section Start***************/
    justify-content: center;
    align-items: center;
  }
  
  .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-col {
    margin-bottom: 20px;
  }

  .footer-col ul li {
    font-size: 1rem;
  }

  

  .course-page-secton {                   /*******************Course Section Start of Course.html***************/
    margin: 0rem auto;
    padding: 0 1rem;
  }
  .courses-page-heading{
    font-size: 2rem;
  }
  .course-page-box h2{
    font-size: 1.2rem ;
  }
  .course-one {
    padding: 1rem;
  }
  .course-one h3 {
    font-size: 1rem;
  }
  .course-page-info {
    font-size: 0.85rem;
  }

  .gallery-item.wide,                     /*******************Gallery Section Start of Gallery.html***************/
  .gallery-item.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
  .gallery-hero {
    padding: 4rem 1rem; 
  }
  .gallery-hero-video video {
    width: 95%;
  }
  .gallery-header h1 {
    font-size: 1.8rem;
  }
}

/*********************************************************************************************************************************/

@media (max-width: 480px) {                   /*******************Hero Section Start***************/ 
  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content h3 {
    font-size: 14px;
  }

  .hero-content p {
    font-size: 14px;
  }

  .btn-purple,
  .btn-light {
    font-size: 14px;
    padding: 14px;
  }

  .hero-logo h2 {
    font-size: 24px;
  }

  .hero-logo img {
    width: 24px;
    height: 24px;
  }
    
  .mission-section{                           /*******************Our Mission Section Start********************/
    padding:2rem 1rem;
  }
  .mission-box {
  padding: 2rem 1rem;
  }
  .mission-box p {
      font-size: 0.9rem;
  }

  .courses-section {                          /*******************Our Course Section Start********************/              
    padding: 3rem 1rem;
  }
  .courses-heading {
    font-size: 2.2rem;
  }

  .courses-subtext {
    font-size: 0.9rem;
    margin-bottom: 3rem;
  }

  .course-info {
    flex-direction: column;
    align-items: flex-start;
  }

  .course-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }

  .section{                                /*******************Beauty Journey Section Start********************/  
    padding:2rem 1rem;
  }
  .cta {
    padding: 2rem 1rem;
  }

  .cta h2 {
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .cta p {
    font-size: 0.9rem;
    margin: 0.8rem 0 1.5rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons button {
    width: 90%;
    font-size: 1rem;
    padding: 0.9rem 1.2rem;
  }
}





