:root {
  --brand: #6c2196;
  --sub: #e94e77;
  --body: #d4af37;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
  --background: #fdf7ff;
}

body {
  margin: 0;
  /* font-family: "Segoe UI", sans-serif; */
  background: #f9f6fb !important;
}

.page-hero {
  position: relative;
  height: 60vh;
  /* background: url("img/banner.jpg") center/cover no-repeat; */
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../img/image-2/img-7.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  border-radius: 0 0 30px 30px;
  overflow: hidden;
}

.service-page-hero{
  background: 
    linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
    url('../img/image-4/style\ 3.jpg') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-title {
  color: #ffffff;
  font-size: 60px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  color: #b6b6b6;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}

/* Header */
h1 {
  text-align: center;
  margin-top: 30px;
  letter-spacing: 4px;
}

.subtitle {
  text-align: center;
  color: #777;
  margin-bottom: 40px;
}

/* Gallery */
.gallery {
  width: 100%;
  margin: auto;
}

/* PERFECT SPACING FIX */
.grid-item {
  width: calc(33.333% - 15px);
  /* width: calc(25% - 15px); */
  margin-bottom: 15px;
}

.grid-item img {
  width: 100%;
  display: block;
  border-radius: 12px;
  cursor: pointer;
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

/* Hover effect */
.grid-item img:hover {
  transform: scale(1.06);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  background: rgba(0, 0, 0, 0.95);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 85%;
  max-height: 85%;
  border-radius: 12px;
  animation: zoom 0.4s ease;
}

/* Controls */
.close,
.prev,
.next {
  position: absolute;
  color: #fff;
  font-size: 35px;
  cursor: pointer;
}

.close {
  top: 20px;
  right: 40px;
}

.prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

/* Animation */
@keyframes zoom {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .grid-item {
    width: calc(50% - 10px);
  }
}

@media (max-width: 500px) {
  .grid-item {
    width: 100%;
  }
}

.gallery-close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 35px;
  color: white !important;
  cursor: pointer;
  z-index: 1000000;
}

/* Lightbox must be highest */
.lightbox {
  z-index: 999999 !important;
}

/* Header lower than lightbox */
.sticky-top {
  z-index: 1000 !important;
}

.img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.img-wrapper img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

/* Overlay */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.3s ease;
}

/* Icon */
.overlay i {
  color: white;
  font-size: 35px;
  transform: scale(0.7);
  transition: 0.3s;
}

/* Hover effects */
.img-wrapper:hover img {
  transform: scale(1.05);
}

.img-wrapper:hover .overlay {
  opacity: 1;
}

.img-wrapper:hover .overlay i {
  transform: scale(1);
}



/* Header */
.page-header {
    background: #4A154B;
    color: #fff;
    padding: 90px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 600;
}

/* Sections */
.service-section {
    padding: 90px 0;
}

.bg-alt {
    background: #EFE7EA;
}

/* Image */
.service-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
    transition: 0.5s;
}

.service-img:hover {
    transform: scale(1.03);
}

/* Text */
.service-title {
    font-size: 30px;
    font-weight: 600;
    margin-top: 30px;
}

.service-text {
    line-height: 1.8;
    color: #555;
    margin-top: 10px;
}

/* Divider */
.divider {
    width: 50px;
    height: 2px;
    background: #BFA181;
    margin-bottom: 20px;
}

/* Highlight */
.highlight {
    color: #BFA181;
    font-weight: 500;
}

.footer-logo{
  height: 70px;
  align-items: start !important;
  padding: 0 !important;
}


/*** Section Title ***/
/* Container for the whole section */
/* .ser.row {
    padding-top: 80px;
    background-color: #fff;
} */

/* The violet Card */
/* .single_course {
    background-color: var(--brand); 
    padding: 30px 25px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    margin-bottom: 5px; 
    margin-top: 5px;
}


.single_c_img {
    margin-top: -80px; 
    margin-bottom: 20px;
}

.single_c_img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}


.single_course h4 a {
    color: #fff;
    
    text-transform: uppercase;
    text-decoration: none;
    font-size: 22px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.ser-p {
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 0px;
}


.Explore {
    display: inline-block;
    background-color: #000;
    color: #fff !important;
    padding: 12px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    border-radius: 4px;
    transition: 0.3s;
}

.Explore:hover {
    background-color: #333;
    transform: translateY(-2px);
}


.Explore::after {
    content: " \2192"; 
    margin-left: 8px;
} */


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item {
  /* box-shadow: 0 0 45px rgba(0, 0, 0, .07); */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  height: 100%;
  border: 1px solid transparent;
  transform: scale(.85);
  transition: .5s;
  background: #fff;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  box-shadow: none;
  border-color: var(--brand);
  transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-item img {
  width: 50px;
  height: 50px;
}

.testimonial-carousel .owl-nav {
  margin-top: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  border: 1px solid var(--brand);
  border-radius: 45px;
  transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  color: #FFFFFF;
  background: var(--brand);
}

.tes-head{
  background: #f9f6fb;
}


#contact{
  background: #f9f6fb !important;
}
#contact .section-heading {
  margin-bottom: 30px;
}

