/* WordPress-Style Theme */

/* General WordPress Styling */
body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    line-height: 1.7;
    background-color: #f9f9f9;
}

.text-primary {
    color: #0B2F5E !important;
}

.text-gradient {
    background: linear-gradient(45deg, #2F80ED, #56CCF2);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* WordPress-style Header */
.wp-header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.wp-header .site-logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
}

.wp-header .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.75rem 1rem;
    position: relative;
    transition: all 0.3s ease;
}

.wp-header .navbar-nav .nav-link:hover,
.wp-header .navbar-nav .nav-link:focus,
.wp-header .navbar-nav .nav-item.active .nav-link {
    color: #0B2F5E;
}

.wp-header .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #0B2F5E;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.wp-header .navbar-nav .nav-link:hover::after,
.wp-header .navbar-nav .nav-item.active .nav-link::after {
    width: 70%;
}

.wp-header .dropdown-menu {
    border: none;
    border-radius: 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 0.5rem;
}

.wp-header .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.2s ease;
}

.wp-header .dropdown-item:hover {
    background-color: rgba(11, 47, 94, 0.05);
    color: #0B2F5E;
}

/* WordPress-style Footer */
.wp-footer {
    background-color: #f8f9fa;
    border-top: 1px solid #eaeaea;
    color: #555;
    font-size: 0.95rem;
}

.wp-footer .footer-widgets {
    padding: 4rem 0 2rem;
}

.wp-footer .widget-title {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.wp-footer .widget-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #2F80ED, #56CCF2);
}

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

.wp-footer .footer-links li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.wp-footer .footer-links li a {
    color: #555;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.wp-footer .footer-links li a:hover {
    color: #0B2F5E;
    transform: translateX(5px);
}

.wp-footer .footer-links li a i {
    font-size: 0.7rem;
    margin-right: 0.5rem;
    color: #2F80ED;
}

.wp-footer .social-links {
    margin-top: 1.5rem;
}

.wp-footer .social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #fff;
    color: #0B2F5E;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}

.wp-footer .social-icon:hover {
    background-color: #0B2F5E;
    color: #fff;
    transform: translateY(-3px);
}

.wp-footer .contact-info .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.wp-footer .contact-info i {
    color: #2F80ED;
    font-size: 1.2rem;
    margin-top: 0.25rem;
}

.wp-footer .footer-bottom {
    background-color: #fff;
    border-top: 1px solid #eaeaea;
    font-size: 0.9rem;
}

.wp-footer .copyright {
    color: #666;
}

.wp-footer .credits a {
    color: #0B2F5E;
    text-decoration: none;
    font-weight: 500;
}

/* WordPress-style Job Details Page */
.wp-block-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.wp-breadcrumb {
    font-size: 0.9rem;
}

.wp-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "\f054";
    font-family: "bootstrap-icons";
    font-size: 0.7rem;
    color: #999;
}

.wp-breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.wp-breadcrumb a:hover {
    color: #0B2F5E;
}

.wp-block-job-header {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-bottom: 2rem;
}

.wp-block-company-logo {
    flex-shrink: 0;
}

.company-logo-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #eaeaea;
}

.wp-block-job-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.wp-block-company-name {
    color: #0B2F5E;
    font-weight: 600;
    font-size: 1.1rem;
}

.wp-block-job-meta {
    color: #666;
    font-size: 0.95rem;
}

.job-meta-item {
    display: flex;
    align-items: center;
}

.wp-block-job-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.job-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background-color: #f8f9fa;
    border-radius: 50px;
    color: #555;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.job-category:hover {
    background-color: #0B2F5E;
    color: #fff;
}

