


/* ---------------------  Samir added on 20/01/2026  ------------------------ */




:root {
    --primary: #0b2161 !important;
    --accent: #FF9800 !important;
    --text: #333 !important;
    --light: #f4f7fa !important;
    --white: #ffffff !important;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Roboto', sans-serif !important; color: var(--text); background: var(--white); overflow-x: hidden;  display: flex; flex-direction: column;
    min-height: 100vh; margin: 0;}
.container { max-width: 1250px; margin: 0 auto; padding: 0 30px; }





/* --- Professional Scroll to Top Button --- */
.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: #193a99;
    color: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	 pointer-events: none;
	  z-index: 10000;
}


.scroll-top-btn.show {
   opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
	pointer-events: auto !important;
}

.scroll-top-btn:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.4);
}

.scroll-top-btn i {
    transition: transform 0.3s ease;
}

.scroll-top-btn:hover i {
    transform: scale(1.2);
}


@media (max-width: 768px) {
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
		 pointer-events: none;
    z-index: 10000; 
    }
}



/* --- Modern Header --- */
.main-header {
    height: 90px;
    display: flex;
    align-items: center;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.nav-container { display: flex; justify-content: space-between; align-items: center; width: 100%; }

.logo-box { display: flex; align-items: center; gap: 12px; }
.logo-box img { height: 55px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; padding-top: 10px; }
.logo-text .top { font-weight: 900; font-size: 1.5rem; color: var(--primary); letter-spacing: 1px; }
.logo-text .bottom { font-weight: 300; font-size: 1.1rem; color: var(--accent); }

.desktop-nav .nav-list { display: flex; list-style: none; align-items: center; gap: 30px; }
.nav-link { 
    text-decoration: none; color: var(--primary); font-weight: 500; font-size: 0.95rem; 
    transition: 0.3s; position: relative;
}
.nav-link::after {
    content: ''; position: absolute; bottom: -3px; left: 0; width: 0; 
    height: 2px; background: var(--accent); transition: 0.3s;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }

/* Professional Dropdown */
.dropdown { position: relative; }

/*
.dropdown-menu {
    position: absolute; top: 120%; left: 0; background: var(--white);
    min-width: 180px; list-style: none; padding: 10px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1); border-radius: 8px;
    opacity: 0; visibility: hidden; transition: 0.3s;
}
*/

/* --- Desktop Dropdown Logic --- */
.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 230px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    list-style: none;
    padding: 10px 0;
    z-index: 1000;
    border-radius: 8px;
}


.dropdown, .dropdown-submenu {
    position: relative;
}


.dropdown:hover > .dropdown-menu {
    display: block;top: 24px;
}


.dropdown-submenu .nested {
    top: 0;
    left: 100%;
    margin-top: -10px; 
    border-left: 1px solid #eee;
}


.dropdown-submenu:hover > .nested {
    display: block;
}


.mobile-links .sub .sub {
    padding-left: 20px; 
    background: rgba(0,0,0,0.02);
}



.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.dropdown-menu li a:hover {
    background-color: #f8f9fa;
    color: #0b2161; 
}



.submenu-arrow {
    font-size: 10px;
    margin-left: 10px;
}




.dropdown-menu a { display: block; padding: 10px 20px; text-decoration: none; color: var(--text); font-size: 0.9rem; border-radius: 5px;
    margin: 5px;}
.dropdown-menu a:hover { background: #0b2161;  color: #fff;}

.login-pill {
    background: var(--primary); color: #fff !important; padding: 10px 28px;
    border-radius: 50px; text-decoration: none; transition: 0.3s;
}
.login-pill:hover { transform: scale(1.05); box-shadow: 0 5px 15px rgba(11,33,97,0.3); }

/* --- Sidebar Drawer (Mobile) --- */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 28px; height: 3px; background: var(--primary); border-radius: 2px; transition: 0.3s; }

.mobile-drawer {
    position: fixed; top: 0; right: -300px; width: 300px; height: 100%;
     z-index: 2000; transition: 0.4s cubic-bezier(0.7, 0, 0.3, 1);
    box-shadow: -10px 0 50px rgba(0,0,0,0.1); padding: 30px;
	background: rgba(255,255,255,0.96);
}
.mobile-drawer.open { right: 0; }
.drawer-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.close-btn { font-size: 2.5rem; cursor: pointer; color: var(--primary); }
.mobile-links { list-style: none; }
.mobile-links li { margin-bottom: 20px; }
.mobile-links a { text-decoration: none; font-size: 1.3rem; color: var(--primary); font-weight: 700; display: block; }


