/* General Header Styles */
.custom-header {
    background: linear-gradient(90deg, #000000, #2c2c2c); 
    padding: 13px 0;
    font-family: 'Poppins', sans-serif;
    border-bottom: 2px solid #d4af37; 
}

.custom-header .navbar-brand .logo {
    height: 60px;
    transition: transform 0.3s ease-in-out;
    filter: drop-shadow(0 3px 5px rgba(212, 175, 55, 0.6)); 
}

.custom-header .navbar-brand:hover .logo {
    transform: scale(1.1);
}

.custom-header .nav-link {
    font-size: 16px;
    color: #d4af37 !important; 
    margin: 0 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.custom-header .nav-link:hover {
    transform: scale(1.1); 
    color: #ffd700 !important; 
    text-shadow: 0 0 5px #ffd700;
    /* text-decoration: underline; */
}

.custom-header .nav-item {
    position: relative;
}

.custom-header .nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700; 
    transition: width 0.3s ease, left 0.3s ease;
}

.custom-header .nav-item:hover::after {
    width: 100%;
    left: 0;
}


.navbar-nav {
    display: flex;
    justify-content: center; 
    gap: 30px; 
}

.nav-item .nav-link {
    padding: 10px 15px; 
    white-space: nowrap; 
}
.nav-item .nav-link {
    margin-left: 22px !important;
    min-width: 25px; 
    text-align: center;
}

.custom-header .login-btn,
.custom-header .register-btn {
    position: relative;  
    font-size: 22px; 
    color: #d4af37 !important; 
    margin-right: 30px !important; 
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease-in-out;
}

.custom-header .login-btn::after,
.custom-header .register-btn::after {
    content: ''; 
    position: absolute;
    bottom: -5px; 
    left: 50%;
    width: 0;
    height: 2px;
    background: #ffd700; 
    transition: width 0.3s ease, left 0.3s ease;
}

.custom-header .register-btn {
    margin-right: 10px !important; 
}

.custom-header .login-btn {
    margin-right: 50px; 
}

.custom-header .login-btn:hover::after,
.custom-header .register-btn:hover::after {
    width: 100%; 
    left: 0;
}

.custom-header .login-btn:hover,
.custom-header .register-btn:hover {
    transform: scale(1.3); 
    color: #ffd700 !important; 
    text-shadow: 0 0 8px #ffd700; 
}

/* General Footer Styles */
.custom-footer {
    background: linear-gradient(90deg, #2c2c2c, #000000);
    font-family: 'Poppins', sans-serif;
    border-top: 2px solid #d4af37; 
    color: #d4af37;
}

.custom-footer .footer-logo img {
    height: 60px;
    filter: drop-shadow(0 3px 5px rgba(212, 175, 55, 0.6)); 
}

.custom-footer h5 {
    font-weight: 600;
    letter-spacing: 1px;
    color: #d4af37;
}

.custom-footer .footer-link {
    color: #d4af37 !important;
    text-decoration: none;
    font-weight: 500;
    display: block;
    margin-bottom: 8px;
    transition: color 0.3s ease-in-out, text-shadow 0.3s ease-in-out;
}

.custom-footer .footer-link:hover {
    color: #ffd700 !important;
    text-shadow: 0 0 5px #ffd700;
}

.custom-footer .social-links a {
    color: #d4af37;
    font-size: 20px;
    margin-right: 15px;
    transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease-in-out;
}

.custom-footer .social-links a:hover {
    transform: scale(1.2);
    color: #ffd700;
    text-shadow: 0 0 5px #ffd700;
}

.custom-footer .text-center {
    text-align: center;
}

.custom-footer .col-md-4 {
    margin-bottom: 20px;
}

/* General About Styles */
/* Hero Section */
.hero-section {
    background: linear-gradient(90deg, #000000, #2c2c2c);
    color: #d4af37;
    padding: 80px 20px;
    text-align: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-content h1 {
    font-size: 50px;
    font-weight: bold;
    text-shadow: 0 3px 5px rgba(212, 175, 55, 0.7);
}

.hero-content p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
}

/* Mission, Vision, Values Section */
.mvv-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    padding: 60px 20px;
    background: #f9f9f9;
}

.mvv-item {
    background: white;
    border: 2px solid #d4af37;
    padding: 35px;
    width: 320px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.mvv-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(212, 175, 55, 0.4);
}

.mvv-item h2 {
    font-size: 26px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.mvv-item p {
    font-size: 16px;
    color: #555;
}

.icon {
    font-size: 50px;
    color: #d4af37;
    margin-bottom: 15px;
}

/* Read More Button */
.btn-read-more {
    background-color: #d4af37;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    font-size: 1rem;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
    animation: blink 1.5s infinite;
    border-radius: 5px;
    cursor: pointer;
}

.btn-read-more:hover {
    background-color: #343a40;
    color: #fff;
}

/* Blinking Animation */
@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.6; }
    100% { opacity: 1; }
}

/* Detailed Section */
.detailed-section {
    padding: 50px 20px;
    background: #fff;
    border-top: 2px solid #d4af37;
    display: none;
}

.detailed-section h3 {
    font-size: 30px;
    color: #343a40;
    font-weight: bold;
}

.detailed-section p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

/* Show section when active */
.detailed-section.active {
    display: block;
}
.team-section {
    padding: 50px 20px;
    text-align: center;
    background: linear-gradient(90deg, #f1f1f1, #e2e2e2);
}

.team-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-card {
    background: #ffffff;
    border: 1px solid #d4af37;
    padding: 20px;
    width: 250px;
    text-align: center;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.team-card img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    object-fit: cover;
    border: 4px solid #d4af37;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 20px;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 16px;
    color: #777;
}


/* General Contact us Style */
.custom-contact-page {
    background: #f8f9fa;
    color: #343a40;
    border-top: 2px solid #d4af37;
    border-bottom: 2px solid #d4af37;
    padding: 50px 0;
    border-radius: 8px;
}

.custom-contact-page .form-control {
    background-color: #fff;
    color: #495057;
    border: 1px solid #ced4da;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.custom-contact-page .form-control::placeholder {
    color: #6c757d;
}

.custom-contact-page .form-control:focus {
    border-color: #d4af37;
    box-shadow: 0 0 5px rgba(255, 193, 7, 0.5);
}

.custom-contact-page .btn {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.custom-contact-page .btn:hover {
    background-color: #e0a800;
    color: #fff;
    box-shadow: 0 0 5px rgba(224, 168, 0, 0.8);
}

.custom-contact-page .social-links a {
    font-size: 20px;
    transition: transform 0.3s, color 0.3s;
}

.custom-contact-page .social-links a:hover {
    color: #d4af37;
    transform: scale(1.2);
}

/* General Home Style */
.carousel-caption {
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 5px;
}
.btn-primary {
    border-color: #d4af37 !important;
}
.service-card {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    transition: transform 0.3s;
}
.about-section img {
    max-width: 100%;
    border-radius: 10px;
}
.satisfaction-section {
    background: #f8f9fa;
}

.card {
    transition: all 0.3s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
}

.stats-box {
    border: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.stat-item h4 {
    color: #343a40;
    font-size: 2rem;
}

.stat-item p {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6c757d;
}

.services-carousel-section {
    background: #f8f9fa;
}

.services-carousel-section-2{
    background: #f8f9fa;
}

.service-card {
    transition: all 0.3s ease-in-out;
    border: none;
    border-radius: 15px;
    overflow: hidden;
}

.service-card img {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.service-card .card-title {
    font-weight: bold;
    color: #343a40;
    font-size: 1.4rem;
}

.service-card .card-text {
    color: #6c757d;
    font-size: 1rem;
}

.service-card .btn {
    background-color: #d4af37;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* Digital Solutions Section Styling */
.digital-solutions-section {
    background: linear-gradient(135deg, #f8f9fa 50%, #d4af37 50%);
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #343a40;
    text-transform: uppercase;
}

.section-title span {
    color: #d4af37;
}

.section-description {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.8;
    margin-top: 15px;
}

.solution-features li {
    font-size: 1.2rem;
    color: #343a40;
    font-weight: 600;
    margin-top: 10px;
}

.solution-features li i {
    color: #d4af37;
    margin-right: 10px;
}

.btn-learn-more {
    background-color: #d4af37;
    border: none;
    padding: 12px 30px;
    font-weight: bold;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease-in-out;
}

.btn-learn-more:hover {
    background-color: #343a40;
    color: #fff;
}

.solution-image img {
    border-radius: 20px;
    transition: transform 0.3s ease-in-out;
}

.solution-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.carousel-indicators li {
    background-color: #d4af37;
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    padding: 20px;
}

.about-section .btn-primary {
    background-color: #d4af37;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.testimonial-card {
    background: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s;
}
.testimonial-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


/* General Accounting Project Style */

.projects-section {
    background: #f4f7f6; 
    padding: 80px 20px;
    text-align: center;
    position: relative;
}
.projects-section .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #2e3d47;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.1);
}

.projects-section .section-description {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 50px;
    font-style: italic;
}

.projects-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.projects-heading {
    font-size: 30px;
    font-weight: bold;
    width: 100%;
    margin-bottom: 30px;
    color: #d4af37;
    text-align: left;
    text-transform: uppercase;
}

.project-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 30px;
    width: 320px;
    text-align: left;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.project-card h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.project-card p {
    font-size: 16px;
    color: #555;
}

.status {
    font-weight: bold;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    text-transform: capitalize;
}

.status.completed {
    color: #fff;
    background-color: #28a745; 
}

.status.ongoing {
    color: #fff;
    background-color: rgba(212, 175, 55, 0.9); 
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #d4af37;
    transition: width 0.3s ease-in-out;
}

.project-card:hover::before {
    width: 100%;
}






/* Services Section */
.services {
    background: #ffffff;
    padding: 60px 20px;
    text-align: center;
    border-top: 5px solid rgba(212, 175, 55, 0.8);
    border-bottom: 5px solid rgba(212, 175, 55, 0.8);
}

.services .container {
    max-width: 1200px;
    margin: 0 auto;
}

.services .section-title {
    font-size: 38px;
    color: #2c2c2c;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 3px 5px rgba(212, 175, 55, 0.8);
}

.services .section-description {
    font-size: 18px;
    color: #555;
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Tab Navigation */
.tab-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.tab-button {
    background: #f9f9f9;
    border: 2px solid rgba(212, 175, 55, 0.8);
    border-radius: 8px;
    padding: 15px 25px;
    font-size: 16px;
    color: #2c2c2c;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-button i {
    font-size: 20px;
    color: rgba(212, 175, 55, 0.8);
}

.tab-button:hover, .tab-button.active {
    background: rgba(212, 175, 55, 0.8);
    color: #fff;
}

.tab-button:hover i, .tab-button.active i {
    color: #fff;
}

/* Tab Content */
.tab-content {
    background: #f5f5f5;
    border: 1px solid rgba(212, 175, 55, 0.8);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.tab-panel h2 {
    font-size: 28px;
    color: rgba(212, 175, 55, 0.8);
    text-transform: uppercase;
    margin-bottom: 15px;
}

.tab-panel p {
    font-size: 18px;
    line-height: 1.8;
    color: #333;
}




/* General Login Styles  */
.login-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
}

.login-container {
    background: #ffffff;
    padding: 40px;
    width: 400px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: fadeIn 1s ease-in-out;
}

.login-header h2 {
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.login-header p {
    color: #777;
    margin-bottom: 30px;
}

.login-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.login-form .form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.login-form .form-group input {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.login-form .form-group input:focus {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.remember-me input {
    margin-right: 5px;
}

.forgot-password {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password:hover {
    text-decoration: underline;
}

.btn-login {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #d4af37;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-login:hover {
    background: #ffd700;
    transform: scale(1.05);
}

.social-login {
    margin-top: 20px;
}

.social-login p {
    color: #555;
    margin-bottom: 10px;
}

.signup-link {
    margin-top: 20px;
    font-size: 14px;
}

.signup-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Animations login */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* General Register Style */
.register-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background: #fff;
}

.register-container {
    background: #ffffff;
    padding: 40px;
    width: 450px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    animation: slideIn 1s ease-in-out;
}

.register-header h2 {
    font-size: 30px;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.register-header p {
    color: #777;
    margin-bottom: 30px;
}

.register-form .form-group {
    text-align: left;
    margin-bottom: 20px;
}

.register-form .form-group label {
    display: block;
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.register-form .form-group input {
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.register-form .form-group input:focus {
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
    border-color: #d4af37;
}

.form-options {
    text-align: left;
    margin-bottom: 20px;
}

.terms-and-conditions {
    font-size: 14px;
    color: #555;
}

.terms-and-conditions a {
    color: #d4af37;
    text-decoration: none;
}

.terms-and-conditions a:hover {
    text-decoration: underline;
}

.btn-register {
    width: 100%;
    padding: 12px 0;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background: #d4af37;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-register:hover {
    background: #ffd700;
    transform: scale(1.05);
}

/* Social Register */
.social-register {
    margin-top: 20px;
}

.social-register p {
    color: #555;
    margin-bottom: 10px;
}

.login-link {
    margin-top: 20px;
    font-size: 14px;
}

.login-link a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}