:root {
    --primary-black: rgba(26, 26, 26, 0.95);
    --secondary-black: rgba(26, 26, 26, 0.85);
    --accent-color: #006633;
    --secondary-color: #228b22;
    --light-accent: #90ee90;
    --text-accent: #004d26;
    --islamic-green: #006633;
    --light-gray: #f8f9fa;
    --silver: #c0c0c0;
    --text-color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
    color: #333;
}

.arabic-font {
    font-family: "Amiri", serif;
}

/* Islamic Pattern Background */
.islamic-pattern {
    background-image: radial-gradient(
            circle at 25% 25%,
            transparent 2px,
            rgba(0, 102, 51, 0.1) 2px,
            rgba(0, 102, 51, 0.1) 4px,
            transparent 4px
        ),
        linear-gradient(
            45deg,
            transparent 25%,
            rgba(0, 102, 51, 0.05) 25%,
            rgba(0, 102, 51, 0.05) 75%,
            transparent 75%
        );
    background-size: 30px 30px, 60px 60px;
}

/* Accessibility Styles */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--primary-black);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 9999;
    border-radius: 4px;
    font-weight: bold;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.sr-only-focusable:focus,
.sr-only-focusable:active {
    position: static !important;
    width: auto !important;
    height: auto !important;
    padding: inherit !important;
    margin: inherit !important;
    overflow: visible !important;
    clip: auto !important;
    white-space: normal !important;
}

/* Enhanced Focus Styles for Accessibility */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--accent-color);
    outline-offset: 2px;
}

/* High contrast focus for better visibility */
.nav-link:focus,
.dropdown-item:focus,
.btn:focus,
.btn-custom:focus,
.social-link:focus,
.footer-link:focus {
    background-color: var(--accent-color) !important;
    color: white !important;
    outline: 3px solid #ffffff;
    outline-offset: 2px;
}

/* Hero navigation focus */
.hero-nav:focus {
    background-color: var(--text-accent) !important;
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    transform: translateY(-50%) scale(1.1);
}

.hero-indicator:focus {
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    transform: scale(1.2);
}

/* Back to top button focus */
.back-to-top:focus {
    background-color: var(--text-accent) !important;
    outline: 3px solid #ffffff;
    outline-offset: 2px;
    transform: translateY(-3px);
}

/* Header Styles */
.top-header {
    background: var(--primary-black);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.main-header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-img {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-img-primary {
    width: 60px;
    height: 60px;
    background: var(--secondary-black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.logo-text h1 {
    color: var(--primary-black);
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.logo-text p {
    color: var(--text-accent);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* Navigation */
.navbar {
    background: var(--primary-black) !important;
    padding: 12px 0;
    transition: all 0.3s ease;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(26, 26, 26, 0.95) !important;
    backdrop-filter: blur(10px);
}

/* Fix hamburger button for mobile */
.navbar-toggler {
    border: 2px solid var(--accent-color);
    padding: 6px 10px;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 102, 51, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23006633' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    width: 1.5em;
    height: 1.5em;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-top: 0;
}

.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--accent-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    background: var(--secondary-black);
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
    color: white !important;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--accent-color);
    color: white !important;
}

/* Hero Section - FIXED */
.hero-section {
    position: relative;
    overflow: hidden;
    height: 80vh;
    min-height: 600px;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.hero-slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: scroll; /* Disable parallax effect on background */
    position: relative;
}

/* FTIK-Style Hero Components */
.hero-text-card {
    background: rgba(0, 102, 51, 0.15);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(0, 102, 51, 0.3);
    margin-bottom: 2rem;
}

.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.stats-icon-container {
    margin-bottom: 1.5rem;
}

.stats-icon-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-color), #00b359);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.stats-icon-circle i {
    font-size: 2.5rem;
    color: white;
}

.stats-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.stats-subtitle {
    font-size: 1rem;
    color: rgba(0, 102, 51, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(0, 102, 51, 0.9);
    font-weight: 400;
}

.hero-button-container {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.btn-hero-custom {
    background: linear-gradient(135deg, var(--accent-color), #00b359);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 51, 0.3);
    border: none;
}

.btn-hero-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 102, 51, 0.4);
    color: white;
    text-decoration: none;
}

/* Enhanced Typography */
.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(0, 102, 51, 0.9);
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

.hero-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);
}

/* Hero Section - FULLSCREEN */
/* html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0;
}



.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    z-index: 1;
}

.hero-slide {
    min-width: 100vw;
    height: 100vh;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
} */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><polygon points="50,10 61,35 90,35 69,57 78,82 50,70 22,82 31,57 10,35 39,35" fill="%23006633" opacity="0.1"/></svg>');
    background-size: 100px 100px;
    opacity: 0.3;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    z-index: 10;
    color: white;
}

