/* User Dashboard - Fixed Sidebar */
@media (min-width: 992px) {
  body.sidebar-fixed .sidebar {
    position: fixed;
    height: calc(100vh - 60px);
    overflow-y: auto;
    top: 60px;
  }
  
  body.sidebar-fixed .main-panel {
    margin-left: 235px;
  }
  
  body.sidebar-fixed .page-body-wrapper {
    position: relative;
  }
}

/* Hero Background - White background as per template */
.slider-area.slider-height {
    background: #fff;
    position: relative;
}

.slider-area .slider-cap-wrapper {
    position: relative;
}

/* Services and Application Areas - White background */
.services-area {
    background: #fff;
}

.application-area {
    background: #fff;
}


/* Page Header Styles */
.page-header-area {
    background: #f8f9fa;
    padding: 120px 0 50px;
    margin-top: 80px;
}

.page-header-content h1 {
    font-size: 48px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.page-header-content p {
    font-size: 16px;
    color: #8a8a8a;
}

/* Contact Form Styles */
.contact-form,
.login-form,
.register-form {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.contact-form h2,
.login-form h2,
.register-form h2 {
    font-size: 32px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 30px;
}

.input-form {
    margin-bottom: 20px;
}

.input-form input,
.input-form textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e6e9;
    border-radius: 0;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s;
}

.input-form input:focus,
.input-form textarea:focus {
    outline: 0;
    border-color: #1f2b7b;
    box-shadow: none;
}

.input-form input::placeholder,
.input-form textarea::placeholder {
    color: #999999;
    font-weight: 300;
}

.input-form textarea {
    min-height: 150px;
    resize: vertical;
}

.submit-form {
    margin-top: 20px;
}

.submit-form .btn {
    padding: 15px 40px;
    background: #1f2b7b;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s;
}

.submit-form .btn:hover {
    background: #F53003;
    color: #fff;
}

.login-footer,
.register-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e6e9;
}

.login-footer p,
.register-footer p {
    color: #8a8a8a;
    font-size: 14px;
}

.login-footer a,
.register-footer a {
    color: #1f2b7b;
    text-decoration: none;
    font-weight: 600;
}

.login-footer a:hover,
.register-footer a:hover {
    color: #F53003;
}

