/* General Styles */
:root {
    --primary-color: #f5df4e;
    --dark-color: #212529;
    --light-color: #f8f9fa;
}

.btn-primary {
    --bs-btn-hover-border-color: #d3c14b;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--dark-color);
}

.bg-primary{
    background: #f5df4e!important;
}

.btn:hover {
    color: var(--bs-btn-hover-color);
    background-color: var(--bs-btn-hover-border-color);
    border-color: var(--bs-btn-hover-border-color);
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    color: #000;
    font-weight: 700;
    font-size: 24px;
}

.menu-toggle {
    width: 30px;
    height: 25px;
    position: relative;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

nav .scrolled button span{
    background-color: #000;
}
.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.menu-toggle span:nth-child(3) { bottom: 0; }

/* Fullscreen Menu */
.fullscreen-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.fullscreen-menu.active {
    display: flex;
    opacity: 1;
}

.menu-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.menu-content ul li {
    margin: 20px 0;
}

.menu-content ul li a {
    color: #fff;
    font-size: 32px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.menu-content ul li a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
}

.typing-text {
    font-size: 60px;
    font-weight: 700;
    margin-bottom: 20px;
}

.scroll-down-arrow {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: #000;
    font-size: 24px;
    animation: bounce 2s infinite;
}

.featured-box.style-4 .featured-box-icon {
    align-items: center;
    box-shadow: 0 0 50px rgba(0, 0, 0, .03);
    display: flex;
    flex-shrink: 0;
    height: 120px;
    justify-content: center;
    margin: 0 auto 1.5rem;
    text-align: center;
    width: 120px;
}

.border-primary {
  border-color: #f5df4e !important;
}

.section-title::after{
    background-color: #f5df4e !important;
}

    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

.fs_9rem_fw_500 {
  font-size: 9rem !important;
  font-weight: 500;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-title:after {
    content: '';
    width: 60px;
    height: 3px;
    background-color: var(--primary-color);
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
}

/* Service Boxes */
.service-box {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 40px;
    color: #f5df4e !important;
    margin-bottom: 20px;
}

.btn-primary{
    background: #f5df4e;
    border-color: #f5df4e;
    color: #000;
}

/* Contact Form */
.form-control {
    height: 50px;
    margin-bottom: 20px;
    border: 2px solid #eee;
}

textarea.form-control {
    height: auto;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: #fff;
    padding: 20px 0 0 0;
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-30px);
    }
    60% {
        transform: translateY(-15px);
    }
}

/* Responsive Design */
@media (max-width: 767.98px) {
  #home {
    padding-top: 100px;
  }

  .section {
        padding: 65px 0 0 0;
    }
}

@media (max-width: 768px) {
    .typing-text {
        font-size: 29px;
    }
    
    .menu-content ul li a {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    #about b {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        max-width: 100%;
        display: inline-block;
    }

    .s575px_dn {
        display: none;
    }
}

/* Skills Section Styles */
.progress {
    height: 8px;
    margin-bottom: 30px;
    background-color: #f1f1f1;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar {
    background-color: var(--primary-color);
    position: relative;
    transition: none;
}

.skill-item {
    margin-bottom: 30px;
}

.skill-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.skill-header h4 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.skill-header span {
    font-weight: 600;
    color: var(--primary-color);
}
