/* Full-Screen Loader */
#loader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Spinner (Using Your Code) */
.loader {
    width: 84px;
    height: 84px;
    position: relative;
    overflow: hidden;
}

.loader:before, .loader:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #6ca2a5;
    transform: translate(-50%, 100%) scale(0);
    animation: push 2s infinite ease-in;
}

.loader:after {
    animation-delay: 1s;
}

@keyframes push {
    0% {
        transform: translate(-50%, 100%) scale(1);
    }
    15%, 25% {
        transform: translate(-50%, 50%) scale(1);
    }
    50%, 75% {
        transform: translate(-50%, -30%) scale(0.5);
    }
    80%, 100% {
        transform: translate(-50%, -50%) scale(0);
    }
}

/* Main Content (Initially Hidden) */
#content {
    display: none;
    text-align: center;
    padding: 50px;
}

/* Reset Margin and Padding for All Elements */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

/* Body and Global Styles */
body {
    font-size: 16px;
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: #f4f4f4; /* Unified background */
}

/* Navbar Styles */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 50px;
    background-color: white;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
    position: relative;
    margin-bottom: 0;
    padding-bottom: 10px;
}

.navbar-left {
    display: flex;
    align-items: center;

}

.logo {
    height: 70px;
    width: auto;
     
    margin: auto;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.info {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #333;
}

.info i {
    color: #FF6B6B;
    margin-right: 7px;
    font-size: 16px;
}

.register-btn {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    padding: 8px 12px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: background 0.3s ease;
}

.register-btn:hover {
    background-color:#FF6B6B;
}

.nav-links {
    display: flex;
    justify-content: center;
    background-color: white;
    padding: 12px;
    margin-bottom: 0;
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}

.nav-links a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    margin: 0 15px;
    font-size: 15px;
    transition: color 0.3s ease-in-out;
}

.nav-links a:hover, .nav-links a.active {
    color: #FF6B6B;
}

/* Mobile Styles */
.menu-toggle {
    display: none;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color:white;
    position: absolute;
    right: 20px;
    top: 15px;
    border: none;
    border-radius: 4px;
    width:35px;
    margin-top: 10px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    box-shadow: 2px 0px 5px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    padding: 20px;
    transition: left 0.3s ease-in-out;

}

.mobile-menu a {
    text-decoration: none;
    color: black;
    font-weight: 500;
    font-size: 16px;
    padding: 10px 0;
}

.mobile-menu a:hover, .mobile-menu a.active {
    color: #FF6B6B;
}

/* Close Button (X) */
.close-menu {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    border: none;
    font-size: 16px;
    padding: 6px 10px;
    border-radius: 3px;
    cursor: pointer;
    position: absolute;
    top: 15px;
    right: 15px;
}