/* Careers Page Styles */
.single-career {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.single-career:hover {
    box-shadow: 0 0 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.career-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
}

.career-content h3 a {
    color: #2a2a2a;
    text-decoration: none;
    transition: color 0.3s;
}

.career-content h3 a:hover {
    color: #1f2b7b;
}

.career-content p {
    color: #8a8a8a;
    margin-bottom: 20px;
    line-height: 1.8;
}

.career-content .btn {
    padding: 12px 30px;
    background: #1f2b7b;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.career-content .btn:hover {
    background: #F53003;
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .page-header-content h1 {
        font-size: 36px;
    }
    
    .contact-form,
    .login-form,
    .register-form {
        padding: 30px 20px;
    }
    
    .contact-form h2,
    .login-form h2,
    .register-form h2 {
        font-size: 24px;
    }
}

/* Testimonial Icon Styles */
.founder-img {
    display: inline-block;
    width: auto;
    height: auto;
}

.founder-img i {
    display: block;
    font-size: 80px !important;
    color: #fff !important;
    line-height: 1;
}

/* Blog/News Icon Styles */
.single-blogs .blog-images {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    background: #f8f9fa;
    margin-bottom: 20px;
    overflow: hidden;
}

.single-blogs .blog-images img {
    display: none !important;
}

.single-blogs .blog-images i {
    font-size: 80px !important;
    color: #1f2b7b !important;
    display: block !important;
    line-height: 1;
}

/* News Detail Page Styles */
.news-detail-area {
    padding: 80px 0;
}

.news-detail-content {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

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

.news-icon i {
    font-size: 100px;
    color: #1f2b7b;
}

.news-meta {
    display: flex;
    gap: 20px;
    color: #8a8a8a;
    font-size: 14px;
}

.news-title {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    line-height: 1.3;
}

.news-body {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.news-body h3 {
    font-size: 24px;
    font-weight: 600;
    color: #2a2a2a;
    margin-top: 30px;
    margin-bottom: 15px;
}

.news-body ul {
    margin: 20px 0;
    padding-left: 30px;
}

.news-body ul li {
    margin-bottom: 10px;
}

.news-body strong {
    color: #1f2b7b;
}

.news-footer {
    padding-top: 30px;
    border-top: 1px solid #e5e6e9;
}

.news-footer .btn {
    padding: 12px 30px;
    background: #1f2b7b;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.news-footer .btn:hover {
    background: #F53003;
    color: #fff;
}

/* Credit Card Showcase Styles */
.credit-card-showcase {
    background: #fff;
    padding: 80px 0;
}

.card-image-wrapper {
    text-align: center;
    padding: 20px;
}

.card-image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.card-image-wrapper img:hover {
    transform: translateY(-5px);
}

.card-content {
    padding: 20px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.card-features li {
    padding: 12px 0;
    font-size: 16px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 12px;
}

.card-features li i {
    color: #1f2b7b;
    font-size: 20px;
}

.card-content .btn {
    padding: 15px 40px;
    background: #1f2b7b;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    margin-top: 20px;
}

.card-content .btn:hover {
    background: #F53003;
    color: #fff;
}

@media (max-width: 991px) {
    .credit-card-showcase {
        padding: 60px 0;
    }
    
    .card-image-wrapper {
        margin-bottom: 40px;
    }
    
    .card-content {
        text-align: center;
    }
    
    .card-features {
        text-align: left;
        display: inline-block;
    }
}


/* Mobile Hamburger Menu */
.mobile-menu-toggle {
    margin-left: 15px;
}

.hamburger {
    padding: 0;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    outline: none;
}

.hamburger-box {
    width: 30px;
    height: 24px;
    display: inline-block;
    position: relative;
}

.hamburger-inner {
    display: block;
    top: 50%;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    width: 30px;
    height: 3px;
    background-color: #1f2b7b;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
    content: "";
    display: block;
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/* Hamburger Animation - Active State */
.hamburger.is-active .hamburger-inner {
    transform: rotate(45deg);
    transition-delay: 0.12s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Mobile Menu */
.mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    max-height: 500px;
    transition: max-height 0.5s ease-in;
}

.mobile-nav {
    padding: 20px 0;
}

.mobile-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid #e5e6e9;
}

.mobile-nav ul li:last-child {
    border-bottom: none;
    padding: 15px 20px;
}

.mobile-nav ul li a {
    display: block;
    padding: 15px 20px;
    color: #2a2a2a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li.active a {
    color: #1f2b7b;
    background-color: #f8f9fa;
    padding-left: 25px;
}

.mobile-nav ul li .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    background: #1f2b7b;
    color: #fff;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-nav ul li .btn:hover {
    background: #F53003;
    color: #fff;
    padding-left: 20px;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 10000;
    padding: 20px;
    border-top: 3px solid #1f2b7b;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 250px;
}

.cookie-consent-text p {
    margin: 0;
    color: #2a2a2a;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-text a {
    color: #1f2b7b;
    text-decoration: underline;
}

.cookie-consent-text a:hover {
    color: #F53003;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-buttons .btn {
    padding: 10px 25px;
    border: none;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-consent-buttons .btn-accept {
    background: #1f2b7b;
    color: #fff;
}

.cookie-consent-buttons .btn-accept:hover {
    background: #F53003;
    color: #fff;
}

.cookie-consent-buttons .btn-decline {
    background: #e5e6e9;
    color: #2a2a2a;
}

.cookie-consent-buttons .btn-decline:hover {
    background: #d0d1d4;
    color: #2a2a2a;
}

/* Privacy Policy Page Styles */
.privacy-policy-content {
    background: #fff;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.policy-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1f2b7b;
    margin-bottom: 15px;
    margin-top: 30px;
}

.policy-section h2:first-child {
    margin-top: 0;
}

.policy-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.policy-section ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.policy-section ul li strong {
    color: #1f2b7b;
}

.policy-footer {
    padding-top: 30px;
    border-top: 1px solid #e5e6e9;
}

/* Auth Pages Styles */
.auth-page {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    padding: 60px 0;
}

.auth-container {
    display: flex;
    width: 100%;
    max-width: 1200px;
    min-height: 100vh;
    background: #fff;
}

.auth-left {
    display: none !important;
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #f5f5f5;
}

.auth-form-wrapper {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 60px 50px;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
}

.auth-header-line {
    width: 60px;
    height: 3px;
    background: #F53003;
    margin-bottom: 30px;
}

.auth-title {
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.auth-form {
    width: 100%;
}

.auth-input-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.auth-input-row .input-form {
    margin-bottom: 0;
}

.auth-input-row .input-form-full {
    grid-column: 1 / -1;
}

.auth-input-row .input-form input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e6e9;
    border-radius: 5px;
    font-size: 14px;
    color: #2a2a2a;
    transition: all 0.3s;
}

.auth-input-row .input-form input:focus {
    outline: none;
    border-color: #1f2b7b;
    box-shadow: 0 0 0 3px rgba(31, 43, 123, 0.1);
}

.auth-input-row .input-form input::placeholder {
    color: #999;
}

.auth-input-row .input-form select.form-select {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e5e6e9;
    border-radius: 5px;
    font-size: 14px;
    color: #2a2a2a;
    background: #fff;
    transition: all 0.3s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%232a2a2a' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
}

.auth-input-row .input-form select.form-select:focus {
    outline: none;
    border-color: #1f2b7b;
    box-shadow: 0 0 0 3px rgba(31, 43, 123, 0.1);
}

.auth-section-title {
    margin-top: 30px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e6e9;
}

.auth-section-title:first-child {
    margin-top: 0;
}

.auth-section-title h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1f2b7b;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.auth-checkbox-row {
    margin-top: 20px;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: #1f2b7b;
}

.form-check label {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    cursor: pointer;
}

.form-check label a {
    color: #1f2b7b;
    text-decoration: underline;
}

.form-check label a:hover {
    color: #F53003;
}

.submit-form {
    margin-top: 30px;
}

.btn-login {
    width: 100%;
    padding: 15px 30px;
    background: #F53003;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-login:hover {
    background: #d42803;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 48, 3, 0.3);
}

.auth-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e6e9;
}

.auth-footer p {
    color: #666;
    font-size: 14px;
}

.auth-footer a {
    color: #1f2b7b;
    text-decoration: none;
    font-weight: 600;
}

.auth-footer a:hover {
    color: #F53003;
    text-decoration: underline;
}

@media (min-width: 992px) {
    .auth-right {
        padding: 60px 40px;
    }
}

.auth-logo {
    text-align: center;
    margin-bottom: 30px;
}

.auth-logo img {
    max-width: 200px;
    height: auto;
}

@media (max-width: 767px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-form-wrapper {
        padding: 40px 30px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .auth-input-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .privacy-policy-content {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    .page-header-area {
        padding: 100px 0 30px;
        margin-top: 70px;
    }
    
    .page-header-content h1 {
        font-size: 28px;
    }
    
    .founder-img i {
        font-size: 60px !important;
    }
    
    .credit-card-showcase {
        padding: 40px 0;
    }
    
    .card-image-wrapper img {
        border-radius: 10px;
    }
    
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-consent-buttons .btn {
        flex: 1;
        min-width: 120px;
    }
    
    .privacy-policy-content {
        padding: 30px 20px;
    }
    
    .policy-section h2 {
        font-size: 20px;
    }
    
    /* Fix hero images on mobile - override template's display: none */
    .slider-area .single-slider .slider-cap-wrapper {
        flex-direction: column !important;
        display: flex !important;
        align-items: center;
    }

    .slider-area .single-slider .slider-cap-wrapper .hero__caption {
        width: 100% !important;
        text-align: center;
        order: 1;
        padding-left: 3% !important;
        padding-right: 3% !important;
        padding-bottom: 30px !important;
    }

    .slider-area .single-slider .slider-cap-wrapper .hero__img {
        display: block !important;
        width: 100% !important;
        max-width: 400px;
        margin: 0 auto;
        order: 2;
    }
}

