/* Modern About Page Styles - Matching Katalog Theme */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 100%);
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
    padding-top: var(--actual-navbar-height, 70px); /* Use dynamic navbar height */
}

/* Hero Section */
.hero-section-modern {
    position: relative;
    padding: 80px 0;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    color: white;
    overflow: hidden;
    margin-top: calc(-1 * var(--actual-navbar-height, 70px)); /* Use dynamic navbar height */
    z-index: 1; /* Ensure proper stacking with navbar */
}

.hero-bg-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.floating-circle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: floatCircle 20s ease-in-out infinite;
}

.circle-1 { width: 150px; height: 150px; top: 10%; left: 10%; animation-delay: 0s; }
.circle-2 { width: 100px; height: 100px; top: 60%; right: 15%; animation-delay: -7s; }
.circle-3 { width: 80px; height: 80px; top: 30%; right: 10%; animation-delay: -14s; }

@keyframes floatCircle {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); opacity: 0.3; }
    25% { transform: translateY(-30px) rotate(90deg) scale(1.1); opacity: 0.5; }
    50% { transform: translateY(-60px) rotate(180deg) scale(0.9); opacity: 0.7; }
    75% { transform: translateY(-30px) rotate(270deg) scale(1.1); opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    margin-bottom: 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 2rem;
}

/* About Sections */
.about-section {
    position: relative;
    z-index: 2; /* Ensure proper stacking */
    margin-bottom: 6rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 186, 255, 0.1);
    transition: all 0.3s ease;
}

.about-section:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 186, 255, 0.15);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 186, 255, 0.1);
    border: 1px solid rgba(0, 186, 255, 0.2);
    border-radius: 50px;
    padding: 0.6rem 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #0066cc;
    backdrop-filter: blur(10px);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Modern Cards */
.modern-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 186, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.modern-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 186, 255, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.modern-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}



/* Values Section */
.values-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 251, 255, 0.9) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 186, 255, 0.1);
    border-radius: 25px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.values-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 186, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.values-card:hover::before {
    left: 100%;
}

.values-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 186, 255, 0.2);
    border-color: rgba(0, 186, 255, 0.3);
}

.values-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.values-card:hover .values-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(0, 186, 255, 0.4);
}

.values-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.values-description {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

/* Timeline Enhancement */
.timeline-item {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 186, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.timeline-item:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 40px rgba(0, 186, 255, 0.15);
}

.timeline-year {
    position: absolute;
    left: -20px;
    top: 20px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Visual Timeline Styles */
.visual-timeline-wrapper {
    position: relative;
    padding: 3rem 0;
    margin: 2rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #00baff 0%, #0066cc 50%, #00baff 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 186, 255, 0.3);
}

.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 186, 255, 0.5);
}

.timeline-line::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #0066cc, #00baff);
    border-radius: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(0, 186, 255, 0.5);
}

.visual-milestone {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease;
}

.visual-milestone.left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

.visual-milestone.right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.visual-milestone.animate {
    opacity: 1;
    transform: translateY(0);
}

.milestone-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 251, 255, 0.95) 100%);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 186, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    max-width: 450px;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 186, 255, 0.1);
    transition: all 0.4s ease;
    overflow: hidden;
}

.milestone-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 186, 255, 0.1), transparent);
    transition: left 0.8s ease;
}

.visual-milestone:hover .milestone-content::before {
    left: 100%;
}

.visual-milestone:hover .milestone-content {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 186, 255, 0.2);
    border-color: rgba(0, 186, 255, 0.4);
}

.milestone-content::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 30px;
    height: 3px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    border-radius: 2px;
}

.visual-milestone.left .milestone-content::after {
    right: -30px;
    transform: translateY(-50%);
}

.visual-milestone.right .milestone-content::after {
    left: -30px;
    transform: translateY(-50%);
}

