@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&display=swap');

body {
    margin: 0;
    background-color: #000;
    color: #eee;
    font-family: Poppins;
    font-size: 12px;
}

a {
    text-decoration: none;
}

header {
    width: 1140px;
    max-width: 80%;
    margin: auto;
    height: 50px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 100;
}

header a {
    color: #ffffff;
    margin-right: 30px;
}

/* carousel */
.carousel {
    height: 100vh;
    margin-top: -50px;
    width: vw;
    overflow: hidden;
    position: relative;
}

.carousel .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.carousel .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 30%;
    box-sizing: border-box;
    color: #ffffff;
    font-weight: 600;
    font-size: 17px;
    text-shadow: 50px 5px 50px #0004;
}

.carousel .list .item .author {
    font-weight: bold;
    letter-spacing: 10px;
}

.carousel .list .item .title,
.carousel .list .item .topic {
    font-size: 3em;
    font-weight: bold;
    line-height: 1.3em;
}

.carousel .list .item .topic {
    color: #3acff1;
}

.carousel .list .item .buttons {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.carousel .list .item .buttons button {
    border: none;
    background-color: #20f4e9;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}

.carousel .list .item .buttons button:hover {
    border: none;
    color: white;
    background-color: #20f1f4;
    letter-spacing: 3px;
    font-family: Poppins;
    font-weight: 500;
}

.carousel .list .item .buttons button:nth-child(2) {
    background-color: transparent;
    border: 3.5px solid #20e2f4;
    color: #20e9f4;
}
.carousel .list .item .buttons button:nth-child(2):hover {
    background-color: transparent;
    border: 2.5px solid #20dff4;
    color: #ffffff;
}

/* thumbail */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.thumbnail .item .content {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
}

.thumbnail .item .content .title {
    font-weight: 500;
    font-size: large;
}

.thumbnail .item .content .description {
    font-weight: 300;
}

/* arrows */
.arrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.arrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #eee4;
    border: none;
    color: #fff;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
}

.arrows button:hover {
    background-color: #fff;
    color: #000;
}

/* animation */
.carousel .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */

.carousel .list .item:nth-child(1) .content .author,
.carousel .list .item:nth-child(1) .content .title,
.carousel .list .item:nth-child(1) .content .topic,
.carousel .list .item:nth-child(1) .content .des,
.carousel .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}


@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }
}

.carousel .list .item:nth-child(1) .content .title {
    animation-delay: 1.2s !important;
}

.carousel .list .item:nth-child(1) .content .topic {
    animation-delay: 1.4s !important;
}

.carousel .list .item:nth-child(1) .content .des {
    animation-delay: 1.6s !important;
}

.carousel .list .item:nth-child(1) .content .buttons {
    animation-delay: 1.8s !important;
}

/* create animation when next click */
.carousel.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }
}

.carousel.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }
}

.carousel.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);
    }
}

/* running time */

.carousel .time {
    position: absolute;
    z-index: 1000;
    width: 0%;
    height: 3px;
    background-color: #3ad2f1;
    left: 0;
    top: 0;
}

.carousel.next .time,
.carousel.prev .time {
    animation: runningTime 3s linear 1 forwards;
}

@keyframes runningTime {
    from {
        width: 100%
    }

    to {
        width: 0
    }
}


/* prev click */

.carousel.prev .list .item:nth-child(2) {
    z-index: 2;
}

.carousel.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }
}

.carousel.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.carousel.next .arrows button,
.carousel.prev .arrows button {
    pointer-events: none;
}

.carousel.prev .list .item:nth-child(2) .content .author,
.carousel.prev .list .item:nth-child(2) .content .title,
.carousel.prev .list .item:nth-child(2) .content .topic,
.carousel.prev .list .item:nth-child(2) .content .des,
.carousel.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }
}

@media screen and (max-width: 678px) {
    .carousel .list .item .content {
        padding-right: 0;
    }

    .carousel .list .item .content .title {
        font-size: 30px;
    }
}

/*------------------------===================================-------------------------------*/




/* Container for the header with padding set to 0 */
.container {
    padding: 0;
}

/* Style for the learning button */
.Learning {
    margin-left: auto;
}

