:root {
  --pink: #B81DF4;
  --purple: #4B21B6;
  --text-color: #15014A;
  --bg-purple: #5320ba08;
  --light-purple: #9B7FE5;
}


body{
    font-family: "Inter", sans-serif !important;
    overflow-x: hidden;
}


/* animations  */
@keyframes slideUp {
    0% {
        transform: translateY(50%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;

    }
}

@keyframes slideUpRotate {
    0% {
        transform: translateY(20%) rotate(-25deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(-25deg);
        opacity: 1;
    }
}

@keyframes zoomInOut {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02); /* Slightly zoom in */
    }
    100% {
        transform: scale(1);
    }
}
@keyframes smoothZoomEffect {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.06); 
    }
    100% {
        transform: scale(1);
    }
}


@keyframes arrowUpDown {
    0% {
        transform: translateY(0) rotate(-64deg);
    }
    50% {
        transform: translateY(-15px) rotate(-64deg); /* Move up */
    }
    100% {
        transform: translateY(0) rotate(-64deg);
    }
}

@keyframes rotateTriangle {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}


 /* navbar dropdown */

 .navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 10px 0;
    transition: background-color 0.3s ease-in-out;
    background-color: transparent; 
  }
  
  .navbar-scrolled {
    background-color: #fff; 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  
.dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 420px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    padding: 10px 0;
    list-style: none; 
}

.dropdown-menu li {
    padding: 5px 0;
}

.dropdown-menu a {
    color: var(--text-color);
    padding: 10px 15px;
    display: block;
    text-decoration: none; 
    font-size: 14px;
    transition: background 0.3s ease-in-out;
}


.dropdown-menu a:hover {
    background-color: var(--light-purple); 
    color: white;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}



  

/* home section  */
.hero-section{
    position: relative;
    height: 750px;
    overflow: hidden;
    background-color: var(--bg-purple);
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
}

.logo-wrapper{
    max-width: 170px;
    width: 100%;
}

.logo-wrapper img{
    width: 100%;
}

/* nav right section  */
.nav-right{
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
    position: relative;
    z-index: 1;
}

.search-bar-wrapper{
    position: relative;
    width: 45px;
    height: 45px;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    
}