/* --- Hero Section  --- */
.hero-section { min-height: calc(100vh - 90px); position: relative; display: flex; align-items: center; padding: 50px 0; }
.hero-bg-image {
    position: absolute; right: 0; top: 0; width: 45%; height: 100%;
    background-size: cover; background-position: center;
    border-radius: 40px 0 0 40px; z-index: 1;
}

.split-grid { display: grid; grid-template-columns: 1.2fr 1.3fr; align-items: center; position: relative; z-index: 5; }

.hero-text-area .tagline { color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 0.85rem; }
.main-title { font-size: 4.5rem; line-height: 1; font-weight: 900; color: var(--primary); margin: 15px 0; }
.main-title .accent { color: var(--accent); }
.sub-text { font-size: 1.2rem; color: #666; max-width: 480px; margin-bottom: 30px; font-weight: 300; }
.decorative-line { width: 80px; height: 6px; background: var(--accent); border-radius: 10px; }

/* Premium Form Card */
.form-container { display: flex; justify-content: flex-end; }
.form-card {
    background: var(--white); width: 100%; max-width: 420px;
    padding: 45px; border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.1);
}
.form-card h3 { font-size: 1.6rem; color: var(--primary); margin-bottom: 5px; }
.form-card p { color: #888; margin-bottom: 35px; font-size: 0.9rem; }


.input-group { position: relative; margin-bottom: 35px; }
.input-group input {
    font-size: 1rem; padding: 10px 5px; display: block; width: 100%;
    border: none; border-bottom: 1px solid #ddd; outline: none; background: transparent;
}
.input-group label {
    color: #999; font-size: 1rem; font-weight: normal; position: absolute;
    pointer-events: none; left: 5px; top: 10px; transition: 0.3s ease all;
}
.input-group input:focus ~ label, .input-group input:valid ~ label {
    top: -15px; font-size: 0.8rem; color: var(--accent); font-weight: bold;
}
.bar { position: relative; display: block; width: 100%; }
.bar:before {
    content: ''; height: 2px; width: 0; bottom: 0; position: absolute;
    background: var(--accent); transition: 0.3s ease all; left: 0;
}
.input-group input:focus ~ .bar:before { width: 100%; }

.submit-btn {
    width: 100%; background: linear-gradient(135deg, #FF9800, #F57C00); color: #fff;
    border: none; padding: 18px; border-radius: 12px; font-weight: 700;
    letter-spacing: 1px; cursor: pointer; transition: 0.4s;
    box-shadow: 0 10px 25px rgba(255,152,0,0.3);
}
.submit-btn:hover { transform: translateY(-3px); box-shadow: 0 15px 35px rgba(255,152,0,0.4); }

/* --- Footer --- */
.site-footer { /*background: #f9fbff;*/ background: #0b2161; color:#fff; padding: 30px 0; text-align: center; border-top: 1px solid #eee; }

/* --- Responsive Layout --- */
@media (max-width: 1100px) {
    .main-title { font-size: 3.5rem; }
    .hero-bg-image { width: 40%; }
}

@media (max-width: 992px) {
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    
    .hero-section { padding: 40px 0; }
    .hero-bg-image { display: none; }
    .split-grid { grid-template-columns: 1fr; gap: 50px; text-align: center; }
    .hero-text-area { display: flex; flex-direction: column; align-items: center; }
    .form-container { justify-content: center; }
    .main-title { font-size: 3rem; }
}

@media (max-width: 500px) {
    .main-title { font-size: 2.5rem; }
    .form-card { padding: 30px 20px; }
}







/* --- Mentors Page Specific Styles --- */

/* Orange Sub-header Bar */
.page-title-bar {
    background-color: var(--accent);
    padding: 12px 0;
}

.page-title-bar h1 {
    color: var(--white);
    font-size: 1.4rem;
    font-weight: 700;
}

/* Mentor Section Styling */
.mentor-section {
    padding: 60px 0;
    background-color: #fcfcfc;
    min-height: 70vh;
}

.mentor-card {
    background-color: #eef2f6; 
    max-width: 900px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 50px 60px;
    text-align: center;
    border: 1px solid #e0e6ed;
}

.mentor-img-wrapper {
    width: 160px;
    height: 160px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
}

.mentor-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-name {
    color: var(--text);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.mentor-designation {
    color: #444;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.mentor-bio {
    text-align: left;
    color: #555;
    line-height: 1.7;
    font-size: 0.95rem;
}

.mentor-bio p {
    margin-bottom: 15px;
}

/* Responsive Mentors */
@media (max-width: 768px) {
    .mentor-card {
        padding: 40px 25px;
        border-radius: 20px;
    }
    
    .mentor-name {
        font-size: 1.5rem;
    }
    
    .mentor-designation {
        font-size: 0.95rem;
    }
}





/* --- Mentor Hero --- */
.mentor-hero {
    background: #fff;
    padding: 50px 0 40px;
    text-align: center;
}
.mentor-hero .subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}
.mentor-hero h1 {
    font-size: 3.1rem;
    font-weight: 900;
    color: var(--primary);
    margin-top: 10px;
}
.mentor-hero .accent { color: var(--accent); }
.orange-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 20px auto 0;
    border-radius: 10px;
}

/* --- Profile Showcase Grid --- */
.mentor-detail-section {
    padding-bottom: 20px;
    background: #fff;
}

.profile-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 80px;
    align-items: start;
}

/* Sidebar Styling */
.image-stack {
    position: relative;
    padding-bottom: 20px;
    padding-right: 20px;
}
.image-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: 20px;
    z-index: 1;
}
.main-profile-img {
    position: relative;
    width: 100%;
    border-radius: 20px;
    display: block;
    z-index: 2;
    transform: translate(-15px, -15px);
    box-shadow: 10px 10px 30px rgba(0,0,0,0.1);
}

