@import url('https://fonts.googleapis.com/css2?family=Bungee+Spice&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&family=Winky+Sans:ital,wght@0,300..900;1,300..900&display=swap');

body{
    font-family: "Ubuntu", sans-serif !important;
    /* font-weight: 300; */
    font-style: normal;
    
}

/* whatsapp icon  */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }
  
  .whatsapp-btn:hover {
    transform: scale(1.1);
    background-color: #20b354;
  }
  
  @media (max-width: 576px) {
    .whatsapp-btn {
      width: 50px;
      height: 50px;
      bottom: 15px;
      right: 15px;
    }
    .whatsapp-btn i {
      font-size: 1.5rem;
    }
    #vector-img{
        width: 80%;
    }
    .circle-bg-orange, .circle-bg-purple{
        width: 80%;
        background-color: wheat;
        display: none;
    }
  }

/* header section  */

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-link {
    color: #4B0082 !important;
    font-weight: 500;
    transition: color 0.3s ease;
    margin-left: 15px;
}

.nav-link:hover {
    color: #FFD700 !important;
}

.navbar-brand {
    color: #4B0082 !important;
    font-weight: 700;
    font-size: 1.5rem;
}

/* heo section     */
.hero-section {
    background: linear-gradient(90deg, #4B0082, #4682B4);
    min-height: 100vh;
    /* Full viewport height */
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.3;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-heading{
    font-family: "Ubuntu", sans-serif;
  font-weight: bolder;
  font-style: normal;
  /* font-weight: 100; */
  
}

.blob {
    position: absolute;
    background: #FFD700;
    border-radius: 50%;
    opacity: 0.4;
}

.blob-top-right {
    top: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
}

.blob-bottom-left {
    bottom: 20px;
    left: 20px;
    width: 100px;
    height: 100px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-section {
        min-height: auto;
        padding: 50px 0;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section .lead {
        font-size: 1rem;
    }

    .hero-section .form-control {
        max-width: 100%;
    }

    .hero-section .d-flex {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section .lead {
        font-size: 0.9rem;
    }
}

/* client section  */
.client-section img {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
    display: block;
}


/* .why-choose-us {
    background-color: #ffffff;
} */

.why-choose-us .card {
    border: none;
    
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.why-choose-us .card:hover {
    transform: translateY(-5px);
}



/* Make Your Assignment Help More Effective Section  */
.assignment-effective {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.assignment-effective .circle-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
}

.assignment-effective .circle-bg-orange {
    background-color: #FFD700;
    /* Orange shade */
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.assignment-effective .circle-bg-purple {
    background-color: #4B0082;
    /* Purple shade matching theme */
    width: 250px;
    height: 250px;
    bottom: -30px;
    right: -30px;
}

.assignment-effective img {
    position: relative;
    z-index: 1;
    max-width: 100%;
}

.assignment-effective h2 {
    /* font-family: 'Roboto', sans-serif; */
    color: #333;
}

.assignment-effective p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.1rem;
    line-height: 1.6;
}



/* Call-to-Action Section  */
.cta-section {
    background-color: #e6f0fa;
    /* Light blue background */
    padding: 2rem 0;
}

.cta-section .cta-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    max-width: 900px;
    margin: 0 auto;
}

.cta-section h2 {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.cta-section .btn {
    background-color: #4B0082;
    color: #fff;
    /* font-family: 'Roboto', sans-serif; */
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 25px;
}



/* Statistics Section  */
.stats-section {
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

.stats-section .card {
    border-radius: 15px;
    border: none;
}

.stats-section h3 {
    /* font-family: 'Roboto', sans-serif; */
    color: #333;
}

.stats-section p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1rem;
    text-transform: uppercase;
    margin-bottom: 0;
}

.stats-section .circle-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
}

.stats-section .circle-bg-orange {
    background-color: #FFD700;
    /* Orange shade */
    width: 200px;
    height: 200px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.stats-section .circle-bg-purple {
    background-color: #4B0082;
    /* Purple shade matching theme */
    width: 250px;
    height: 250px;
    bottom: -30px;
    right: 10%;
}

.stats-section img {
    position: relative;
    z-index: 1;
}



/* Services Section  */
.services-section {
    background-color: #fff;
}

.services-section h2 {
    /* font-family: 'Roboto', sans-serif; */
    color: #333;
}

.services-section p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.1rem;
    line-height: 1.6;
}

.services-section .card {
    border-radius: 15px;
    border: none;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.services-section .card:hover {
    transform: translateY(-5px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    
}

.services-section .card-body {
    padding: 2rem;
}

.services-section h5 {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.25rem;
    color: #333;
}

.services-section .bg-light {
    background-color: #f8f9fa !important;
}



/* Get Free Assignment Consultation Section  */

.consultation-section {
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.consultation-section h2 {
    /* font-family: 'Roboto', sans-serif; */
    color: #333;
}

.consultation-section p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.1rem;
    line-height: 1.6;
}

.consultation-section .circle-bg {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    z-index: 0;
}

.consultation-section .circle-bg-orange {
    background-color: #FFD700;
    /* Orange shade */
    width: 300px;
    height: 300px;
    top: -50px;
    left: -50px;
}

.consultation-section .circle-bg-purple {
    background-color: #4B0082;
    /* Purple shade matching theme */
    width: 250px;
    height: 250px;
    bottom: -30px;
    right: -30px;
}

.consultation-section img {
    position: relative;
    z-index: 1;
}

.consultation-section .form-control {
    border-radius: 10px;
    border: 1px solid #ced4da;
    padding: 0.75rem;
    /* font-family: 'Roboto', sans-serif; */
}

.consultation-section .btn {
    border-radius: 25px;
    padding: 0.75rem 2rem;
    /* font-family: 'Roboto', sans-serif; */
    text-transform: uppercase;
}





/* Need Assignment Help Section  */
.cta-contact-section {
    background-color: #FFD700;
    /* Orange background */
    padding: 2rem 0;
}

.cta-contact-section .cta-box {
    background-color: #fff;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cta-contact-section h2 {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 3rem;
    font-weight: 700;
    color: #333;
}

.cta-contact-section p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.6rem;
    line-height: 1.6;
}

.cta-contact-section .btn {
    background-color: #4B0082;
    color: #fff;
    /* font-family: 'Roboto', sans-serif; */
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 25px;
}



/* What Our Students Say Section  */

.testimonial-section {
    background-color: #f8f9fa;
}

.testimonial-section h2 {
    /* font-family: 'Roboto', sans-serif; */
    color: #333;
}

.testimonial-section p {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-section .card {
    border-radius: 15px;
    border: none;
    padding: 1.5rem;
}

.testimonial-section .blockquote {
    /* position: static; */
    align-items: center;
    justify-content: flex-start;
}

.testimonial-section .blockquote p:before {
    content: '\201C';
    /* Left quote */
    font-size: 3rem;
    color: #4B0082;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-section .blockquote-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-section .blockquote-footer div {
    font-weight: 500;
    color: #333;
}

.testimonial-section .blockquote-footer cite {
    color: #6c757d;
    font-size: 0.9rem;
}

.testimonial-section .btn {
    background-color: #4B0082;
    color: #fff;
    /* font-family: 'Roboto', sans-serif; */
    font-weight: 500;
    text-transform: uppercase;
    padding: 0.75rem 2rem;
    border-radius: 25px;
}




/* footer section  */

.footer-section {
    background-color: #4B0082;
    /* Purple background matching theme */
}

.footer-section h3,
.footer-section h5 {
    /* font-family: 'Roboto', sans-serif; */
    color: #fff;
}

.footer-section p,
.footer-section li {
    /* font-family: 'Roboto', sans-serif; */
    font-size: 0.9rem;
}

.footer-section a:hover {
    color: #FFD700 !important;
    /* Orange hover effect */
    text-decoration: underline !important;
}

.footer-section .text-white-50 {
    color: rgba(255, 255, 255, 0.7) !important;
}

.footer-section .border-top {
    border-color: rgba(255, 255, 255, 0.2) !important;
}