 *
{
    margin: 0;
    padding: 0;
}
body
{
    font-family: sans-serif;
}
/* navbar */
.navbar-nav {
    margin-left: auto !important;
}
#nav-bar{
    position: sticky;
    top: 0;
    z-index: 10;
}
.navbar {
    background-image: linear-gradient(to right,#a517ba, #5f1782  );
    padding-right: 30px !important;
    padding-bottom: 0px;
    padding-top: 0px;

}
.navbar-nav .nav-link {
  transition: transform 0.3s ease, color 0.3s ease;
   margin: 0 15px;
}

.navbar-nav .nav-link:hover {
  transform: scale(1.1);   /* Zoom effect */
  color: #ff6600;          /* Optional: change text color on hover */
}

.navbar-brand img
{
    height: 100px;
    padding-left: 20px;
  
}
.navbar-nav li{
    padding: 0 10;
}
.navbar-nav li a{
    color: #fff !important;
    font-weight: 600;
    float: right;
    text-align: left;
}
.fa-bars
{
    color: #fff;
    font-size: 30px !important;
}
.navbar-toggler {
    border: none; /* Optional: Remove border */
}
.navbar-toggler:focus,
.navbar-toggler:active {
    outline: none !important;
    box-shadow: none !important;
}
/* bannersection */
#banner{
    background-image: linear-gradient(to right, #a517ba, #5f1782);
    padding-top: 5%;
    bottom: 10%;
    color: #fff;
    
}
/* Brand Title Typing Animation */
.brandtitle {
  font-size: 70px;
  font-weight: 800;
  font-family: 'Poppins', sans-serif;
  color: white;
  margin-bottom: 15px;
  white-space: nowrap;
  overflow: hidden;
  width: 0; 
  animation: typing 3s steps(20, end) forwards, blink 0.7s step-end 3s 4; 
  letter-spacing: 5px;
  
}

/* Typing Effect */
@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink {
  50% { border-color: transparent; }
}

/* Image Animation */
.img1 {
  width: 600px;
  max-width: 100%;
  height: auto;
  opacity: 0;
  transform: translateY(50px);
  animation: fadeSlideUp 2s ease-out forwards;
  animation-delay: 2s; /* starts after brandtitle finishes */
 
}

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}





/* Banner Title */
.bannertitle {
  font-size: 40px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 3s; /* after image */
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* paragraph style (no CSS typing animation here) */
.bannerpara {
  display: inline-block;
  font-size: 20px;
  font-weight: 700; /* bold & stylish */
  font-family: 'Montserrat', sans-serif;
  color: white;
  margin-top: 15px;
  white-space: normal;   /* <-- allow multiple lines */
  overflow: hidden;
  padding-right: 6px;
  max-width: 550px;      /* adjust width so text wraps nicely */
  line-height: 1.6;
}

.wave1{
    width:100% ;
}
/* Services */


.service-img{
    width: 100px;
}
.services{
    padding: 10px;
    align-items: center;

}
.services h4{
    padding: 5px;
    margin-top: 24px;
    text-transform: uppercase;

}
.title::before{
    content: '';
    background: #7b1798;
    height: 5px;
    width: 200px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: block;
    transform: translateY(95px);
}

.title::after{
    content: '';
    background: #7b1798;
    height: 10px;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
    display: block;
    transform: translateX(8px);
}
#Services .btn-primary {
    font-weight: bold; /* Bold text */
    box-shadow: none;
    padding: 8px 25px;
    border: none;
    border-radius: 20px;
    background-image: linear-gradient(to right,#a517ba, #5f1782);
    margin-bottom: 50px;
    transition: transform 0.3s ease-in-out; /* Smooth zoom */
}

#Services .btn-primary:hover {
    transform: scale(1.1); /* Zoom effect */
}

