:root{
  --var-color:#9333ea;
  --var-hover:#1e3a8a;
}











    /* Slide in from right */
    .slide-in {
        animation: slideInRight 0.6s ease-out forwards;
    }

    /* Slide out to right */
    .slide-out {
        animation: slideOutRight 0.5s ease-in forwards;
    }

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(100%);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideOutRight {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(100%);
        }
    }

.d-flex{
  /* background-color: white !important; */
  padding: 1rem;
  width: auto;
}

.comment-shadow{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-top: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 9px;
}

.me-3 img{
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}


.sidebar-menu{
    display: none;
}

@media (max-width: 768px) {
.sidebar-menu {
    display: block;
    position: fixed;
    top: 15px;
    left: 15px;
    z-index: 1100;
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

    .sidebar{
            left: -250px !important;
        }

        .sidebar-visible{
            left: 0px !important;
            z-index: 50 !important;
        }

        body {
            margin: 0;
            padding-left: 0px !important; /* Match sidebar width */
        }
}

        .sidebar {
            width: 250px;
            height: 100vh;
            position: fixed;
            left: 0;
            top: 0;
            background-color: #f8f9fa;
            padding: 1rem;
            overflow-y: auto;
        }



.sturborn {
        max-width: 100%;
        padding: 20px;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.8;
        font-size: 16px;
        color: #333;
    }

    .sturborn h2,
    .sturborn h3,
    .sturborn h4 {
        margin-top: 1.5rem;
        color: #1d3557;
    }

    .sturborn p {
        margin-bottom: 1.2rem;
    }

    .sturborn img {
        max-width: 100%;
        height: auto !important;
        border-radius: 10px;
        display: block;
        margin: 1.5rem auto;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .sturborn ul,
    .sturborn ol {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .sturborn iframe {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 1rem auto;
    }

    .sturborn blockquote {
        border-left: 4px solid #3498db;
        padding-left: 1rem;
        color: #686363;
        margin: 1.5rem 0;
        background-color: #f7f9fa;
    }















*{
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.h2{
  color: var(--var-color);
}


/* **************** FOR NAVBAR **************** */
.navbar-div{
  margin-right: .3rem;
  gap: .5rem;
}

@media screen and (max-width: 768px) {
    .navbar-div{
      margin-left: 0 !important;
}

/* .navbar-toggler-icon{
  color: white !important;
} */
}

/* **************** FOR HERO **************** */

.hero-section {
    background: linear-gradient(135deg, #1e3a8a, #9333ea);
    color: #fff;
    /* padding: 80px 20px; */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */
}

/* .header{
  position: fixed;
  width: 100%;
    z-index: 1000;
    top: 0;
} */

.nav-item, .nav-link, .navbar-brand{
  color: inherit;
}

.navbar{

    position: fixed;
}

.glass-navbar {
    /* background-color: rgba(255, 255, 255, 0.1); semi-transparent white */
    backdrop-filter: blur(12px); /* blur the background behind */
    -webkit-backdrop-filter: blur(12px); /* Safari support */
    /* box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); */
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    /* padding-top: 1rem; */
  color: white !important;
}


.glass-navbar.scrolled {
    background-color: #ffffff !important;
    color: black !important;
    backdrop-filter: blur(12px);
    /* background-color: rgba(255, 255, 255, 0.1); semi-transparent white
    -webkit-backdrop-filter: none; */
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
}


.hero-container {
  padding-top: 6rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1 1 500px;
}

.hero-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #f3f4f6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn.primary {
    background: #fff;
    color: #1e3a8a;
    border: 2px solid transparent;
}

.btn.primary:hover {
    background: #e2e8f0;
}

.btn.secondary {
    background: #facc15;
    color: #1f2937;
    border: 2px solid transparent;
}

.btn.secondary:hover {
    background: #fde047;
}

.hero-image {
    flex: 1 1 400px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image img {
    width: 100%;
    height: auto;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
}







/****************** FOR BODY ****************/
.body {
  padding: 80px 20px;
  background-color: #f9f9f9;
  display: flex;
  justify-content: center;
}

.body-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  align-items: center;
  gap: 40px;
}

.bod-img {
  flex: 1 1 400px;
  text-align: center;
}

.bod-img img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.bod-text {
  flex: 1 1 400px;
  color: #333;
}

.contan1 h3 {
  font-size: 1.2rem;
  color: var(--var-color);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contan2 h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #222;
}

.contan3 p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #555;
}

.read button {
  background-color: var(--var-color);
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

.read button:hover {
  background-color: var(--var-hover);
}

.read i {
  font-style: italic;
}


@media (max-width: 768px) {
  .body-content {
    flex-direction: column;
    text-align: center;
  }

  .bod-text {
    padding: 0 10px;
  }

}






/************** FOR JOIN ***************/
.join {
  padding: 80px 20px;
  background-color: #ffffff;
  display: flex;
  justify-content: center;
}

.join-content {
  max-width: 1200px;
  width: 100%;
}

.join-tent1 {
  text-align: center;
  margin-bottom: 50px;
}

.join-tent1 h3 {
  font-size: 1.2rem;
  color: var(--var-color);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.join-tent1 h2 {
  font-size: 2rem;
}

.easy {
  font-size: 2rem;
  color: #222;
  font-weight: bold;
}

.join-tent2 {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}

.tentleft {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.join-con {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 12px;
  background-color: #f5f5f5;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.join-text img {
  width: 40px;
  height: auto;
  margin-top: 10px;
}

.teps button {
  background-color: var(--var-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1rem;
  font-weight: bold;
  cursor: default;
}

.join-con h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: #333;
}

.join-con p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.5;
}


@media (max-width: 768px) {
  
  .join-tent2 {
    flex-direction: column;
    gap: 20px;
  }

  .tentleft {
    width: 100%;
  }

  .join-con {
    flex-direction: column;
    align-items: flex-start;
}

.join-text img {
    display: none; /* optional: hide decorative lines on mobile */
  }

  .teps {
    margin-bottom: 10px;
  }
}


/***************** FOR ABOUT ***************/
.about {
  background: #f9f9f9;
  padding: 60px 20px;
  color: #333;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.about-img {
  flex: 1 1 400px;
  max-width: 500px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.about-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.about-img img:hover {
  transform: scale(1.05);
}

.about-text {
  flex: 1 1 450px;
  max-width: 600px;
}

.hold1 h3 {
  font-weight: 600;
  color: var(--var-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.hold2 h2 {
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-weight: bold;
  color: #222;
}

.about-button {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.about-button .but1,
.about-button .but2,
.about-button .but3 {
  flex: 1 1 120px;
}

.about-button button {
  width: 100%;
  background-color: var(--var-color);
  color: white;
  border: none;
  padding: 14px 0;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-size: 1rem;
}

.about-button button:hover {
  background-color: var(--var-hover);
}

.but4 p {
  font-size: 1.1rem;
  line-height: 1.5;
  margin-bottom: 40px;
  color: #555;
}

.explore button {
  background-color: #222;
  color: white;
  border: none;
  padding: 16px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.explore button:hover {
  background-color: #555;
}

.about-us{
  color: var(--var-hover);
}


/* Responsive */

@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }
  .about-text{
  width: 100% !important;
}
  .about-button {
    justify-content: center;
  }
  .about-button .but1,
  .about-button .but2,
  .about-button .but3 {
    flex: 1 1 40%;
  }
  
}





.image-slider-section {
    background: #f9f9f9;
    padding: 40px 0;
}

.carousel-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.carousel-img:hover {
    transform: scale(1.03);
}

.swiper-button-next,
.swiper-button-prev {
    color: #007bff;
}

.swiper-pagination-bullet-active {
    background: #007bff;
}








/***************** FOR CHOOSE *****************/
.choose{
  padding-top: 3rem;
    margin: 0 6.5rem;
    display: flex;
    gap: 1rem;
}

.choose-content{
  width: 70%;
}

.about-text{
  width: 70%;
}

.numb button {
    border: 2px solid purple;
    background: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 1rem;
    font-weight: bold;
    cursor: default;
    transition: background 0.3s ease;
}

.numb button:hover {
    background-color: #f0e6f8;
}

.dive {
    margin: 2rem 0;
    border: 2px solid purple;
    border-style: dotted;
    width: 80%;
}

/* OTP Section */
.otp-chid {
    margin-bottom: 2rem;
}

.otp-title {
    font-size: 1.5rem;
    padding-bottom: 1rem;
}

.otp {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* Learn Button */
.learn button {
    background: purple;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.learn button:hover {
    background: var(--var-hover);
}

/* Right Column (Image Section) */
.about-img3 {
    flex: 1 1 400px;
    max-width: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-img3 img {
    width: 40vw;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    display: block;
}

/* .rea-con{
  position: absolute;
} */

.one, .two{
  position: absolute;
  margin-left: -3rem;
  margin-top: 3.3rem;
}

.two{
  margin-top: 18.2rem;
}

@media (max-width: 768px) {

  .choose{
  flex-direction: column;
  margin: 0;
  margin-left: 3.5rem;
}


.about-img3 img {
    width: 90%;
}

.about-img3 {
    /* display: block; */
    margin-left: -3.5rem;
}

}









/*************** FOR COURSE ****************/


/* ===== Courses Section Styling ===== */
.course {
    background-color: #f9fafb;
    padding: 80px 20px;
    /* font-family: 'Poppins', sans-serif; */
}

.course-content .center {
    text-align: center;
    margin-bottom: 50px;
}

.course-head {
    font-size: 2rem;
    color: var(--var-color);
    margin-bottom: 10px;
}

.offer {
    font-size: 1.5rem;
    font-weight: 500;
    color: #1f2937;
}

.course-menu {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cou-men-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 2rem;
}

.cou-menu-con,
.cou-menu-cen,
.cou-menu-can {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 350px;
    flex: 1 1 300px;
    cursor: pointer;
}

.cou-menu-con:hover,
.cou-menu-cen:hover,
.cou-menu-can:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.cou-menu-con img,
.cou-menu-cen img,
.cou-menu-can img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.course-topic {
    padding: 20px;
}

.course-topic h3.topy {
    font-size: 1.2rem;
    color: #1e3a8a;
    margin-bottom: 5px;
}

.course-topic h2.noty {
    font-size: 1rem;
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 10px;
}

.course-topic p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* ===== Show More Button ===== */
.more-course {
    text-align: center;
    margin-top: 30px;
}

#shomo-button {
    background-color: #6366f1;
    color: #fff;
    padding: 12px 30px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s ease;
}

#shomo-button:hover {
    background-color: #4f46e5;
}

#comen-more {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

#comen-more.active {
    max-height: 2000px; /* set high enough to fit content */
    opacity: 1;
}



/* ===== Responsive Design ===== */
@media screen and (max-width: 768px) {
    .cou-men-flex {
        flex-direction: column;
        align-items: center;
    }

    .course-topic {
        text-align: center;
    }

    .course-head {
        font-size: 1.6rem;
    }

    .offer {
        font-size: 1.2rem;
    }

    .services {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #e9f1ff);
    /* font-family: 'Segoe UI', sans-serif; */
    text-align: center;
}
}








/************** FOR SERVICES ************/
.services {
    padding: 80px 20px;
    background: linear-gradient(to bottom, #ffffff, #e9f1ff);
    /* font-family: 'Segoe UI', sans-serif; */
    text-align: center;
}

.services-content {
    max-width: 1200px;
    margin: 0 auto;
}

.service-tent1 h3 {
    color: var(--var-color);
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.service-tent1 h2 {
    font-size: 36px;
    font-weight: bold;
    color: #222;
    margin-bottom: 50px;
}

.ser-tent {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-tent-con {
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    max-width: 340px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-tent-con:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.service-tent-con img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 20px;
    background: #f0f0f0;
}

.service-topic .topy {
    font-size: 20px;
    color: #007bff;
    margin-bottom: 5px;
}

.service-topic .noty {
    font-size: 18px;
    color: #333;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-topic p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.service-button {
    margin-top: 40px;
}

.service-button button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-button button:hover {
    background-color: #0056b3;
}

.sert {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}

.sert.show {
    max-height: 2000px; /* Adjust as needed */
    opacity: 1;
}


@media screen and (max-width: 768px) {

    .services {
    padding: 80px 10px;
}

}








/************* FOR JOB ************/

.job {
    padding: 4rem 1rem;
    background: #f9f9f9;
}

.center {
    text-align: center;
    margin-bottom: 3rem;
}

.course-head {
    font-size: 1.5rem;
    color: #007BFF;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.offer {
    font-size: 2.5rem;
    font-weight: bold;
    color: #333;
}

.cou-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.job-img {
    cursor: pointer;
    transition: transform 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.job-img:hover {
    transform: scale(1.05);
}

.go-flex1{
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.go-flex2{
  display: flex;
  gap: 1.5rem;
}

.job-img img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    display: block;
}

.popup-content {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 900px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    animation: fadeIn 0.4s ease-in-out;
}

.d-flex{
  /* background-color: white !important; */
  padding: 1rem;
  width: auto;
}

.comment-shadow{
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    padding-top: .7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 9px;
}

.me-3 img{
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.popo {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
}

.popo-con1,
.popo-con2 {
    flex: 1 1 300px;
}

.popo-con1 img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.popo-con2 h1 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.popo-con2 h2 {
    font-size: 1.2rem;
    margin-top: 1rem;
    color: #007BFF;
}

.popo-con2 p {
    font-size: 1rem;
    line-height: 1.6;
}

.cancel-btn {
    position: absolute;
    top: 10px;
    right: 20px;
    background: transparent;
    font-size: 2rem;
    border: none;
    color: #555;
    cursor: pointer;
}

.overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.5);
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@media screen and (max-width: 768px) {
    .popo {
        flex-direction: column;
    }
    .job-img img {
        height: 200px;
    }

    .go-flex1, .go-flex2{
      flex-direction: column;
    }

    .navbar-div{
      margin-left: 0 !important;
}
}



@media screen and (max-width: 768px) {

.image-slider-section {
    padding: 40px 20px;
}

}



/************** FOR FOOTER **************/
.footer {
    /* background: #1F2937; */
    background: linear-gradient(135deg, #1e3a8a, #9333ea);
    color: #F9FAFB;
    padding: 4rem 2rem .1rem;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.footer-p{
  max-width: 30vw;
}

.hola{
  width: 30vw;
}

.footer-column h3, .footer-column h4 {
    margin-bottom: 1rem;
    color: #fff;
}

.footer-column p, .footer-column li {
    font-size: 14px;
    line-height: 1.6;
    color: #D1D5DB;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: #D1D5DB;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #10B981;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: white !important;
    transition: transform 0.7s;
}

.social-icons a i {
    font-size: 1.4rem;
    /* filter: invert(1); */
}

.social-icons a:hover {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 2rem;
    text-align: center;
    padding-top: 1rem;
    font-size: 13px;
    color: #9CA3AF;
}


.d-flex{
  background-color: white !important;
}