.mobile-register-btn {
    background: linear-gradient(45deg, #FF6B6B, #556BFF);
    color: white;
    padding: 8px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    margin-top: 20px;
    text-decoration: none;
    display: inline-block;
    width: 120px;
}


.mobile-register-btn:hover {
    background-color:#FF6B6B;
}

/* Responsive Design for Navbar */
@media (max-width: 768px) {
    .nav-links, .register-btn {
        display: none;
    }
    .navbar-right .info {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
}

@media (min-width:769px) {
    .mobile-menu{
        display: none;
    }
}








 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b2b50;
    color: white;
    font-size: 16px;
    padding: 20px;
}

/* Main Container */
.container {
    max-width: 1200px;
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column; /* Stack content */
    gap: 20px;
}

/* Left Section - Content */
.left-section {
    width: 100%;
    text-align: center;
}

.left-section h1 {
    font-size: 26px;
    font-weight: bold;
}

.badge {
    background: gold;
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin: 10px 0;
}

.rating {
    font-size: 18px;
    color: gold;
}

.left-section p {
    font-size: 16px;
    line-height: 1.6;
    margin-top: 10px;
}

.buttons {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.buttons a {
    display: block;
    width: 80%;
    padding: 12px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: white;
    border-radius: 5px;
    transition: 0.3s;
}

.btn-blue {
    background: #1e90ff;
}

.btn-green {
    background: #32cd32;
}

.btn-blue:hover, .btn-green:hover {
    opacity: 0.8;
}

/* Right Section - Enrollment Form */
.right-section {
    width: 100%;
    background: white;
    color: black;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.right-section h2 {
    margin-bottom: 10px;
}

.right-section input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.right-section button {
    background: linear-gradient(90deg, #00c6ff, #00ff6c);
    color: white;
    border: none;
    padding: 12px;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.right-section button:hover {
    opacity: 0.8;
}

/* Highlights Section - Student, Pencil, etc. */
.highlights {
    display: flex;
    flex-direction: column; /* Stack images one by one */
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.highlight {
    text-align: center;
    width: 90%;
    background: white;
    color: black;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(255, 255, 255, 0.1);
}

.highlight img {
    width: 60px;
    margin-bottom: 10px;
}

/* Responsive Design */
@media (min-width: 769px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }

    .left-section {
        width: 60%;
        text-align: left;
    }

    .right-section {
        width: 35%;
    }

    .highlights {
        flex-direction: row;
        justify-content: space-around;
    }

    .highlight {
        width: 22%;
    }
}


/*career section*/
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;

}

 





/* 🔹 Main Styling */
.social-section {
    text-align: center;
    margin: 40px 0;
}

.social-section h2 {
    font-size: 32px;
    font-weight: bold;
    color: white; /* Dark navy blue */
    margin-bottom: 10px;
}

.social-section p {
    font-size: 18px;
    color: #bcb3b3;
    text-align: center;
    margin-bottom: 20px;
}

/* 🔹 Social Media Icons */
.social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
}

.social-icons a img {
    width: 50px; /* Icon size */
    height: 50px;
    border-radius: 10px; /* Rounded corners */
    transition: transform 0.3s ease-in-out;
}

.social-icons a img:hover {
    transform: scale(1.1); /* Slight zoom effect */
}
 

/* 🔹 Responsive Design */
/* Large Tablets (max-width: 1024px) */
@media (max-width: 1024px) {
    .social-section h2 {
        font-size: 28px;
    }
    .social-section p {
        font-size: 16px;
    }
    .social-icons a img {
        width: 45px;
        height: 45px;
    }
}

/* Small Tablets & Mobile (max-width: 768px) */
@media (max-width: 768px) {
    .social-section h2 {
        font-size: 24px;
    }
    .social-section p {
        font-size: 14px;
    }
    .social-icons {
        gap: 10px;
    }
    .social-icons a img {
        width: 40px;
        height: 40px;
    }
}

/* Phones (max-width: 480px) */
@media (max-width: 480px) {
    .social-section h2 {
        font-size: 20px;
    }
    .social-section p {
        font-size: 12px;
    }
    .social-icons {
        gap: 8px;
    }
    .social-icons a img {
        width: 35px;
        height: 35px;
    }
}






.custom-footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.custom-footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.custom-footer-section {
    max-width: 300px;
    margin: 10px;
}

.custom-footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-footer-text {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
}

.custom-footer-links {
    list-style: none;
    padding: 0;
}

.custom-footer-links li {
    margin: 5px 0;
}

.custom-footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-footer-links a:hover {
    color: #00aaff;
}

.custom-footer-icons a {
    color: white;
    margin: 0 8px;
    font-size: 20px;
    transition: color 0.3s;
}

.custom-footer-icons a:hover {
    color: #00aaff;
}

.custom-footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
}
 



.custom-footer {
    background-color: #222;
    color: white;
    padding: 30px 0;
    text-align: center;
}

.custom-footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px;
}

.custom-footer-section {
    max-width: 300px;
    margin: 10px;
}

.custom-footer-logo {
    width: 100px;
    height: auto;
    margin-bottom: 10px;
}

.custom-footer-heading {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: bold;
}

.custom-footer-text {
    font-size: 14px;
    color: #ccc;
    margin: 5px 0;
}

.custom-footer-links {
    list-style: none;
    padding: 0;
}

.custom-footer-links li {
    margin: 5px 0;
}

.custom-footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.custom-footer-links a:hover {
    color: #00aaff;
}

.custom-footer-icons a {
    color: white;
    margin: 0 8px;
    font-size: 20px;
    transition: color 0.3s;
}

.custom-footer-icons a:hover {
    color: #00aaff;
}

.custom-footer-bottom {
    margin-top: 20px;
    border-top: 1px solid #555;
    padding-top: 10px;
    font-size: 14px;
    color: #aaa;
}
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #ffffff;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}
.whatsapp-button .fa-whatsapp {
    font-size: 20px;
}
.whatsapp-chat-box {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1000;
}
.whatsapp-chat-header {
    background-color: #25D366;
    color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatsapp-chat-header h4 {
    margin: 0;
    font-size: 16px;
}
.whatsapp-chat-header .close-btn {
    cursor: pointer;
    font-size: 18px;
}
.whatsapp-chat-body {
    padding: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}
.whatsapp-chat-footer {
    text-align: center;
    padding: 10px;
    background-color: #f1f1f1;
}
.whatsapp-chat-footer a {
    background-color: #25D366;
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
}






.bjt-btn-download.outline{
  display:inline-block;
  padding:6px 10px;
  border-radius:8px;
  border:1.5px solid #0b5ed7;
  color:#0b5ed7;
  background:transparent;
  font-weight:700;
  text-decoration:none;
  font-size:0.88rem;
}
.bjt-btn-download.outline:hover{
  background:rgba(11,94,215,0.06);
}
.bjt-btn-download.solid{
  display:inline-block;
  padding:6px 10px;
  border-radius:8px;
  border:none;
  color:#fff;
  background:linear-gradient(90deg,#f59e0b,#0b5cff);
  font-weight:700;
  text-decoration:none;
  font-size:0.88rem;
  box-shadow:0 10px 30px rgba(11,92,255,0.12);
}