/* 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;
}
body {
    background: #001f33;
}

@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.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("/public/assestlanding/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;
}

/* Services Content Section */
.services-content-section {
    background: #001f33;
    padding: 80px 0 100px;
    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: 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: 0;
    font-weight: 400;
}

.text-highlight {
    color: #487fff;
    font-weight: 600;
}
.text-highlight-yellow {
    color: #ffea00 !important; /* Yellow color for {{...}} */
    font-weight: bold;
}
.service-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 40px;
}

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

/* Program Details Section */
.program-details-section {
    text-align: center;
    margin-bottom: 100px;
    padding: 80px 0;
    background: #487fff1a;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    width: 100% !important;
}

.program-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffea00;
    margin-bottom: 30px;
    line-height: 1.3;
}

.program-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.read-more-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.read-more-link:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.read-more-link i {
    transition: transform 0.3s ease;
}

.read-more-link:hover i {
    transform: translateX(5px);
}

/* How It Works Section */
.how-it-works-section {
    margin-bottom: 100px;
    padding-top: 40px;
}

.section-subtitle {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffea00;
    text-align: center;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.steps-row {
    margin-bottom: 40px;
}

.steps-row:last-child {
    margin-bottom: 0;
}

/* Step Cards */
.step-card {
    background: #487fff1a;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: left;
    height: 100%;
    min-height: 200px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.step-card:hover {
    transform: translateY(-5px);
    background: #487fff2a;
    border-color: rgba(72, 127, 255, 0.3);
    box-shadow: 0 15px 35px rgba(72, 127, 255, 0.15);
}

.step-number {
    width: 40px;
    height: 40px;
    background: #487fff1a;
    color: #487fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    margin-top: 0;
    line-height: 1.3;
    flex-shrink: 0;
}

.step-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0;
}

/* Closing Statement */
.closing-statement {
    text-align: center;
    padding: 60px 40px;
    background: #487fff1a;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.closing-statement p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* 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;
    }

    /* Services Content Responsive */
    .section-title {
        font-size: 3rem;
    }

    .title-divider {
        width: 600px;
    }

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

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

    .section-subtitle {
        font-size: 2.5rem;
    }
}

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

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

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

    /* Services Content Medium Screens */
    .services-content-section {
        padding: 80px 0 100px;
    }

    .hero-section + .services-content-section {
        margin-top: 60px;
    }

    .section-header {
        margin-bottom: 60px;
    }

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

    .title-divider {
        width: 400px;
    }

    .service-main-description {
        margin-bottom: 80px;
    }

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

    .service-text {
        padding-right: 0;
    }

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

    .program-details-section {
        margin-bottom: 80px;
        padding: 60px 20px;
    }

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

    .how-it-works-section {
        margin-bottom: 80px;
        padding-top: 30px;
    }

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

    .step-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .closing-statement {
        padding: 40px 20px;
    }
}

@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;
    }

    /* Services Content Mobile */
    .services-content-section {
        padding: 60px 0 80px;
    }

    .hero-section + .services-content-section {
        margin-top: 40px;
    }

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

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

    .title-divider {
        width: 250px;
    }

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

    .service-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

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

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

    .program-details-section {
        margin-bottom: 40px;
        padding: 30px 15px;
    }

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

    .program-description {
        font-size: 1rem;
    }

    .how-it-works-section {
        margin-bottom: 40px;
    }

    .section-subtitle {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }

    .step-card {
        padding: 25px 15px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .closing-statement {
        padding: 30px 15px;
    }

    .closing-statement p {
        font-size: 1.1rem;
    }
}

@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;
    }

    /* Services Content Extra Small */
    .section-title {
        font-size: 1.8rem;
    }

    .title-divider {
        width: 200px;
    }

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

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

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

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

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

    .closing-statement p {
        font-size: 1rem;
    }
}
/* Remove bullets from all headings on Service-1 page */
h1,
h2,
h3,
h4,
h5,
h6 {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
    display: block !important;
}
