@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Square+Peg&family=Ubuntu:wght@300&display=swap');
/* font-family: "Raleway", sans-serif; */

@import url('https://fonts.googleapis.com/css2?family=Libre+Franklin:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Square+Peg&family=Ubuntu:wght@300&display=swap');
/* font-family: "Roboto", sans-serif; */

::-webkit-scrollbar {
    display: none;
}

*{
    margin: 0%;
    padding: 0%;
    font-family: Georgia, 'Times New Roman', Times, serif;
    scrollbar-width: none;
}

body{
    /* background-color: #fff3f3; */
    /* background-color: whitesmoke; */
    background-color: #0759a7;
    -ms-overflow-style: none;
}

.header{
    height: 100vh;
    min-height: 100vh;
    width: 100%;
    /* background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/background.jpg); */
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
}

.background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

nav{
    margin-top: -50px;
    display: flex;
    padding: 2% 6%;
    justify-content: space-between;
    align-items: center;
}


nav img{
    width: 20%;

}

/* .pose{
    width: 100%;
} */


.nav-links{
    flex: 1;
    text-align: right;
}

.nav-links ul li{
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Josefin Sans', sans-serif;
}

.nav-links ul li::after{
    content: '';
    width: 0%;
    height: 2px;
    /* background: #f44336; */
    background: #ff6b3a;
    display: block;
    margin: auto;
    transition: 0.5s;
}

.nav-links ul li:hover::after{
    width: 100%;
}

.fa-bars{
    border: 2px solid #f6921e;
    border-radius: 8px;
    padding: 7px 15px;
    display: inline-block;
}

.fa-times{
    border: 2px solid #f6921e;
    border-radius: 8px;
    padding: 8px;
    display: inline-block;
    width: 38px;
}

.text-box{
    width: 90%;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

.text-box h1{
    font-size: 52px;
}

.text-box p{
    margin: 10px 0 40px;
    font-size: 20px;
    color: #f6921e;
}

.hero-btn{
    display: inline-block;
    text-decoration: none;
    color: #0759a7;
    border: 2px solid #0759a7;
    padding: 12px 34px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.hero-btn:hover{
    border: 1px solid #8fc9ff;
    background: #8fc9ff;
    transition: 1s;
}

nav .fa{
    display: none;
}

@media(min-width: 992px){
    nav{
        margin-top: 0px;
        height: 90px;
        background-color: #0759a7;
        overflow-y: hidden;
    }
  
    /* .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: rgba(19, 18, 18, 0.8);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;

    }
    nav .fa{
        display: block;
        color: #f6921e;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    } */
    .nav-links ul{
        padding: 30px;
    }
    nav img{
        /* margin-left: -20px; */
        width: 150px;
    }
}

@media(max-width: 700px){
    nav{
        margin-top: 0px;
        height: 70px;
        background-color: #0759a7;
        overflow-y: hidden;
    }
    .text-box h1{
        font-size: 40px;
    }
    .text-box p{
        margin-top: -5px;
        font-size: 20px;
    }
    .nav-links ul li{
        display: block;
    }
    .nav-links{
        position: absolute;
        background: rgba(19, 18, 18, 0.8);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 0.5s;

    }
    nav .fa{
        display: block;
        color: #f6921e;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;
    }
    nav img{
        margin-left: -40px;
        width: 130px;
    }
    .fa-bars{
        border: 2px solid #f6921e;
        border-radius: 3px;
        padding: 2px 10px;
        display: inline-block;
    }
    .fa-times{
        border: 2px solid #f6921e;
        border-radius: 8px;
        padding: 3px 7px;
        display: inline-block;
        width: 30px;
    }
}

.logo-container {
    width: 250px; /* Set a fixed width to prevent shifting */
    display: flex;
    justify-content: center;
    align-items: center;
}

.desktop-logo {
    display: block;
    width: 100%;
}

.mobile-logo {
    display: none;
    width: 100%;
}

/* Switch logos on smaller screens */
@media (max-width: 700px) {
    .desktop-logo {
        display: none;
    }
    .mobile-logo {
        display: block;
        width: 150px;
        margin-left: -150px;
    }
}


/* course */
.course{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}

.course .course-core{
    text-align: justify;
}

.course .course-core span{
    font-size: 16px;
    color: #0759a7;
}

h1{
    font-size: 36px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
    /* color: rgb(0, 146, 69); */
    /* color: #2a2a72; */
    color: #ffffff;
}


p{
    /* color: #777; */
    color: #f6921e;
    /* color: #ff6b3a; */
    font-size: 15px;
    font-weight: 300;
    line-height: 22px;
    padding: 10px;
}

.course-col p{
    color: #000;
}

.course-core p{
    color: #000;
}

.row h3{
    color: #ffffff;
}


.row{
    margin-top: 5%;
    display: flex;
    justify-content: space-between;
    overflow-y: hidden;
    /* gap: 20px; */
}

.course-col{
    flex-basis: 31%;
    /* background: rgb(247, 232, 205); */
    background: rgb(246, 146, 30);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
    height: auto;
    overflow-y: hidden;
}

.course-core{
    height: auto;
    flex-basis: 31%;
    /* background: rgb(247, 232, 205); */
    background: rgb(246, 146, 30);
    border-radius: 10px;
    margin-bottom: 5%;
    padding: 20px 12px;
    box-sizing: border-box;
    transition: 0.5s;
}

h3{
    text-align: center;
    font-weight: 600;
    margin: 10px 0;
    /* color: #ff6b3a; */
    color: #f6921e;
}

.course-col:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
}

.course-core:hover{
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.2);
}