.profile-meta {
    margin-top: 30px;
    text-align: center;
}
.profile-meta h3 { font-size: 1.8rem; color: var(--primary); }
.profile-meta p { color: var(--text-muted); font-size: 1rem; margin-top: 5px; }
.company-tag {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-top: 15px;
}

/* Content Area Styling */
.bio-header h2 {
    font-size: 2.2rem;
    color: var(--primary);
    line-height: 1.2;
}
.bio-header .summary {
    font-size: 1.15rem;
    color: var(--accent);
    margin: 15px 0 30px;
    font-weight: 500;
}

.bio-body p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Experience Box */
.experience-grid {
    display: flex;
    gap: 20px;
    margin: 40px 0;
    padding: 30px;
    background: #eee;
    border-radius: 20px;
    border-left: 5px solid var(--accent);
}
.exp-item {
    flex: 1;
    text-align: center;
}
.exp-item span {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
}
.exp-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin: 0;
}

/* --- Responsive Layout --- */
@media (max-width: 992px) {
    .profile-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .profile-sidebar {
        max-width: 400px;
        margin: 0 auto;
    }
    .bio-header h2 { font-size: 1.8rem; }
    .experience-grid { justify-content: center; }
}







/* --- Orange Info Banner --- */
.orange-info-banner {
    background-color: var(--accent);
    padding: 15px 0;
    text-align: center;
}
.orange-info-banner p {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.5;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- Career Section --- */


.career-hero {
    background: #fff;
    padding: 40px 0 40px;
    text-align: center;
}

.career-section {
    padding: 80px 0;
}


.orange-divider-left {
    width: 60px;
    height: 4px;
    background: var(--accent);
    margin: 15px 0 30px;
    border-radius: 10px;
}

.bio-header .subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}


.job-listing-area {
    margin-top: 40px;
	justify-content: center;
	display:flex;
}

.job-card {
    background-color: var(--bg-card);
    border-radius: 20px;
    padding: 40px;
    max-width: 400px;
    text-align: center;
    border: 1px solid #e0e6ed;
    transition: 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.job-icon {
    margin-bottom: 20px;
}

.job-card h4 {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.job-card p {
    color: #555;
    margin-bottom: 25px;
}


.apply-btn {
    display: inline-block;
    background-color: #28a745; 
    color: #fff;
    text-decoration: none;
    padding: 12px 35px;
    border-radius: 8px;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: 0.3s;
}

.apply-btn:hover {
    background-color: #218838;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.3);
}


@media (max-width: 992px) {
    .orange-info-banner p { padding: 0 20px; }
    .job-card { margin: 0 auto; }
}



	
/* Certificare Section */
.hero-certificate {
    position: relative;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 40px 20px;
}


.hero-content-certificate {
    max-width: 100%; 
    width: 1200px;
    margin: 0 auto; 
    padding: 1rem;
    background: rgba(255, 255, 255, 0.15); 
    backdrop-filter: blur(10px); 
    border-radius: 1.5rem;
    /*box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);*/
}


.certificate-row {
    /*display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center; 
    width: 100%;*/
	
	
	 display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    width: 100%;
	
}


.cert-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}



.pdf-embed {
    
    width: 100%;
    height: calc(100% - 10px);
    pointer-events: auto; 
    border: none;
   
}




.click-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 10px);
    z-index: 5;
    background: rgba(0, 0, 0, 0); 
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}


