/* CSS Variables */

/* Dropdown Menu Styling */
.dropdown-menu {
    background: rgba(0, 0, 0, 0.95);
    border: none;
    border-radius: 10px;
    margin-top: 0.5rem;
    min-width: 320px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    animation: dropdownFadeIn 0.3s ease forwards;
    padding: 10px 0;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
body {
    background-color: #001f33;
}

.dropdown-header {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 20px 15px 20px;
    border-bottom: 1px solid #34495e;
    margin-bottom: 10px;
}

/* Services Dropdown */
.services-dropdown {
    min-width: 400px;
    max-height: 350px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.services-dropdown::-webkit-scrollbar {
    display: none;
}

.services-dropdown .dropdown-item {
    color: #ffffff !important;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 6px;
    margin: 2px 8px;
    font-size: 0.9rem;
}

.services-dropdown .dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1) !important;
    color: #007bff !important;
    transform: translateX(5px);
}

.services-dropdown .dropdown-item i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.services-dropdown .dropdown-item:hover i {
    color: #007bff;
}

/* FAQ Dropdown */
.faq-dropdown {
    min-width: 300px;
    padding: 15px;
    max-height: 300px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.faq-dropdown::-webkit-scrollbar {
    display: none;
}

.option-selector {
    padding: 10px 0;
}

.option-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.option-item:hover {
    background-color: rgba(0, 123, 255, 0.1);
    transform: translateX(5px);
}

.option-item input[type="radio"] {
    margin-right: 12px;
    accent-color: #007bff;
    transform: scale(1.1);
}

.option-item label {
    color: #ffffff;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.option-item:hover label {
    color: #007bff;
}

.select-btn {
    margin-top: 12px;
    border-radius: 6px;
    padding: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
}

/* Industries & Technologies Dropdown */
.industries-dropdown,
.technologies-dropdown {
    min-width: 400px;
    max-height: 400px;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.industries-dropdown::-webkit-scrollbar,
.technologies-dropdown::-webkit-scrollbar {
    display: none;
}

.dropdown-item-text {
    color: #ffffff;
    padding: 10px 20px;
    display: block;
    cursor: default;
    border-radius: 6px;
    margin: 2px 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item-text:hover {
    background-color: rgba(0, 123, 255, 0.1);
    color: #007bff;
    transform: translateX(5px);
}

.dropdown-item-text i {
    color: #ffffff;
    transition: color 0.3s ease;
}

.dropdown-item-text:hover i {
    color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type i {
    color: #007bff;
}

.technologies-dropdown .dropdown-item-text:first-of-type:hover i {
    color: #007bff;
}

/* Default dropdown item styling for backward compatibility */
.dropdown-item {
    color: #ffffff !important;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.1) !important;
    color: #007bff !important;
    transform: translateX(5px);
}
:root {
    --Primary-Blue-Dark-Blue: #001f33;
    --Primary-Blue-Medium-Blue: #003d66;
    --Primary-Blue-Light-Blue: #87ceeb;
    --Accent-Yellow: #ffea00;
    --Text-Dark: #333333;
    --Text-Light: #666666;
    --Background-Light: #f8f9fa;
    --White: #ffffff;
    --Black: #000000;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Header Styles */
.transparent-header {
    background: rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.8rem 0;
    animation: slideDown 0.8s ease-out;
}

.transparent-header:hover {
    background: rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled {
    background: var(--Primary-Blue-Dark-Blue, #001f33) !important;
    backdrop-filter: none;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-brand img {
    filter: brightness(1.2) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    font-size: 0.95rem;
    margin: 0 0.2rem;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    transition: left 0.6s ease;
}

.navbar-nav .nav-link:hover {
    color: #007bff !important;
}

.navbar-nav .nav-link:hover::before {
    left: 100%;
}

/* Dropdown arrow styling */
.dropdown-toggle::after {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown-toggle:hover::after {
    transform: rotate(180deg);
}

/* Right side menu styling */
.right-menu-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.top-nav-links {
    display: flex;
    align-items: center;
    margin-bottom: 0.3rem;
    gap: 0.5rem;
}

.top-nav-links .nav-link {
    font-size: 0.85rem;
    margin: 0;
    padding: 0.2rem 0.5rem;
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.top-nav-links .nav-link:hover {
    color: #007bff !important;
    transform: translateY(-1px);
}

.button-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu {
    background: rgba(0, 0, 0, 0.9);
    border: none;
    border-radius: 8px;
    margin-top: 0.5rem;
}

.dropdown-item {
    color: white !important;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: rgba(0, 123, 255, 0.2) !important;
    color: #007bff !important;
}

.btn-primary {
    background: linear-gradient(45deg, #007bff, #0056b3);
    border: none;
    border-radius: 8px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
    transition: transform 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.btn-outline-light {
    border-radius: 8px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url("/images/services-hero.png"); */
    background-size: 100% 100%;
    margin: 0;
    padding: 0;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 2rem;
    width: 100%;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 0;
    line-height: 1.3;
}

/* Ensure no spacing issues */
.hero-section + * {
    margin-top: 100px !important;
    padding-top: 0 !important;
}

/* Footer Section */
.footer-section {
    background: #001f33;
    padding: 60px 0 30px;
    color: #ffffff;
    position: relative;
}

.footer-brand {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 180px;
    height: 80px;
    border-radius: 8px;
    object-fit: contain;
}

.footer-description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-description.limited-width {
    max-width: 280px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.social-link.facebook {
    background: #3b5998;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.instagram {
    background: linear-gradient(
        45deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
}

.social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.footer-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #ffea00;
    padding-left: 5px;
}

.footer-link.underlined {
    text-decoration: underline;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-icon {
    width: 42px;
    height: 42px;
    background: #001f33;
    color: #87ceeb;
    font-size: 0.9rem;
    flex-shrink: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #2c5f7f;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 0.95rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-value:hover {
    color: #ffea00;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.6rem;
    }

    .navbar-nav .nav-link {
        margin: 0.2rem 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        min-height: 100vh;
        height: 100vh;
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .transparent-header {
        background: rgba(0, 0, 0, 0.95) !important;
        padding: 0.5rem 0;
    }

    /* Footer Mobile */
    .footer-section {
        padding: 40px 0 20px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

    .footer-logo-img {
        width: 150px;
        height: 65px;
    }

    .footer-brand {
        text-align: center;
        margin-bottom: 40px;
    }

    .social-links {
        justify-content: center;
    }

    .footer-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }

    .contact-icon {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    /* Footer Extra Small */
    .footer-section {
        padding: 30px 0 15px;
    }

    .footer-logo-img {
        width: 120px;
        height: 50px;
    }

    .footer-description {
        font-size: 0.85rem;
    }

    .social-link {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .footer-title {
        font-size: 1.1rem;
    }
}

/* platform */

/* Platform Section */
.platform-section {
    padding: 0;
    position: relative;
    overflow: hidden;
    background: transparent;
    margin: 120px 80px;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.platform-section .container-fluid {
    padding: 0 !important;
    margin: 0;
    max-width: 100%;
}

.platform-section .row {
    margin: 0;
    position: relative;
    z-index: 2;
    min-height: 400px;
    align-items: center;
}

.platform-section .col-lg-7,
.platform-section .col-lg-5 {
    padding: 0;
}

.platform-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background: var(--primary-blue-blue-10, #487fff1a);
    z-index: 1;
}

.platform-content {
    padding: 60px;
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.platform-section .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 40px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.platform-section .section-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0;
    color: #ffffff;
    text-align: justify;
}

.platform-section .highlight-text {
    color: #60a5fa;
    font-weight: 600;
}

.platform-image {
    position: relative;
    z-index: 2;
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

.platform-section .platform-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

/* Content Sections Responsive Design */
@media (max-width: 991px) {
    .platform-section::before {
        width: 100%;
    }

    .platform-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .platform-content {
        padding: 60px 40px;
        order: 1;
    }

    .platform-image {
        order: 2;
        margin-top: 0;
    }

    .platform-section .platform-image img {
        height: 250px;
    }

    .platform-section .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .platform-section {
        padding: 0;
        margin: 40px 20px;
    }

    .platform-section .row {
        flex-direction: column;
        min-height: auto;
    }

    .platform-content {
        padding: 50px 30px;
        order: 1;
    }

    .platform-image {
        order: 2;
    }

    .platform-section .platform-image img {
        height: 220px;
    }

    .platform-section .section-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .platform-section {
        padding: 0;
        margin: 20px 10px;
    }

    .platform-content {
        padding: 40px 20px;
    }

    .platform-section .platform-image img {
        height: 200px;
    }

    .platform-section .section-title {
        font-size: 1.6rem;
    }

    .platform-section .section-text {
        font-size: 0.95rem;
    }
}

/* services */

/* Services Content Section */
.services-content-section {
    background: #001f33;
    color: #ffffff;
    position: relative;
}

/* Section Header */
.section-header {
    margin-bottom: 20px;
    margin-top: 30px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.title-divider {
    width: 550px;
    height: 3px;
    background: #ffffff;
    border-radius: 2px;
    margin-bottom: 80px;
}

/* Service Main Description */
.service-main-description {
    margin-bottom: 100px;
    padding: 0 20px;
}

.service-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.4;
}

.service-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: white;
    text-align: justify;
    padding-right: 30px;
}

.service-text p {
    margin-bottom: 25px;
    font-weight: 400;
}

.service-text p:last-child {
    margin-bottom: 0;
}

/* .text-highlight {
  color: #487fff;
  font-weight: 600;
} */
.text-highlight {
    color: #487fff !important; /* Blue color for [[...]] */
    font-weight: bold;
}

/* Text Highlighting for {{...}} (Yellow) and "Online Training Program" */
.text-highlight-yellow {
    color: #ffea00 !important; /* Yellow color for {{...}} and Online Training Program */
    font-weight: bold;
}
.service-image {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 40px;
    height: 100%;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-content-section {
        padding: 200px 0 120px;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .title-divider {
        width: 450px;
    }

    .service-title {
        font-size: 1.6rem;
    }

    .service-text {
        font-size: 1rem;
        padding-right: 20px;
    }

    .service-image {
        padding-left: 30px;
    }
}

@media (max-width: 992px) {
    .services-content-section {
        padding: 150px 0 100px;
    }

    .section-title {
        font-size: 2rem;
    }

    .title-divider {
        width: 350px;
    }

    .service-title {
        font-size: 1.5rem;
    }

    .service-text {
        font-size: 0.95rem;
        padding-right: 15px;
    }

    .service-image {
        padding-left: 20px;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .services-content-section {
        padding: 100px 0 80px;
    }

    .section-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .title-divider {
        width: 250px;
        margin: 0 auto 60px;
    }

    .service-main-description {
        margin-bottom: 60px;
        padding: 0 15px;
    }

    .service-title {
        font-size: 1.4rem;
        text-align: center;
        margin-bottom: 20px;
    }

    .service-text {
        font-size: 0.9rem;
        padding-right: 0;
        text-align: left;
    }

    .service-image {
        padding-left: 0;
        margin-top: 40px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .services-content-section {
        padding: 80px 0 60px;
    }

    .section-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .title-divider {
        width: 200px;
        margin-bottom: 40px;
    }

    .service-main-description {
        margin-bottom: 40px;
        padding: 0 10px;
    }

    .service-title {
        font-size: 1.2rem;
        line-height: 1.3;
    }

    .service-text {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .service-text p {
        margin-bottom: 20px;
    }
}

@media (max-width: 360px) {
    .services-content-section {
        padding: 60px 0 40px;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .title-divider {
        width: 150px;
    }

    .service-title {
        font-size: 1.1rem;
    }

    .service-text {
        font-size: 0.8rem;
    }
}

/* platform support */

/* Platform Support Section */
.platform-support-section {
    padding: 80px 0;
    margin: 120px 0;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.platform-support-content {
    position: relative;
    z-index: 2;
}

.support-text-container {
    position: relative;
    background: var(--primary-blue-blue-10, #487fff1a);
    border-radius: 15px;
    padding: 60px 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 100;
}

.center-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    width: full;
    height: 18px;
    background: #072947;
    z-index: -1;
    margin-left: -50vw;
    margin-right: -50vw;
}

.support-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    text-align: justify;
    margin: 0;
    position: relative;
    z-index: 3;
    font-weight: 400;
}

.support-text .highlight-white {
    color: #ffffff;
    font-weight: 600;
}

.support-text .highlight-blue {
    color: #60a5fa;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 991px) {
    .platform-support-section {
        margin: 80px 20px;
        padding: 60px 0;
    }

    .support-text-container {
        padding: 40px 30px;
    }

    .support-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .platform-support-section {
        margin: 60px 15px;
        padding: 50px 0;
    }

    .support-text-container {
        padding: 30px 20px;
    }

    .support-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

@media (max-width: 576px) {
    .platform-support-section {
        margin: 40px 10px;
        padding: 40px 0;
    }

    .support-text-container {
        padding: 25px 15px;
    }

    .support-text {
        font-size: 0.9rem;
        line-height: 1.5;
    }
}

/* E-Learning Form Section */
.elearning-form-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 120px 0;
}

.elearning-image-container {
    height: auto;
    min-height: 600px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.elearning-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.elearning-form-container {
    background: #072947;
    height: auto;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

.form-content {
    width: 100%;
}

.form-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: left;
}

.form-subtitle {
    color: white;
    font-size: 1rem;
    margin-bottom: 30px;
    text-align: left;
    border-bottom: 2px solid white;
    padding-bottom: 15px;
    display: inline-block;
    width: 100%;
}

.elearning-form .form-group {
    margin-bottom: 20px; /* Consistent spacing between form groups */
}

.elearning-form .form-label {
    color: #ffffff !important;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
    min-height: 24px; /* Consistent label height */
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.elearning-form .form-control,
.elearning-form .form-select {
    background-color: transparent !important;
    background-image: none !important;
    background: none !important;
    border: 2px solid rgba(255, 255, 255, 0.4) !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    font-size: 0.95rem !important;
    transition: all 0.3s ease !important;
    margin-bottom: 8px !important;
    height: 50px !important;
    width: 100% !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
}

.elearning-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
}

.elearning-form .form-control:focus,
.elearning-form .form-select:focus {
    background-color: transparent !important;
    background: none !important;
    border-color: rgba(255, 255, 255, 0.8) !important;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    outline: none !important;
}

.elearning-form .form-select option {
    background: #072947 !important;
    color: white !important;
}

/* Force remove any white backgrounds from inputs */
.elearning-form input[type="text"],
.elearning-form input[type="email"],
.elearning-form input[type="tel"],
.elearning-form select {
    background-color: transparent !important;
    background: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.elearning-form input[type="text"]:focus,
.elearning-form input[type="email"]:focus,
.elearning-form input[type="tel"]:focus,
.elearning-form select:focus {
    background-color: transparent !important;
    background: none !important;
}

/* Phone Input Container */
.phone-input-container {
    position: relative;
    display: flex;
    align-items: center;
}

.country-flag {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    cursor: pointer;
    padding: 5px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.country-flag:hover {
    background: rgba(255, 255, 255, 0.1);
}

.flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
}

.dropdown-arrow {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

.phone-input {
    padding-left: 60px !important;
}

/* Country Dropdown */
.country-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(30, 58, 138, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.country-dropdown.show {
    display: block;
}

.country-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.country-option:last-child {
    border-bottom: none;
}

.country-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.country-option .flag-icon {
    width: 20px;
    height: auto;
    border-radius: 2px;
    flex-shrink: 0;
}

.country-option .country-name {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Interest Options */
.interest-label {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    margin-bottom: 20px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

.interest-options {
    display: flex;
    flex-direction: row;
    gap: 15px;
    flex-wrap: wrap;
}

.interest-options .form-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

.interest-options .form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0;
}

.interest-options .form-check-input:checked {
    background-color: white;
    border-color: white;
}

.interest-options .form-check-input:checked::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1e3a8a;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.interest-options .form-check-label {
    color: #ffffff !important;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Submit Button */
.submit-btn {
    background: white;
    color: #1e3a8a;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: auto;
    min-width: 120px;
}

.submit-btn:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* E-Learning Form Responsive Design */
@media (max-width: 991px) {
    .elearning-form-section {
        margin: 80px 0;
        min-height: auto;
    }

    .elearning-image-container,
    .elearning-form-container {
        height: auto;
        min-height: 500px;
    }

    .elearning-form-container {
        padding: 50px 30px;
    }

    .form-title {
        font-size: 2.2rem;
    }

    .form-content {
        max-width: 100%;
    }

    /* Change interest options to column on medium screens */
    .interest-options {
        flex-direction: column;
        gap: 12px;
    }
}

@media (max-width: 768px) {
    .elearning-form-section {
        margin: 60px 0;
    }

    .elearning-image-container {
        min-height: 300px;
        order: 2;
    }

    .elearning-form-container {
        min-height: auto;
        padding: 40px 20px;
        order: 1;
    }

    .form-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .form-subtitle {
        text-align: center;
    }

    .elearning-form .row .col-md-4,
    .elearning-form .row .col-md-6 {
        margin-bottom: 20px;
    }

    .interest-options {
        flex-direction: column;
        gap: 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
    }
}

@media (max-width: 576px) {
    .elearning-form-section {
        margin: 40px 0;
    }

    .elearning-form-container {
        padding: 30px 15px;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .form-subtitle {
        font-size: 0.9rem;
    }

    .elearning-form .form-control,
    .elearning-form .form-select {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .phone-input {
        padding-left: 55px !important;
    }

    .country-flag {
        left: 12px;
    }

    .flag-icon {
        width: 16px;
    }

    .country-dropdown {
        max-height: 150px;
    }

    .country-option {
        padding: 10px 12px;
    }

    .country-option .country-name {
        font-size: 0.85rem;
    }

    .interest-options .form-check-label {
        font-size: 0.9rem;
    }

    .interest-options .form-check-input {
        width: 18px;
        height: 18px;
    }
}

/* Form Validation States */
.elearning-form .form-control.is-invalid,
.elearning-form .form-select.is-invalid {
    border-color: #ff6b6b !important;
    background: rgba(255, 107, 107, 0.15) !important;
    color: white !important;
}

.elearning-form .form-control.is-invalid:focus,
.elearning-form .form-select.is-invalid:focus {
    border-color: #ff6b6b !important;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 107, 0.25) !important;
}

/* Invalid Feedback Messages */
.elearning-form .invalid-feedback {
    display: block !important;
    color: #ffcccc !important;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Alert Messages */
.success-message,
.error-message {
    margin-bottom: 20px;
}

.success-message .alert {
    background: rgba(40, 167, 69, 0.9);
    border: 1px solid rgba(40, 167, 69, 0.5);
    color: white;
    border-radius: 8px;
}

.error-message .alert {
    background: rgba(220, 53, 69, 0.9);
    border: 1px solid rgba(220, 53, 69, 0.5);
    color: white;
    border-radius: 8px;
}

.alert i {
    font-size: 1.1rem;
}
/* Remove bullets from all headings inside Service-2 page */
h1,
h2,
h3,
h4,
h5,
h6 {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block !important;
}