.mid-img img{
    width: 50%;
    margin-left: 900px;
}

.course .course-core span a{
    color: #f6921e;
    cursor: pointer;
}

@media(max-width: 700px){
    .row{
        flex-direction: column;
    }

    .mid-img img{
        margin-left: 200px;
        margin-top: 50px;
    }

    p{
        font-size: 15px;
    }
    .course .course-core span{
        font-size: 12px;
    }
}



span a {
	font-size: 18px;
	color: #cccccc;
	text-decoration: none;
	margin: 0 10px;
	transition: all 0.4s ease-in-out;
	&:hover {
		color: #ffffff;
	}
}

@keyframes float {
	0% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
	50% {
		box-shadow: 0 25px 15px 0px rgba(0,0,0,0.2);
		transform: translatey(-20px);
	}
	100% {
		box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
		transform: translatey(0px);
	}
}


.avatar {
	width: 150px;
	height: 150px;
    margin-left: 3%;
	box-sizing: border-box;
	border: 5px whitesmoke solid;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	/* img { width: 100%; height: auto; } */
}

.avatar img {
    width: 100%;
    margin-top: 30px;
    height: auto;
}



      /* facilities */

.facilities{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
    margin-top: -100px;
}

.facilities h1{
    /* margin-top: 190px; */
    margin-bottom: -50px;
    font-size: 50px;
}


.facilities-col{
    min-height: 400px;
    box-sizing: border-box;


    flex-basis: 31%;
    border-radius: 10px;
    /* margin-bottom: 5%; */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the image horizontally */
    text-align: left; /* Centers the text below the image */
}

.facilities-col img{
    width: 300px;
    padding: 0;
    max-width: 100%; /* Ensures the image does not overflow its container */
}

#long1 {
    margin-top: 55px;
}

#long2 {
    margin-top: 10px;
}

#long2 img{
    width: 300px;
}
#long2 h3{
    margin-top: -25px;
}

#long3 {
    margin-top: 10px;
}

#long4 {
    margin-top: -40px;
}

#long5 {
    margin-top: 35px;
}

#long6 {
    margin-top: 30px;
}

#long7 {
    margin-top: 120px;
}

#long9 {
    margin-top: 10px;
}


/* .facilities-col img:hover{
    box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);
} */

.facilities-col p{
    padding: 0;
}

.facilities-col h3{
    margin-top: 16px;
    margin-bottom: 15px;

    align-self: flex-start; /* Aligns the heading to the left */
    text-align: left; /* Ensures the text is left-aligned */
}

@media(min-width: 992px){
    .facilities-col img{
        width: 250px;
        margin-bottom: 30px;
    }

    .facilities-col{
        flex-basis: 25%;
    }

    #long2 {
        margin-top: 55px;
    }

    #long3{
        margin-top: 55px;
    }

    #long4 {
        margin-top: 20px;
    }

    #long5 {
        margin-top: 80px;
    }

    #long6{
        margin-top: 80px;
    }

    #long8 {
        margin-top: 30px;
    }

    #long9 {
        margin-top: 40px;
    }
}

