/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    color: var(--light);
    z-index: 2;
}

.hero-tagline {
    color: var(--primary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 8px 15px;
    background: rgba(255, 107, 0, 0.15);
    border-left: 4px solid var(--primary);
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    text-transform: capitalize;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-title span {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 700px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 60px;
}

.hero-features {
    display: flex;
    gap: 30px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
}

.hero-feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.15);
    color: var(--primary);
    font-size: 18px;
}

.hero-feature-text {
    font-size: 16px;
    font-weight: 600;
    color: white;
}

.hero-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    opacity: 0.4;
}

.hero-decoration svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.scroll-down:hover {
    transform: translateX(-50%) translateY(-5px);
}

.scroll-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@media screen and (max-width: 991px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }
    
    .btn.primary, .btn.secondary {
        width: 100%;
        text-align: center;
    }
}

/* Intro Section Styles - Dark Theme */
.intro-section {
    padding: 100px 0;
    background-color: var(--dark);
    position: relative;
    overflow: hidden;
    color: var(--light);
}

.intro-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.intro-content {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading {
    margin-bottom: 30px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    font-family: 'Marcellus', serif;
}

.section-line {
    width: 80px;
    height: 3px;
    background: var(--gradient-primary);
    margin: 0 auto 15px;
}

.section-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto 30px;
}

.intro-tagline {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary);
}

.intro-tagline span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.intro-tagline i {
    font-size: 20px;
}

.tagline-divider {
    color: rgba(255, 255, 255, 0.3);
}

/* Intro Cards */
.intro-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 80px;
}

.intro-card {
    background: rgba(30, 30, 30, 0.7);
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 107, 0, 0.1);
    backdrop-filter: blur(5px);
}

.intro-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.3);
}

.intro-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 145, 0, 0.1) 100%);
    transition: all 0.4s ease;
    z-index: 0;
}

.intro-card:hover::after {
    height: 100%;
}

.intro-card-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 1;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.2);
}

.intro-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: white;
    font-family: 'Marcellus', serif;
}

.intro-card-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.intro-card-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.2);
    color: var(--primary);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.intro-card:hover .intro-card-arrow {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

/* Why Choose Us Section */
.why-choose-us {
    background: rgba(20, 20, 20, 0.7);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    padding: 50px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 107, 0, 0.1);
    backdrop-filter: blur(5px);
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient-primary);
}

.why-choose-title {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    position: relative;
    padding-left: 15px;
    font-family: 'Marcellus', serif;
}

.choose-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.choose-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
}

.choose-feature:hover {
    transform: translateY(-5px);
}

.choose-feature-icon {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: var(--gradient-primary);
    color: white;
    font-size: 22px;
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.15);
}

.choose-feature-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    font-family: 'Marcellus', serif;
}

.choose-feature-text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Decorative Elements */
.shape-1, .shape-2, .shape-3 {
    position: absolute;
    border-radius: 50%;
    opacity: 0.05;
    z-index: 1;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: -100px;
    right: -50px;
    filter: blur(30px);
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-primary);
    bottom: -200px;
    left: -150px;
    filter: blur(60px);
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: var(--primary);
    top: 50%;
    right: 20%;
    filter: blur(40px);
}

/* Responsive Styles */
@media screen and (max-width: 1199px) {
    .intro-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .choose-features {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .section-title {
        font-size: 36px;
    }
    
    .choose-features {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .why-choose-us {
        padding: 40px 30px;
    }
    
    .shape-3 {
        display: none;
    }
}

@media screen and (max-width: 768px) {
    .intro-section {
        padding: 70px 0;
    }
    
    .intro-tagline {
        flex-direction: column;
        gap: 10px;
    }
    
    .tagline-divider {
        display: none;
    }
    
    .intro-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .choose-features {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 576px) {
    .scroll-down{
        bottom: 15px;
    }
    .scroll-text {
        font-size: 12px;
        font-weight: 500;
        letter-spacing: 0.5px;
        text-transform: uppercase;  
    }
    .hero-tagline {
        margin-top: 50px;
        font-size: 16px;
    }
    .hero-feature-text{
        font-size: 14px;
    }
    
    .hero-title{
        font-size: 28px;
    }
    .section-title {
        font-size: 30px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .why-choose-us {
        padding: 30px 20px;
    }
}