.search-bar-wrapper i{
    color: var(--purple);
    position: absolute;
    left: 15px;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

.search-bar-wrapper .close-icon {
    position: absolute;
    left: 270px;
     cursor: pointer;
    color:var(--purple);
    transition: opacity 0.3s ease-in-out;
  }

  .search-bar-wrapper input {
    transition: width 0.3sease, opacity 0.3sease, visibility 0.3s;
    border: 1px solid #ccc;
    padding: 5px 5px 5px 5px;
    border-radius: 5px;
    outline: none;
    position: absolute;
    left: 42px;
    width: 212px !important;
   
  }
  .show-close {
    opacity: 1;
}


  
  /* When Active */
  .active-input {
    width: 150px !important; 
    opacity: 1 !important;
  }

  .active-search-wrapper{
    width: 300px !important;
    border-radius: 10px !important;
    transition: all 0.3s ease-in-out !important;
  }

  


.hero-bg{
    position: absolute;
    width: 1200px;
    top: -50px;
    right: 0;
    z-index: 0;
    animation: zoomInOut 3s ease-in-out infinite;
}


.right-arrow{
    position: absolute;
    width: 100px;
    right: 243px;
    top: 214px;
    transform: rotate(-64deg);
    animation: arrowUpDown 2s infinite ease-in-out; 
}
.triangle{
    position: absolute;
    width: 120px!important;
    right: 140px !important;
    top: 45px;
    bottom: 0px;
    transform: rotate(36deg);
    transform-origin: top center; 
    animation: rotateTriangle 5s linear infinite; 
}

.hero-mobile{
    position: absolute;
    width: 255px;
    right: 635px;
    bottom: -213px;
    transform: rotate(-25deg);
    opacity: 0;
    border-radius: 30px;
    box-shadow: 0 4px 53px #00000046;
    animation: slideUpRotate 1.2s ease-in-out 0.8s forwards;
}

.hero-content-wrap{
    margin: 200px 0;
    color: var(--text-color); 
    animation: slideUp 0.8s ease-in-out forwards;
  

}

.hero-section-content{
    position: relative;
}

.hero-img-wrap{
    max-width: 800px;
    width: 100%;
    animation: smoothZoomEffect 5s infinite ease-in-out;
    transition: transform 0.5s ease-in-out;
    margin-left: 200px;
    margin-top: -30px;
    
}

.hero-img-wrap img{
    width: 100%;
}


.hero-content-wrap h1{
    font-size: 50px;
    font-weight: 700;
   
}

.purple{
    color: var(--pink);
}

.hero-content-wrap p{
    width: 400px;
    opacity: 0.8;
    letter-spacing: 1px;
   
}

.btn-wrapper{
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

button i{
    transition: all 0.3s ease-in-out;
}

button:hover i {
    transform: translateX(5px);
}
.line-btn {
    background: none;
    border: 1px solid var(--pink);
    outline: none;
    color: var(--text-color);
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.line-btn:hover {
    color: #fff;
}

.line-btn::before {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--pink), var(--purple));
 
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 30px;
    transform: translateX(-100%);
    transition: transform 0.3s ease; 
    z-index: -1;
}

.line-btn:hover::before {  
    transform: translateX(0);
}

.hero-btn {
    background: linear-gradient(to right, var(--pink), var(--purple));
    color: #fff;
    padding: 10px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    outline: none !important;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-btn:hover {
    filter: brightness(0.8);
}

.loader {
    width: 30px;
    height: 30px;
    position: absolute;
    left: -33px;
    top: 9%;
    transform: translateY(-50%);
}

.iq-waves {
    position: absolute;
    width: 14rem;
    height: 14rem;
    left: 16px;
    top: -90px;
    z-index: 2;
}

.waves {
    position: absolute;
    width: 15rem;
    height: 15rem;
    background: rgb(102 32 197 / 19%);
    opacity: 1;
    border-radius: 100%;
    animation: waves 3s ease-in-out infinite;
}

.wave-1 {
    animation-delay: 0s;
}

.wave-2 {
    animation-delay: 1s;
}

.wave-3 {
    animation-delay: 2s;
}

@keyframes waves {
    0% {
        transform: scale(0.2);
        opacity: 0;
    }
    50% {
        opacity: 0.9;
    }
    100% {
        transform: scale(0.9);
        opacity: 0;
    }
}



/* pointes section  */

.pointers-section{
    position: relative;
    background: url('school-assets/point-bg.png') no-repeat center center/cover;
    padding: 40px 0;
}
.pointers-section::before {
   
    background: rgb(0 0 0 / 6%);
   
  }


.pointers-container{
    max-width: 1300px;
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.pointer{
    border: 1px solid #fff;
    padding: 10px 20px;
    box-shadow: 0 0 10px #00000025;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc((1300 - 20 ) / 5);
    transition: all 0.3s ease-in;
    /* cursor: pointer; */
    
}

.pointer p{
    margin: 0 !important;
    font-size: 0.9rem;
    color:#fff;
    text-align: center;
}

.pointer:hover{
    background: linear-gradient(to right, var(--pink), var(--purple));
    transform: translateY(-5px);
}

.pointer:hover p{
    color: #fff;
}


/* modules section  */

.modules-section{
    padding: 40px 0;
}

.modules-section h2{
    font-size: 35px;
    font-weight: 700;
    text-align: center;
    color: var(--text-color);
    /* margin-bottom: 60px; */
}

.module-card-wrap{
    box-shadow: 0 10px 10px #00000025;
    position: relative;
    height: 200px;
    padding: 20px;
    border-radius: 20px;
    overflow: hidden;
    /* cursor: pointer; */
    margin-bottom: 30px;
}


.module-card-wrap::before{
    content: "";
    width: 50%;
    height: 80%;
    background: linear-gradient(to right, var(--pink), var(--purple));
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 50%;
    transition: all 0.3s ease-in;
    transform: translate(60%, 60%);
    z-index: -1;
}


.module-card-wrap:hover::before{
    width: 100%;
    height: 100%;
    transform: translate(0%, 0%);
    border-radius: 20px;
}



.num{
    position: absolute;
    top: 2px;
    right: 10px;
    color: var(--text-color);
    opacity: 0.05;
    font-weight: 700;
    font-size: 3.2rem;
    margin: 0;
    transition-delay: 0.3s;
    transition: all 0.3s ease-in;
}

.module-img-wrap{
    background: var(--bg-purple);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.module-img-wrap img{

    width: 40px;
    /* filter: saturate(0) brightness(1) ; */
 
}

.module-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    letter-spacing: 1px;
    transition: all 0.3s ease-in;
    transition-delay: 0.3s;
}

.module-card-wrap:hover .module-name {
    color: #fff !important;
}

.module-card-wrap:hover .num  {
    color: #fff !important;
    opacity: 0.2;
}

.module-card-wrap:hover .module-img-wrap {
    background-color: #fff !important;
}


.swiper-slide {
    width: 318px!important;
}

.app-screen-shot{
    max-width: 250px;
    width: 100%;
   filter: drop-shadow(0 0px 8px #0106235e);
   border-radius: 20px;
}

.slider-section{
    padding: 60px 0;
    background-color: #6541ba12;
   
}

.custom-container{
    margin-left: 400px;
}

.slider-section h2{
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
 
}

.slider-section p{
    letter-spacing: 1px;
    color: var(--text-color);
    opacity: 0.8;
  
}

.choose-wrap{
    border: 1px solid var(--purple);
    
    display: flex;
    justify-content: flex-start;
    align-items: start;
    padding: 10px 10px;
}
.choose-wrap i{
    color: var(--purple);
}
.choose-wrap:hover i{
    color: #fff!important;
}
.choose-wrap p{
    color: var(--text-color);
}
.choose-head h2{
    font-size: 35px;
    font-weight: 700;
    color: var(--text-color);
    /* margin-bottom: 40px; */
    text-align: center;
}
.choose-us{
    padding: 40px 0;
    margin-bottom: 20px;
}
.pointer-choose{
  text-align: center;
}

.footer-wrap-circel {
    padding: 90px 0 80px;
    position: relative;
    z-index: 9;
    background-color:var(--bg-purple);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px; 
    overflow: hidden; 
}


.footer-wrap-circel .footer-img-1 {
    max-width: 270px;
    width: 100%;
    position: absolute;
    top: -13px;
    left: -42px;
    z-index: 1;

}
.footer-wrap-circel .footer-img-2 {
    width:100%;
    max-width: 400px;
    position: absolute;
    bottom: -61px;
    left: -26px;
    z-index: 1;
}


.footer-wrap-circel .footer-img-3 {
    max-width: 500px;
    width: 100%;
    height: 500px;
    position: absolute;
    top: 20px;
    right: -60px;
    z-index: 1;
}


.footer-wrap-circel img {
    width: 100%;
    height: auto;
}
.footer-logo{
    width: 180px;
    margin-bottom: 10px;
}
.footer-logo-text p{
    color: var(--text-color);
    width: 400px;
    opacity: 0.8;
    letter-spacing: 1px; 
}
.footer-social {
    text-align: center;
    padding: 20px 0;
}

.social-icon {
    list-style: none;
    padding: 0;
   
}

.social-icon li {
    display: flex;
    gap: 10px;
}

.social-icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #ad95cc; 
    color: #fff; 
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}


.social-icon a:hover {
    transform: scale(1.1);
    opacity: 0.8;
}


.mail-info{
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.contact-head h2{
    font-size: 22px;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 20px;
   
}
.icon i{
    width: 40px;
    height: 40px;
    background-color: #ad95cc;
    color: #f3f2f4;
    text-align: center;
    padding: 10px 5px;
    border-radius: 30px;
}
.mail-link a{
    text-decoration: none;
}
.mail-link p{
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
 
}
.call-info{
    display: flex;
    gap: 20px;  
}
.call-link a{
    text-decoration: none;
}
.call-link p{
    font-size: 18px;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
}
.footer-copyright{
    text-align: center;
    margin: 0 auto;
    padding-top: 60px;
    color: var(--text-color);
}
.footer-copyright a{
    text-decoration: none;
    color: var(--light-purple);
}
.footer-copyright a:hover{
    color: var(--pink);
}

.footer-link {
    list-style: none; 
    padding: 0;
    margin: 0;
    width: 304px;
}


.footer-link li {
    position: relative;
    font-size: 16px;
    letter-spacing: 1px; 
    line-height: 2; 
    transition: transform 0.3s ease, padding-left 0.3s ease;
}


.footer-link li a {
    text-decoration: none; 
    color: var(--text-color);
    display: block;
    padding: 5px 0;
    transition: color 0.3s ease;
}

.footer-link li a i {
    font-size: 14px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.3s ease-in-out;
}

.footer-link li:hover {
    transform: translateX(5px); 
}

.footer-link li:hover a i {
    transform: translateX(5px); 
    color: var(--purple); 
}
.contact-btn button {
    position: absolute;
    background: #4a3580;
    color: white;
    border: none;
    padding: 15px 30px 15px 30px;
    font-size: 18px;
    border-radius: 25px;
    cursor: pointer!important;
    animation: smoothZoomEffect 4s infinite ease-in-out;
    transition: transform 0.4s ease-in-out;
    margin-left: 120px;
    text-align: center;
}

.contact-btn button:hover {

    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.phone-icon {
    width: 260px !important;
    height: auto;
    animation: ringPhone 3.5s infinite ease-in-out;
    left: 56px;
  
    margin-left: 303px;
}

@keyframes ringPhone {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    50% { transform: rotate(-5deg); }
    75% { transform: rotate(3deg); }
}

/* Arrow under the button */
.arrow-icon {
    width: 30px;
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounceArrow 1.5s infinite ease-in-out;
}

@keyframes bounceArrow {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -5px); }
}

body.modal-open .hero-section {
    filter: blur(8px);
    transition: filter 0.3s ease-in-out;
}


.form-modal {
    border-radius: 15px!important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: #5320ba08;
    backdrop-filter: blur(10px);
    overflow: hidden;
    max-width: 1000px;
    width: 100%;
}

.modal-wrap-form{
    top: 150px;
    max-width: 1000px !important;
    width: 90%!important;
    margin: 0 auto !important;
}
.modal-box {
 
    width: 100%;
}

.modal-wrap{
    display: flex;
    justify-content: space-between;
    border-radius: 20px;
}
.modal-close-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
     display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4); 
    border: none;
  }
  
  .modal-close-btn i {
    font-size: 18px;
    color: var(--purple);
  }
  

  .modal-close-btn:hover {
    background-color: #f8f9fa;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  }
 
.modal-left {
    width: 50%;
    padding: 20px;
}

.modal-img {
    position: relative;
    overflow: hidden;
    max-width: 450px;
    width: 100%;
    height: fit-content;
}

.modal-img::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.modal-left img {
    width: 100%;
    border-radius: 10px;
}


.modal-right {
    width: 50%;
    padding: 30px;
}
.form-head{
    font-size: 14px;
    color: var(--text-color);
}
 
.form-para{
    font-size: 12px;
    color: var(--text-color);
}



.modal-right h2 {
    text-align: center;
    color: var(--text-color);
    margin-bottom: 15px;
}


.input-box {
    position: relative;
    margin-bottom: 20px;
}

.input-box input,
.input-box textarea,
.input-box select {
    width: 100%;
    padding: 12px 40px;
    border: none;
    outline: none;
    background: transparent;
    color: var(--text-color);
    font-size: 16px;
    border-bottom: 2px solid var(--bg-purple);
    transition: 0.3s ease-in-out;
}


.input-box label {
    position: absolute;
    top: 50%;
    left: 40px;
    transform: translateY(-50%);
    color: var(--text-color);
    transition: 0.3s ease-in-out;
    pointer-events: none;
}


.input-box input:focus ~ label,
.input-box textarea:focus ~ label,
.input-box select:focus ~ label,
.input-box input:valid ~ label,
.input-box textarea:valid ~ label {
    top: 10px;
    font-size: 12px;
    color: var(--purple);
}


.input-box i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-color);
}


