#navbar{
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.527) 0%, rgba(32, 58, 67, 0.466) 100%);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 15px 0;
    transition: all 0.3s ease;
}

#navbar .container-fluid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
    gap: 0;
}

#navbarLabel{
    width: 100%;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-collapse{
    justify-content: end;
}

.nav-link, .dropdown-item{
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 8px 16px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::before, .dropdown-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before, .dropdown-item:hover::before {
    width: 80%;
}

.dropdown-menu{
    background: linear-gradient(135deg, rgba(15, 32, 39, 0.98) 0%, rgba(32, 58, 67, 0.98) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    padding: 8px 0;
    margin-top: 10px;
}

.dropdown-item:hover{
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
    color: #ff6b35 !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.nav-link:hover{
    color: #ff6b35 !important;    
    background: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.4rem;
    color: #ff6b35 !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.navbar-brand:hover {
    color: #f7931e !important;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.navbar-toggler {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(247, 147, 30, 0.2) 100%) !important;
    border: 1px solid rgba(255, 107, 53, 0.3) !important;
    border-radius: 8px !important;
    padding: 8px 12px !important;
    transition: all 0.3s ease !important;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
}

.navbar-toggler:hover {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.3) 0%, rgba(247, 147, 30, 0.3) 100%) !important;
    border-color: rgba(255, 107, 53, 0.5) !important;
    transform: scale(1.05);
    transition: all 0.3s ease !important;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25) !important;
}

/* Body padding for fixed navbar */
body {
    padding-top: 0;
    margin: 0;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

html {
    scroll-behavior: smooth;
}

/* Video Section */
#videoSection {
    position: relative;
    height: 70vh;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

#videoSection::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    z-index: 5;
}

.video-container{
    position: relative;
    height: 70vh;
    width: 100%;
}

.video-container>video{
    width: 100%;
    height: 70vh;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
}

.video-overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70vh;
    background-color: rgba(36, 35, 35, 0.655);
    z-index: -5;
}

/* Video Content Overlay */
.video-content {
    position: absolute;
    top: 65%;
    left: 10%;
    transform: translateY(-50%);
    text-align: left;
    color: white;
    z-index: 10;
    width: 50%;
    max-width: 600px;
    padding: 0 20px;
    box-sizing: border-box;
}

.video-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: fadeInLeft 1s ease-out;
    line-height: 1.2;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.video-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    animation: fadeInLeft 1s ease-out 0.3s both;
    line-height: 1.3;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.video-cta {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    animation: fadeInLeft 1s ease-out 0.6s both;
    white-space: nowrap;
}

.video-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    color: white;
    text-decoration: none;
}

/* Video Animations - Changed to fadeInLeft */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Video */
@media screen and (max-width: 768px) {
    #videoSection {
        height: 60vh;
        margin-top: 0;
    }
    
    .video-container {
        height: 60vh;
    }
    
    .video-container>video {
        height: 60vh;
    }
    
    .video-overlay {
        height: 60vh;
    }
    
    .video-content {
        width: 70%;
        left: 5%;
        top: 65%;
        padding: 0 15px;
    }
    
    .video-title {
        font-size: 2.5rem;
        margin-bottom: 15px;
        line-height: 1.1;
    }
    
    .video-subtitle {
        font-size: 1.2rem;
        margin-bottom: 25px;
        line-height: 1.2;
    }
    
    .video-cta {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    #videoSection {
        height: 50vh;
        margin-top: 0;
    }
    
    .video-container {
        height: 50vh;
    }
    
    .video-container>video {
        height: 50vh;
    }
    
    .video-overlay {
        height: 50vh;
    }
    
    .video-content {
        width: 80%;
        left: 5%;
        top: 65%;
        padding: 0 10px;
    }
    
    .video-title {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.1;
    }
    
    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.2;
    }
    
    .video-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 480px) {
    .video-content {
        width: 90%;
        left: 5%;
        top: 65%;
        padding: 0 8px;
    }
    
    .video-title {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .video-subtitle {
        font-size: 0.9rem;
        margin-bottom: 18px;
    }
    
    .video-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Info Section */
#infoSection {
    position: relative;
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

#infoSection h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

#infoSection h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 2px;
}

#infoSection .lead {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 50px;
}

/* Service Categories */
.service-category {
    margin-bottom: 60px;
}

.category-header {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    gap: 20px;
    flex-wrap: wrap;
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.category-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Service Items */
.service-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 107, 53, 0.5);
}

.service-item i {
    font-size: 2rem;
    color: #ff6b35;
    transition: all 0.3s ease;
}

.service-item:hover i {
    color: #f7931e;
    transform: scale(1.1);
}

.service-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    line-height: 1.4;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.service-detail {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.3;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    margin-top: 5px;
}

