/* Custom Cdn Google-Font's Link */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Quicksand:wght@300..700&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Roboto", sans-serif;
    text-decoration: none;
}

:root {
    --main-color: #0a0a3c;
    --primry: #09a0cd;
    --white: #fff;
    --black: #232d38;
    --light-bg: #ececec;
    --secondory: #595959;
}

*::selection {
    background-color: var(--main-color);
    color: #fff;
}

html,
body {
    font-size: 89.50%;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html::-webkit-scrollbar {
    width: .7rem;
    height: 0.5rem;
}

html::-webkit-scrollbar-track {
    background-color: rgb(168, 168, 168);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border-radius: 1rem;
}

body.dark {
    ---main-color: #0a0a3c;
    --primry: #09a0cd;
    --light-bg: #2e2e30;
    --black: #fff;
    --white: #272a2d;
    --secondory: #ffffff;
}


/* Extra */
span {
    color: #09a0cd;
}

/* Extra */



/* Nav-Bar Start */

nav {
    padding: 0 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0facdc;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    position: relative;
    height: 88px;
    z-index: 100;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
}

nav .logo {
    gap: 1.2rem;
}


nav .logo img {
    cursor: pointer;
    background-color: #fff;
    border-radius: 50%;
}

nav .logo .line {
    color: #fff;
    font-weight: 500;
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


nav div {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

nav div a {
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: 1px;
}

nav div a:hover {
    color: #0a0a3c;
    transform: scale(1.2);
    transition: 0.5s;
}

nav .menu-icon {
    display: none;
}

nav .menu-icon i {
    color: #fff;
    font-size: 30px;
}

nav #toggle-btn {
    font-size: 1.8rem;
    color: #ffff;
    cursor: pointer;
    transform: none;
    transition: none;
}

/* Nav-Bar End */

/* Hero section start */

.hero {
    display: flex;
    justify-content: center;
    background-color: var(--white);
}


.hero img {
    margin-top: 105px;
    height: 100%;
    border-radius: 20px;
}

/* Hero section End */


/* Home section Start */

.home-sec {
    min-height: auto;
    background-color: var(--white);

}

.home {
    max-width: 1280px;
    margin: auto;
    display: flex;
    padding: 5rem 3.5rem;
}

.home-sec .home .heading h1 {
    color: var(--black);
    font-size: 4rem;
}

.home-sec .home .heading .para p {
    width: 80%;
    font-size: 1.4rem;
    letter-spacing: 1.1px;
    padding: 1.5rem 0;
    color: var(--black);
}

.home-sec .home .heading .btn button {
    padding: 1.2rem 2.3rem;
    border-radius: .5rem;
    border: 1px solid var(--primry);
    background-color: var(--primry);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 1.5rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: .3s ease;
}

.home-sec .home .heading .btn button:hover {
    background-color: var(--white);
    color: var(--black);
}

.home-sec .home .heading .btn a:nth-child(2) {
    margin-left: 1rem;
    padding: 1.2rem 2.3rem;
    border-radius: .5rem;
    border: 1px solid #09a0cd;
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: var(--black);
    text-decoration: none;
    transition: .3s ease;
    font-size: 1.5rem;
}

.home-sec .home .heading .btn a:nth-child(2):hover {
    background-color: var(--primry);
    color: #fff;
}



.floating-boxes {
    position: relative;
    width: 100%;
    height: 400px;
    margin-top: 3rem;
}

/* Common animated button style */

.home-sec .home .floating-boxes .box {
    position: absolute;
    padding: 1.5rem 2.5rem;
    border-radius: 0.7rem;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: float 4.2s ease-in-out infinite;
}

.home-sec .home .floating-boxes .box2 {
    position: absolute;
    padding: 1.2rem 2.3rem;
    border-radius: 0.7rem;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: float2 2.8s ease-in-out infinite;
}

.home-sec .home .floating-boxes .box3 {
    position: absolute;
    padding: 1.2rem 2.3rem;
    border-radius: 0.7rem;
    color: #fff;
    font-size: 1.1rem;
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    animation: float3 2s ease-in-out infinite;
}

.home-sec .home .box1 {
    top: 50px;
    left: -110px;
    background: linear-gradient(135deg, #6a5af9, #836bff);
}

.home-sec .home .box2 {
    top: 140px;
    right: 50px;
    background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.home-sec .home .box3 {
    bottom: 60px;
    left: 30px;
    background: linear-gradient(135deg, #ff7a7a, #ffb86c);
}

/* Floating animation */

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-30px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes float2 {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(25px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes float3 {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Home section End */


/* About Section Start */

#about {
    min-height: auto;
    background-color: var(--light-bg);
    overflow: hidden;
}

.about-sec {
    max-width: 1280px;
    margin: auto;
}

#about .about-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

#about .about-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 105px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}



#about .about-sec .para h1 {
    color: var(--black);
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
}


#about .about-sec .content {
    padding: 5rem 3.5rem;
    display: flex;
    justify-content: space-between;
}

#about .about-sec .content .head h1 {
    font-size: 2.2rem;
    color: var(--black);
}

#about .about-sec .content .head p {
    width: 365px;
    color: var(--secondory);
    margin-top: 2rem;
    line-height: 1.7rem;
    letter-spacing: .3px;
    font-size: 1.2rem;
}

#about .about-sec .content .head .btn button {
    padding: .9rem 2rem;
    border-radius: .5rem;
    border: 1px solid var(--primry);
    background-color: var(--primry);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    color: #fff;
    font-size: 1.2rem;
    margin-top: 1rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: .3s ease;
}

#about .about-sec .content .head .btn button:hover {
    background-color: var(--light-bg);
    color: var(--black);
}

#about .about-side .content {
    padding: 0 1rem;
    display: block;
}