@media(max-width: 700px){
    .facilities h1{
        margin-top: 50px;
        margin-bottom: 40px;
    }

    #long2 {
        margin-top: -20px;
    }

    #long4 h3{
        margin-top: -50px;
    }

    #long6 {
        margin-bottom: -30px;
    }

    #long9 {
        margin-top: 90px;
    }

    #long10 {
        margin-top: 80px;
    }

    /* #long7 {
        margin-top: -10px;
    } */

}

.avatar2{
    width: 150px;
	height: 150px;
    margin-left: 90%;
    margin-top: -50px;
	box-sizing: border-box;
	border: 5px whitesmoke solid;
	border-radius: 50%;
	overflow: hidden;
	box-shadow: 0 5px 15px 0px rgba(0,0,0,0.6);
	transform: translatey(0px);
	animation: float 6s ease-in-out infinite;
	/* img { width: 100%; height: auto; } */
}

.avatar2 img {
    width: 100%;
    margin-top: 0px;
    height: auto;
}

@media(min-width: 992px) {
    .avatar2{
        margin-left: 85%;
    }
}

@media(max-width: 700px){
    .facilities{
        margin-top: -100px;
    }
    .facilities-col{
        margin-bottom: 20%;
    }
    .facilities-col h3{
        font-size: 15px;
    }
    .avatar2{
        /* margin-top: -80px; */
        margin-bottom: -50px;
        margin-left: 60%;
    }
}

.ceo{
    text-align: center;
    margin-top: -70px;
}


.ceo-about{
    width: 80%;
    text-align: center;
    background: rgb(246, 146, 30);
    border-radius: 10px;
    margin: auto;
    padding-top: 10px;
    text-align: center;
    margin-top: 20px;
    padding: 40px 20px;
    /* -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%); */
    box-shadow: 1px 2px 4px rgba(0,0,0,.3);
}

.ceo h1{
    margin-top: 50px;
}

.ceo span{
    color: #f6921e;
}

.ceo p{
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto;
    color: #000;
}


@media(max-width: 700px){
    .ceo {
        margin-top: 30px;
    }

    .ceo-about{
        width: 80%;
        height: auto;
        /* height: 610px; */
        margin-top: 20px;
        text-align: start;
        overflow-y: hidden;
    }

    .ceo p{
        font-size: 15px;
    }

    .ceo span{
        margin-top: 7px;
        display: block;
        font-size: 23px;
    }

}

.team{
    text-align: center;
    margin-top: 20px;
}

.team-about{
    width: 80%;
    text-align: center;
    background: rgb(246, 146, 30);
    border-radius: 10px;
    margin: auto;
    padding-top: 10px;
    text-align: center;
    margin-top: 20px;
    padding: 40px 20px;
    /* -webkit-transform: translatey(-50%);
    -moz-transform: translatey(-50%);
    -ms-transform: translatey(-50%);
    -o-transform: translatey(-50%);
    transform: translatey(-50%); */
    box-shadow: 1px 2px 4px rgba(0,0,0,.3);
}

.team h1{
    margin-top: 50px;
}

.team p{
    font-size: 15px;
    max-width: 900px;
    margin: 0 auto;
    color: #000;
}

@media(max-width: 700px){
    .team{
        margin-top: 20px;
    }
    .team-about{
        width: 80%;
        height: auto;
        /* height: 590px; */
        margin-top: 20px;
        text-align: start;
    }

    .team p{
        font-size: 15px;
    }
}


       /* Call To Action */

.cta{
    font-family: "Raleway", sans-serif;
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(static/banner2.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
    margin-top: 80px;
}

.cta h1{
    color: #fff;
    margin-bottom: 40px;
    padding: 0;
}

@media(max-width: 700px){
    .cta{
        margin-top: 80px;
    }
    .cta h1{
        font-size: 20px;
    }
}


/* Modal Container */
/* General Modal Styling */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    justify-content: center;
    align-items: center;
}

/* Modal Content Box */
.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 400px;
    position: relative;
    text-align: center;
}

/* Close Button */
.close-btn {
    position: fixed;
    color: #fff;
    top: 10px;
    right: 10px;
    font-size: 58px;
    cursor: pointer;
}