.click-mask:hover {
    background: rgba(0, 0, 0, 0.1);
}

.view-btn {
    background: var(--accent);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.3s;
    pointer-events: none; 
}

.click-mask:hover .view-btn {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 768px) {
    .view-btn {
    background: var(--accent);
    color: white;
    
    border-radius: 50px;
    font-weight: bold;
    
    
    
    transition: 0.3s;
    pointer-events: none; 
	
	 padding: 8px 15px !important;
        font-size: 0.8rem !important;
        opacity: 1 !important; 
        transform: translateY(0) !important;
	
	
	
}


.click-mask {
        background: rgba(0, 0, 0, 0.2); 
    }

.click-mask:hover .view-btn {
    opacity: 1;
    transform: translateY(0);
}
}








.cert-title {text-align:center;padding: 5px;
    font-weight: bold; color:var(--primary);}


@media (max-width: 992px) {
    .cert-card {
        min-width: 100%;
    }
    .hero-content {
        padding: 1.5rem;
    }
}	





.nav-arrow {
    font-size: 0.75rem;
    margin-left: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
    vertical-align: middle;
}


.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}


.field-icon {
    position: absolute;
    left: 2px;
    top: 12px;
    color: #aaa;
    font-size: 0.9rem;
    transition: 0.3s ease;
    z-index: 1;
}


.input-group input {
    padding-left: 30px !important; 
}


.input-group label {
    left: 30px !important;
}

.input-group:focus-within .field-icon {
    color: #878585 !important;
}


.input-group input:focus ~ .bar:before {
    background: var(--primary) !important;
}


.input-group input:focus ~ label, 
.input-group input:valid ~ label {
    color: var(--accent) !important;
    top: -15px;
    font-size: 0.8rem;
    font-weight: bold;
    left: 5px !important; 
}


.field-icon {
    position: absolute;
    left: 2px;
    top: 12px;
    color: #aaa;
    font-size: 0.9rem;
    transition: 0.3s ease;
    z-index: 1;
}

.input-group input {
    padding-left: 30px !important; 
}

.input-group label {
    left: 30px !important;
    transition: 0.3s ease all;
}


.nav-arrow {
    font-size: 0.75rem;
    margin-left: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
    vertical-align: middle;
}

.dropdown:hover .nav-arrow {
    transform: rotate(180deg);
    color: var(--accent);
}


.txt_h{
font-size: 3.3rem;
}

.profile-main-content {text-align:justify;}

@media (max-width: 768px) {
	
	.txt_h{font-size: 2.5rem;}
	
	.profile-main-content {text-align:justify;}
	
}






.mob-login {
    background: var(--primary) !important;
    color: var(--white) !important;
    text-align: center;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    margin-top: 20px;
    display: block; 
    width: 100%;
    font-weight: 500;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(11, 33, 97, 0.2);
}

.mob-login:hover {
    transform: translateY(-2px);
    background: var(--accent) !important; 
}


.mobile-links li:last-child {
    margin-bottom: 0;
    padding-top: 0px;
}



.mobile-drawer {
   
    display: flex;
    flex-direction: column;
    overflow-y: auto; 
    max-height: 100vh;
}


@media (max-height: 500px) {
    .mobile-drawer {
        padding: 20px 30px; 
    }

    .drawer-header {
        margin-bottom: 15px; 
    }

    .mobile-links li {
        margin-bottom: 15px; 
    }

    .mobile-links a {
        font-size: 1.1rem;
    }

    .mob-login {
        margin-top: 10px;
        padding: 10px 25px !important;
    }
}


.mobile-drawer::-webkit-scrollbar {
    width: 4px;
}

.mobile-drawer::-webkit-scrollbar-thumb {
    background: #d1d1d1;
    border-radius: 10px;
}



#nodal-details {
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 30px;
    padding: 60px 40px;
    margin-top: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}


.info-badge-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.2rem;
}

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

.details-header { margin-bottom: 30px; text-align: center; }
.details-header i { font-size: 2rem; color: var(--accent); margin-bottom: 10px; }
.details-header h3 {
    font-size: 2.2rem;
    color: var(--primary);
    text-align: center;
    font-weight: 800;
}

.intro-text {
    text-align: center;
    max-width: 800px;
    margin: 20px auto 40px;
    color: #555;
    line-height: 1.6;
}