#about .about-side .content .sec-flex {
    display: flex;
    padding: 25px 0;
}


#about .about-side .content .sec-flex .icon i {
    background: linear-gradient(135deg, #09a0cd, #2eceff);
    padding: 1rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    color: #fff;
    border-radius: .5rem;
}

#about .about-side .content .sec-flex .text-head {
    color: var(--black);
    font-size: 1.2rem;
    margin-left: 1.5rem;
    letter-spacing: 1px;
    line-height: 2rem;
}

#about .about-side .content .sec-flex .text-head p {
    color: var(--secondory);
}


/* About Section End */

/* Courses Section Start */

#courses {
    min-height: auto;
    background-color: var(--white);
    overflow: hidden;
}

.courses-sec {
    max-width: 1280px;
    margin: auto;
}

.courses-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

.courses-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 125px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.courses-sec .para h1 {
    color: var(--black);
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
}

/* ///////////// */

.courses-sec .flex-card {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.courses-sec .course-card {
    width: 310px;
    background: var(--white);
    padding: 30px;
    margin: 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    border: 1px solid #09a0cd;
}

/* Hover Effect */
.courses-sec .course-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}



.courses-sec .icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #09a0cd, #2eceff);
    color: #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 26px;
    margin-bottom: 18px;
}

.courses-sec h3 {
    font-size: 1.9rem;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 15px;
    line-height: 2.3rem;
}

.courses-sec .desc {
    color: var(--secondory);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    line-clamp: 3;
}


.courses-sec .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.courses-sec .btn {
    background: linear-gradient(135deg, #09a0cd, #2eceff);
    color: #fff;
    padding: 8px 18px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease;
}

.courses-sec .btn:hover {
    transform: scale(1.05);
}

/* course section end */



/* Feature section Start */

#feature {
    min-height: auto;
    background-color: var(--light-bg);
    overflow: hidden;
}

.feature-sec {
    max-width: 1280px;
    margin: auto;
}

.feature-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

.feature-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 180px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin: auto;
}

.feature-sec .para h1 {
    color: var(--black);
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
}

/* ///////////// */

.feature-sec .flex-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.feature-sec .feature-card {
    width: 320px;
    padding: 40px 20px;
    margin: 1.5rem 2rem;
    background: var(--white);
    border-radius: 18px;
    text-align: center;
    border: 1px solid #fff;
    transition: 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

/* Hover Effect */
.feature-sec .feature-card:hover {
    transform: scale(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.feature-sec .feature-card .icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #09a0cd, #2eceff);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 26px;
    transition: transform 0.25s ease-out;
}

.feature-sec .feature-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    margin-bottom: 13px;
    color: var(--black);
}

.feature-sec .feature-card p {
    font-size: 1.2rem;
    color: var(--secondory);
    line-height: 1.5;
}


/* Feature section end */


/* Hire-Me Section Start */

#hire {
    min-height: auto;
    background-color: var(--white);
    border-top: 1px solid var(--white);
}