/* Login Box Styling */
.login-box {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    padding: 40px;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    box-sizing: border-box;
    box-shadow: 0 15px 25px white;
    border-radius: 10px;
    justify-content: center;
    align-items: center;
}

.login-box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #fff;
    text-align: center;
}

.login-box textarea {
    border-radius: 5px;
}

/* Input and Label Styling */
.login-box .user-box {
    position: relative;
}

.login-box .user-box input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

.login-box .user-box label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #fff;
    pointer-events: none;
    transition: 0.5s;
}

.login-box .user-box input:focus ~ label,
.login-box .user-box input:valid ~ label {
    top: -20px;
    left: 0;
    color: #03e9f4;
    font-size: 12px;
}

input[type="text"],
input[type="email"],
textarea {
    padding: 10px;
}

textarea{
    width: 100%;
}

/* CTA Button */
#getIn,
.chero-btn {
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

/* Intl-Tel-Input Styling for Country Code Field */
.login-box .user-box input[type="tel"] {
    width: 100%; /* Ensure the input takes full width */
    padding-left: 60px; /* Space for the country code dropdown */
    font-size: 16px;
    color: #fff;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #fff;
    outline: none;
    background: transparent;
}

/* Styling for the intl-tel-input container */
.iti {
    width: 100%; /* Make the container fill the width of the parent */
    position: relative;
}

.iti--allow-dropdown input[type="tel"] {
    padding-left: 60px; /* Adjust for dropdown size */
}

/* Flag dropdown container */
.iti__flag-container {
    overflow-x: unset;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: transparent;
    padding-right: 5px;
    border-right: 1px solid rgba(255, 255, 255, 0.5); /* Separator line */
}

/* Ensure flag selector isn't smooshed */
.iti__selected-flag {
    width: 40px; /* Adjust width for a proper fit */
    height: 100%; /* Match the height of the input */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dropdown customization */
.iti__country-list {
    background: #333; /* Match modal background theme */
    color: #fff; /* Text color */
}

.iti__country:hover {
    background: #03e9f4; /* Highlight on hover */
    color: #000;
}

/* Placeholder fix */
input[type="tel"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.iti {
    width: 100%; /* Ensure the input takes the parent's full width */
  }
  
  .iti__flag-container {
    border-right: 1px solid rgba(255, 255, 255, 0.5); /* Optional separator line */
  }
  
  .iti__country-list {
    max-height: 250px; /* Limit dropdown height */
    overflow-y: auto; /* Add a scrollbar for long lists */
    background: #333; /* Match your theme */
    color: #000;
  }
  
  .iti__country:hover {
    background: #03e9f4; /* Highlight hover */
    color: #000;
  }
  


/* .chero-btn:hover{
    border: 1px solid #f44336;
    background: #f44336;
    transition: 1s;
} */


  @media (max-width: 768px){
    .cta .hero-btn:hover{
        border: none;
        background: none;
        transition: none;
    }

  }
        /* footer */
    
/* .footer{
    margin: 10px auto;
    width: 100%;
    text-align: center;
    padding: 30px 0;
    background-image: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),url(images/bg_header-01.png);
    background-position: center;
    background-size: cover; */
    /* border-radius: 10px; */
    /* overflow-y: hidden;
}

.footer h4{
    font-family: 'Josefin Sans', sans-serif;
    color: #fff;
    margin-bottom: 25px;
    margin-top: 20px;
    font-weight: 600;
    font-size: 30px;
}

.footer p{
    font-size: 13px;
    margin-bottom: -35px;
}

.icons{
    overflow-y: hidden;
}

.icons .fa{
    color: #f44336;
    margin: 0 13px;
    cursor: pointer;
    padding: 18px 0;
    margin-top: 20px;
    margin-bottom: -20px;
}

@media(max-width: 700px){
    .footer p{
        font-size: 10px;
    }
} */

/* Footer Styling */
/* footer {
    background-image: linear-gradient(rgba(7, 89, 167, 1), rgba(7, 89, 167, 1));
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    margin: 20px;
}

footer img{
    width: 90%;
    margin-top: -150px;
    margin-bottom: -100px;
    display: none;
}

.footer-section h3 {
    font-family: 'Josefin Sans', sans-serif;
    font-size: 18px;
    margin-bottom: 15px;
    color: #f6921e;
    text-transform: uppercase;
    text-decoration: underline;
}

.footer-section p {
    color: #cccccc;
    font-size: 14px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: underline;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #cccccc;
}

.copy p{
    text-align: center;
    color: #f6921e;
} */

/* Responsive Footer */
/* @media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: baseline;
    }

    footer img{
        display: block;
        width: 70%;
        margin-left: -55px;
        margin-bottom: -90px;
        margin-top: -80px;
    }

    .footer-section {
        align-items: baseline;
        margin: 10px 0;
    }

    .footer-section h3{
        text-align: left;
    }

    .footer-section p{
        margin-left: -10px;
    }
} */


/* Footer Styling */
.footer {
    background-color: #000; /* Black background */
    color: #f6921e;           /* White text */
    text-align: center;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.footer-logo{
    overflow: hidden;
}
  
.footer-logo h2 {
    font-size: 38px;
    color: #ffffff;
    font-family: "Roboto", sans-serif;
    margin: 0;
}

.footer-logo img{
    width: 20%;
    margin-top: -70px;
    margin-bottom: -130px;
    overflow-y: hidden;
}
  
.social-icons {
    margin: 15px 0;
}
  
.social-icons a {
    margin: 0 10px;
    color: #f6921e;
    font-size: 20px;
    text-decoration: none;
}
  
.social-icons a:hover {
    color: #ccc;
}
  
.footer-links {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}
  
.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
}
  
.footer-links a:hover {
    text-decoration: underline;
}
  
.footer-copyright {
    font-size: 12px;
    margin-top: 10px;
    font-family: Arial, Helvetica, sans-serif;
}

.addy{
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;
}

@media (max-width: 768px){
    .footer-logo img{
        width: 80%;
        margin-top: -60px;
        margin-bottom: -120px;
    }
}

@media(min-width: 960px) {
    .footer-logo img{
        width: 25%;
        /* margin-top: -60px;
        margin-bottom: -120px; */
    }
}


  





.CornerWidget {
    display: flex;
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background: #fff;
    border-radius: 4rem;
    box-shadow: 0 0 1.5rem #22bb5c;
    transition: 0.2s all;
    background: #25d366;
    color: #fff;
    padding: 1rem;
    z-index: 3;
  }
  .CornerWidget-symbol,
  .CornerWidget-letters {
    overflow-y: hidden;
    height: 1.5rem;
  }
  .CornerWidget-symbol svg,
  .CornerWidget-letters svg {
    height: 100%;
    width: auto;
  }
  .CornerWidget-letters {
    display: none;
  }
  @media only screen and (min-width: 768px) {
    .CornerWidget {
      box-shadow: 0 0 3rem #e4e4e5;
      background: #fff;
      color: #5f6267;
      bottom: 3rem;
      right: 3rem;
      padding: 0.75rem 1.125rem;
    }
    .CornerWidget-symbol,
    .CornerWidget-letters {
      height: 1.25rem;
    }
    .CornerWidget-letters {
      display: inherit;
    }
    .CornerWidget:hover,
    .CornerWidget:focus,
    .CornerWidget:active {
      color: #fff;
      background: #25d366;
      box-shadow: 0 0 1.5rem #22bb5c;
    }
  }


/* General styling for the card */
.card {
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 100%;
    max-width: 400px;
    margin: 20px auto;
    text-align: center;
}

/* Full content for mobile */
.full-content-mobile {
    display: none; /* Hidden by default, shown only on mobile */
}

.course-core .write-up span a{
    color: #0759a7;
}


/* Modal and read more button hidden on mobile */
@media (max-width: 767px) {
    .full-content-mobile {
        display: block; /* Show full content on mobile */
    }
    .write-up,
    .read-more-btn,
    .modal {
        display: none; /* Hide modal and read more button on mobile */
    }
}

/* Show Read More button and modal on desktop */
@media (min-width: 768px) {
    #hid{
        display: none;
    }
    .full-content-mobile {
        display: none; /* Hide full content on desktop */
    }
    .read-more-btn {
        display: inline-block;
        background-color: #007bff;
        color: white;
        padding: 8px 16px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
    }
    .modal {
        display: none; /* Only show modal when triggered */
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    .modal-content {
        position: relative;
        margin: 10% auto;
        padding: 20px;
        width: 80%;
        max-width: 500px;
        background-color: rgb(246, 146, 30);
        border-radius: 8px;
        text-align: left;
    }
    .modal-content span{
        color: #0759a7;
    }
    .modal-content p {
        color: #000;
    }
    .close {
        position: absolute;
        top: 10px;
        right: 10px;
        font-size: 24px;
        cursor: pointer;
    }
}


@media (min-width: 1440px) and (max-width: 1920px){
    #hid{
        display: none;
    }
}

@media (min-width: 1280px) and (max-width: 1439px){
    #hid{
        display: block;
    }
    #show{
        display: none;
    }
}




