* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #000000;
    background: #f5f5f7;
    overflow-x: hidden;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.container h2 {
    padding-top: 2.8rem;
    font-size: 4.2rem;
    font-weight: 600;
    letter-spacing: -3px;
    color: #000000;
    margin-bottom: 5.8rem;
    animation: fadeInUp 1s ease forwards;
}

.container .text-content:nth-child(2) {
    justify-self: end;
    text-align: right;
}




/* Hero Section */

.hero {
    min-height: min(120vh, 860px);
    align-items: center;
    padding-top: 200px;
    background: linear-gradient(to bottom, 
                #f5f5f7 0%,  
                #f5f5f7 75%, 
                #e8e8ea 75%,
                #e8e8ea 100%);
}

.hero-text h1 {
    font-size: 5.1rem;
    font-weight: 600;
    letter-spacing: -4px;
    margin-bottom: 70px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s ease forwards;
}

.hero-text p {
    font-size: 1.55rem;
    font-weight: 550;
    letter-spacing: -0.6px;
    color: #626267;
    opacity: 0;
    margin-bottom: 100px;
    transform: translateY(30px);
    animation: fadeInUp 1s ease 0.2s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    width: 100%;           
}

.pricing-card {
    background: linear-gradient(135deg, #2b4a73 0%, #2579b4 100%);
    border-radius: 20px;
    padding: 50px 40px;
    color: white;
    opacity: 1;
    transform: translateY(50px);
    transition: all 0.8s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    
}

.pricing-card.visible {
    opacity: 0;
    transform: translateY(0);
}

.pricing-card h3 {
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.card-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 12px;
    opacity: 0.9;
}

.card-description {
    font-size: 16px;
    margin-bottom: 40px;
    opacity: 0.8;
}

.card-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.primary-button {
    padding: 14px 28px;
    background: white;
    color: #1e3a5f;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.2s;
}

.primary-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.secondary-button {
    padding: 14px 28px;
    background: transparent;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: 2px solid white;
    transition: all 0.2s;
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}




/* Scroll Sections */

.scroll-section {
    min-height: min(100vh, 750px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    background: #e8e8ea;
}

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.text-content {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.text-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.text-content h2 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 24px;
    line-height: 1.1;
}

.text-content p {
    font-size: 1.4rem;
    font-weight: 550;
    letter-spacing: -0.3px;
    line-height: 1.5;
    color: #626267;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background: linear-gradient(135deg, #2b4a73 0%, #2579b4 100%);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 17px;
    transition: all 0.2s;
}

.cta-button:hover {
    background: linear-gradient(135deg, #182e4c 0%, #2b5776 100%);
    transform: translateY(-2px);
}




/* Image Container */

.image-container {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s ease;
}

.image-container.visible {
    opacity: 1;
    transform: scale(1);
}

.image-placeholder {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
}

.reverse {
    direction: rtl;
}

.reverse > * {
    direction: ltr;
}


#rotating-box {
    width: 100%;
    height: auto;
    display: block;
}




/* Full width text section */

.full-text-section {
    min-height: min(70vh, 600px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 90px 20px;
    background-color: #f5f5f7;
}

.full-text-section h2 {
    font-size: 5.1rem;
    font-weight: 600;
    letter-spacing: -3px;
    max-width: 950px;
    line-height: 1.1;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.full-text-section h2.visible {
    opacity: 1;
    transform: translateY(0);
}





/* Main text section */

.main-text-section {
    min-height: min(100vh, 750px);
    display: flex;
    padding: 70px 20px;
    background-color: #e8e8ea;
    font-size: 1.3rem;
    font-weight: 550;
    letter-spacing: -0.6px;
    color: #626267;
    scroll-margin-top: 10px;
    
}

.main-text-section h2 {
    color: #000000;
    font-size: 4.4rem;
    letter-spacing: -3px;
    font-weight: 600;
}

.main-text-section h3 {
    font-size: 1.2rem;
    letter-spacing: -1px;
    padding-bottom: 0rem;
    font-weight: 500;
    padding-inline: 20px;
}

.main-text-section p {
    padding-top: 1rem;
    
}

.main-text-section ul {
    padding-left: 40px;
}





/* CTA Section */

.cta-section {
    background: #f5f5f7;
    padding: 6rem 0;
}

.cta-section h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 3rem;
    color: #000000;
    letter-spacing: -4px;
    
}

.cta-section p {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    opacity: 0.9;

    margin-left: auto;
    margin-right: auto;
    color: #626267;
}

.contact-buttons {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-buttons .btn-primary:hover,
.contact-buttons .btn-secondary:hover {
    transform: translateY(-2px);
}

.contact-buttons .btn-secondary:hover {
    background: #fff;
    color: #10162F;
}






/* Header */

header {
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.0);
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s cubic-bezier(0.4,0,0.2,1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    display: block;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8rem;
}

nav a {
    text-decoration: none;
    color: #000000;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #5379ac;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 1.5rem;
    z-index: 1100;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #1e3a5f;
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-8px);
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
    flex-direction: column;
    width: 80%;
    z-index: 2000;
    padding: 1rem 0;
}
.mobile-menu a {
    color: #1e3a5f;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.2s;
    display: block;
}
.mobile-menu a:hover {
    background: #f0f0f0;
}
.mobile-menu.active {
    display: flex !important;
}

@media (max-width: 900px) {
    nav ul.nav-links {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .mobile-menu {
        display: none;
    }
    .mobile-menu.active {
        display: flex;
    }
}





/* Footer */

footer {
    background: #e8e8ea;
    padding: 60px 0 30px;
}

.footer-top {
    padding: 25px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #626267;
    text-decoration: none;
    letter-spacing: -0.3px;
    font-size: 15px;
    font-weight: 550;
    letter-spacing: -0.3px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #000;
}

.footer-bottom {
    padding: 20px 60px;
    background: #e8e8ea;
    border-top: 1px solid #c8c8c8;
}

.footer-bottom-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-bottom-links a {
    color: #626267;
    text-decoration: none;
    font-size: 13.5px;
    font-weight: 500;
    transition: color 0.2s;
    letter-spacing: -0.3px;
}

.footer-bottom-links a:hover {
    color: #000;
}

.copyright {
    padding-top: 1.8rem;
    color: #626267;
    font-size: 14px;
    letter-spacing: -0.2px;
}

@media (max-width: 768px) {
        .footer-top, .footer-bottom {
            padding: 20px;
        }

        .footer-top {
            flex-direction: column;
            align-items: flex-start;
        }

        .footer-links, .footer-bottom-links {
            flex-direction: column;
            gap: 15px;
        }
    }







/* Contact Page */

.contact-page{
    padding-bottom: 5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    padding-inline: 2rem;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.form-group label {
    display: block;
    font-weight: 600;
    letter-spacing: -0.5px;
    color: #000000;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0, 0, 0, 0.36);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.02);
    color: #000000;
}

.form-group select option {
    color: #284971;
    background: transparent;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #3e7bcb;
    background: rgba(255,255,255,0.03);
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.submit-btn {
    background: linear-gradient(135deg, #2b4a73 0%, #2579b4 100%);
    color: #ffffff;
    padding: 16px 32px;
    font-family: inherit;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.18s ease;
    width: 40%;
    display: block;
    margin: 2rem auto 0 auto;
    text-align: center;
    box-shadow: 0 6px 20px rgba(16,22,47,0.45);
}


.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16,22,47,0.55);
    filter: brightness(1.05);
}