.wp-button {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.wp-button-primary {
    background-color: #0B2F5E;
    color: #fff;
}

.wp-button-primary:hover {
    background-color: #0a2748;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(11, 47, 94, 0.2);
}

.wp-button-outline {
    background-color: transparent;
    color: #0B2F5E;
    border: 1px solid #0B2F5E;
}

.wp-button-outline:hover {
    background-color: #0B2F5E;
    color: #fff;
    transform: translateY(-2px);
}

.wp-button-outline-secondary {
    background-color: transparent;
    color: #666;
    border: 1px solid #ddd;
}

.wp-button-outline-secondary:hover {
    background-color: #f8f9fa;
    border-color: #ccc;
    transform: translateY(-2px);
}

.wp-block-job-content {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
}

.wp-block-section-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.wp-block-section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(45deg, #2F80ED, #56CCF2);
}

.wp-block-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.wp-list {
    padding-left: 1.5rem;
    color: #555;
}

.wp-list li {
    margin-bottom: 0.75rem;
    position: relative;
}

.wp-list li::marker {
    color: #0B2F5E;
}

/* WordPress-style Testimonials Section */
.wp-block-testimonials {
    background-color: #f8f9fa;
}

.wp-testimonial-card {
    transition: all 0.3s ease;
}

.wp-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.wp-testimonial-quote {
    color: #0B2F5E;
}

.wp-testimonial-text {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.wp-testimonial-name {
    color: #333;
    font-weight: 600;
}

.wp-testimonial-position {
    font-size: 0.85rem;
}

/* WordPress-style CTA Section */
.wp-block-cta {
    position: relative;
    overflow: hidden;
}

.wp-block-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../img/hero-bg-abstract.jpg');
    background-size: cover;
    opacity: 0.1;
    z-index: 0;
}

.wp-block-cta-content {
    position: relative;
    z-index: 1;
}

.wp-block-cta-title {
    font-weight: 700;
    font-size: 2.5rem;
}

.wp-block-cta-text {
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
/* About Hero Banner */
.wp-block-page-header.about-hero-banner {
    background-size: cover;
    background-attachment: fixed;
    height: 60vh;
    min-height: 400px;
    position: relative;
}

.about-hero-banner .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(13, 110, 253, 0.8), rgba(0, 58, 97, 0.9));
}

.about-hero-banner .wp-block-title {
    font-size: 3.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.about-hero-banner .wp-block-subtitle {
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .about-hero-banner {
        height: 50vh;
    }
    
    .about-hero-banner .wp-block-title {
        font-size: 2.5rem;
    }
}

.wp-button-light {
    background-color: #fff;
    color: #0B2F5E;
}

.wp-button-light:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.2);
}

.wp-button-outline-light {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.wp-button-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* Map Section */
.wp-block-map {
    position: relative;
    overflow: hidden;
}

.wp-map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.wp-map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* WordPress Modal Styles */
.wp-modal .wp-modal-content {
    border-radius: 8px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wp-modal .wp-modal-title {
    font-weight: 600;
    color: #333;
}

.wp-modal .wp-search-form .wp-form-control {
    border-radius: 4px 0 0 4px;
    border: 1px solid #e0e0e0;
    padding: 10px 15px;
    height: auto;
}

.wp-modal .wp-search-form .wp-button {
    border-radius: 0 4px 4px 0;
    padding: 10px 20px;
}

/* WordPress Login Form Styles */
.wp-block-login-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.wp-block-login-header {
    text-align: center;
    padding: 2rem 1rem;
}

.wp-block-login-icon {
    font-size: 2.5rem;
    color: #0B2F5E;
    margin-bottom: 1rem;
}

.wp-block-login-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
}

.wp-block-login-subtitle {
    color: #666;
    font-size: 1rem;
}

.wp-block-login-form {
    background-color: #fff;
}

.wp-form {
    width: 100%;
}

.wp-form-group {
    margin-bottom: 1.5rem;
}

.wp-form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.wp-form-control {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.wp-form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #0B2F5E;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(11, 47, 94, 0.25);
}

.wp-input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}

.wp-input-group-text {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 4px 0 0 4px;
}

.wp-input-group .wp-form-control {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.wp-form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem;
}

.wp-form-check-input {
    position: absolute;
    margin-top: 0.3rem;
    margin-left: -1.25rem;
}

.wp-form-check-label {
    margin-bottom: 0;
}

.wp-invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #dc3545;
}

.wp-alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 4px;
}

.wp-alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.wp-link {
    color: #0B2F5E;
    text-decoration: none;
    background-color: transparent;
    transition: color 0.2s ease;
}

.wp-link:hover {
    color: #0a2748;
    text-decoration: underline;
}