.form-btn {
    padding: 9px;
    background: var(--purple);
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer !important;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    width: 50%;
    text-align: center;
    display: flex;
    margin: 0 auto;
    justify-content: center;
}
.form-btn:hover {
    background: var(--purple);
    color: #fff;
    transform: scale(1.1); 
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); 
}

.btn:hover {
    background: var(--purple);
    color: #222;
}


.btn-close {
    filter: brightness(0) invert(1);
}
.playstore-btn {
    margin-top: 15px;
}

.playstore-btn a {
    display: flex;
    align-items: center;
    background-color: #000; 
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: bold;
    transition: transform 0.3s ease-in-out;
}

.playstore-btn  img {
  width: 40px;
    margin-right: 10px;
   
}

.playstore-btn a:hover {
    transform: scale(1.05);
    background-color: #1a1a1a; 
}

.slider-hr{
    width: 40%;
    /* margin: 0 auto; */
    background-color: var(--purple);
    height: 3px;
    margin-bottom: 60px!important;
    border: none;
}


/* BROUCHER */

/* Modal Styles */
.pdfModal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    z-index: 1000;
  }
  
  .modal-content {
    background-color: #fff!important;
    border-radius: 8px!important;
    width: 90%!important;
    max-width: 1000px!important;
    height: 90%!important;
    display: flex!important;
    flex-direction: column!important;
    overflow: hidden!important;
  }
  
  .modal-header {
    display: flex!important;
    justify-content: space-between!important;
    align-items: center!important;
    background-color: var(--bg-purple)!important;
    color:var(--text-color)!important;
    padding: 15px 20px!important;
    font-size: 18px!important;
    font-weight: bold!important;
  }
  
  /* .modal-body {
    padding: 20px!important;
    height: 70%!important;
    width: 70%!important;
    max-width: 900px!important;
  
    overflow-y: auto;
    text-align: center!important;
    display: flex!important;
    justify-content: center!important;
  }
   */
   .pdf-modal-body{
    padding: 20px!important;
    height: 70%!important;
    width: 70%!important;
    max-width: 900px!important;
    display: flex;
    overflow-y: auto;
    text-align: center!important;
    display: flex!important;
    justify-content: center!important;
   }
  .modal-body iframe {
    max-width: 987px!important;
    width: 100%!important;
    height: 100%!important;
    border: none!important;
    border-radius: 5px!important;
  }
  
  .modal-footer {
    display: flex!important;
    justify-content: flex-end!important;
    padding: 15px 20px!important;
    background-color: var(--bg-purple)!important;
  }
  
  .pdf-btn {
    /* background:#fff; */
    border: 2px solid var(--purple)!important;
    color:var(--text-color);
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  
  .pdf-btn:hover {
    background-color: var(--purple); 
    border: 1px solid var(--text-color); 
    transform: scale(1.05); 
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); 
    color: #ffffff; 
  }
  
  .close-btn {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 20px;
    cursor: pointer;
  }
  