.faq{
    margin-top: 20px;
}

.box{
    width: 80%;
    margin: 100px auto;
    background: #f6921e;
    border-radius: 7px;
    box-shadow: 1px 2px 4px rgba(0,0,0,.3);
 }
 
 .box .heading{
    background: #0759a7;
    border-radius: 7px 7px 0px 0px;
    padding: 10px;
    color: #fff;
    text-align: center;
    font-family: "Rubik";
    font-size: 20px;
 }
 
 .faqs{
    padding: 0px 20px 20px;
 }
 
 ::-webkit-details-marker{
    float: left;
    margin-top: 3px;
 }
 
 details{
    /* background: #f6f6f6; */
    background: #f6921e;
    padding: 10px 20px;
    border-radius: 7px;
    margin-top: 20px;
    font-family: "Rubik";
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
 }
 
 details summary{
    outline: none;
 }

 .text{
    color: #fff;
 }

 .faq h4{
    margin-left: px;
    /* font-size: 500px; */
 }

 @media (max-width: 768px){
    .text{
        font-size: 12px;
    }

    .faq{
        margin-top: 20px;
    }
 }


 /* Base Styles */
.stats-section {
    font-family: "Raleway", sans-serif;
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    text-align: left;
  }
  
  .stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
  }

  .stat-item p {
    font-size: 25px;
    color: #ffffff;
  }
  
  .stat-item i {
    color: #f6921e; /* Use a blue checkmark */
    font-size: 4rem;
    /* font-size: 1.2rem; */
  }
  
  /* Mobile View */
  @media (max-width: 768px) {
    .stats-section {
        margin-top: 35px;
        flex-direction: column;
        align-items: start;
        padding: 20px;
    }

    .stat-item p {
        font-size: 20px;
    }

    .stat-item i {
        font-size: 2.5rem;
    }
  }


 /* Hide default Google Translate widget */