.hire-parent {
    max-width: 1230px;
    margin: auto;
}

.hire-parent .title-name {
    padding: 2.8rem 3.8em;
}

.hire-parent .title-name h3 {
    color: var(--black);
    letter-spacing: 0.1rem;
    cursor: pointer;
    font-size: 2.5rem;
    font-weight: 600;
}

.hire-parent .title-name span {
    color: var(--primry);
    font-size: 2rem;
}

.hire-parent .flex {
    display: flex;
    justify-content: space-between;
    padding: 0 3.5rem;
    flex-wrap: wrap;
}

.hire-parent .flex .paragraph p {
    color: var(--secondory);
    width: 39rem;
    line-height: 1.6rem;
    letter-spacing: 1px;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hire-parent .btn {
    background-color: var(--primry);
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    border: none;
    border-radius: .2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.9rem;
    width: 15rem;
    margin-top: 5rem;
    cursor: pointer;
}

.hire-parent .btn i {
    font-size: 1.8rem;
    color: #fff;
}

.hire-parent .btn span {
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 1.2px;
    text-align: center;
}


.hire-parent .btn:hover {
    transition: 0.5s ease;
    transform: scale(1.1);
}

/* Hire-Me Section End */


/* Reviews section Start */

#review {
    min-height: auto;
    background-color: var(--light-bg);
    overflow: hidden;
}

.review-sec {
    max-width: 1280px;
    margin: auto;
}

.review-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

.review-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 130px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin: auto;
}

.review-sec .para h1 {
    color: var(--black);
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
}

/* /////////// */

.review-sec .testimonial-card {
    width: 355px;
    background: var(--white);
    border: 2px solid white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.143);
    transition: 0.3s ease;
}

.review-sec .flex-card {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 1.8rem;
    margin-top: 5rem;
    margin-bottom: 5rem;
}

/* Hover effect */
.review-sec .testimonial-card:hover {
    transform: scale(-20px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.review-sec .stars {
    color: #ffd700;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.review-sec .testimonial-text {
    font-size: 15.5px;
    color: var(--secondory);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 25px;
}

.review-sec .user {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-sec .avatar img {
    width: auto;
    height: 70px;
    background: linear-gradient(135deg, #09a0cd, #2eceff);
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.review-sec .user-info h4 {
    font-size: 19px;
    line-height: 1.7rem;
    letter-spacing: .6px;
    font-weight: 600;
    color: var(--black);
}

.review-sec .user-info span {
    font-size: 13px;
    color: var(--secondory);
}

/* map section start */

.map-sec {
    min-height: auto;
    background-color: var(--white);
    overflow: hidden;
}

.map-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

.map-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 85px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.map-sec .para h1 {
    color: var(--black);
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
}

/* ////// */

.map-sec .map-container {
    display: flex;
    justify-content: center;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.map-sec .map-container iframe {
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.11);    
    padding: 1.5rem;
}

/* map section end */


/* contact section start */

#contact {
    min-height: auto;
    background-color: var(--light-bg);
    overflow: hidden;
}

#contact .contact-sec {
   max-width: 1280px;
   margin: auto;
}

#contact .contact-sec .heading {
    font-size: .8rem;
    padding-top: 3rem;
}

#contact .contact-sec .heading h2 {
    color: var(--primry);
    border: 1.5px solid var(--primry);
    border-radius: 10rem;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
    letter-spacing: 1.2px;
    width: 110px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

#contact .contact-sec .para h1 {
    color: var(--black);
    text-align: center;
    font-size: 2.5rem;
    margin-top: 2rem;
}

/* ////// */


#contact .contact-sec .contact-section {
  padding: 80px 5%;
}

#contact .contact-sec .contact-container {

  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

/* LEFT */
#contact .contact-sec .contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