.milestone-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.milestone-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent, rgba(255, 255, 255, 0.2));
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.visual-milestone:hover .milestone-icon::before {
    transform: translateX(100%);
}

.visual-milestone:hover .milestone-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 35px rgba(0, 186, 255, 0.4);
}

.milestone-year {
    display: inline-block;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.milestone-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #0066cc 0%, #00baff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.milestone-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.milestone-stats {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(0, 186, 255, 0.1);
    color: #0066cc;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 186, 255, 0.2);
    transition: all 0.3s ease;
}

.stat-badge:hover {
    background: rgba(0, 186, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 186, 255, 0.2);
}

.milestone-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0066cc, #00baff);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(0, 186, 255, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.9);
    z-index: 10;
    transition: all 0.4s ease;
}

.visual-milestone:hover .milestone-number {
    transform: translate(-50%, -50%) scale(1.15) rotate(10deg);
    box-shadow: 0 15px 40px rgba(0, 186, 255, 0.5);
}

/* Pulse animation for milestone numbers */
@keyframes milestonePulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 186, 255, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(0, 186, 255, 0.6), 0 0 40px rgba(0, 186, 255, 0.3); }
}

.milestone-number {
    animation: milestonePulse 3s ease-in-out infinite;
}

/* Call to Action Enhancement */
.cta-section {
    background: linear-gradient(135deg, #f8fbff 0%, #e8f4ff 50%, #f0f8ff 100%);
    position: relative;
    overflow: hidden;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #00baff, #0066cc);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 186, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0066cc, #00baff);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 186, 255, 0.4);
    color: white;
    text-decoration: none;
}

/* Additional Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes sparkle {
    0% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
    100% { opacity: 0; transform: scale(0) rotate(360deg); }
}

@keyframes ripple {
    0% { transform: scale(0); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes milestoneBounce {
    0% { transform: translate(-50%, -50%) scale(1); }
    20% { transform: translate(-50%, -50%) scale(1.3) rotate(5deg); }
    40% { transform: translate(-50%, -50%) scale(1.1) rotate(-3deg); }
    60% { transform: translate(-50%, -50%) scale(1.2) rotate(2deg); }
    80% { transform: translate(-50%, -50%) scale(1.05) rotate(-1deg); }
    100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
}

@keyframes slideInLeft {
    0% { transform: translateX(-100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    0% { transform: translateX(100px); opacity: 0; }
    100% { transform: translateX(0); opacity: 1; }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 186, 255, 0.3); }
    50% { box-shadow: 0 10px 30px rgba(0, 186, 255, 0.6), 0 0 50px rgba(0, 186, 255, 0.4); }
}

/* Additional Styles */
.list-item-icon {
    color: #00baff;
    margin-top: 5px;
    flex-shrink: 0;
}

.timeline-item-content {
    margin-left: 60px;
}

.timeline-item-heading {
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-item-description {
    color: #666;
    line-height: 1.6;
}

.timeline-item-icon {
    color: #00baff;
    margin-right: 10px;
}

.footer-logo {
    max-height: 80px;
}

/* Footer Link Styles */
.footer-whatsapp-link {
    color: white !important;
    text-decoration: none;
}

.footer-whatsapp-link:hover {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: none;
}

/* CTA Button Variants */
.cta-button.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.quote-section {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 27.5px;
    backdrop-filter: blur(10px);
    padding: 0.5rem;
}

.quote-text {
    font-style: italic;
    font-size: 1.1rem;
}

.quote-author {
    font-weight: 600;
}

.founder-image-wrapper {
    position: relative;
    border-radius: 27.5px;
    overflow: hidden;
}

.founder-image-wrapper img {
    transition: transform 0.3s ease;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.2), rgba(0, 102, 204, 0.2));
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 186, 255, 0.2);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 186, 255, 0.1), rgba(0, 102, 204, 0.1));
    pointer-events: none;
}

.company-intro {
    background: rgba(255, 255, 255, 0.6);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 186, 255, 0.1);
}