.spec-terms-column h4 {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.spec-terms-column h4 i {
    transform: rotate(-45deg); /* Matches the gavel angle in screenshot */
}


.spec-card h4, .spec-terms-column h4 {
    color: var(--primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 700;
}


/* The Grid Logic for Alignment */
.terms-grid-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.term-row {
    display: grid;
    /* Col 1: Arrow | Col 2: Label | Col 3: Colon | Col 4: Description */
    grid-template-columns: 25px 165px 20px 1fr;
    align-items: start;
    line-height: 1.5;
}

.t-arrow {
    color: var(--accent);
    font-weight: bold;
    font-size: 1.1rem;
}

.t-label {
    color: var(--primary);
    font-weight: 700;
    font-size: 0.95rem;
}

.t-colon {
    color: var(--primary);
    font-weight: 700;
    text-align: center;
}

.t-desc {
    color: #555;
    font-size: 0.95rem;
    font-weight: 400;
}

/* --- Responsive Adjustments --- */

/* Tablet View (Adjust column width if screen is medium) */
@media (max-width: 1200px) {
    .term-row {
        grid-template-columns: 25px 140px 15px 1fr;
    }
}

/* Mobile View (Stacking if very narrow) */
@media (max-width: 600px) {
    .term-row {
        /* On small phones, precise alignment is hard, so we stack label and desc */
        display: block;
        margin-bottom: 20px;
    }
    .t-arrow {
        display: inline-block;
        margin-right: 8px;
    }
    .t-label {
        display: inline-block;
    }
    .t-colon {
        display: none; /* Hide colon on mobile for cleaner look */
    }
    .t-desc {
        display: block;
        padding-left: 33px; /* Align description under the text */
        margin-top: 5px;
    }
}
	
	



/* Card Style for Role and Benefits */
.spec-card {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-top: 5px solid var(--primary);
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}


.spec-card p {
    color: #444;
    line-height: 1.7;
    font-size: 0.95rem;
}


/* Terms List Style */
.spec-terms-column {
     padding-left: 10px;
}


/* --- The 3-Column Grid Layout --- */
.job-spec-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr; /* 3 Columns */
    gap: 30px;
}
 


.short-line { width: 50px; height: 4px; background: var(--accent); margin: 15px auto; border-radius: 10px; }

.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin: 30px 0; }
.info-box { background: #f8fafc; padding: 25px; border-radius: 15px; border-top: 4px solid var(--primary); }
.info-box h4 { margin-bottom: 10px; color: var(--primary); display: flex; align-items: center; gap: 10px; }

.terms-section h4 { color: var(--primary); margin-bottom: 20px; }
.styled-list {
    list-style: none;
    padding: 0;
}
.styled-list li {
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #444;
    display: flex;
    gap: 10px;
    line-height: 1.4;
}
.styled-list li::before {
    content: "➔";
    color: var(--accent);
    font-weight: bold;
}

.styled-list li span {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

/* --- Bottom CTA Section --- */
.cta-area {
    text-align: center;
    margin-top: 50px;
    padding-top: 40px;
}
.cta-area p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
}

.final-apply-btn {
       display: inline-block;
    background: linear-gradient(135deg, #FF9800, #F57C00);
    color: #fff;
    padding: 18px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    transition: 0.3s;
}
.final-apply-btn:hover {  transform: scale(1.05);
box-shadow: 0 15px 35px rgba(255, 152, 0, 0.5);}

@media (max-width: 768px) {
    .info-grid { grid-template-columns: 1fr; }
    #nodal-details { padding: 30px 20px; }
}




input[type="date"] {
    min-height: 45px;
}


.file-group {
    border: 1px dashed #ddd;
    padding: 20px !important;
    border-radius: 12px;
    margin-top: 10px;
    background: #fafafa;
}


button[type="reset"]:hover {
    background: #777 !important;
    transform: translateY(-2px);
}


@media (max-width: 600px) {
    .form-card form > div[style*="grid"] {
        grid-template-columns: 1fr !important;
    }
}



/* Modal Background */
.modal {
    display: none; 
    position: fixed;
    z-index: 10001; 
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

/* Modal Content Container */
.modal-content {
   position: relative;
    margin: 30px auto; 
    width: 95%;   /* Increased width for better viewing */
    height: 90%;  /* Increased height */
}

#modalFrame {
    width: 100%;
    height: 100%;
    background: white;
    border: none;
    border-radius: 8px;
}

.close-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 40px;
    cursor: pointer;
}


/* The Cross Icon */
.close-pdf {
    position: absolute;
    top: 15px;
    right: 25px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    z-index: 10002;
    transition: transform 0.2s ease, color 0.2s ease;
}

.close-pdf:hover {
    color: #F57C00; 
    transform: scale(1.1);
}





.cert-card {
    cursor: pointer;
    transition: transform 0.3s ease;
}
.cert-card:hover {
    transform: scale(1.02);
}




.nav-list li {
    position: relative; 
}

/* --- Mobile Nested Menu Styling --- */

.mobile-links .sub { 
    display: none; 
    list-style: none; 
    padding-left: 20px; 
    margin-top: 10px; 
}


.mobile-links li.open > .sub {
    display: block;
}

/* Icon Setup */
.toggle-icon {
    float: right;
    font-size: 14px;
    margin-top: 5px;
}


.toggle-icon::before {
    content: "\f067";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


.mobile-links li.open > a .toggle-icon::before {
    content: "\f068"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}


.mobile-links .sub li a {
    font-size: 1.1rem;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.mobile-links .sub li:last-child a {
    border-bottom: none;
}



.mobile-links a.active {
    color: var(--accent) !important;
   
}


.mobile-links li.has-active-child > .sub {
    display: block;
}
.mobile-links li.has-active-child > a .toggle-icon::before {
    content: "\f068"; 
}



.dropdown-menu li a.active {
    color: var(--accent) !important;
    font-weight: 600;
}



.nav-list li.dropdown > a.active::after {
    width: 100%;
}


main.certificate-hero {
    flex: 1;
    display: flex;
    align-items: center;      
    justify-content: center;   
    margin: 0 !important;      
    width: 100%;
    
}
.site-footer {
    flex-shrink: 0;
}


/* Centering Logic */
.certificate-hero {
    display: flex;
    align-items: center;      
    justify-content: center;   
    flex: 1;                  
}

.centered-content {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px; 
}


.uc-animation {
    color: #ff9800;
    font-size: 3.5rem;
    font-weight: 900;
    opacity: 0; 
    transform: translateY(50px); 
   
    animation: fadeInUp 1.2s ease-out forwards;
}


@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 768px) {
    .uc-animation {
        font-size: 2rem;
    }
}



/* Ensure the video preview fills the card like the PDF does */
video.pdf-embed {
    width: 100%;
    height: 100% !important;
        object-fit: contain;
    background: #000;
}

/* Make sure the watch button looks good */
.view-btn i {
    margin-right: 8px;

}




/* Full-screen Loader Wrapper */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999; /* Highest priority */
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-container {
    text-align: center;
}

/* Modern Spinner Design */
.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid var(--accent); /* Your Orange Color */
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 15px;
}

.loader-text {
    font-family: 'Roboto', sans-serif;
    font-weight: 900;
    color: var(--primary); /* Your Dark Blue Color */
    letter-spacing: 2px;
    font-size: 1.2rem;
}

/* Hide Loader Class */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Mobile adjustments for the PDF Modal */
@media (max-width: 768px) {
    .modal-content {
        width: 95% !important; /* Matches the width in your screenshot */
        height: 80% !important; /* Adjust height for mobile aspect ratio */
        margin: 10% auto !important;
        top: 0;
    }

    #modalFrame {
        border-radius: 4px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.5);
    }

    /* Adjust the close button size for fingers */
    .close-pdf {
        top: 10px;
        right: 15px;
        font-size: 35px;
    }
}