#contact .section-heading h6 {
  color: #fff;
}

#contact .section-heading h2 {
  color: #fff;
  font-weight: 700;
}

#contact .section-heading h6:before {
  background-color: #fff;
}

#contact p {
  color: #fff;
  margin-bottom: 65px;
}

#contact {
  margin-top: 50px;
  /* padding: 120px 0px; */
  background: white;
  /* background: linear-gradient(rgba(0, 0, 0, 0.418), rgba(0, 0, 0, 0.418)), url(../img/image-5/sli-1.jpg); */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#contact .phone,
#contact .message {
  background-color: white;
  border-radius: 5px;
  text-align: center;
  padding: 0px 0px 20px 0px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

#contact .phone i,
#contact .message i {
  width: 70px;
  height: 70px;
  display: inline-block;
  text-align: center;
  line-height: 70px;
  color: #fff;
  background-color: var(--brand);
  border-radius: 50%;
  font-size: 24px;
  margin-top: -35px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

#contact .phone h4,
#contact .message h4 {
  font-size: 20px;
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 10px;
}

#contact .phone span a,
#contact .message span a {
  font-size: 15px;
  color: #2a2a2a;
  transition: all .3s;
}

#contact .phone span a:hover,
#contact .message span a:hover {
  color: var(--brand);
}

#contact .message span{
  font-size: 15px;
}

#contact .message,
#contact .phone {
  padding-left: 20px;
  padding-right: 20px;
}

@media(max-width: 500px) 
{
  #contact h2 {
    font-size: 24px !important;
  }
  
}

@media(max-width: 1024px) {
  .classy-navbar-toggler .navbarToggler span {
    background: white !important;
  }
}

.footer-wave{ 
  display:block; 
  width:100%; 
  line-height:0; 
  background: #000000;
  /* transform: translateY(1px);  */
}

/* SECTION BACKGROUND */
.cta-modern-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #11111141, #1c1c1c38), url('../img/image-2/cta\ img.jpg') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
}

/* CARD */
.cta-card {
  position: relative;
  padding: 60px 40px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.02)
  );
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.4s ease;
}

/* HOVER EFFECT */
.cta-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

/* TITLE */
.cta-title {
  font-size: 42px;
  color: #fff;
  margin-bottom: 15px;
}

.cta-title span {
  color: #e9ba21;
}

/* TEXT */
.cta-text {
  color: #ffffff;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 16px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: #e9ba21;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s;
}

.cta-btn-primary:hover {
  background: #e9ba21;
  transform: scale(1.05);
}

/* OUTLINE BUTTON */
.cta-btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  transition: 0.3s;
}

.cta-btn-outline:hover {
  background: #fff;
  color: #000;
  transform: scale(1.05);
}

/* MOBILE */
@media(max-width:768px) {
  .cta-title {
    font-size: 28px;
  }

  .cta-card {
    padding: 40px 20px;
  }
}

/* SECTION */
.why-section-custom {
  padding: 80px 0;
  background: #f9f6fb; /* soft light purple tone */
}

/* TITLE */
.why-title {
  font-size: 38px;
  color: #4b2c6f;
  font-weight: 600;
}

.why-title span {
  color: #c59d5f; /* gold */
}

.why-subtitle {
  color: #666;
  max-width: 600px;
  margin: 10px auto 0;
}

/* CARD */
.why-card-custom {
  background: #fff;
  padding: 30px 25px;
  border-radius: 12px;
  text-align: center;
  transition: 0.3s ease;
  border: 1px solid #eee;
}

/* ICON */
.icon-box {
  width: 60px;
  height: 60px;
  background: rgba(123, 63, 152, 0.1); /* soft purple */
  color: #7b3f98;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  border-radius: 50%;
  font-size: 22px;
  transition: 0.3s;
}

/* TEXT */
.why-card-custom h5 {
  color: #333;
  margin-bottom: 10px;
}

.why-card-custom p {
  color: #777;
  font-size: 14px;
}

/* HOVER (Professional, not flashy) */
.why-card-custom:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  border-color: #c59d5f;
}

.why-card-custom:hover .icon-box {
  background: #c59d5f;
  color: #fff;
}

/* MOBILE */
@media(max-width:768px) {
  .why-title {
    font-size: 26px;
  }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  height: 100%;
  /* opacity: 0;
  transform: translateY(40px); */
  transition: 0.6s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* IMPORTANT */
  transition: transform 0.5s ease;
}

/* HEIGHT CONTROL */
.gallery-item { height: 200px; }
.gallery-item.tall { height: 420px; }
.gallery-item.wide { height: 200px; }

/* HOVER */
.gallery-item:hover img {
  transform: scale(1.15);
}


/* LIGHTBOX */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
}

