@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


:root {
    --primary-light: #517d9f;
    --primary-mid: #416582;
    --primary-dark: #324e66;
}

body {
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand img {
    height: 150px;
}
.metaNativeColor {
    color: #324e66;
}
.navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: #517d9f;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-danger:hover {
    background-color: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    position: relative;
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.05)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,117.3C1248,117,1344,139,1392,149.3L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: cover;
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-list {
    list-style: none;
    padding: 0;
    font-size: 1.1rem;
}

.hero-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.hero-list li i {
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 1.2rem;
}

.btn-primary {
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border: 2px solid #1a1a1a;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(50, 78, 102, 0.4);
}

/* Form Card */
.form-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.form-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.form-title {
    color: #333;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.form-control {
    border: 1px solid #ddd;
    padding: 0.75rem;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: #517d9f;
    box-shadow: 0 0 0 0.2rem rgba(81, 125, 159, 0.25);
}

.btn-dark {
    background-color: #324e66;
    border: none;
    padding: 0.75rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-dark:hover {
    background-color: #416582;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(50, 78, 102, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
    }

    .form-card {
        margin-top: 3rem;
    }

    .navbar-nav .nav-link {
        padding: 0.75rem 0;
    }

    .d-lg-inline {
        display: inline !important;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-list {
        font-size: 1rem;
    }

    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .form-card {
        padding: 1.5rem;
    }
}


/* About Us Section */
.about-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

/* About Visual */
.about-visual {
    position: relative;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-main-card {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 25px 60px rgba(50, 78, 102, 0.3);
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.card-content {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 1rem;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
}

.about-floating-card {
    position: absolute;
    background: white;
    padding: 1.25rem 1.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: floatCard 4s ease-in-out infinite;
    z-index: 3;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.about-floating-card i {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.card-authors {
    top: 20px;
    right: 20px;
    animation-delay: 0.5s;
}

.card-experience {
    bottom: 80px;
    left: -20px;
    animation-delay: 1s;
}

.card-rating {
    bottom: 20px;
    right: 40px;
    animation-delay: 1.5s;
}

.mini-stat {
    font-size: 1.5rem;
    font-weight: 700;
    color: #324e66;
    line-height: 1;
}

.mini-label {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.25rem;
}

.about-decorative-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(81, 125, 159, 0.1) 0%, rgba(50, 78, 102, 0.1) 100%);
    top: -50px;
    left: -50px;
    animation: rotate 20s linear infinite;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(81, 125, 159, 0.08) 0%, rgba(50, 78, 102, 0.08) 100%);
    bottom: -30px;
    right: -30px;
    animation: rotate 15s linear infinite reverse;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* About Content */
.about-content {
    padding-left: 2rem;
}

.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #324e66;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-highlight {
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

/* About Features */
.about-features {
    margin-bottom: 2.5rem;
}

.about-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
    animation: slideIn 0.6s ease forwards;
}

.about-feature[data-delay="0"] {
    animation-delay: 0.2s;
}

.about-feature[data-delay="1"] {
    animation-delay: 0.4s;
}

.about-feature[data-delay="2"] {
    animation-delay: 0.6s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.feature-icon-wrapper {
    position: relative;
}

.feature-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.about-feature:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border-radius: 15px;
    opacity: 0.3;
    transform: scale(1.3);
    z-index: -1;
}

.feature-text h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #324e66;
    margin-bottom: 0.5rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* About CTA */
.about-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-about-primary {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(81, 125, 159, 0.3);
}

.btn-about-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(81, 125, 159, 0.5);
    color: white;
}

.btn-about-secondary {
    background: transparent;
    color: #324e66;
    border: 2px solid #324e66;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-about-secondary:hover {
    background: #324e66;
    color: white;
    transform: translateY(-3px);
}

.btn-about-secondary i {
    transition: transform 0.3s ease;
}

.btn-about-secondary:hover i {
    transform: translateX(5px);
}

@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 3rem;
    }

    .about-visual {
        height: 450px;
    }

    .about-main-card {
        width: 280px;
        height: 280px;
    }

    .stat-number {
        font-size: 4rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2rem;
    }

    .about-visual {
        height: 400px;
    }

    .about-main-card {
        width: 240px;
        height: 240px;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .about-floating-card {
        padding: 1rem;
    }

    .about-floating-card i {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .mini-stat {
        font-size: 1.2rem;
    }

    .card-experience {
        left: 0;
    }

    .about-cta {
        flex-direction: column;
    }

    .btn-about-primary,
    .btn-about-secondary {
        width: 100%;
        justify-content: center;
    }
}





/* Why Choose Us Section */
.why-choose-us {
    background-color: #1a1a1a;
    color: white;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: #cccccc;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-card {
    background: white;
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(81, 125, 159, 0.3);
}

.service-icon {
    font-size: 3rem;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.service-title {
    color: #333;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cta-card {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    border-radius: 10px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    text-align: center;
}

.cta-icon {
    font-size: 3rem;
    color: white;
}

.cta-content h5 {
    color: white;
    font-weight: 600;
}

.btn-outline-light {
    border: 2px solid white;
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: white;
    color: #324e66;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.5rem;
    }

    .service-card {
        margin-bottom: 1rem;
    }

    .cta-card {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Portfolio Section */
.portfolio-section {
    background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.portfolio-title {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.portfolio-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(81, 125, 159, 0.3);
}

.portfolio-image {
    position: relative;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(50, 78, 102, 0.95) 0%, rgba(81, 125, 159, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-info {
    color: white;
    width: 100%;
}

.portfolio-info h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.1s;
}

.portfolio-item:hover .portfolio-info h4 {
    transform: translateY(0);
}

.portfolio-info p {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    opacity: 0.9;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.2s;
}

.portfolio-item:hover .portfolio-info p {
    transform: translateY(0);
}

.portfolio-info .badge {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    font-weight: 600;
    border-radius: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease 0.3s;
}

.portfolio-item:hover .portfolio-info .badge {
    transform: translateY(0);
}

.btn-gradient {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    color: white;
    border: none;
    padding: 0.75rem 3rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(81, 125, 159, 0.3);
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(81, 125, 159, 0.5);
    color: white;
}

@media (max-width: 768px) {
    .portfolio-title {
        font-size: 2rem;
    }

    .portfolio-item {
        margin-bottom: 1.5rem;
    }

    .portfolio-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(50, 78, 102, 0.8) 0%, transparent 100%);
    }

    .portfolio-info h4,
    .portfolio-info p,
    .portfolio-info .badge {
        transform: translateY(0);
    }
}

/* Collaborate Section */
.collaborate-section {
    background: linear-gradient(135deg, #e8eef3 0%, #f5f7fa 100%);
    position: relative;
}

.collaborate-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.collaborate-subtitle {
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    max-width: 1000px;
    margin: 0 auto;
}

.collaborate-card {
    background: white;
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.collaborate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.collaborate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(81, 125, 159, 0.2);
}

.collaborate-check {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
}

.collaborate-card:hover .collaborate-check {
    transform: scale(1.1) rotate(360deg);
}

.collaborate-check i {
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
}

.collaborate-icon {
    font-size: 3rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

.collaborate-card:hover .collaborate-icon {
    color: #517d9f;
    transform: scale(1.1);
}

.collaborate-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.collaborate-card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .collaborate-title {
        font-size: 1.8rem;
    }

    .collaborate-subtitle {
        font-size: 0.95rem;
    }

    .collaborate-card {
        margin-bottom: 1.5rem;
    }
}

/* CTA Banner Section */
.cta-banner {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
}

.cta-banner-card {
    background: linear-gradient(135deg, #324e66 0%, #416582 100%);
    border: 3px solid #517d9f;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
}

.cta-banner-title {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-orange {
    background: linear-gradient(135deg, #517d9f 0%, #416582 100%);
    color: white;
    border: none;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(81, 125, 159, 0.5);
    color: #fff;
    border: 2px solid #fff;
}

.btn-cta-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: white;
    color: #324e66;
    transform: translateY(-3px);
}

/* Our Process Section */
.process-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.process-title {
    color: #324e66;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #517d9f 0%, #324e66 100%);
    transform: translateX(-50%);
}

.process-item {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.process-item:nth-child(odd) {
    justify-content: flex-end;
    padding-left: 30px;
}

.process-item:nth-child(odd) .process-content {
    text-align: right;
    padding-right: 3rem;
    margin-right: 2rem;
}

.process-item:nth-child(even) {
    justify-content: flex-start;
}

.process-item:nth-child(even) .process-content {
    text-align: left;
    padding-left: 3rem;
    
}

.process-number {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #517d9f 0%, #416582 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(81, 125, 159, 0.4);
    z-index: 2;
}

.process-content {
    flex: 0 0 45%;
    max-width: 45%;
}

.process-step-title {
    color: #324e66;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.process-step-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .cta-banner-title {
        font-size: 1.8rem;
    }

    .cta-banner-card {
        padding: 2rem 1.5rem;
    }

    .cta-banner-buttons {
        flex-direction: column;
    }

    .btn-cta-orange,
    .btn-cta-outline {
        width: 100%;
    }

    .process-timeline::before {
        left: 30px;
    }

    .process-item {
        justify-content: flex-start !important;
        padding-left: 80px !important;
    }

    .process-content {
        flex: 0 0 80%;
    }

    .process-number {
        left: 30px;
        transform: translateX(-50%);
    }

    .process-item:nth-child(odd) .process-content,
    .process-item:nth-child(even) .process-content {
        text-align: left;
        padding: 0;
        margin: 0;
        max-width: 100%;
    }
}

/* Why Choose Us Slider Section */
.why-choose-slider {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
}

.choose-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 2rem;
}

.choose-highlight {
    color: #e8eef3;
}

.choose-list {
    margin-bottom: 2rem;
}

.choose-item {
    margin-bottom: 2rem;
}

.choose-item-title {
    color: white;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.choose-item-text {
    color: #e8eef3;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.choose-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-choose-orange {
    background: white;
    color: #324e66;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-choose-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
        color: #fff;
    border: 2px solid #fff;
}

.btn-choose-blue {
    background: #324e66;
    color: white;
    border: 2px solid white;
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-choose-blue:hover {
    background: white;
    color: #324e66;
    transform: translateY(-3px);
}

/* Book Slider */
.book-slider-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.book-slider {
    position: relative;
    width: 400px;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-slide {
    position: absolute;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s ease;
}

.book-slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.book-cover {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.slider-btn {
    position: absolute;
    width: 50px;
    height: 50px;
    background: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.slider-prev {
    left: 0;
}

.slider-next {
    right: 0;
}

.slider-btn:hover {
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    color: white;
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
}

/* Services Ticker */
.services-ticker {
    overflow: hidden;
    background: linear-gradient(to right, #517d9f 0%, #324e66 50%, #517d9f 100%);
    padding: 1.5rem 0;
}

.ticker-wrap {
    width: 100%;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: scroll 30s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0 3rem;
    letter-spacing: 2px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 991px) {
    .choose-title {
        font-size: 2.5rem;
        margin-top: 2rem;
    }

    .book-slider-container {
        margin-top: 3rem;
    }

    .book-slider {
        width: 300px;
        height: 450px;
    }
}

@media (max-width: 768px) {
    .choose-title {
        font-size: 2rem;
    }

    .choose-buttons {
        flex-direction: column;
    }

    .btn-choose-orange,
    .btn-choose-blue {
        width: 100%;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

/* Contact Showcase Section */
.contact-showcase {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.contact-showcase::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, #517d9f20 0%, #324e6620 100%);
    border-radius: 50%;
    z-index: 0;
}

.contact-showcase .container {
    position: relative;
    z-index: 1;
}

/* 3D Book Showcase */
.book-showcase-3d {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

.showcase-book {
    position: absolute;
    transition: all 0.6s ease;
}

.showcase-book img {
    width: 250px;
    height: auto;
    border-radius: 12px;
    transition: all 0.4s ease;
}

.showcase-book:hover img {
    transform: scale(1.05);
}

.book-1 {
    z-index: 3;
    transform: translateX(-80px) translateY(20px) rotate(-8deg);
}

.book-2 {
    z-index: 2;
    transform: translateX(0) translateY(-30px) rotate(2deg);
}

.book-3 {
    z-index: 1;
    transform: translateX(80px) translateY(20px) rotate(8deg);
}

/* Contact Form Modern */
.contact-form-wrapper {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(50, 78, 102, 0.1);
    border: 1px solid #e8eef3;
}

.contact-form-header {
    margin-bottom: 2rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.modern-input {
    border: 2px solid #e8eef3;
    border-radius: 12px;
    padding: 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.modern-input:focus {
    border-color: #517d9f;
    box-shadow: 0 0 0 0.2rem rgba(81, 125, 159, 0.15);
    background: white;
}

.form-floating>label {
    color: #666;
    padding-left: 1rem;
}

.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label {
    color: #517d9f;
}

.btn-submit-modern {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #416582 0%, #324e66 100%);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-submit-modern:hover::before {
    left: 0;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(81, 125, 159, 0.4);
}

.btn-submit-modern i,
.btn-submit-modern span {
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .book-showcase-3d {
        height: 400px;
        margin-bottom: 3rem;
    }

    .showcase-book img {
        width: 200px;
    }

    .book-1 {
        transform: translateX(-60px) translateY(20px) rotate(-8deg);
    }

    .book-3 {
        transform: translateX(60px) translateY(20px) rotate(8deg);
    }
}

@media (max-width: 768px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }

    .contact-form-title {
        font-size: 1.5rem;
    }

    .book-showcase-3d {
        height: 350px;
    }

    .showcase-book img {
        width: 150px;
    }

    .book-1 {
        transform: translateX(-50px) translateY(15px) rotate(-8deg);
    }

    .book-2 {
        transform: translateX(0) translateY(-20px) rotate(2deg);
    }

    .book-3 {
        transform: translateX(50px) translateY(15px) rotate(8deg);
    }
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.faq-header {
    max-width: 800px;
    margin: 0 auto;
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #324e66;
    margin-bottom: 1rem;
}

.faq-subtitle {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(50, 78, 102, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 30px rgba(50, 78, 102, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    background: white;
    border: none;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, #517d9f 0%, #324e66 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #324e66;
    text-align: left;
    padding-right: 2rem;
}

.faq-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-icon i {
    font-size: 1rem;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem 2rem;
}

.faq-answer p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-question-text {
        font-size: 1rem;
    }

    .faq-icon {
        width: 35px;
        height: 35px;
    }

    .faq-item.active .faq-answer {
        padding: 1.25rem 1.5rem;
    }
}

/* Partnership/Affiliation Section */
.partnership-section {
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    position: relative;
    overflow: hidden;
}

.partnership-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.partnership-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
}

.partnership-wrapper {
    position: relative;
    z-index: 1;
}

/* Partnership Content */
.partnership-content {
    color: white;
}

.partnership-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.partnership-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.partner-highlight {
    background: linear-gradient(135deg, #ffffff 0%, #e8eef3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e8eef3;
    margin-bottom: 2.5rem;
}

.partnership-benefits {
    margin-bottom: 2.5rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    background: white;
    transform: scale(1.1);
}

.benefit-icon i {
    font-size: 1.8rem;
    color: white;
    transition: color 0.3s ease;
}

.benefit-item:hover .benefit-icon i {
    color: #324e66;
}

.benefit-content h4 {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.benefit-content p {
    color: #e8eef3;
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.6;
}

.partnership-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-partner-primary {
    background: white;
    color: #324e66;
    border: none;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-partner-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    color: #fff;
    border: 2px solid #fff;
}

.btn-partner-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-partner-secondary:hover {
    background: white;
    color: #324e66;
    transform: translateY(-3px);
}

/* Partnership Visual */
.partnership-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-card {
    position: absolute;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
}

.visual-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-1 {
    top: 0;
    left: 0;
    width: 220px;
    z-index: 3;
}

.card-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 220px;
    z-index: 3;
}

.card-3 {
    bottom: 0;
    left: 20px;
    width: 220px;
    z-index: 3;
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.visual-card h4 {
    color: #324e66;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.visual-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.partnership-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}


.logo-circle {
    width: 150px;
    height: 150px;
    background: url(/images/fav.png) center center / contain no-repeat,linear-gradient(135deg, #fff 0%, #fff 50%, #324e66 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 5px solid white;
}

.logo-circle i {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 0.5rem;
}

.logo-circle span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

@media (max-width: 991px) {
    .partnership-title {
        font-size: 2.5rem;
    }

    .partnership-visual {
        margin-top: 4rem;
        height: 450px;
    }

    .visual-card {
        width: 200px;
        padding: 1.5rem;
    }

    .logo-circle {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 768px) {
    .partnership-title {
        font-size: 2rem;
    }

    .partnership-cta {
        flex-direction: column;
    }

    .btn-partner-primary,
    .btn-partner-secondary {
        width: 100%;
        text-align: center;
    }

    .benefit-item {
        gap: 1rem;
    }

    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon i {
        font-size: 1.5rem;
    }

    .partnership-visual {
        height: 400px;
    }

    .visual-card {
        width: 160px;
        padding: 1.25rem;
    }

    .visual-card h4 {
        font-size: 1rem;
    }

    .visual-card p {
        font-size: 0.8rem;
    }

    .card-icon {
        width: 50px;
        height: 50px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .logo-circle {
        width: 100px;
        height: 100px;
    }

    .logo-circle i {
        font-size: 2rem;
    }

    .logo-circle span {
        font-size: 0.85rem;
    }
}

/* Modern Footer */
.modern-footer {
    position: relative;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.footer-wave {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 120px;
}

.footer-content {
    background: #324e66;
    padding: 4rem 0 2rem;
}

/* Footer Brand */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-brand-text {
    color: #e8eef3;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: linear-gradient(135deg, #517d9f 0%, #416582 100%);
    transform: translateY(-5px);
    color: white;
}

.social-link i {
    font-size: 1.1rem;
}

/* Footer Contact */
.footer-heading {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(to right, #517d9f 0%, #416582 100%);
    border-radius: 3px;
}

.contact-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #517d9f 0%, #416582 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: white;
    font-size: 1.1rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-label {
    color: #517d9f;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-details a,
.contact-details span {
    color: #e8eef3;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: white;
}

/* Footer Legal */
.legal-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legal-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.legal-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
    border-color: rgba(81, 125, 159, 0.5);
}

.legal-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #517d9f 0%, #416582 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.legal-icon i {
    color: white;
    font-size: 1.1rem;
}

.legal-content {
    flex: 1;
}

.legal-content h4 {
    color: white;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.legal-content p {
    color: #b0c4d4;
    font-size: 0.85rem;
    margin: 0;
}

.legal-arrow {
    color: #517d9f;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.legal-card:hover .legal-arrow {
    color: white;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 4rem;
}

.footer-divider {
    height: 1px;
    background: linear-gradient(to right, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    margin-bottom: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright {
    color: #b0c4d4;
    font-size: 0.95rem;
    margin: 0;
}

.footer-tagline {
    color: #b0c4d4;
    font-size: 0.95rem;
    margin: 0;
}

.footer-tagline i {
    color: #e74c3c;
    margin: 0 0.25rem;
}

@media (max-width: 991px) {
    .footer-brand {
        padding-right: 0;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-content {
        padding: 3rem 0 1.5rem;
    }

    .footer-heading {
        font-size: 1.3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-wave svg {
        height: 80px;
    }
}


/* Sliding Form Styles */
.slide-form-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9998;
}

.slide-form-overlay.active {
    opacity: 1;
    visibility: visible;
}

.slide-form-container {
    position: fixed;
    top: 0;
    right: -500px;
    width: 480px;
    height: 100vh;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 9999;
    overflow-y: auto;
}

.slide-form-container.active {
    right: 0;
}

.slide-form-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slide-form-close:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 5px 15px rgba(81, 125, 159, 0.4);
}

.slide-form-content {
    padding: 2.5rem;
}

.slide-form-header {
    margin-bottom: 2rem;
    padding-right: 2rem;
}

.slide-form-header h3 {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.slide-form-header p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

.slide-form .form-group {
    margin-bottom: 1.5rem;
}

.slide-form label {
    display: block;
    color: #324e66;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.slide-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e8eef3;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
}

.slide-input:focus {
    outline: none;
    border-color: #517d9f;
    background: white;
    box-shadow: 0 0 0 3px rgba(81, 125, 159, 0.1);
}

.slide-input::placeholder {
    color: #999;
}

.btn-slide-submit {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #517d9f 0%, #416582 50%, #324e66 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-slide-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(81, 125, 159, 0.4);
}

.btn-slide-submit i {
    transition: transform 0.3s ease;
}

.btn-slide-submit:hover i {
    transform: translateX(5px);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #517d9f 0%, #324e66 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 9997;
    box-shadow: 0 5px 20px rgba(81, 125, 159, 0.3);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(81, 125, 159, 0.5);
}

@media (max-width: 768px) {
    .slide-form-container {
        width: 100%;
        right: -100%;
    }
    
    .slide-form-content {
        padding: 2rem 1.5rem;
    }
    
    .slide-form-header h3 {
        font-size: 1.75rem;
    }
}

@media (max-width: 990px) {
  .navbar.fixed-top {
    position: static;
  }
}