/* --- Sequential  Animations --- */

/* Base state for all animated items */
.hero-text-area > *,
.animate-hero-form {
    opacity: 0;
    will-change: transform, opacity;
}

/* The Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(60px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Left Side: Staggered Bottom to Top */
/* 1st: Tagline */
.hero-text-area span.tagline {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.5s; /* Starts after loader */
}

/* 2nd: Main Title */
.hero-text-area h1.main-title {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.7s;
}

/* 3rd: Sub-text */
.hero-text-area p.sub-text {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.9s;
}

/* 4th: Decorative Line */
.hero-text-area .decorative-line {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.1s;
}

/* Right Side: Right to Left */
.animate-hero-form {
    animation: fadeInRight 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 1.3s; 
}

/* Responsive: Ensure proper flow on mobile */
@media (max-width: 992px) {
	.job-spec-grid {
        grid-template-columns: 1fr; /* Stacks vertically on smaller screens */
    }
	
    .animate-hero-form {
        
        animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
        animation-delay: 1.3s;
        transform: translateX(0);
    }
    
    .hero-text-area {
        margin-bottom: 30px;
    }
}



/* --- Company Overview Specific Animation --- */

.animate-bottom-top {
    opacity: 0;
    transform: translateY(60px);
   
    animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.5s; 
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .animate-bottom-top {
        animation-duration: 1s;
        transform: translateY(40px); 
    }
}

/* --- Brochures Page Premium Styling --- */