.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 102, 51, 0.8);
    color: white;
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 15;
}

.hero-nav:hover {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 15;
}

.hero-indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-indicator.active {
    background: var(--accent-color);
    transform: scale(1.3);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, white, var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: font-size 0.3s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--light-accent);
    margin-bottom: 30px;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: font-size 0.3s ease;
}

.hero-arabic {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 30px;
    direction: rtl;
    transition: font-size 0.3s ease;
}

.text-light {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transition: font-size 0.3s ease;
}

.btn-custom {
    background: var(--accent-color);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-custom:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 102, 51, 0.4);
}

/* Welcome Section */
.welcome-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    color: var(--primary-black);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--accent-color);
}

.dean-card {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 40px;
}

.dean-excerpt {
    text-align: justify;
}

.dean-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(
        90deg,
        var(--accent-color),
        var(--secondary-color)
    );
}

.dean-photo {
    width: 245px;
    height: 246px;
    border-radius: 15px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-accent);
    border: 5px solid var(--accent-color);
    flex-shrink: 0;
}

.dean-content {
    flex: 1;
    text-align: left;
}

.modal-body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Program Studi Cards */
.prodi-section {
    padding: 80px 0;
    background: white;
}

.prodi-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.prodi-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.prodi-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--secondary-color)
    );
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.prodi-card h4 {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 15px;
}

.prodi-card p {
    color: #666;
    font-size: 14px;
}

/* News Section */
.sidebar-card {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}
.sidebar-card h5 {
    font-weight: 600;
    border-bottom: 2px solid #006633;
    padding-bottom: 10px;
    margin-bottom: 15px;
}
.news-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.news-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.news-link {
    text-decoration: none;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.news-image {
    height: 200px;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-accent);
    font-size: 3rem;
}

.news-content {
    padding: 20px;
}

.news-date {
    color: var(--text-accent);
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-title {
    color: var(--primary-black);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 16px;
    text-align: justify;
}

.news-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    text-align: justify;
}

.news-item {
    border-bottom: 1px solid #eee;
    padding: 10px 0;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item .date {
    font-size: 12px;
    color: #006633;
}
.news-item .title {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-black);
}

/* Staff Slider */
.staff-section {
    padding: 80px 0;
    background: var(--primary-black);
    color: white;
}

.staff-card {
    background: var(--secondary-black);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    margin: 0 10px;
    transition: all 0.3s ease;
}

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

.staff-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--accent-color);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.staff-name {
    color: white;
    font-weight: 600;
    margin-bottom: 5px;
}

.staff-title {
    color: var(--light-accent);
    font-size: 14px;
}

/* Announcements Sidebar */
.announcement-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.announcement-item {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

.announcement-item:last-child {
    border-bottom: none;
}

.announcement-date {
    color: var(--text-accent);
    font-size: 12px;
    font-weight: 500;
}

.announcement-title {
    color: var(--primary-black);
    font-weight: 500;
    font-size: 14px;
    margin-top: 2px;
}

.announcement-link {
    color: var(--primary-black);
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Partnership Section - FIXED */
.partnership-section {
    padding: 60px 0;
    background: white;
    overflow: hidden; /* Prevent horizontal scroll */
}

.partner-logo {
    width: 120px;
    height: 80px;
    background: var(--light-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    z-index: 1;
}

.partner-logo:hover {
    border-color: var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 102, 51, 0.2);
    background: white;
}

/* Fix for partner container to prevent overflow */
.partner-slider-container {
    overflow: visible;
    padding: 20px 0;
}

.partner-logo i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.partner-logo:hover i {
    color: var(--text-accent);
    transform: scale(1.1);
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--accent-color);
    padding-left: 10px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--secondary-black);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px 0;
    margin-top: 40px;
    text-align: center;
    color: #ccc;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 102, 51, 0.3);
}