/* media queries  */
@media screen  and (max-width: 1800px){
    .hero-img-wrap{
        margin-left: 150px;
        max-width: 700px; 
    }
}

@media screen  and (max-width: 1650px){
    .hero-img-wrap{
        margin-left: 100px;
        max-width: 650px; 
    }
    .triangle{
        position: absolute;
        width: 120px !important;
        right:80px !important;
        top: 45px;
        bottom: 0px;
        transform: rotate(36deg);
        transform-origin: top center;
        animation: rotateTriangle 5slinear infinite;
    }
}
@media screen  and (max-width: 1440px){
    .hero-section-content{
        width: 500px;
    }
   
}

@media screen  and (max-width: 1400px){
    .hero-img-wrap{
        margin-left: 40px;
        max-width: 600px; 
    }
    .hero-content-wrap h1{
        font-size: 40px;
        font-weight: 700;
       
    }
    .triangle{
        width: 110px !important;
        right: 60px !important;
        top: 10px;
    }
    .col-lg-3 {
        flex: 0 0 33%;
        max-width: 33%;
      }
      
      
}



@media screen  and (max-width: 1300px){
    .hero-img-wrap {
        margin-left: 12px;
        max-width: 541px;
    }
    .hero-bg{
        right: -185px;
    }
}

@media  screen  and (max-width: 1200px){
    .hero-img-wrap {
        margin-left: 91px;
        max-width: 541px;
    }
    .triangle{
       width: 90px !important;
        right: 100px;
        
    }
    .hero-bg {
        right: -222px;
    }
}