.brochure-page-wrapper {
   height: calc(100vh - 170px); 
    display: flex;
    flex-direction: column;
    justify-content: center; 
    overflow: hidden; 
    padding: 0 20px;
}



.brochure-page-wrapper .main-title {
    font-size: 3.1rem !important;
    font-weight: 900;
    margin: 0 !important;
    line-height: 1.2;
}



.brochure-page-wrapper .resource-header {
    padding: 0 !important;
    margin-bottom: 10px !important;
    text-align: center;
}




.brochure-page-wrapper .description {
    font-size: 0.85rem !important;
    margin: 5px auto !important;
    max-width: 600px;
    color: #666;
}





.brochure-page-wrapper .orange-divider {
    margin: 8px auto !important;
}





/* Header Styling */
.resource-header {
    text-align: center;
    /*padding: 60px 0 40px;*/
}

.resource-header .subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.resource-header .main-title {
    font-size: 3rem;
    color: var(--primary);
    font-weight: 900;
}

.resource-header .description {
    max-width: 600px;
    margin: 15px auto;
    color: #666;
    line-height: 1.6;
}

/* Grid Layout */
.brochure-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
    width: 100%;
}

/* Premium Card Design */
.brochure-card {
     height: 300px !important; 
    background: #fff;
    border-radius: 15px !important;
    padding: 8px !important;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.brochure-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(11, 33, 97, 0.12);
    border-color: var(--accent);
}








.brochure-card .pdf-embed {
    height: 100% !important;
    border-radius: 10px;
}




@media (max-width: 992px) {
    .brochure-page-wrapper {
        height: auto;
        overflow-y: auto;
        padding: 40px 20px;
    }
    .brochure-grid {
        grid-template-columns: 1fr;
    }
    .brochure-card {
        height: 400px !important;
    }
}







.card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary);
    color: #fff;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 6;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.cert-title {
    background: #fff;
    padding: 20px !important;
    font-size: 1.1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.cert-title i {
    color: var(--accent);
    font-size: 0.9rem;
}

.view-hint {
    font-size: 0.75rem;
    color: #999;
    font-weight: 400;
}

/* Staggered Entrance Animations */
.stagger-1 { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.2s; opacity: 0; }
.stagger-2 { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.4s; opacity: 0; }
.stagger-3 { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.6s; opacity: 0; }

.animate-fadeIn {
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

@media (max-width: 768px) {
    .resource-header .main-title { font-size: 2.2rem; }
    .brochure-grid { gap: 20px; }
}


/* --- Videos Page Gallery Styling --- */

.video-page-wrapper {
    background: #fdfdfd;
    padding-bottom: 40px;
}

/* Video Grid Layout */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
}

/* Modern Video Card */
.video-card {
    height: auto !important; /* Let content define height */
    min-height: 368px;
    background: #fff;
    border-radius: 20px !important;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
	width: 50%;
    margin: 0 auto;
}

.video-preview {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #000;
    transition: transform 0.5s ease;
}

.video-card:hover .video-preview {
    transform: scale(1.05);
}

/* Play Button Overlay */
.play-btn-circle {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 15px;
    box-shadow: 0 0 20px rgba(255, 152, 0, 0.4);
    transform: scale(0.8);
    transition: 0.3s;
}

.video-card:hover .play-btn-circle {
    transform: scale(1);
}

/* Info Section */
.video-info {
    padding: 25px;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.video-info h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.video-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.video-meta {
    margin-top: auto;
    display: flex;
    gap: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
    color: #999;
    font-size: 0.85rem;
}

.video-meta i {
    color: var(--accent);
    margin-right: 5px;
}

/* Reusing Staggered Animations from Brochures */
.stagger-1 { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.2s; opacity: 0; }
.stagger-2 { animation: fadeInUp 0.8s ease forwards; animation-delay: 0.4s; opacity: 0; }

@media (max-width: 500px) {
    .video-grid { grid-template-columns: 1fr; }
}




/* --- Centered Recognition Page Styling --- */

.recognition-page-wrapper {
    background: #f9fbff;
    padding-bottom: 0px;
}

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

.center-div {
    margin-left: auto;
    margin-right: auto;
}

/* Premium Document Container */
.premium-doc-container {
    max-width: 950px; 
    margin: 0 auto;
    position: relative;
}


.verified-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 10;
    box-shadow: 0 10px 20px rgba(40, 167, 69, 0.3);
}

/* Card Styling */
.premium-doc-container .cert-card {
    height: 750px !important; 
    background: #fff;
    border-radius: 20px;
    
    border: 1px solid rgba(0,0,0,0.05);
}

