* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
margin: 0;
padding: 0;
background-image: url('Imagefiles/bodybg.jpg'); 
background-size: cover;
background-attachment: fixed;
background-position: center;
background-repeat: no-repeat;
font-family: 'Poppins', sans-serif;
}

.main-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: linear-gradient(to right, #ffffffcc, #f0f0f0aa);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.main-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 100%;
  background: linear-gradient(to right, #7209b7, #a64ac9);
  border-radius: 4px;
}

.logo img {
  height: 50px;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-links,
.enquire-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 25px;
}

.nav-links a,
.enquire-btn {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a i {
  margin-right: 6px;
}

.nav-links a:hover {
  color: #7209b7;
  text-shadow: none;
  transform: scale(1.03);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 2px;
  width: 0%;
  background: #7209b7;
  border-radius: 10px;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.enquire-btn {
  padding: 8px 20px;
  border-radius: 30px;
  background: linear-gradient(135deg, #a64ac9, #7209b7);
  color: white;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(114, 9, 183, 0.2);
  margin-left: 80px;
  white-space: nowrap;
}

.enquire-btn:hover {
  background: linear-gradient(135deg, #7209b7, #a64ac9);
  box-shadow: 0 0 12px #a64ac9, 0 0 20px #7209b7;
  transform: scale(1.05);
}

.menu-icon {
  font-size: 24px;
  display: none;
  cursor: pointer;
  color: #7209b7;
}

.mobile-menu {
  display: none;
  flex-direction: column;

  padding: 30px 20px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  max-height: 600px;
}

.mobile_navlinks{
  list-style: none;
  padding: 0px 10px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.mobile-enquire {
  list-style: none;
  padding: 10px 10px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}
.mobile_navlinks{
  width: 100%;
}

.mobile_navlinks li
{
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #ddd;
  
}

.mobile_navlinks a {
  text-decoration: none;
  display: block;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile_navlinks a {
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  border-radius: 8px;
  border-bottom-style: initial;
  position: relative;
  text-align: center;
  transition: color 0.3s ease;
}

.mobile_navlinks a:hover {
  color: #7209b7;
}

.mobile-enquire a.enquirebtn {
  background: linear-gradient(135deg, #7209b7, #f107a3);
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background 0.3s ease;
}

.mobile-enquire a.enquirebtn:hover {
  background: linear-gradient(135deg, #f107a3, #7209b7);
}

@media (max-width: 1091px) {
  nav {
      display: none;
  }
  .menu-icon {
      display: block;
  }
  .mobile-menu {
      display: none;
  }
  .mobile-menu.active {
      display: flex;
  }
}

.banner {
  position: relative;
  height: 550px;
  background: url('Imagefiles/homepage\ bannerback.jpeg') no-repeat center center/cover;   
  padding: 20px;
  overflow: hidden;
  background-position: left center;

}

@media (max-width: 1068px){
  .banner{
    background-position: -50px center;
  }

}


@media (max-width: 679px) {
  .banner {
    height: 250px;
    background-position: -20px center;
  }
}
@media (max-width: 480px) {
  .banner {
    height: 150px;
    background-position: left center;
  }
}


.services-section {
  padding: 60px 20px;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  color: #7209b7;
  margin-bottom: 40px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  width: 250px;
  height: 320px;
  perspective: 1000px;
  position: relative;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  border-radius: 20px;
}

.service-card {
  transform: translateY(50px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card.animate {
  opacity: 1;
  transform: translateY(0);
}


.card-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.6s;
}

.service-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 25px;
  border-radius: 16px;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.card-front {
  background: linear-gradient(135deg, #f4edfa, #ebe2f6);
  border: 1px solid rgba(114, 9, 183, 0.2);
  box-shadow: 0 10px 20px rgba(114, 9, 183, 0.08);
  backdrop-filter: blur(4px);
}

.card-back {
  background: linear-gradient(to top right, rgba(41, 2, 67, 0.9), rgba(153, 95, 230, 0.9));
  color: #fff;
  transform: rotateY(180deg);
  border: 3px solid rgba(23, 20, 20, 0.505);
  box-shadow: inset 0 0 12px rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.card-front i {
  font-size: 50px;
  color: #7209b7;
  background: rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 50%;
  margin-bottom: 15px;
  border: 2px dashed #7209b7;
  box-shadow: 0 6px 12px rgba(114, 9, 183, 0.2);
  transition: transform 0.4s ease;
}

.card-front i:hover {
  transform: scale(1.1) rotate(6deg);
}

.card-front h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.card-front p,
.card-back p {
  font-size: 14px;
  text-align: center;
  line-height: 1.5;
}

.read-more {
  margin-top: 12px;
  padding: 8px 16px;
  background: white;
  color: #240538;
  border-radius: 20px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s ease;
}

.read-more:hover {
  background: #eee;
}

@keyframes fadeInUp {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

@media (max-width: 768px) {
  .services-grid {
    flex-direction: column;
    align-items: center;
  }
  .service-card {
    width: 90%;
    max-width: 350px;
  }
}


.aboutus-section {
  background-color: #F2EEF3 ;
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  height: 600px;
}



.aboutus-img {
  border-radius: 20px;
  animation: fadeInLeft 1s ease forwards;
  opacity: 0;
  width: 90%;
  height: 80%;
}

.aboutus-text-wrapper {
  animation: fadeInRight 1s ease forwards;
  opacity: 0;
}

.aboutus-title {
  font-size: 2rem;
  color: #7C1480;
  font-weight: bold;
  margin-bottom: 20px;
  
}

.aboutus-lead {
  font-size: 1.3rem;
  color: #3A3A3A;
  margin-bottom: 15px;
 
}

.read-more-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 28px;
  background: #7C1480;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  border-radius: 25px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(114, 9, 183, 0.3);
  animation: fadeInUp 0.8s ease-in-out;
}

.read-more-btn:hover {
  background: #9E30A1;
  box-shadow: 0 8px 20px rgba(94, 6, 157, 0.4);
  border: 1px solid #7C1480;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@keyframes fadeInLeft {
  from { transform: translateX(-50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeInRight {
  from { transform: translateX(50px); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

@media (max-width: 768px) {
  .aboutus-title { font-size: 1.5rem; }
  .aboutus-lead { font-size: 1rem; }
}


@media (max-width: 1259px) {
  .aboutus-title {
    font-size: 1.8rem;
    padding: 1px 25px;
  }

  .aboutus-lead {
    font-size: 16px;
    padding: 1px 25px;
  }

  .read-more-btn {
      display: block;
      margin: 20px auto 0; 
      text-align: center;
      width: 45%;
    }

  .about-img {
    margin-bottom: 20px;
  }
  .aboutus-section {
      height: 100%;
  }
}

.head_choose{
  font-size: 2rem;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.card-style-1 {
  background: #e3f2fd;
  border-left: 6px solid #1e88e5;
}
.card-style-2 {
  background: #e8f5e9;
  border-left: 6px solid #43a047;
}
.card-style-3 {
  background: #fff8e1;
  border-left: 6px solid #fbc02d;
}
.card-style-4 {
  background: #fce4ec;
  border-left: 6px solid #ec407a;
}

.card i {
  background: white;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .card {
    text-align: left;
  }
}

.contact-enquiry-section {
  background: linear-gradient(to right, #0e2c44, #1f1c2c); 
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 80px 20px;
}

.contact-enquiry-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 150%;
  height: 150%;
  background: radial-gradient(circle at top left, rgba(106, 17, 203, 0.3), transparent 70%),
              radial-gradient(circle at bottom right, rgba(37, 117, 252, 0.2), transparent 70%);
  z-index: 0;
}

.contact-enquiry-section > * {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 30px;
}

.contact-box {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
}

.contact-box:hover {
  transform: translateY(-3px);
}

.contact-box i {
  font-size: 24px;
  margin-right: 15px;
  color: #9c6eff; 
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  padding: 30px;
  margin-top: 30px;
}

.btn-purple {
  background: linear-gradient(to right, #6a11cb, #2575fc);
  border: none;
  color: #fff;
  padding: 12px 30px;
  border-radius: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  box-shadow: 0 4px 12px rgba(106, 17, 203, 0.4);
  transition: all 0.3s ease;
}

.btn-purple:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(106, 17, 203, 0.6);
}

@media (max-width: 768px) {
  .section-title {
    text-align: center;
    font-size: 24px;
  }

  .btn-purple {
    width: 100%;
  }

  .contact-box {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-box i {
    margin-bottom: 10px;
  }
}

.footer-section {
  background: linear-gradient(to bottom right, #2a0d26, #3b1b38);
  position: relative;
  overflow: hidden;
  padding-top: 60px;
  color: white;
}

.footer-section::before,
.footer-section::after {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.footer-section::before {
  width: 200px;
  height: 200px;
  top: -50px;
  left: -50px;
}

.footer-section::after {
  width: 300px;
  height: 300px;
  bottom: -100px;
  right: -100px;
}

.footer-section .container {
  position: relative;
  z-index: 1;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #fff;
}

.floating-icons .icon {
  display: inline-block;
  margin-right: 15px;
  font-size: 20px;
  color: #ccc;
  transition: transform 0.3s, color 0.3s;
}

.floating-icons .icon:hover {
  color: #fff;
  transform: scale(1.1);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  margin-bottom: 20px;
}

@media (min-width: 1200px) {
  .footer-section .col-lg-3 {
    flex: 0 0 20%;
    max-width: 20%;
  }
}

@media (max-width: 991px) {
  .footer-section .col-md-6 {
    flex: 0 0 33.333%;
    max-width: 33.333%;
  }
}

@media (max-width: 768px) {
  .footer-section .col-sm-12 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 480px) {
  .footer-section .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}


#content-wrapper {
  padding: 80px 20px;
  max-width: 1500px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