.category-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    #infoSection {
        padding: 60px 0;
    }
    
    #infoSection h1 {
        font-size: 2.5rem;
        padding: 0 15px;
    }
    
    .category-header {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    
    .category-header h2 {
        font-size: 2rem;
        text-align: center;
        padding: 0 10px;
    }
    
    .category-description {
        font-size: 1rem;
        padding: 0 15px;
    }
    
    .service-item {
        padding: 15px 10px;
        margin: 0 5px;
    }
    
    .service-item span {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .service-item i {
        font-size: 1.5rem;
    }
    
    .service-detail {
        font-size: 0.7rem;
        line-height: 1.2;
    }
}

@media screen and (max-width: 576px) {
    #infoSection {
        padding: 40px 0;
    }
    
    #infoSection h1 {
        font-size: 2rem;
        padding: 0 10px;
        margin-bottom: 20px;
    }
    
    #infoSection .lead {
        font-size: 1rem;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .category-header {
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .category-header h2 {
        font-size: 1.8rem;
        padding: 0 5px;
    }
    
    .category-description {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .category-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .service-category {
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .service-item {
        padding: 12px 8px;
        margin: 0 3px;
        gap: 10px;
    }
    
    .service-item span {
        font-size: 0.75rem;
        line-height: 1.2;
        padding: 0 5px;
    }
    
    .service-item i {
        font-size: 1.3rem;
    }
    
    .service-detail {
        font-size: 0.65rem;
        line-height: 1.1;
        padding: 0 3px;
    }
}

@media screen and (max-width: 480px) {
    #infoSection h1 {
        font-size: 1.8rem;
        padding: 0 8px;
    }
    
    .category-header h2 {
        font-size: 1.6rem;
        padding: 0 5px;
    }
    
    .category-description {
        font-size: 0.85rem;
        padding: 0 8px;
    }
    
    .service-item span {
        font-size: 0.7rem;
        padding: 0 3px;
    }
    
    .service-item {
        padding: 10px 6px;
        margin: 0 2px;
    }
    
    .service-detail {
        font-size: 0.6rem;
        line-height: 1.1;
        padding: 0 2px;
    }
}

/* Footer Styles */
.footer-section {
    background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
    color: white;
    padding: 60px 0 0 0;
    position: relative;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.footer-logo h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ff6b35;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 20px;

}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b35;
    transform: translateX(5px);
}

.footer-links i {
    font-size: 0.8rem;
    color: #ff6b35;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    color: #ff6b35;
    font-size: 1.1rem;
    margin-top: 2px;
    min-width: 20px;
}

.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.contact-item a,
.contact-item span {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff6b35;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    justify-content: flex-end;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ff6b35;
}

/* Responsive Footer */
@media screen and (max-width: 768px) {
    .footer-section {
        padding: 40px 0 0 0;
    }
    
    .footer-bottom-links {
        justify-content: center;
        margin-top: 15px;
    }
    
    .copyright-text {
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-title {
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media screen and (max-width: 576px) {
    .social-links {
        justify-content: center;
    }
    
    .footer-links a {
        justify-content: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
    }
}

/* Responsive Navbar - Mobile Professional Design */
@media screen and (max-width: 991px) {
    #navbar {
        padding: 12px 0;
        background: linear-gradient(135deg, rgba(15, 32, 39, 0.98) 0%, rgba(32, 58, 67, 0.98) 100%);
        backdrop-filter: blur(20px);
        border-bottom: 2px solid rgba(255, 107, 53, 0.4);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
    }
    
    #navbar .container-fluid {
        padding: 0 15px;
        gap: 0;
    }
    
    .navbar-collapse {
        background: linear-gradient(135deg, rgba(15, 32, 39, 0.95) 0%, rgba(32, 58, 67, 0.95) 100%);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 15px;
        padding: 20px;
        border: 1px solid rgba(255, 107, 53, 0.2);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease-out;
    }
    
    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-20px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    .navbar-nav {
        gap: 10px;
        padding: 10px 0;
    }
    
    .nav-link {
        padding: 15px 20px !important;
        margin: 5px 0;
        border-radius: 10px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%);
        border-color: rgba(255, 107, 53, 0.4);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.2);
    }
    
    .dropdown-menu {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 10px;
        margin-top: 5px;
        padding: 10px 0;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    }
    
    .dropdown-item {
        padding: 12px 25px;
        margin: 3px 15px;
        border-radius: 8px;
        font-size: 0.95rem;
        background: transparent;
        border: none;
        transition: all 0.3s ease;
    }
    
    .dropdown-item:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 100%);
        color: #ff6b35 !important;
        transform: translateX(8px);
        box-shadow: 0 5px 15px rgba(255, 107, 53, 0.15);
    }
    
    .navbar-brand {
        font-size: 1.3rem;
        padding: 0;
        margin: 0;
    }
    
    .navbar-toggler {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(247, 147, 30, 0.15) 100%) !important;
        border: 2px solid rgba(255, 107, 53, 0.4) !important;
        border-radius: 12px !important;
        padding: 10px 15px !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
        margin: 0;
    }
    
    .navbar-toggler:hover {
        background: linear-gradient(135deg, rgba(255, 107, 53, 0.25) 0%, rgba(247, 147, 30, 0.25) 100%) !important;
        border-color: rgba(255, 107, 53, 0.6) !important;
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
    }
    
    .navbar-toggler:focus {
        box-shadow: 0 0 0 0.3rem rgba(255, 107, 53, 0.3) !important;
    }
    
    .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='rgba(255, 107, 53, 0.9)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
    }
}