.company-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.company-intro strong {
    color: #0066cc;
}

.certificate-image-wrapper img {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 186, 255, 0.2);
    transition: transform 0.3s ease;
}

.certificate-content {
    padding: 2rem;
}

.certificate-title {
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 1rem;
}

.certificate-title i {
    color: #00baff;
    margin-right: 10px;
}

.certificate-description {
    color: #666;
    margin-bottom: 1rem;
}

.certificate-details {
    color: #555;
}

.cta-content {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: 30px;
    padding: 4rem 3rem;
    box-shadow: 0 20px 60px rgba(0, 186, 255, 0.15);
}

.cta-feature {
    padding: 1.5rem;
    background: rgba(0, 186, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(0, 186, 255, 0.1);
}

.cta-feature i {
    font-size: 2rem;
    color: #00baff;
    margin-bottom: 1rem;
}

.cta-feature h5 {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.cta-feature p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.contact-info {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 186, 255, 0.1);
}

.contact-info p {
    margin: 0;
    color: #666;
}

.contact-info i {
    color: #00baff;
    margin-right: 8px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .timeline-line {
        left: 20px;
    }

    .visual-milestone.left,
    .visual-milestone.right {
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 20px;
    }

    .milestone-content::after {
        width: 20px;
        left: -20px !important;
        right: auto !important;
    }

    .milestone-number {
        left: 20px;
    }

    .milestone-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .about-section {
        padding: 1.5rem;
        margin-bottom: 3rem;
        border-radius: 20px;
    }
    
    .values-card {
        padding: 1.5rem;
    }

    .visual-timeline-wrapper {
        padding: 2rem 0;
    }

    .milestone-content {
        padding: 1.5rem;
    }

    .milestone-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .milestone-number {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        left: 20px;
    }

    .timeline-line {
        left: 20px;
    }

    .visual-milestone.left,
    .visual-milestone.right {
        padding-left: 60px;
        padding-right: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }

    .milestone-title {
        font-size: 1.3rem;
    }

    .milestone-stats {
        flex-direction: column;
    }

    .stat-badge {
        margin: 0.5rem 0;
    }
} 

/* Icon Styles */
.icon-primary {
    color: #00baff;
    margin-right: 10px;
}

.icon-list {
    color: #00baff;
    margin-top: 5px;
    flex-shrink: 0;
}

.icon-large {
    font-size: 2rem;
    color: #00baff;
    margin-bottom: 1rem;
}

/* Timeline Styles */
.timeline-content {
    margin-left: 60px;
}

.timeline-heading {
    color: #0066cc;
    font-weight: 700;
    margin-bottom: 1rem;
}

.timeline-text {
    color: #666;
    line-height: 1.6;
}

/* CTA Feature Styles */
.cta-feature-heading {
    color: #0066cc;
    margin-bottom: 0.5rem;
}

.cta-feature-text {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
} 

/* Tablet Specific Styles */
@media (min-width: 768px) and (max-width: 991px) {
    .navbar-custom {
        padding-left: 0 !important;
        padding-right: 0 !important;
        right: 250px;
    }

    .navbar-custom .container {
        padding-left: 0;
        padding-right: 0;
        max-width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .navbar-custom .navbar-brand {
        padding-left: 15px;
        margin-left: 0;
    }

    .navbar-custom .navbar-toggler {
        margin-right: 15px;
        order: 3;
    }

    .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 15px;
        background: linear-gradient(135deg, 
            rgba(0, 186, 255, 0.98), 
            rgba(0, 156, 255, 0.95));
        border-radius: 0 0 15px 15px;
    }

    /* Adjust hero section for tablet */
    .hero-section-modern {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hero-content {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Ensure navbar items are properly aligned */
    .navbar-nav {
        padding: 10px 0;
    }

    .nav-item {
        margin: 5px 0;
    }

    .nav-link {
        padding-left: 15px !important;
    }
} 