.wp-form-footer {
    text-align: center;
    padding: 1rem 0;
    border-top: 1px solid #f0f0f0;
    color: #666;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(120deg, rgba(255,255,255,0.6) 0%, rgba(255,255,255,0.9) 100%),
        linear-gradient(45deg, #2F80ED 0%, #56CCF2 100%);
    opacity: 0.1;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%230B2F5E' fill-opacity='0.05'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
    z-index: 0;
    animation: moveBackground 30s linear infinite;
}

@keyframes moveBackground {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.text-secondary {
    color: #6c757d !important;
}

.btn-primary {
    background: linear-gradient(45deg, #2F80ED 0%, #56CCF2 100%);
    border: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #56CCF2 0%, #2F80ED 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 128, 237, 0.3);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.display-3 {
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(45deg, #0B2F5E 0%, #2F80ED 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

/* Add subtle animation to the hero section */
.hero .row {
    animation: fadeInUp 1s ease-out;
}

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

/* Standardized Button Styles */
.btn-primary {
    background-color: #56CCF2 !important;
    border-color: #56CCF2 !important;
    color: white !important;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.btn-primary:hover {
    background-color: #2F80ED !important;
    border-color: #2F80ED !important;
    color: white !important;
    transform: none;
    box-shadow: none;
}

.btn-outline-primary {
    background-color: transparent !important;
    border-color: #56CCF2 !important;
    color: #56CCF2 !important;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.btn-outline-primary:hover {
    background-color: #56CCF2 !important;
    border-color: #56CCF2 !important;
    color: white !important;
    transform: none;
    box-shadow: none;
}

.btn-secondary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: white !important;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.btn-secondary:hover {
    background-color: #5a6268 !important;
    border-color: #5a6268 !important;
    color: white !important;
}

.btn-info {
    background-color: #17a2b8 !important;
    border-color: #17a2b8 !important;
    color: white !important;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.btn-info:hover {
    background-color: #138496 !important;
    border-color: #138496 !important;
    color: white !important;
}

.btn-warning {
    background-color: #ffc107 !important;
    border-color: #ffc107 !important;
    color: #212529 !important;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.btn-warning:hover {
    background-color: #e0a800 !important;
    border-color: #e0a800 !important;
    color: #212529 !important;
}

.btn-danger {
    background-color: #dc3545 !important;
    border-color: #dc3545 !important;
    color: white !important;
    font-weight: 500;
    border-radius: 5px;
    transition: all 0.2s ease;
    padding: 8px 16px;
}

.btn-danger:hover {
    background-color: #c82333 !important;
    border-color: #c82333 !important;
    color: white !important;
}

/* Action Button Styles */
.action-btn {
    font-size: 0.8rem;
    padding: 0.375rem 0.75rem;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.2s ease;
}

/* Button size variants */
.btn-sm {
    padding: 0.25rem 0.5rem;
    font-size: 0.75rem;
    border-radius: 3px;
}

/* Remove transforms and box-shadows for simple design */
.btn:hover {
    transform: none !important;
    box-shadow: none !important;
}

.text-gradient {
    background: linear-gradient(45deg, #2F80ED 0%, #56CCF2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.sitename {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
}

.sitename .text-primary {
    color: #0B2F5E !important;
}

/* About Content Styles */
.wp-block-about {
    padding: 80px 0;
}

.wp-block-section {
    margin-bottom: 60px;
}

.wp-block-section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.wp-block-section-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
}

.wp-block-lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.wp-block-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Values Cards */
.wp-block-value-card {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.wp-block-value-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.wp-block-value-icon i {
    color: #0d6efd;
}

.wp-block-value-title {
    font-weight: 600;
    font-size: 1.5rem;
}

.wp-block-value-text p {
    color: #6c757d;
    line-height: 1.7;
}

/* Team Member Hover Effects */
.team-member {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 30px;
}

.team-member .member-img {
    position: relative;
    overflow: hidden;
}

.team-member .member-img img {
    width: 100%;
    transition: all 0.4s ease;
}

.team-member .member-info {
    padding: 20px;
    text-align: center;
    background: #fff;
    transition: all 0.4s ease;
}

.team-member .social {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    padding: 20px;
}

.team-member .social a {
    color: #fff;
    font-size: 24px;
    margin: 5px;
    transition: all 0.3s ease;
}

.team-member .social a:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

/* Hover effects */
.team-member:hover .social {
    opacity: 1;
}

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.team-member .social h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 20px;
}

.team-member .social span {
    color: #fff;
    font-style: italic;
    margin-bottom: 15px;
    display: block;
}

/* Team Section */
.wp-block-team {
    padding-top: 20px;
}

/* Apply Form Styles */
.apply-section {
    padding-top: 120px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.apply-form .form-control,
.apply-form .form-select {
    padding: 0.8rem;
    border-radius: 8px;
    border: 1px solid #dee2e6;
    transition: all 0.3s ease;
}

.apply-form .form-control:focus,
.apply-form .form-select:focus {
    border-color: #2F80ED;
    box-shadow: 0 0 0 0.2rem rgba(47, 128, 237, 0.25);
}

.apply-form .form-label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #0B2F5E;
}

.apply-form .btn-primary {
    background: linear-gradient(45deg, #2F80ED 0%, #56CCF2 100%);
    border: none;
    padding: 12px 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.apply-form .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 128, 237, 0.3);
}

.apply-form textarea {
    resize: vertical;
    min-height: 120px;
}

.apply-form .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.apply-form .card-body {
    padding: 2rem;
}

/* Partner Companies and Schools Cards */
.partner-card,
.school-card {
    transition: all 0.3s ease;
    border: none;
    border-radius: 15px;
}

.partner-card:hover,
.school-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(47, 128, 237, 0.1) !important;
}

.partner-card .icon-box,
.school-card .icon-box {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.1) 0%, rgba(86, 204, 242, 0.1) 100%);
}

.partner-card .card-title,
.school-card .card-title {
    color: #0B2F5E;
    margin-bottom: 10px;
    font-weight: 600;
}

.partner-card ul li,
.school-card ul li {
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.partner-card .text-primary,
.school-card .text-primary {
    color: #2F80ED !important;
}

.partners-section,
.schools-section {
    position: relative;
}

.partners-section::before,
.schools-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232F80ED' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    z-index: 0;
}

/* Location and hours information */
.location-hours {
    text-align: left;
    font-size: 0.9rem;
}

.location-hours p {
    display: flex;
    align-items: center;
}

.location-hours i {
    font-size: 1rem;
    margin-right: 8px;
}

.location-hours .bi-geo-alt-fill {
    color: #e74c3c !important;
}

.location-hours .bi-clock-fill {
    color: #3498db !important;
}

.partner-card .border-top {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

/* School card specific styles */
.school-card .location-hours .bi-geo-alt-fill {
    color: #e74c3c !important;
}

.school-card .location-hours .bi-clock-fill {
    color: #3498db !important;
}

.school-card .border-top {
    border-color: rgba(0, 0, 0, 0.08) !important;
}

.school-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.school-card .card-body {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.school-card ul {
    flex-grow: 1;
    margin-bottom: 0;
}

/* Apply button and modal styles */
.partner-card .btn-primary {
    padding: 10px 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 50px;
}

.modal-content {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.modal-header {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
}

.modal-header .modal-title {
    font-weight: 600;
    color: #0B2F5E;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 30px;
}

.alert-primary {
    background-color: rgba(47, 128, 237, 0.1);
    border-color: rgba(47, 128, 237, 0.2);
    color: #0B2F5E;
}

#applyModal .btn-primary {
    padding: 10px 25px;
    font-weight: 500;
}

/* Instructor Application Form */
.instructor-section-title,
.student-section-title {
    color: #0B2F5E;
    border-bottom: 2px solid rgba(47, 128, 237, 0.2);
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.student-entry {
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.student-entry:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#addStudentBtn {
    border-radius: 50px;
    padding: 10px;
    transition: all 0.3s ease;
}

#addStudentBtn:hover {
    background-color: rgba(47, 128, 237, 0.1);
}

.remove-student {
    border-radius: 50%;
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-student i {
    font-size: 14px;
}

.form-text {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
}

/* School Details Modal */
.school-detail-content {
    transition: all 0.3s ease;
}

.school-logo {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(47, 128, 237, 0.1) 0%, rgba(86, 204, 242, 0.1) 100%);
    margin-bottom: 20px;
}

.social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: #f8f9fa;
    color: #0B2F5E;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #0B2F5E;
    color: #fff;
    transform: translateY(-3px);
}

.school-detail-content h5 {
    color: #0B2F5E;
    margin-bottom: 15px;
}

.school-detail-content h6 {
    color: #2F80ED;
    margin-bottom: 10px;
    font-weight: 600;
}

.school-detail-content ul {
    padding-left: 20px;
}

#contactSchoolBtn {
    border-radius: 50px;
    padding: 8px 25px;
}

.school-card .btn-outline-primary {
    color: #2F80ED;
    border-color: #2F80ED;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.school-card .btn-outline-primary:hover {
    background-color: #2F80ED;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 128, 237, 0.2);
}

/* Company Card Button Styles */
.partner-card .btn-outline-primary {
    color: #2F80ED;
    border-color: #2F80ED;
    border-radius: 50px;
    transition: all 0.3s ease;
    padding: 10px 20px;
    font-weight: 500;
}

.partner-card .btn-outline-primary:hover {
    background-color: #2F80ED;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(47, 128, 237, 0.2);
}