/* Hero Section */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 90px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.2;
}

#animated-text {
    position: relative;
    overflow: hidden;
    min-height: 60px;
}

.text-cycle {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 1.4;
}

.text-cycle.active {
    position: relative;
    opacity: 1;
    transform: translateY(0);
}

.text-cycle.slide-out {
    opacity: 0;
    transform: translateY(-50px);
}

/* Service Box Hover Effects */
.service-box {
    transition: all 0.4s ease;
    cursor: pointer;
    border: 2px solid transparent;
    min-height: 350px;
    text-align: center;
}

.service-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: #00d4ff;
}

.service-box:hover h4 {
    color: #00d4ff;
}

.service-box h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-box p {
    font-size: 18px;
    line-height: 1.7;
    color: #ccc;
    white-space: break-spaces;
}

/* Pricing Card Hover Effects */
.pricing-card {
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.4);
    border-color: #00d4ff;
}

/* About Card Hover */
.about-card {
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-card h3 {
    font-size: 32px;
    font-weight: 600;
    color: #00d4ff;
}

.about-card .divider-line {
    width: 80px;
    height: 3px;
    background: #00d4ff;
    margin: 15px 0;
}

.about-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
}

/* DOLENIX Principle */
.principle-box h4 {
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #00d4ff;
}

.principle-box p {
    font-size: 22px;
    font-style: italic;
    line-height: 1.6;
    color: #00d4ff;
}

/* Form Input Focus */
.form-control:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: #00d4ff !important;
    box-shadow: 0 0 0 0.2rem rgba(0, 212, 255, 0.25) !important;
    color: #fff !important;
}

select.form-control option {
    background: #1a1a1a;
    color: #fff;
}

.contact-form-wrapper .form-control {
    padding: 15px;
    font-size: 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #fff;
}