/* Button style for the "Start Learning" link */
.Learning .button {
    background-color: #00e1ff;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 16px;
    box-shadow: 1px 1px 1px 1px #000000ad;
}

/* Hover effect for the learning button */
.Learning .button:hover {
    background-color: #00c0e6;
}

/* Ensure navbar item and link color is white */
.nav-item .nav-link {
    color: #ffffff !important; /* Use !important to override any other styles */
}

/* Navbar link styles */
.nav-link {
    font-size: 15px;
    font-weight: bold;
    color: #ffffff !important; /* Use !important to override any other styles */
}

/* Hover effect for navbar links to underline */
.nav-link:hover {
    text-decoration: underline;
}

/* Style for icon images, if any */
.icon_images {
    font-family: Arial, sans-serif;
    background-color: #f0f4f7;
    margin: 0;
    padding: 0;
}

/* Container alignment */
.container1 {
    display: flex;
    align-items: center;
}

/* Title styling */
.title {
    font-size: 40px;
    font-weight: bold;
    margin-right: 250px;
    color: #000;
}

/* Icon container styling */
.icons {
    display: flex;
    align-items: center;
}

/* Icon styling with increased font size */
.icons i {
    font-size: 60px;
    margin-right: 10px;
    opacity: 0.8;
}

















.popular-courses {
    background-color: rgb(249, 254, 255);
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.vertical-line {
    border-left: 4px solid skyblue;
    height: 85px;
    margin: 0 auto;
}

.popular-courses .container {
    width: 90%; /* Adjusted for smaller screens */
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: 0;
}

.popular-courses .header {
    margin-bottom: 30px;
}

.popular-courses .header h1 {
    color: #000000;
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: bold;
    margin-left: 20px;
}

.popular-courses .header p {
    font-size: 16px;
    margin-bottom: 20px;
    margin-right: 10px;

}

.popular-courses .btn {
    padding: 10px 20px;
    background-color: #20dff4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.popular-courses .btn:hover {
    background-color: #18cbd4;
    color: #ffffff;
}

.popular-courses .btn.enroll-now {
    margin-top: 10px;
}

.popular-courses .courses {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.popular-courses .course {
    background-color: #E6F9F4;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.popular-courses .course img {
    width: 100%;
    height: auto;
}

.popular-courses .course h3 {
    padding: 20px;
    font-size: 18px;
}

.popular-courses .course p {
    padding: 0 20px 20px;
    font-size: 14px;
}

.popular-courses .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Add responsiveness for smaller screens */
@media screen and (max-width: 768px) {
    .popular-courses .courses {
        flex-direction: column;
        align-items: center;
    }

    .popular-courses .course {
        width: 80%; /* Full width for mobile view */
    }

    .vertical-line {
        height: 50px;
    }

    .popular-courses .header h1 {
        font-size: 24px;
    }

    .popular-courses .header p {
        font-size: 14px;
    }
}




/*************************************************************************     container1    ************************************************************/

.popular-courses1 {
    background-color: rgb(245, 255, 255);
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.vertical-line {
    border-left: 4px solid skyblue;
    height: 100px;
    margin-left: 55px;
    margin-right: 185px;
}



.popular-courses1 .container {
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: 50px;
}

.popular-courses1 .header {
    margin-bottom: 30px;
}

.popular-courses1 .header h1 {
    color: #000000;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.popular-courses1 .header p {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 20px;
}

.popular-courses1 .btn {
    padding: 10px 20px;
    background-color: #20dff4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.popular-courses1 .btn:hover {
    background-color: #18cbd4;
    color: #ffffff;
}

.popular-courses1 .btn.enroll-now {
    margin-top: 10px;
}

.popular-courses1 .courses {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.popular-courses1 .course {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.popular-courses1 .course img {
    width: 100%;
    height: auto;
}

.popular-courses1 .course h3 {
    padding: 20px;
    font-size: 18px;
}

.popular-courses1 .course p {
    padding: 0 20px 20px;
    font-size: 14px;
}

.popular-courses1 .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.popular-courses1 .star-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
}



/*************************************************************************     container2    ************************************************************/

.popular-courses2 {
    background-color: rgb(237, 255, 255);
    padding: 50px 0;
    text-align: center;
    position: relative;
}

.vertical-line {
    border-left: 4px solid skyblue;
    height: 100px;
    margin-left: 55px;
    margin-right: 185px;
}



.popular-courses2 .container {

    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding-left: 50px;
}

.popular-courses2 .header {
    margin-bottom: 30px;
}

.popular-courses2 .header h1 {
    color: #000000;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.popular-courses2 .header p {
    font-size: 16px;
    margin-bottom: 20px;
    padding: 20px;
}

.popular-courses2 .btn {
    padding: 10px 20px;
    background-color: #20dff4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.popular-courses2 .btn:hover {
    background-color: #18cbd4;
    color: #ffffff;
}

.popular-courses2 .btn.enroll-now {
    margin-top: 10px;
}

.popular-courses2 .courses {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.popular-courses2 .course {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.popular-courses2 .course img {
    width: 100%;
    height: auto;
}

.popular-courses2 .course h3 {
    padding: 20px;
    font-size: 18px;
}

.popular-courses2 .course p {
    padding: 0 20px 20px;
    font-size: 14px;
}

.popular-courses2 .course:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.popular-courses2 .star-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
}

.popular-courses1, .popular-courses2 {
    background-color: rgb(249, 254, 255);
    padding: 50px 0;
    text-align: center;
}

.popular-courses1 .container, .popular-courses2 .container {
    width: 90%;
    margin: 0 auto;
}

.popular-courses1 .header, .popular-courses2 .header {
    margin-bottom: 30px;
}

.popular-courses1 .header h1, .popular-courses2 .header h1 {
    color: #000000;
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 20px;
}

.popular-courses1 .header p, .popular-courses2 .header p {
    font-size: 16px;
    margin-bottom: 20px;
}

.vertical-line {
    border-left: 4px solid skyblue;
    height: 85px;
    margin: 0px 25px;
}

.courses {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.course {
    background-color: white;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 30%; /* Default for larger screens */
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.course img {
    width: 100%;
    height: auto;
}

.course h3 {
    padding: 20px;
    font-size: 18px;
}

.course p {
    padding: 0 20px 20px;
    font-size: 14px;
}

.course .btn {
    padding: 10px 20px;
    background-color: #20dff4;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.course .btn:hover {
    background-color: #18cbd4;
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .courses {
        flex-direction: column; /* Stack courses vertically */
        align-items: center;   /* Center-align the courses */
    }

    .course {
        width: 100%; /* Full width for mobile */
    }

    .popular-courses1 .header h1, .popular-courses2 .header h1 {
        font-size: 24px; /* Adjust heading size */
    }

    .popular-courses1 .header p, .popular-courses2 .header p {
        font-size: 14px; /* Adjust paragraph size */
    }

    .vertical-line {
        height: 50px; /* Adjust height for mobile */
    }
}




























/* Default styles for larger screens (laptop view) remain unchanged */
.boost-career {
    color: rgb(255, 255, 255);
    padding: 50px 0;
}

.boost-career .container {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.info-box {
    display: flex;
    justify-content: space-between;
    width: 70%;
}

.info-item {
    width: 30%;
}

.info-item h3 {
    font-size: 30px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
    color: #18d1d4;
}
/*
.info-item h3::before {
    content: '';
    position: absolute;
    margin-left: 57px;
    left: 0;
    top: 50%;
    width: 15px;
    height: 3px;
    background-color: #20dff4;
    transform: translateY(-50%);
} */

.info-item p {
    font-size: 17px;
    line-height: 1.6;
}

.cta-box {
    background-color: rgb(209, 205, 195);
    color: #d59410;
    padding: 30px;
    width: 25%;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Add responsive styling for mobile view only */
@media (max-width: 768px) {
    .boost-career .container {
        flex-direction: column; /* Stack elements vertically */
        align-items: center;
    }

    .info-box {
        width: 100%; /* Full width for mobile */
        flex-direction: column; /* Stack items in a single column */
        align-items: center;
    }

    .info-item {
        width: 90%; /* Smaller width for better spacing */
        margin-bottom: 20px; /* Add space between rows */
        text-align: center; /* Center-align text */
    }

    .info-item h3 {
        font-size: 22px; /* Reduce font size for mobile */
    }

    .info-item p {
        font-size: 14px; /* Adjust text size */
    }

    .cta-box {
        width: 90%; /* Make the button full width for better usability */
        margin-top: 20px; /* Add spacing above Get Started button */
    }

    .cta-link h1 {
        font-size: 18px; /* Adjust the "Get Started" button font size */
    }
}

@media (max-width: 480px) {
    .boost-career .container {
        padding: 20px;
    }

    .info-item h3 {
        font-size: 20px; /* Further reduce font size for smaller screens */
    }

    .info-item p {
        font-size: 13px;
    }

    .cta-box {
        padding: 15px;
    }

    .cta-link h1 {
        font-size: 16px;
    }
}














.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.whychooseus {
    background-color: #fff;
    padding: 60px 0; /* Increased padding for better spacing */
}

.intro {
    text-align: center;
    margin-bottom: 40px;
}

.intro h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.intro p {
    font-size: 18px;
    color: #666;
}

.features {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.feature {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(33.333% - 20px);
    display: flex;
    align-items: flex-start;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Added transition for smooth effect */
}

.feature:hover {
    transform: translateY(-5px); /* Lift the feature box on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Improved shadow on hover */
}

.icon {
    font-size: 40px;
    color: #0eefff;
    margin-right: 20px;
    transition: color 0.3s ease; /* Smooth color transition on hover */
}

.feature:hover .icon {
    color: #22e6e3; /* Darker orange on hover */
}

.text h3 {
    font-size: 24px;
    margin: 0 0 10px 0;
}

.text p {
    font-size: 16px;
    color: #666;
    margin: 0;
}






/*-----------------------------------------------------  card slider        --------------------------------------------------------------*/

/* Importing Google Font - Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;

}


.slider_card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75vh;
  padding: 0px;
  font-family: "Montserrat", sans-serif;
}

.slider-wrapper {
  overflow: hidden;
  max-width: 1200px;
  margin: 0 70px 55px;
}

.card-list .card-item {
  height: auto;
  color: #fff;
  user-select: none;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  backdrop-filter: blur(30px);
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s ease, background 0.3s ease;
}

.card-list .card-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.3);
}

.card-list .card-item .user-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 40px;
  border: 3px solid #fff;
  padding: 4px;
  transition: transform 0.3s ease;
}

.card-list .card-item:hover .user-image {
  transform: scale(1.1);
}

.card-list .card-item .user-profession {
  font-size: 1.15rem;
  color: #e3e3e3;
  font-weight: 500;
  margin: 14px 0 40px;
}

.card-list .card-item .message-button {
  font-size: 1.25rem;
  padding: 10px 35px;
  color: #a09b9b;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  background: #eacaae;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.card-list .card-item .message-button:hover {
  background:  #ffcb9d;
  border: 1px solid #fff;
  color: #000000;
}

.slider-wrapper .swiper-pagination-bullet {
  background: #fff;
  height: 13px;
  width: 13px;
  opacity: 0.5;
}

.slider-wrapper .swiper-pagination-bullet-active {
  opacity: 1;
}

.slider-wrapper .swiper-slide-button {
  color: #fff;
  margin-top: -55px;
  transition: 0.2s ease;
}

.slider-wrapper .swiper-slide-button:hover {
  color: #4658ff;
}

@media (max-width: 768px) {
  .slider-wrapper {
    margin: 0 10px 40px;
  }

  .slider-wrapper .swiper-slide-button {
    display: none;
  }
}

















.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.header h2 {
    font-size: 36px;
}

.rating {
    text-align: right;
}

.rating-number {
    font-size: 48px;
    font-weight: bold;
}

.rating-text {
    font-size: 18px;
    color: #666;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin: 10px;
    flex: 1 1 calc(45% - 20px);
    display: flex;
    align-items: flex-start;
}

.profile-pic img {
    border-radius: 50%;
    width: 60px;
    height: 60px;
    margin-right: 20px;
}

.testimonial-text {
    flex: 1;
}

.testimonial-text p {
    font-size: 16px;
    color: #666;
    margin: 0 0 10px 0;
}

.testimonial-text h4 {
    font-size: 18px;
    margin: 0;
}

@media (max-width: 768px) {
    .header {

        text-align: center;
    }

    .rating {
        margin-top: 20px;
    }

    .testimonials {
        flex-direction: column;
    }

    .testimonial {
        flex: 1 1 100%;
    }
}











.subscription-container {
    text-align: center;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.subscription-container h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subscription-container p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    align-items: center;
}

.subscription-form input[type="email"] {
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    flex: 1;
    margin-right: 10px;
    max-width: 300px;
}

.subscription-form button {
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #0effff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.subscription-form button:hover {
    background-color: #00d3e6;
}







/***********************************************     footer section     ************************************************************/
/* Style for social media icons */
.section6socialmedia a i {
    color:#0efbff; /* Change this to your desired color */
    font-size: 24px; /* Adjust the font size as needed */
    margin: 0 10px; /* Adjust the spacing between icons */
    transition: color 0.3s; /* Smooth transition for color change */
}

/* Hover effect to change icon color */
.section6socialmedia a i:hover {
    color: #007da7;/* Change this to your desired hover color */
}


.section6adress a i {
    color:#0ed3ff; /* Change this to your desired color */
    font-size: 20px; /* Adjust the font size as needed */
    margin: 0 10px; /* Adjust the spacing between icons */
    transition: color 0.3s; /* Smooth transition for color change */
}

/* Hover effect to change icon color */
.section6adress a i:hover {
    color: #0094a7; /* Change this to your desired hover color */
}


.list-unstyled li a:hover {
    color:#0eefff; /* Change to your desired hover color */
}

footer {
    background-color: rgb(35, 34, 34);
    color: #fff;
}

.quicklinks1 {
    padding: 0 70px;
}

.footer-quick-links ul {
    padding: 0 107px;
    list-style-type: none;
}

.footer-quick-links li {
    margin: 5px 0;
}

.footer-quick-links a {
    text-decoration: none;
    color: #ffffff;
    /* Adjust the color as needed */
    text-align: left;
}

.footer-quick-links a:hover {
    text-decoration: underline;
}

.row,
.fontsize {
    font-size: 18px;
}




.section6socialmediaradius {
    border-radius: 10%;
}

.separator-line {
    border-top: 2px solid rgb(0, 225, 255);
    /* Adjust color and width as needed */
    margin: 18px 0;
    /* Adjust spacing as needed */
}

.banner {
    position: relative;
    background-image: url(../Images/banner.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(29, 25, 25); /* Change this to the color and opacity you want */
    z-index: 1;
    opacity: .7;
}

.banner .boost-career {
    position: relative;
    z-index: 2;
}

/*****************************************************  banner to card slider     *********************************************************/

.banner2 {
    position: relative;
    background-image: url(../Images/banner2.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.banner2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color:rgb(66, 51, 51); /* Change this to the color and opacity you want */
    z-index: 1;
    opacity: .5;
}

.banner2 .slider_card {
    position: relative;
    z-index: 2;
}








/*-------------------------------------------------------------   About us   ----------------------------------------------------------*/

.bannera {
    position: relative;
    background-image: url(../Images/banner2.jpg);
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    width: 100%;
    height: 100%;
    border-radius: 0px 0px 150px 0px;
}

.bannera::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(29, 25, 25);
    /* Change this to the color and opacity you want */
    z-index: 1;
    opacity: .2;
    border-radius: 0px 0px 150px 0px;
}

.sec1 {
    padding: 200px 0px 200px 0px;


}

.about {
    font-size: 70px;
    color: white;
}

.section2 {
    background-color: #ffffff;
}

.visionmission {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;


}

/* Section 2 */
.section2 {
    background-color: #ffffff;
    padding: 80px 20px;
}

/* About Image */
.images {
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.images:hover {
    transform: scale(1.05);
    box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.25);
}

/* About Text */
.aboutcenter h2 {
    font-size: 34px;
    font-weight: 700;
    color: #222;
    position: relative;
}

.aboutcenter h2::after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    margin-top: 10px;
    border-radius: 2px;
}

.aboutparagraph {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    padding: 15px 0;
    text-align: justify;
}

/* Features (Vision, Mission, Goals) */
.features {
    display: flex;
    gap: 30px;
    margin-top: 60px;
    flex-wrap: wrap;
    justify-content: center;
}

.feature {
    flex: 1 1 300px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-radius: 18px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.feature .icon {
    font-size: 50px;
    margin-bottom: 15px;
    color: #0072ff;
}

.feature h3 {
    font-size: 22px;
    color: #222;
    margin-bottom: 10px;
}

.feature p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.sec3 {
    background: linear-gradient(135deg, #f0f4ff, #dbeafe);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.container3 {
    display: flex;
    align-items: center;
    max-width: 900px;
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
    gap: 30px;
    transition: all 0.3s ease;
}

.image-container img {
    width: 180px;
    /* Fixed size instead of % */
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #0072ff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.text-container {
    flex: 1;
}

.text-container h2 {
    font-size: 26px;
    color: #222;
    margin-bottom: 15px;
}

.text-container p {
    color: #555;
    line-height: 1.7;
}

.name {
    font-weight: bold;
    font-size: 18px;
    margin-top: 15px;
    color: #111;
}

.name .title {
    font-weight: 600;
    color: #0072ff;
    font-size: 16px;
}

/* 📱 Responsive for tablets & mobile */
@media (max-width: 768px) {
    .container3 {
        flex-direction: column;
        /* stack image & text */
        text-align: center;
        padding: 20px;
    }

    .image-container img {
        width: 140px;
        height: 140px;
        margin-bottom: 20px;
    }

    .text-container h2 {
        font-size: 22px;
    }

    .text-container p {
        font-size: 14px;
    }

    .name {
        font-size: 16px;
    }

    .name .title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .image-container img {
        width: 120px;
        height: 120px;
    }

    .text-container h2 {
        font-size: 20px;
    }
}

/* Subscription */
.subscription-container {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    color: #fff;
    text-align: center;
    padding: 70px 20px;
    border-radius: 0 0 150px 0;
}

.subscription-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.subscription-container p {
    font-size: 16px;
    margin-bottom: 25px;
}

.subscription-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    max-width: 500px;
    margin: auto;
}

.subscription-form input {
    flex: 1;
    padding: 12px 15px;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 15px;
}

.subscription-form button {
    background: #fff;
    color: #0072ff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscription-form button:hover {
    background: #0072ff;
    color: #fff;
}

/* Responsive */
@media (max-width: 768px) {
    .container3 {
        flex-direction: column;
        text-align: center;
    }

    .features {
        flex-direction: column;
    }

    .subscription-form {
        flex-direction: column;
    }
}






/*************************************************************    Placement    **********************************************************/

.placement-section, .recruiters-section {
    padding: 20px 0;
    background-color: #fff4e1;
}


.section-title {
    text-align: center;
    font-size: 36px;
    color: #ff7043;
    margin-bottom: 60px;
    animation: fadeInDown 1.5s;
}

.student-info {
    margin-bottom: 40px;
    margin-top: 40px;
    animation: slideIn 1.5s;
    border: #000;
}
.student-info {
    border: 2px solid rgba(255, 255, 255, 0.3); /* Light, semi-transparent border */
    padding: 15px; /* Space inside the border */
    border-radius: 8px; /* Rounded corners */
    background: rgba(255, 255, 255, 0.2); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Frosted glass effect */
    box-shadow: rgb(183, 174, 174).5px 2.5px 10px 0.1px;
}
.student-img {
    max-width: 100%;
    height: auto;
    border-radius: 4px; /* Rounded corners for the image */
    animation: fadeIn 1.5s;
    transition: transform 0.3s;
}


.student-img:hover {
    transform: scale(1.1);
}

.student-details {
    padding: 20px;
}

.btnprimary {
    background-color: #ff7043;
    border: none;
    transition: background-color 0.3s;
}

.btnprimary:hover {
    background-color: #e0643c;
}

.brand-logo {
    width: 150px;
    height: auto;
    margin: 10px;
    animation: bounceIn 2s;
    transition: transform 0.3s;
}

.brand-logo:hover {
    transform: scale(1.1);
}

.recruiters-list .recruiter {
    text-align: center;
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ff7043;
    border-radius: 8px;
    background-color: #fff;
    animation: zoomIn 1.5s;
}

/* Additional styles for animations, if necessary */
@keyframes zoomIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}

/* Ensure proper alignment */
.recruiters-list .recruiter h5 {
    margin: 10px 0;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes bounceIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes fadeInDown {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.5); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}












/*------------------------------------------------     Gallery     --------------------------------------------------------------*/


.gallery1 {
    position: relative;
}

.gallery1 .star-bg {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1; /* Ensures the image is below the video */
}

.gallery1 .star-bg img {
    display: block;
    width: 65%;
    height: 170%;
}

.container7 {
    position: relative;
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin: 0 auto; /* Center align the container */
    padding: 0;
    z-index: 2; /* Ensures the video is above the image */
}

.container7 video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px; /* Optional: Adds rounded corners to the video */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Adds a subtle shadow */
}

/* Optional: Responsive design adjustments */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .gallery1 .star-bg img {
        width: 50%; /* Adjust size for smaller screens */
        height: auto;
    }
}






















/*------------------------------------------------      Contact Us     --------------------------------------------------------------*/
.navbar-nav .nav-link {
    font-size: 16px;
}

.container2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 20px;
    max-width: 1200px;
    margin: auto;
}

.container {
    justify-content: space-between;
    max-width: 1200px;
    margin: auto;
}

.contact-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    padding-right: 30px;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #333;
    border-bottom: 3px solid rgb(0, 229, 255);
    display: inline-block;
    padding-bottom: 5px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.contact-info ul li i {
    margin-right: 10px;
    color: rgb(0, 255, 255);
    font-size: 1.2em;
}

.social-media a {
    margin-right: 10px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-media a:hover {
    color: rgb(0, 217, 255);
}

.social-media a i {
    font-size: 1.5em;
}

/* Map Section */
.map iframe {
    width: 100%;
    height: 450px;
    border: none;
    border-radius: 10px;
}

/* Contact Form Section */
.contact-form {
    flex: 1;
    padding-left: 20px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    min-width: 300px;
}

.contact-form h3 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #000000;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form form input,
.contact-form form textarea {
    margin-bottom: 15px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    font-family: inherit;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: rgb(0, 195, 255);
    box-shadow: 0 0 10px rgba(0, 174, 255, 0.2);
}

.contact-form form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form form button {
    padding: 15px;
    border: none;
    background-color: rgb(0, 238, 255);
    color: #000000;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s ease;
}

.contact-form form button:hover {
    background-color: rgb(1, 179, 211);
}

.submit .btnform {
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container2 {
        flex-direction: column;
        align-items: center;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
        width: 100%;
    }

    .contact-info {
        padding-right: 0;
        margin-bottom: 20px;
    }

    .contact-form {

    }

    .map iframe {
        height: 300px;
    }
}




/* for navebar only */
@media (max-width: 768px) {
    .navbar-collapse {
        position: fixed; /* Make it take the full screen */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9); /* Dark semi-transparent background */
        z-index: 1050;
        overflow-y: auto;
        padding: 20px;
        transform: translateX(-100%); /* Start off-screen */
        transition: transform 0.5s ease-in-out; /* Smooth animation */
    }

    .navbar-collapse.show {
        transform: translateX(0); /* Slide in when expanded */
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%; /* Center the links vertically */
    }

    .navbar-nav .nav-link {
        color: #fff; /* White text for dark background */
        font-size: 1.5rem;
        margin: 15px 0;
        padding: 10px 20px;
        text-align: center;
        border-radius: 5px;
        transition: background-color 0.3s ease, transform 0.3s ease;
    }

    .navbar-nav .nav-link:hover {
        background-color: #1a73e8; /* Highlight on hover */
        transform: scale(1.1); /* Slight zoom effect */
    }

    .navbar-toggler {
        z-index: 1100; /* Ensure it's above the background */
    }
}