@media screen and (max-width: 768px) {
    #navbar {
        padding: 10px 0;
    }
    
    #navbar .container-fluid {
        padding: 0 12px;
        gap: 0;
    }
    
    .navbar-collapse {
        margin-top: 12px;
        padding: 15px;
        border-radius: 12px;
    }
    
    .nav-link {
        padding: 12px 18px !important;
        font-size: 0.95rem;
        margin: 3px 0;
    }
    
    .dropdown-item {
        padding: 10px 20px;
        margin: 2px 10px;
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
        padding: 0;
        margin: 0;
    }
    
    .navbar-toggler {
        padding: 8px 12px !important;
        margin: 0;
    }
}

@media screen and (max-width: 576px) {
    #navbar {
        padding: 8px 0;
    }
    
    #navbar .container-fluid {
        padding: 0 10px;
        gap: 0;
    }
    
    .navbar-collapse {
        margin-top: 10px;
        padding: 12px;
        border-radius: 10px;
    }
    
    .nav-link {
        padding: 10px 15px !important;
        font-size: 0.9rem;
        margin: 2px 0;
    }
    
    .dropdown-item {
        padding: 8px 15px;
        margin: 1px 8px;
        font-size: 0.85rem;
    }
    
    .navbar-brand {
        font-size: 1.1rem;
        padding: 0;
        margin: 0;
    }
    
    .navbar-toggler {
        padding: 6px 10px !important;
        margin: 0;
    }
}

@media screen and (max-width: 480px) {
    #navbar .container-fluid {
        padding: 0 8px;
        gap: 0;
    }
    
    .navbar-collapse {
        margin-top: 8px;
        padding: 10px;
        border-radius: 8px;
    }
    
    .nav-link {
        padding: 8px 12px !important;
        font-size: 0.85rem;
        margin: 1px 0;
    }
    
    .dropdown-item {
        padding: 6px 12px;
        margin: 1px 6px;
        font-size: 0.8rem;
    }
    
    .navbar-brand {
        font-size: 1rem;
        padding: 0;
        margin: 0;
    }
    
    .navbar-toggler {
        padding: 5px 8px !important;
        margin: 0;
    }
}

/* Special mobile navbar adjustments */
@media screen and (max-width: 437px) {
    #navbar .container-fluid {
        padding: 0 8px;
        gap: 10px;
    }
    
    .navbar-toggler {
        width: auto;
        min-width: 50px;
        margin: 0;
        align-self: center;
        flex-shrink: 0;
        padding: 4px 6px !important;
    }
    
    .navbar-brand {
        font-size: 0.95rem;
        margin: 0;
        padding: 0;
        align-self: center;
        flex-shrink: 0;
    }
    
    .navbar-collapse {
        width: 100%;
        margin-top: 8px;
    }
    
    .navbar-nav {
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: center;
    }
}



/* Special attention-grabbing design for "Teklif İste" link only */
.navbar-nav .nav-link.quote-link {
    background: linear-gradient(45deg, #ff6b35, #f7931e, #ff6b35);
    background-size: 200% 200%;
    color: white !important;
    font-weight: 700;
    padding: 8px 16px !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
    animation: quoteBlink 2s ease-in-out infinite, gradientMove 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
    margin-left: 15px;
}

.navbar-nav .nav-link.quote-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shine 2s ease-in-out infinite;
}

.navbar-nav .nav-link.quote-link:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.6);
    animation: quoteBlink 0.5s ease-in-out infinite, gradientMove 1.5s ease-in-out infinite;
}

/* Blinking animation */
@keyframes quoteBlink {
    0%, 100% { 
        opacity: 1;
        transform: scale(1);
    }
    50% { 
        opacity: 0.8;
        transform: scale(1.02);
    }
}

/* Gradient movement animation */
@keyframes gradientMove {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

/* Shine effect animation */
@keyframes shine {
    0% { 
        left: -100%;
    }
    100% { 
        left: 100%;
    }
}

/* Pulse effect for extra attention */
.navbar-nav .nav-link.quote-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 107, 53, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0% { 
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% { 
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Mobile-specific centering for TEKLİF İSTE button */
@media screen and (max-width: 991px) {
    .navbar-nav .nav-link.quote-link {
        margin-left: 0 !important;
        text-align: center;
        justify-content: center;
        width: 100%;
        max-width: 200px;
        margin: 5px auto !important;
    }
}