#contact .contact-sec .info-box {
  background: var(--white);
  border: 1.5px solid #fff;
  padding: 22px;
  border-radius: .5rem;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#contact .contact-sec .icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #09a0cd, #2eceff);
  color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

#contact .contact-sec .info-box h4 {
  font-size: 18px;
  margin-bottom: 5px;
  letter-spacing: 1px;
  color: var(--black);
}

#contact .contact-sec .info-box p {
  color: var(--secondory);
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 1px;
}

/* RIGHT FORM */
#contact .contact-sec .contact-form {
  background-color: var(--white); 
  border: 1.5px solid #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

#contact .contact-sec .input-group {
  position: relative;
  margin-bottom: 18px;
}

#contact .contact-sec .input-group i {
  position: absolute;   
  top: 26px;
  left: 15px;
  transform: translateY(-50%);
  color: #09a0cd;
}

.input-group input,
.input-group select,
.input-group textarea {
  width: 100%;
  padding: 15px 14px 14px 45px;
  border-radius: 10px;
  border: 1px solid var(--main-color);
  background-color: #fff;
  outline: none;
  font-size: 14px;
}

#contact .contact-sec .input-group textarea {
  resize: none;
  height: 120px;
}

#contact .contact-sec button {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(135deg, #09a0cd, #2eceff);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s;
}

#contact .contact-sec button:hover {
  opacity: 0.9;
}


/* Footer section Start  */

.footer {
  background-color: #0a0a3cf6;
  color: #ccc;
  padding: 60px 5% 20px 5%; 
}

.footer a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer a:hover {
  color: var(--primry);
}

/* Footer main container */
.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

/* LEFT SECTION */

.footer-about img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.footer-about h2 {
  font-size: 1.7rem;
  color: #fff;
  margin-bottom: 10px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  width: 35px;
  height: 35px;
  background-color: #fff;
  color: var(--main-color);
  border-radius: 50%;
  text-align: center;
  line-height: 35px;
  font-size: 16px;
  transition: 0.3s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.social-icons a:hover {
  background: var(--primry);
  color: #fff;
}

/* LINKS */
.footer-links h3,
.footer-courses h3,
.footer-newsletter h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.7rem;
}

.footer-links ul,
.footer-courses ul {
  list-style: none;
  margin-top: 2rem;
}

.footer-links ul li,
.footer-courses ul li {
  margin-bottom: 1rem;
}

.footer-links ul li a,
.footer-courses ul li a {
  font-size: 14px;
}

/* NEWSLETTER */
.footer-newsletter p {
  font-size: 14px;
  margin-bottom: 13px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  padding: 10px 14px;
  border-radius: 8px;
  border: none;
  flex: 1;
  outline: none;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.newsletter-form button {
  background: linear-gradient(135deg, #09a0cd, #2eceff);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

.newsletter-form button:hover {
   background: linear-gradient(135deg, #09a0cd, #2eceff);
}

/* FOOTER BOTTOM */
.footer-bottom {
  border-top: .8px solid #777777;
  padding-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #888;
}

.footer-legal a {
  margin-left: 5px;
}


/* Footer section End  */




/* Preloader */

#preloader {
  position: fixed;
  inset: 0;
  background: #0a0a3c;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.loader-wrapper {
  position: relative;
  width: 200px;
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Rotating gradient ring */
.loader-ring {
  position: absolute;
  top: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(
    #1e90ff,
    #00bfff,
    #1e90ff
  );
  animation: spin 5s linear infinite;
}

/* Inner cut */
.loader-ring {
  position: absolute;
  top: 0;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 60deg,   /* 👈 CUT / GAP */
    #1e90ff 60deg,
    #00bfff 140deg,
    #1e90ff 220deg,
    transparent 220deg 360deg
  );
  animation: spin 1s linear infinite;

  /* ring thickness control */
  -webkit-mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 6px),
    #000 calc(100% - 6px)
  );
          mask: radial-gradient(
    farthest-side,
    transparent calc(100% - 6px),
    #000 calc(100% - 6px)
  );
}

/* Logo */
.logo-box {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* Animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ////////////////// */
/* smooth hide animation */
#preloader.hide 
{opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease; }
/* smooth hide animation */
/* ////////////////// */