.lightbox img {
  max-width: 90%;
  max-height: 80%;
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); }
  to { transform: scale(1); }
}

.home-glry-close {
  position: absolute;
  top: 20px;
  right: 40px;
  color: #fff !important;
  font-size: 30px;
  cursor: pointer;
}

.home-glry-btn{
  background: var(--sub);
  color: #fff;
  border-radius: 5px;
}
.home-glry-btn:hover{
  background: #e94e77cc;
  color: #fff;
  transform: scale(1.05);
}

:root {
  --brand: #7b2cbf;
}

.faq-section {
  padding: 60px 20px;
  background: #f8f8f8;
  font-family: Arial, sans-serif;
}



.faq-wrapper {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: flex-start;
}

.faq-left {
  width: 60%;
}

.faq-right {
  width: 40%;
 
}

.faq-right img {
  width: 100%;
  height: 500px;
  border-radius: 12px;
  object-fit: cover;
  object-position: center center;
}

.faq-title {
  font-family: 'Bellefair', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: black;
}

.faq-item {
  margin-bottom: 12px;
}

.accordion {
  font-family: 'Montserrat', sans-serif !important;
  background: #fff;
  color: #000;
  cursor: pointer;
  padding: 10px 10px;
  width: 100%;
  border: 1px solid var(--brand);
  border-radius: 8px;
  text-align: left;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s;
  height: 70px;
}

.accordion:hover,
.accordion.active {
  background: var(--brand);
  color: #fff;
}

.panel {
  padding: 0 18px;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  border-radius: 0 0 8px 8px;
  margin: 0;
}

.panel p {
  margin: 10px 0;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-wrapper {
    flex-direction: column;
  }

  .faq-left,
  .faq-right {
    width: 100%;
  }
}




.stats-section {
  background: linear-gradient(135deg, #11111141, #1c1c1c38), url('../img/image-2/image-35.jpeg') center/cover no-repeat fixed;
  position: relative;
  overflow: hidden;
  background-size: cover;          /* fills section properly */
  background-position: center;     /* keeps image centered */
  background-repeat: no-repeat;
      /* prevents repeating */

  padding: 60px 0;                 /* give proper height */
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


.stats-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* Default for desktop */
  gap: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Prevents boxes from touching screen edges */
  box-sizing: border-box; /* Crucial for padding handling */
}

/* Base item adjustment */
.stat-item {
  background: var(--brand);
  padding: 25px 15px; /* Reduced side padding slightly */
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
  transition: 0.3s ease;
  min-width: 0; /* Prevents items from pushing past grid boundaries */
}
.icon i {
  
  
    font-size: 1.5rem;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    margin-bottom: 20px;
    background-color: var(--body);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;

}
.label {
  color: white !important;
  font-size: 14px;
  margin-top: 10px;
}
.number {
  display: inline; 
  color: #ffffff !important;
  margin: 0;
}

/* 3. Sets color and keeps it next to number */
.symbol {
  color: #ffffff !important;
  margin-left: 2px;
  font-weight: bold;
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
  .stats-container {
    grid-template-columns: repeat(2, 1fr); 
    gap: 15px;
  }
  
  .number {
    font-size: 2.2rem; /* Shrink text slightly so it doesn't overflow box */
  }
}

@media (max-width: 480px) {
  .stats-container {
    grid-template-columns: 1fr; /* Stacked */
  }
}

/* counter end  */
.blog-header {
  text-align: center;
  padding: 80px 20px 40px;
  background-color: #fff;
}

.blog-header h2 {
  font-family: 'Montserrat', sans-serif; /* Or similar clean sans-serif */
  font-size: 2.2rem;
  letter-spacing: 2px;
  color: #1a1a1a;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.blog-header p {
  font-family: 'Arial', sans-serif;
  color: #999;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  font-size: 1.1rem;
}
.blog-section {
  background-color: #f8f9fa; /* Very light grey background */
  /* padding: 80px 20px; */
  font-family: 'Segoe UI', sans-serif;
}
@media (max-width: 768px) {
  .blog-section {
  
  padding: 40px 10px;
 
}
.blog-header {
  
  padding: 20px;
  
}
}


.blog-container {
  display: flex;
  gap: 30px;
  max-width: 1140px;
  margin: 0 auto;
  justify-content: center;
}

.blog-card {
  background: #fff;
  flex: 1;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-img img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 30px;
}

/* Date Styling */
.date-wrapper {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.day {
  font-size: 45px;
  color: #d4af37; /* Gold color */
  font-weight: 300;
  line-height: 1;
  margin-right: 10px;
}

.month-year {
  display: flex;
  flex-direction: column;
  text-transform: capitalize;
  color: #b3b3b3;
  font-size: 14px;
  letter-spacing: 1px;
}

/* Text Styling */
.blog-title {
  font-size: 18px;
  color: #333;
  margin: 0 0 15px 0;
  font-weight: 500;
}

.blog-text {
  color: #999;
  font-size: 15px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .blog-container {
    flex-direction: column;
  }
}