*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
}

#main-navigation {
    background-color: rgba(51, 51, 51, 0.7);
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 40px;
    position: sticky;
    top: 0;
    z-index: 100;
}

.register{
    margin-left: 600px;
    background-color: #ff6600;
    color: white;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.register:hover {
    background-color: #e65c00;
}

.logo {
    height: 50px;
    width: auto;
}

.nav-list {
    list-style-type: none;
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.nav-list li a:hover {
    background-color: #555;
    color: tomato;
}

.landing-page {
    font-family: Arial, sans-serif;
    background-image: url('../bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%;
}

/* Hero Section */
.services-hero {
    height: 60vh;
    background: rgba(11, 61, 145, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
    background-size: 100px 100px;
    animation: float 20s linear infinite;
}

@keyframes float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-100px) rotate(360deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.services-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 300;
}

/* Section Styling */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header.light {
    color: white;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.section-header.light h2 {
    color: white;
}

.section-header p {
    font-size: 1.1rem;
    color: white;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
    padding: 80px 5%;
    background: transparent;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.85);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ff6600, #ff8533);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.95);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0b3d91, #1a5bc4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.service-icon i {
    font-size: 32px;
    color: white;
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, #ff6600, #ff8533);
    transform: rotateY(360deg);
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-link {
    color: #0b3d91;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #ff6600;
    gap: 12px;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 5%;
    background: rgba(26, 26, 46, 0.6);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.gallery-overlay span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 5%;
    background: transparent;
}

.pricing-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 25px;
    padding: 40px 35px;
    width: 340px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    background: rgba(255, 255, 255, 0.95);
}

.pricing-card.featured {
    background: rgba(11, 61, 145, 0.85);
    color: white;
    transform: scale(1.05);
    border: none;
    backdrop-filter: blur(10px);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
    background: rgba(11, 61, 145, 0.95);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6600, #ff8533);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .pricing-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.plan-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a1a2e;
    display: block;
    margin-bottom: 15px;
}

.pricing-card.featured .plan-name {
    color: white;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: #0b3d91;
}

.pricing-card.featured .amount {
    color: white;
}

.period {
    font-size: 0.9rem;
    color: #666;
}

.pricing-card.featured .period {
    color: rgba(255, 255, 255, 0.7);
}

.features-list {
    list-style: none;
    margin-bottom: 30px;
}

.features-list li {
    padding: 12px 0;
    font-size: 0.95rem;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pricing-card.featured .features-list li {
    color: rgba(255, 255, 255, 0.9);
}

.features-list li i {
    font-size: 14px;
}

.features-list li .fa-check {
    color: #28a745;
}

.pricing-card.featured .features-list li .fa-check {
    color: #7fff7f;
}

.features-list li.disabled {
    opacity: 0.5;
}

.features-list li .fa-times {
    color: #dc3545;
}

.pricing-btn {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #0b3d91, #1a5bc4);
    color: white;
}

.pricing-card.featured .pricing-btn {
    background: linear-gradient(135deg, #ff6600, #ff8533);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.3);
}

.pricing-card.featured .pricing-btn:hover {
    box-shadow: 0 10px 25px rgba(255, 102, 0, 0.4);
}

/* CTA Section */
.cta-section {
    padding: 100px 5%;
    background: rgba(255, 102, 0, 0.8);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ff6600;
    padding: 18px 45px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

/* Footer Styles */
footer {
    background-color: rgba(51, 51, 51, 0.5);
    color: white;
    padding: 50px 20px 20px;
    margin-top: auto;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    color: #ff6600;
    font-size: 20px;
}

.footer-section p {
    line-height: 1.8;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer-section:last-child p:last-child {
    text-align: center;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff6600;
}

.social-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.footer-section:last-child {
    text-align: center;
}

.footer-section:last-child h3 {
    text-align: center;
}

.social-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.social-links a:hover {
    color: #ff6600;
}

.social-links i {
    font-size: 18px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-hero h1 {
        font-size: 2.8rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    #main-navigation {
        padding: 15px 20px;
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .register {
        margin-left: 0;
    }
    
    .services-hero {
        height: 50vh;
        padding: 40px 20px;
    }
    
    .services-hero h1 {
        font-size: 2.2rem;
    }
    
    .services-hero p {
        font-size: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-section,
    .gallery-section,
    .pricing-section {
        padding: 60px 4%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .pricing-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-card {
        width: 100%;
        max-width: 400px;
    }
    
    .cta-section {
        padding: 60px 5%;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .cta-button {
        padding: 15px 35px;
        font-size: 1rem;
    }
}