.contact-form-wrapper label {
    font-size: 16px;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-card h3 {
    font-size: 28px;
    font-weight: 600;
    color: #00d4ff;
}

.pricing-list {
    font-size: 15px;
    line-height: 1.8;
}

.pricing-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.check-icon {
    color: #00d4ff;
    font-size: 20px;
    font-weight: bold;
    margin-right: 10px;
    display: inline-block;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.pricing-list li:hover .check-icon {
    color: #00ffff;
    transform: scale(1.2);
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-title {
        font-size: 60px;
    }
    
    .text-cycle {
        font-size: 1.8rem;
    }
    
    .about-card h3 {
        font-size: 26px;
    }
    
    .service-box {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 40px;
    }
    
    .text-cycle {
        font-size: 1.4rem;
    }
    
    .about-card h3 {
        font-size: 22px;
    }
    
    .about-card p {
        font-size: 16px;
    }
    
    .principle-box h4 {
        font-size: 20px;
    }
    
    .principle-box p {
        font-size: 18px;
    }
    
    .service-box h4 {
        font-size: 20px;
    }
    
    .service-box p {
        font-size: 14px;
    }
    
    .pricing-card h3 {
        font-size: 24px;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Global Font Family */
* {
    font-family: 'Oswald', sans-serif !important;
}

/* Contact Button Large */
.btn-contact-large {
    padding: 10px 40px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    transition: all 0.4s 
ease !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-contact-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* About Heading */
.about-heading {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* Services Heading */
.services-heading {
    font-size: 48px;
    font-weight: 600;
}

/* Pricing Heading */
.pricing-heading {
    font-size: 48px;
    font-weight: 600;
}

.pricing-subtitle {
    font-size: 22px;
}

/* Contact Heading */
.contact-heading {
    font-size: 48px;
    font-weight: 600;
}

/* Pricing Card Details */
.pricing-subtitle-text {
    font-size: 18px;
    color: #aaa;
}

.pricing-description {
    font-size: 16px;
    line-height: 1.6;
}

/* Footer Menu */
.footer-menu-list {
    font-size: 16px;
}

.footer-menu-list li a {
    transition: color 0.3s ease;
    text-transform: uppercase;
}

.footer-menu-list li a:hover {
    color: #00d4ff !important;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    transition: opacity 0.4s ease;
    display: none;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    display: block;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 9999;
    transition: right 0.4s ease;
    overflow-y: auto;
    display: none;
}

.mobile-menu-overlay.active {
    right: 0;
    display: block;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: #fff;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 255, 0.4);
    border-radius: 50%;
    border: 2px solid #00d4ff;
    line-height: 1;
    pointer-events: auto;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close::before {
    content: '×';
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    color: #fff;
}

.mobile-menu-close i {
    display: none;
}

.mobile-menu-close:hover {
    background: rgba(0, 212, 255, 0.6);
    transform: rotate(90deg);
}

.mobile-menu-close:hover::before {
    color: #00d4ff;
}

.mobile-menu-content {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 100vh;
    padding: 100px 20px 40px;
}

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

.mobile-nav ul li {
    margin: 20px 0;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active .mobile-nav ul li {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(1) {
    transition-delay: 0.1s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(2) {
    transition-delay: 0.2s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(3) {
    transition-delay: 0.3s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(4) {
    transition-delay: 0.4s;
}

.mobile-menu-overlay.active .mobile-nav ul li:nth-child(5) {
    transition-delay: 0.5s;
}

.mobile-menu-item {
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    display: block;
    font-family: 'Oswald', sans-serif;
}

.mobile-menu-item:hover {
    color: #00d4ff;
}

.mobile-contact-btn-wrapper {
    margin-top: 30px;
    text-align: center;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.4s ease 0.6s;
}

.mobile-menu-overlay.active .mobile-contact-btn-wrapper {
    opacity: 1;
    transform: translateX(0);
}

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
    #mainmenu {
        display: none !important;
    }
    
    .desktop-contact-btn {
        display: none !important;
    }
    
    #menu-btn {
        display: block !important;
        cursor: pointer;
    }
}

/* Show desktop menu on larger screens */
@media (min-width: 992px) {
    .mobile-menu-overlay {
        display: none !important;
    }
    
    #menu-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-heading {
        font-size: 36px;
    }
    
    .services-heading,
    .pricing-heading,
    .contact-heading {
        font-size: 32px;
    }
    
    .mobile-menu-overlay {
        max-width: 85%;
    }
    
    .mobile-menu-item {
        font-size: 24px;
    }
    
    .mobile-menu-close {
        top: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
    }
    
    .mobile-menu-close::before {
        font-size: 38px;
    }
    
    .mobile-nav ul li {
        margin: 18px 0;
    }
    
    .mobile-contact-btn-wrapper {
        margin-top: 25px;
    }
    
    .footer-menu-list {
        gap: 15px !important;
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .text-cycle {
        font-size: 1.2rem;
    }
}
.bs_ome.mt-5 {
    margin-top: 42px !important;
}
/* Active Menu State */
#mainmenu a.menu-item.active,
.mobile-menu-item.active {
    color: #00d4ff !important;
    position: relative;
}

#mainmenu a.menu-item.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00d4ff;
}

#mainmenu a.menu-item {
    transition: color 0.3s ease;
}

#mainmenu a.menu-item:hover {
    color: #00d4ff !important;
}

@media (max-width: 480px) {
    .mobile-menu-item {
        font-size: 22px;
        letter-spacing: 1px;
    }
    
    .mobile-menu-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }
    
    .mobile-menu-close::before {
        font-size: 34px;
    }
    
    .mobile-nav ul li {
        margin: 15px 0;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .text-cycle {
        font-size: 30px;
    }
div#logo img {
    max-width: 105px;
}
    
    .about-heading {
        font-size: 38px;
    }
    
    .services-heading,
    .pricing-heading,
    .contact-heading {
        font-size: 38px;
    }
}

/* Fix header to always stay visible - Override autoshow behavior */
header.autoshow.scrollOff {
    opacity: 1 !important;
    top: 0 !important;
}

header.autoshow {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    opacity: 1 !important;
    transition: all 0.3s ease !important;
}

/* Prevent header from hiding when scrolling down */
header.scroll-down,
header.nav-up,
header.header-center.scroll-down {
    margin-top: 0 !important;
    top: 0 !important;
    transform: translateY(0) !important;
}