.back-to-top:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 102, 51, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(
        135deg,
        var(--accent-color),
        var(--secondary-color)
    );
    padding: 60px 0;
    text-align: center;
    position: relative;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 60 60"><circle cx="30" cy="30" r="2" fill="white" opacity="0.1"/></svg>');
    background-size: 60px 60px;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta {
    background: white;
    color: var(--accent-color);
    padding: 15px 40px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin: 0 10px 10px 0;
}

.btn-cta:hover {
    background: var(--light-gray);
    color: var(--text-accent);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-cta-outline:hover {
    background: white;
    color: var(--accent-color);
}

/* Slider Styles */
.slider-container {
    position: relative;
    overflow: hidden;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.slider-item {
    min-width: 100%;
    flex: 0 0 auto;
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--accent-color);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-nav:hover {
    background: var(--text-accent);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

.slider-dots {
    text-align: center;
    margin-top: 30px;
}

.slider-dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: var(--accent-color);
    transform: scale(1.2);
}

/* Staff Slider Specific */
.staff-slider-item {
    min-width: 25%;
    padding: 0 10px;
}

/* Partnership Slider Specific */
.partner-slider-item {
    min-width: 16.666%;
    padding: 0 15px;
}

/* Responsive - FTIK Style Text Spacing & Layout */
@media (max-width: 768px) {
    .hero-section {
        height: 70vh; /* Diperpendek sesuai konten stats card */
        min-height: 70vh;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0 30px 0; /* Padding kompak */
        z-index: 10;
    }

    .hero-content .container {
        padding: 0 10px;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-content .row {
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0px;
        min-height: calc(70vh - 50px); /* Sesuai tinggi baru */
    }

    /* Hide text card completely on mobile */
    .hero-text-card {
        display: none !important;
    }

    .hero-content .col-lg-8 {
        display: none !important;
    }

    /* Compact stats card for mobile */
    .hero-stats-card {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
        border-radius: 1rem;
        padding: 2rem 1.5rem; /* Padding kompak */
        border: 1px solid rgba(255, 255, 255, 0.2);
        text-align: center;
        width: 100%;
        max-width: 350px; /* Ukuran kompak */
        margin: 0 auto;
        order: 1;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    }

    .hero-content .col-lg-4 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        order: 1 !important;
    }

    .stats-icon-circle {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, var(--accent-color), #00b359);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 0.75rem auto;
    }

    .stats-icon-circle i {
        font-size: 1.8rem;
        color: white;
    }

    .stats-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.5rem;
    }

    .stats-subtitle {
        font-size: 0.75rem;
        color: rgba(0, 102, 51, 0.9);
        margin-bottom: 1rem;
        font-weight: 300;
    }

    .stats-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .stat-item {
        background: rgba(255, 255, 255, 0.25);
        border-radius: 0.5rem;
        padding: 0.75rem;
        text-align: center;
    }

    .stat-number {
        font-size: 1rem;
        font-weight: 700;
        color: white;
        margin-bottom: 0.125rem;
    }

    .stat-label {
        font-size: 0.7rem;
        color: rgba(0, 102, 51, 0.9);
        font-weight: 400;
    }

    /* Mobile Typography - Optimized Spacing */
    .hero-title {
        font-size: 1.5rem !important; /* Sedikit lebih besar */
        font-weight: 700;
        color: white;
        margin-bottom: 1rem; /* Lebih banyak margin */
        line-height: 1.3;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    }

    .hero-subtitle {
        font-size: 0.85rem !important; /* Sedikit lebih besar */
        color: rgba(0, 102, 51, 0.9);
        margin-bottom: 1rem; /* Lebih banyak margin */
        line-height: 1.4;
        font-weight: 400;
    }

    .hero-description {
        font-size: 0.75rem !important; /* Sedikit lebih besar */
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.6; /* Line height lebih besar */
        margin-bottom: 0;
        text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
        word-spacing: 1px; /* Tambahan word spacing */
    }

    .hero-button-container {
        display: flex;
        justify-content: center;
        margin-top: 1.5rem; /* Lebih banyak margin top */
    }

    .btn-hero-custom {
        background: linear-gradient(135deg, var(--accent-color), #00b359);
        color: white;
        padding: 0.75rem 1.75rem; /* Lebih besar */
        border-radius: 0.75rem;
        font-size: 0.8rem; /* Sedikit lebih besar */
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: all 0.3s ease;
        box-shadow: 0 6px 20px rgba(0, 102, 51, 0.3);
        border: none;
    }

    .btn-hero-custom:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 25px rgba(0, 102, 51, 0.4);
        color: white;
        text-decoration: none;
    }

    /* Navigation styling */
    .hero-nav {
        width: 45px;
        height: 45px;
        font-size: 18px;
        z-index: 15;
    }

    .hero-prev {
        left: 12px;
    }

    .hero-next {
        right: 12px;
    }

    /* Indicators positioning */
    .hero-indicators {
        bottom: 15px;
        z-index: 15;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

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

    .dean-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .dean-photo {
        width: 239px;
        height: 240px;
        margin: 0 auto;
    }

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

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

    .btn-cta {
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
    }

    .hero-next {
        right: 12px;
    }

    /* Indicators positioning */
    .hero-indicators {
        bottom: 15px;
        z-index: 15;
    }

    .hero-indicator {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }

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

    .dean-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .dean-photo {
        width: 239px;
        height: 240px;
        margin: 0 auto;
    }

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

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

    .btn-cta {
        margin-bottom: 15px;
        width: 100%;
        max-width: 300px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .slider-prev {
        left: 10px;
    }

    .slider-next {
        right: 10px;
    }
}

/* Medium Mobile Devices - Full Text Visibility */
@media (max-width: 576px) {
    .hero-content {
        padding: 40px 0 60px 0;
    }

    .hero-content .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero-content .row {
        min-height: calc(100vh - 100px);
    }

    .hero-content .col-lg-8 {
        padding: 15px 10px;
    }

    /* Balanced text dengan full visibility */
    .hero-title {
        font-size: 1.4rem !important;
        line-height: 1.3 !important;
        margin-bottom: 14px !important;
        margin-top: 0 !important;
        font-weight: 700 !important;
        padding: 0 5px;
    }

    .hero-subtitle {
        font-size: 0.8rem !important;
        line-height: 1.5 !important;
        margin-bottom: 14px !important;
        padding: 0 8px;
    }

    .text-light {
        font-size: 0.7rem !important;
        line-height: 1.6 !important;
        margin-bottom: 18px !important;
        padding: 0 12px;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: clip !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    .btn-custom {
        font-size: 0.75rem !important;
        padding: 9px 18px !important;
        border-radius: 20px !important;
        min-width: 160px !important;
        max-width: 220px !important;
        margin: 8px auto 0 auto !important; /* Center dengan margin auto */
        display: block !important; /* Block untuk centering */
        text-align: center !important; /* Text centered */
    }

    .hero-nav {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }

    .hero-prev {
        left: 10px;
    }

    .hero-next {
        right: 10px;
    }
}

/* Small Mobile Devices - Maximum Text Visibility */
@media (max-width: 480px) {
    .hero-content {
        padding: 30px 0 50px 0;
    }

    .hero-content .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-content .row {
        min-height: calc(100vh - 80px);
    }

    .hero-content .col-lg-8 {
        padding: 12px 8px;
    }

    /* Compact tapi semua text visible */
    .hero-title {
        font-size: 1.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
        margin-top: 0 !important;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 0.75rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
        padding: 0 5px;
    }

    .text-light {
        font-size: 0.65rem !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
        padding: 0 8px;
        white-space: normal !important;
        overflow: visible !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    .btn-custom {
        font-size: 0.7rem !important;
        padding: 8px 16px !important;
        border-radius: 18px !important;
        min-width: 140px !important;
        max-width: 200px !important;
        margin: 8px auto 0 auto !important; /* Center dengan margin auto */
        display: block !important; /* Block untuk centering */
        text-align: center !important; /* Text centered */
    }

    .hero-nav {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .hero-prev {
        left: 8px;
    }

    .hero-next {
        right: 8px;
    }

    .hero-indicators {
        bottom: 12px;
    }

    .hero-indicator {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Extra Small Mobile Devices - Micro but Complete */
@media (max-width: 375px) {
    .hero-content {
        padding: 25px 0 45px 0;
    }

    .hero-content .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .hero-content .row {
        min-height: calc(100vh - 70px);
    }

    .hero-content .col-lg-8 {
        padding: 10px 5px;
    }

    /* Ultra-compact tapi semua text lengkap terlihat */
    .hero-title {
        font-size: 1.1rem !important;
        line-height: 1.3 !important;
        margin-bottom: 10px !important;
        margin-top: 0 !important;
        font-weight: 700 !important;
        padding: 0;
    }

    .hero-subtitle {
        font-size: 0.7rem !important;
        line-height: 1.5 !important;
        margin-bottom: 10px !important;
        padding: 0;
    }

    .text-light {
        font-size: 0.6rem !important;
        line-height: 1.6 !important;
        margin-bottom: 14px !important;
        padding: 0 5px;
        white-space: normal !important;
        overflow: visible !important;
        word-break: break-word !important;
        hyphens: auto !important;
    }

    .btn-custom {
        font-size: 0.65rem !important;
        padding: 7px 14px !important;
        border-radius: 16px !important;
        min-width: 120px !important;
        max-width: 180px !important;
        margin: 8px auto 0 auto !important; /* Center dengan margin auto */
        display: block !important; /* Block untuk centering */
        text-align: center !important; /* Text centered */
    }

    .hero-nav {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .hero-prev {
        left: 6px;
    }

    .hero-next {
        right: 6px;
    }

    .hero-indicators {
        bottom: 10px;
    }

    .hero-indicator {
        width: 6px;
        height: 6px;
        margin: 0 2px;
    }
}

/* Landscape Mode Optimization - Full Text Visibility */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        display: flex;
        align-items: center;
    }

    .hero-content {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px 0 40px 0;
    }

    .hero-content .container {
        height: 100%;
        display: flex;
        align-items: center;
    }

    .hero-content .row {
        min-height: calc(100vh - 60px);
        align-items: center;
    }

    .hero-content .col-lg-8 {
        padding: 10px 8px;
        justify-content: center;
    }

    .hero-title {
        font-size: 1.1rem !important;
        margin-bottom: 8px !important;
        margin-top: 0 !important;
        line-height: 1.2 !important;
    }

    .hero-subtitle {
        font-size: 0.7rem !important;
        margin-bottom: 8px !important;
        line-height: 1.3 !important;
    }

    .text-light {
        font-size: 0.6rem !important;
        margin-bottom: 12px !important;
        line-height: 1.4 !important;
        white-space: normal !important;
        overflow: visible !important;
        word-break: break-word !important;
        hyphens: auto !important;
        padding: 0 5px;
    }

    .btn-custom {
        font-size: 0.65rem !important;
        padding: 6px 12px !important;
        min-width: 100px !important;
        max-width: 140px !important;
    }

    .hero-nav {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .hero-indicators {
        bottom: 6px;
    }

    .hero-indicator {
        width: 5px;
        height: 5px;
        margin: 0 1px;
    }
}

 /* Simple Pagination Fix - Updated */
.pagination {
    --bs-pagination-color: var(--primary-black) !important;
}

.pagination .page-item.active .page-link,
.pagination .page-item.active .page-link:hover,
.pagination .page-item.active .page-link:focus {
    background-color: var(--accent-color) !important;
    border-color: var(--accent-color) !important;
    color: white !important;
}

.pagination .page-link {
    color: var(--primary-black) !important;
}

.pagination .page-link:hover {
    color: var(--accent-color) !important;
    background-color: var(--light-gray) !important;
    border-color: var(--accent-color) !important;
}

/* Breadcrumb Custom Styling */
.breadcrumb-item a {
    color: var(--accent-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--text-accent) !important;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--primary-black) !important;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-accent) !important;
}

/* Update Navigation Buttons */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100; /* Pastikan z-index tinggi */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    pointer-events: auto; /* Pastikan bisa diklik */
}

.slider-nav:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.slider-nav.slider-prev {
    left: -25px;
}

.slider-nav.slider-next {
    right: -25px;
}

.slider-nav i {
    color: var(--accent-color);
    font-size: 18px;
    pointer-events: none; /* Icon tidak menghalangi click */
}

/* Pastikan container tidak menghalangi tombol */
.slider-container {
    position: relative;
    margin-top: 50px;
    overflow: visible; /* Ubah dari hidden ke visible */
    padding: 0 60px;
}

.slider-content {
    overflow: hidden;
    border-radius: 12px;
    position: relative;
}


/* Partnership Section - Updated Styles */
/* Partnership Section - Height Auto Adjustment */
.partner-slider-container .slider-content {
    overflow: hidden;
    border-radius: 12px;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 10px; /* Reduced padding */
    height: auto; /* Auto height */
    min-height: fit-content; /* Fit content height */
    display: flex;
    align-items: center; /* Center content vertically */
}

.partner-slider-container .slider-wrapper {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    height: auto; /* Auto height for wrapper */
}

.partner-slider-container .slider-item {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    display: block;
    height: auto; /* Auto height for items */
    padding: 0; /* Remove extra padding */
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 5px; /* Reduced padding */
    height: auto; /* Auto height instead of 100% */
    min-height: 120px; /* Set minimum height */
    transition: transform 0.3s ease;
}

.partner-logo {
    width: 60px; /* Smaller logo */
    height: 60px; /* Smaller logo */
    background: linear-gradient(135deg, var(--accent-color), var(--text-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px; /* Reduced margin */
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(46, 125, 50, 0.2);
}

.partner-logo i {
    color: white;
    font-size: 24px; /* Smaller icon */
}

.partner-name {
    margin: 0;
    color: var(--primary-black);
    font-size: 11px; /* Smaller text */
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    min-height: 24px; /* Reduced min-height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove excessive bottom margins */
.partner-slider-container .row [class*="col-"] {
    margin-bottom: 8px !important; /* Consistent small margin */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .partner-logo {
        width: 55px;
        height: 55px;
    }

    .partner-logo i {
        font-size: 22px;
    }

    .partner-name {
        font-size: 10px;
        min-height: 22px;
    }

    .partner-item {
        padding: 8px 4px;
        min-height: 110px;
    }
}

@media (max-width: 768px) {
    .partner-slider-container .slider-content {
        padding: 12px 8px;
    }

    .partner-logo {
        width: 45px;
        height: 45px;
    }

    .partner-logo i {
        font-size: 18px;
    }

    .partner-name {
        font-size: 9px;
        min-height: 20px;
    }

    .partner-item {
        padding: 6px 3px;
        min-height: 90px;
    }
}

@media (max-width: 576px) {
    /* Hero section adjustments for very small screens */
    .hero-section {
        height: 100vh;
        min-height: 450px;
    }

    .hero-content {
        top: 35%;
        padding: 15px 0;
        transform: translateY(-35%);
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.05;
        margin-bottom: 8px;
        margin-top: 25px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.2;
        margin-bottom: 8px;
    }

    .text-light {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-bottom: 12px !important;
    }

    .btn-custom {
        font-size: 0.8rem;
        padding: 8px 14px;
    }

    /* Ensure Islamic Studies card is hidden on very small screens */
    .col-lg-4 {
        display: none;
    }

    /* Partner slider adjustments */
    .partner-slider-container .slider-content {
        padding: 10px 6px;
    }

    .partner-item {
        min-height: 80px;
    }

    .partner-name {
        font-size: 8px;
        min-height: 18px;
    }
}

/* Extra small mobile devices (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-content {
        top: 30%;
        transform: translateY(-30%);
        padding: 10px 0;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.0;
        margin-bottom: 6px;
        margin-top: 30px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        line-height: 1.1;
        margin-bottom: 6px;
    }

    .text-light {
        font-size: 0.75rem;
        line-height: 1.1;
        margin-bottom: 10px !important;
    }

    .btn-custom {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Mobile landscape mode */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-content {
        top: 45%;
        padding: 8px 0;
        transform: translateY(-45%);
    }

    .hero-title {
        font-size: 1.6rem;
        margin-bottom: 6px;
        margin-top: 15px;
        line-height: 1.0;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 6px;
        line-height: 1.1;
    }

    .text-light {
        font-size: 0.75rem;
        margin-bottom: 10px !important;
        line-height: 1.1;
    }

    .btn-custom {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    /* Hide Islamic Studies card completely in landscape */
    .col-lg-4 {
        display: none;
    }
}

/* Smooth animations */
@media (prefers-reduced-motion: no-preference) {
    .partner-item {
        animation: fadeInUp 0.6s ease-out;
    }

    .partner-item:nth-child(2) { animation-delay: 0.1s; }
    .partner-item:nth-child(3) { animation-delay: 0.2s; }
    .partner-item:nth-child(4) { animation-delay: 0.3s; }
    .partner-item:nth-child(5) { animation-delay: 0.4s; }
    .partner-item:nth-child(6) { animation-delay: 0.5s; }


}

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

/* Staff Slider - Height besar */
#staffSlider {
    min-height: 400px !important; /* Tinggi besar untuk staff cards */
}

/* Partner Slider - Height kecil */
#partnerSlider {
    min-height: 100px !important; /* Tinggi kecil untuk partner logos */
}

/* Alternative: Gunakan parent container class */
.staff-section .slider-wrapper {
    min-height: 400px;
}

.partnership-section .slider-wrapper {
    min-height: 100px;
}

/* Atau lebih specific dengan class */
.slider-container.staff-slider-container .slider-wrapper {
    min-height: 400px;
}

.slider-container.partner-slider-container .slider-wrapper {
    min-height: 100px;
}

/* Bootstrap Override - Menghilangkan Warna Biru Default */
:root {
    --bs-primary: var(--primary-color);
    --bs-primary-rgb: var(--primary-rgb);
    --bs-link-color: var(--text-color);
    --bs-link-hover-color: var(--primary-color);
    --bs-btn-focus-box-shadow: 0 0 0 0.25rem rgba(183, 122, 79, 0.25);
    --bs-focus-ring-color: rgba(183, 122, 79, 0.25);
}

/* Navbar Dropdown Override */
.navbar-nav .dropdown-menu {
    --bs-dropdown-link-active-color: #fff;
    --bs-dropdown-link-active-bg: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.navbar-nav .dropdown-item:focus,
.navbar-nav .dropdown-item:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.navbar-nav .dropdown-item.active,
.navbar-nav .dropdown-item:active {
    background-color: var(--primary-color);
    color: #fff;
}

/* Form Control Focus */
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(183, 122, 79, 0.25);
}

/* Button Primary Override */
.btn-primary {
    --bs-btn-bg: var(--primary-color);
    --bs-btn-border-color: var(--primary-color);
    --bs-btn-hover-bg: var(--primary-hover);
    --bs-btn-hover-border-color: var(--primary-hover);
    --bs-btn-active-bg: var(--primary-hover);
    --bs-btn-active-border-color: var(--primary-hover);
}

/* Mobile Button Centering Fix */
@media (max-width: 768px) {
    .btn-custom {
        margin-left: auto !important;
        margin-right: auto !important;
        display: block !important;
        text-align: center !important;
        width: fit-content !important;
    }
}

/* Navbar Toggler Focus */
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(183, 122, 79, 0.25);
}