#Services .btn-primary * {
    background: none !important;
    border: none !important;
}
/* About-us */
#about-us{
    background:#f8f9fa ;
    
}
.about-title{
    font-size: 40px;
    font-weight: 600px;
    margin-top: 5%;
}
.about-us ul li{
      margin: 10px 50px;
}
.about-title{
    margin-left: 50px;
}
.text-gradient {
  background: linear-gradient(to right, #a517ba, #5f1782);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

#why-choose-us .card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#why-choose-us .card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
}

/* =========================
   Testimonials CSS
   (add to your stylesheet)
   ========================= */
#testimonials { padding: 60px 0; 
 background-color: #ddd0e0;}

/* Keep your site's background color. The slider wrapper is transparent. */
.testimonial-slider-wrapper {
  width: 100%;
  overflow: hidden;
 
  position: relative;
  margin-top: 24px;
}
.profile-icon {
  font-size: 50px;
  color: #5f1782; /* match your theme */
  margin-bottom: 10px;
}
/* track that moves */
.testimonial-slider-track {
  display: flex;
  align-items: stretch;
  will-change: transform;
  /* transition controlled in JS when sliding */
}

/* each testimonial card */
.testimonial {
  flex: 0 0 auto; /* width set by JS for precise control */
  background: white;       /* card background */
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  color: #222;
  line-height: 1.5;
  box-sizing: border-box;
}

/* spacing inside text */
.testimonial p { margin: 8px 0; }
.usersdetails { margin-top: 10px; color: #555; font-size: 0.95rem; }

/* hover lift (optional) */
.testimonial:hover {
  transform: translateY(-6px);
  transition: transform 0.25s ease;
}
.review {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
}

.usersdetails {
  font-weight: bold;
  color: #333;
}

/* responsive tweaks (cards will be sized by JS) */
@media (max-width: 767px) {
  #testimonials { padding: 40px 0; }
}



/* Footer General */
#footer {
    background-image: linear-gradient(to right, #a517ba, #5f1782);
    color: #fff;
    position: relative;
   
}

/* Wave Image */
#footer .wave2 {
    width: 100%;
    display: block;
    margin-bottom: -10px; /* pull up slightly */
}

/* Footer Content Alignment */
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Box */
.footer-box {
    flex: 1 1 300px;
    margin: 20px;
}

/* Logo Styling */
.footer-logo {
    width: 150px;
    margin-bottom: 15px;
    display: block;
    position: relative;
    top: -20px; /* move up */
}


.footer-box p i {
    margin-right: 10px !important;
    font-size: 20px !important;
}



/* Social Icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    font-size: 22px;
    transition: transform 0.3s;
}

/* Social Icons Default */
.social-icons a {
    display: inline-block;
    margin-right: 12px;
    font-size: 29px; /* Increased size */
    color: #fff; /* Default white */
    transition: all 0.3s ease;
}

/* Real Brand Colors on Hover */
.social-icons a.facebook:hover { color: #1877F2; transform: scale(1.2); }
.social-icons a.twitter:hover { color: #1DA1F2; transform: scale(1.2); }
.social-icons a.linkedin:hover { color: #0A66C2; transform: scale(1.2); }


/* Hover effect */
.social-icons a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-box {
        margin: 12px 0;
    }

    .footer-logo {
        top: 0;
    }
}/* About Us Two-Column Layout */
.about-us-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 50px;
}

.about-text {
  flex: 1 1 500px;
  font-size: 20px;
}

.about-img-wrapper {
  flex: 1 1 500px;
  text-align: center;
}

.about-img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Service Card */
.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 25px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin: 50px 0px;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

.service-card h3 {
  color: #5f1782;
  margin: 15px 0 10px;
  font-size: 1.2rem;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 5px 0;
}

/* Service Icon Like Why Choose Us */
.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: linear-gradient(135deg, #a517ba, #5f1782);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 30px;
  transition: all 0.3s ease;
}

.service-card:hover .service-icon {
  transform: scale(1.2);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Responsive */
@media (max-width: 768px) {
  .about-us-grid {
    flex-direction: column;
  }

  .about-img-wrapper {
    order: -1; /* image on top on mobile */
  }
}