.cert-bottom-info {
    display: flex;
    justify-content: space-between;
    padding: 25px 40px;
    background: #fcfcfc;
    border-top: 1px solid #eee;
    text-align: left;
}

.info-group label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #999;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.info-group h4 {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 700;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .premium-doc-container .cert-card {
        height: 320px !important;
    }
    .cert-bottom-info {
        flex-direction: column;
        gap: 15px;
        padding: 20px;
    }
    .verified-badge {
        font-size: 0.7rem;
        padding: 8px 15px;
    }
}





/* --- Mentor Page Specific Entrance Animations --- */

/* Left Side: Left to Right */
.animate-mentor-sidebar {
    opacity: 0;
    transform: translateX(-80px); 
    animation: fadeInLeftSmooth 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.4s; 
    will-change: transform, opacity;
}

/* Right Side: Bottom to Top */
.animate-mentor-bio {
    opacity: 0;
    transform: translateY(60px); 
    animation: fadeInUpSmooth 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.7s; 
    will-change: transform, opacity;
}

/* Keyframes for Left to Right */
@keyframes fadeInLeftSmooth {
    from {
        opacity: 0;
        transform: translateX(-80px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keyframes for Bottom to Top */
@keyframes fadeInUpSmooth {
    from {
        opacity: 0;
        transform: translateY(60px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


@media (max-width: 992px) {
    .animate-mentor-sidebar {
        transform: translateY(40px);
        animation-name: fadeInUpSmooth;
        animation-delay: 0.4s;
    }
    .animate-mentor-bio {
        animation-delay: 0.6s;
    }
}





/* --- Career Page Entrance Animations --- */

/* Left Side: Left to Right Slide */
.animate-sidebar {
    opacity: 0;
    transform: translateX(-100px); /* Start further left */
    animation: careerSlideInLeft 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.4s; /* Starts after loader fades */
    will-change: transform, opacity;
}

/* Right Side: Bottom to Top Slide */
.animate-content {
    opacity: 0;
    transform: translateY(80px); /* Start lower down */
    animation: careerSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
    animation-delay: 0.7s; /* Staggered delay for a sequential feel */
    will-change: transform, opacity;
}

/* Keyframes for Left Side */
@keyframes careerSlideInLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Keyframes for Right Side */
@keyframes careerSlideUp {
    from {
        opacity: 0;
        transform: translateY(80px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness: 
   On smaller screens, animate both from bottom for a cleaner vertical flow */
@media (max-width: 992px) {
    .animate-sidebar {
        transform: translateY(50px);
        animation-name: careerSlideUp;
        animation-delay: 0.4s;
    }
    .animate-content {
        animation-delay: 0.6s;
    }
}





/* Modal popup */
.contact-success-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
    align-items: center;
    justify-content: center;
    padding: 20px; 
}


.contact-success-modal.show {
    display: flex !important;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 33, 97, 0.9); /* Deep blue brand overlay */
    backdrop-filter: blur(8px);
}

.modal-box {
    position: relative;
    background: #fff;
    width: 100%;
    max-width: 450px;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.modal-icon i {
    font-size: 5rem;
    margin-bottom: 20px;
}


.modal-box p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1rem;
}



.modal-box h3 {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 15px;
}



.contact-success-modal.show .modal-box {
   transform: scale(1);
    opacity: 1;
}

.modal-icon {
    font-size: 5rem;
    color: #28a745;
    margin-bottom: 15px;
}

.modal-btn {
    background: linear-gradient(135deg, var(--accent), #F57C00);
    color: #fff;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 152, 0, 0.3);
    transition: 0.3s;
}

.modal-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255, 152, 0, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 480px) {
    .modal-box {
        padding: 40px 20px;
    }
    .modal-box h3 {
        font-size: 1.5rem;
    }
    .modal-icon i {
        font-size: 4rem;
    }
}


/* Ensure the parent item is relative so the sub-menu positions against it */
.dropdown-submenu {
    position: relative;
}

/* Hide the sub-menu by default and position it to the right */
.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%; /* Positions it to the right of the 'Our Policy' link */
    margin-top: -1px;
    display: none; /* Hidden by default */
}

/* Show the sub-menu when hovering over the parent 'Our Policy' li */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}

/* Optional: Rotate arrow or change style on hover */
.dropdown-submenu:hover > a > .nav-arrow {
    transform: translateX(5px);
    transition: transform 0.3s ease;
}

/* Desktop spacing adjustment for the nested menu */
.desktop-nav .dropdown-menu .dropdown-submenu .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}
	