/* Style the wrapper container */
#gt_float_wrapper {
    position: absolute !important;
    margin-top: -5px;
    /* margin-left: 1150px; */
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    text-align: center;
    align-items: center;
}


@media screen and (max-width: 768px) {
    #gt_float_wrapper {
        width: auto !important;
        margin-top: -7px !important; /* Align with navbar */
        margin-left: 180px !important; /* Reset left margin */
        z-index: -0 !important;
    }

    .gtranslate_wrapper img {
        margin-top: 2px !important;
        width: 17px !important;
    }

    .gt-selected{
        margin-top: 0px !important;
    }
    
    .gtranslate_wrapper span{
        margin-top: 2px !important;
        font-size: 13px !important;
    }

    .gt_options.gt-open a{
        /* width: 500%; */
        font-size: 13px !important;
    }

    .gt_options.gt-open img{
        width: 15px !important;
        border-radius: 50% !important;
    }
}

@media(min-width: 960px) {
    #gt_float_wrapper {
        margin-top: 0px !important;
        margin-left: 520px !important;
    }
}

/* Customize the flags (if they are used) */
.gtranslate_wrapper img {
    border-radius: 50%;
    transition: transform 0.2s ease; /* Add hover effect */
}

/* Hover effect for flags */
.gtranslate_wrapper img:hover {
    transform: scale(1.1); /* Slight zoom effect */
}

/* Adjust dropdown menu (if applicable) */
.gtranslate_wrapper select {
    font-family: "Raleway", sans-serif; /* Custom font */
    font-size: 14px;
    color: #333;
    padding: 5px;
    border-radius: 3px;
    border: 1px solid #ccc;
}


/* ----------popup alert--------- */

#custom-alert {
    display: none;
    position: fixed;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #0759a7;
    color: #f6921e;
    border: 1px solid #f5c6cb;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    font-family: "Raleway", sans-serif;
}