@media screen  and (max-width: 1100px){
    .hero-img-wrap {
        margin-left: 91px;
        max-width: 480px;
    }
    .hero-bg {
        right: -329px;
    }
    .modules-section h2 {
        font-size: 32px;
    }
    .modules-section h2 {
        font-size: 32px;
    }
}

@media screen  and (max-width: 1080px){
    .triangle{
        width: 70px !important;
        
     }
}
@media screen  and (max-width: 991px){
     .hero-section-content{
        top: -83px
    }
    .hero-bg {
      display: none;
    }
    .hero-img-wrap {
        margin-left: -14px;
      margin-top: 0px;
    }
    .nav-right{
        color: var(--text-color);
    }
    .modal-body iframe{
        iframe {
            height: 80vh; 
    }
}
    .triangle{
        width: 60px !important;
        left: 359px !important;
        /* top: -12px; */
        background-color: #711fcc;
         
    }
    .right-arrow{
        width: 75px;
        right: 243px;
        top: 233px !important;
    }
    .modal-wrap-form {
        max-width: 1000px !important;
        width: 90% !important;
        margin: 0 auto !important;
        top: 30px;
    }
    .modules-section h2 {
        font-size: 29px!important;
    }
   .choose h2 {
        font-size: 29px!important;
    }
    .footer-link {
        position: relative;
        z-index: 100;
    }
    
}

@media screen  and (max-width: 776px) {
    .nav-container{
        flex-direction: column;
    }
    .modal-left {
        width: 100%!important;
        padding: 20px;
    }
    .modal-wrap{
        display: flex;
       flex-direction: column-reverse;
        border-radius: 20px;
    }
    .modal-right {
        width: 100%!important;
    }
    .hero-section{
        height: 100%!important;
    }
    .modules-section h2 {
        font-size: 25px!important;
    }
   .choose-head h2 {
        font-size: 25px!important;
    }
    .hero-section-content {
        top: -40px;
    }
    .modal-body iframe{
      
            height: 70vh; 
  
}
}
 @media screen  and (max-width: 576px) {
    .tab-5{
        transform: scale(0) !important;
    }
    .phone-icon {
        width: 160px!important;
        height: auto!important;
        animation: ringPhone 3.5s infinite ease-in-out;
        margin-left: 99px;
        margin-top: 60px;
 }
 .contact-btn button{
    margin-left: -241px !important;
    font-size: 15px;
    padding: 10px 20px;
    margin-top: 0!important;
 }
 .footer-wrap-circel .footer-img-2 {
    max-width: 500px;
    width: 100%;
 }
}
@media (max-width: 575px) {
    .col-sm-12 {
      flex: 0 0 100% !important;
      max-width: 100% !important;
    }
  }
  
@media screen  and  (max-width:500px) {
    .modal-body iframe{
       
            height: 60vh; 

}

    .hero-section-content{
        width: 350px;
    }
    .hero-section-content h1{
        font-size: 30px;
    }
    .hero-section-content p{
        font-size: 14px;
    }
    .btn-wrapper{
       display : flex;
       flex-direction: column;
       align-items: start;
      gap: 50px;
    }
    .loader {
        position: absolute;
        left: -18px;
        top: -27%;
      }
    .right-arrow {
        width: 67px;
        right: 255px;
        top: 286px!important;
    }
}
@media screen  and (max-width:450px){
    .hero-img-wrap {
        margin-left: -14px;
        margin-top: 70px;
    }
    .loader {
        position: absolute;
        left: 14px;
        top: 105%;
    }
    .waves{
        width: 10rem;
    height: 10rem;
    }
    
    .hero-img-wrap {
        margin-left: 0px !important;
        max-width: 300px;
    }
    .triangle {
        width: 45px !important;
        left: 207px !important;
    }
}


@media screen  and (max-width:400px){
  
    .triangle{
        width: 40px !important;
        left: 208px !important;
    }
}







