:root {
    /* Colors */
    --primary-color: #ffc800;
    --primary-dark: #E6C200;
    --secondary-color: #1A1A1A;
    --dark-bg: #0F0F0F;
    --light-bg: #F8F9FA;
    --text-dark: #212529;
    --text-light: #6C757D;
    --text-white: #FFFFFF;
    --border-color: #DEE2E6;

    /* Spacing */
    --section-padding: 70px 0;
    --card-padding: 30px;

    /* Typography */
    --font-family: 'Cairo', sans-serif;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: 0 !important;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    overflow-y: hidden;
    /* Prevent scrolling during loading */
    background-color: #fff;
}


html {
    scroll-behavior: smooth;
}

/* Navbar */
.navbar {
    background-color: #0003;
    padding: 20px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
}

.navbar-brand {
    width: 100px;
    height: 60px;
    padding: 0;
}

.navbar-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


.navbar-toggler {
    padding: 0;
    background-color: transparent;
    width: 48px;
    height: 48px;
    border-radius: 4px;
    border: 1px solid #fff;
}

.nav-link {
    color: var(--text-white) !important;
    font-weight: 600;
    padding: 0.5rem 1rem !important;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    width: 0;
    height: 2px;
   
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
    right: 10%;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero_background.png') no-repeat center center;
    background-attachment: fixed;
    background-size: cover;
    overflow: hidden;
    z-index: 99;
}

.hero-section .container {
    position: relative;
    z-index: 9997;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.50) 100%), linear-gradient(270deg, rgba(52, 51, 47, 0.64) 0%, rgba(52, 51, 47, 0.40) 50%, rgba(52, 51, 47, 0.64) 100%), url(<path-to-image>) lightgray -0.236px -484.474px / 100% 175.824% no-repeat;
    opacity: 95%;
    z-index: 99;
}

.hero-svg {
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 999;
    min-width: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: slideInUp 1s ease-out 0.3s both;
    animation-delay: 2s;
    opacity: 0;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    font-weight: 300;
}

.search-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 20px;
    animation: slideInUp 1s ease-out 0.3s both;
    border: 1px solid #fff1;
    animation-delay: 2s;
    opacity: 0;
}

label {
    margin: 0 !important;
    color: #fff;
    font-size: 18px;
    padding: 0 !important;
}

.search-input {
    height: 60px;
    border: 0;
    border-radius: 14px;
    padding: 0 16px;
    font-size: 16px;
    transition: var(--transition);
    text-align: right;
    outline: none;
    box-shadow: none;
}

.search-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(244, 176, 30, 0.25);
}

.search-btn {
    height: 50px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary-color);
    border: none;
    transition: var(--transition);
    color:black;
}

.search-btn:hover {
    transform: translateY(-3px);
    background-color: var(--primary-color);
}

/* Statistics Section */
.statistics-section {
    padding: 0;
    margin-top: -35px;
    position: relative;
    z-index: 99;
}


.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Cairo', sans-serif;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--dark-bg);
    margin: 0;
    font-weight: 500;
}

/* Section Header */
.section-header {
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-top: 24px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 4px;
    left: 0;
    right: 0;
    margin: auto;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin: 0;
}

/* Services Section */
.services-section {
    padding: var(--section-padding);
}

.service-card {
    padding: 24px;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition-slow);
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.04);
    height: 100%;
    border: 1px solid transparent;
    background: rgba(255, 178, 0, 0.02);
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    background: var(--light-bg);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}


.service-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.service-card p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.8;
}


.packages-toggle {
    margin-bottom: 32px;
}

.packages-toggle button {
    color: #2C2C2C;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    position: relative;
}

.packages-toggle button span {
    display: inline-block;
    width: 48px;
    height: 48px;
    background-color: #E5E7EB;
    border-radius: 50%;
    line-height: 48px;
    margin-inline-end: 8px;
}

.packages-toggle button:first-child::before {
    content: "";
    width: 60px;
    height: 3px;
    position: absolute;
    inset-inline-end: -75px;
    background-color: #e5e7eb;
    top: 0;
    bottom: 0;
    margin: auto;
}

.packages-toggle button:first-child {
    margin-inline-end: 88px;
}

.packages-toggle button.active span {
    background-color: var(--primary-color);
    color: #fff;
}

.packages-section .packages_list {
    display: none;
}

.packages-section .packages_list.active {
    display: flex;
}

.package-card {
    background-color: rgba(255, 178, 0, 0.05);
    padding: 24px;
    border-radius: 24px;
    margin: 32px;
    border: 1px solid var(--primary-color);
	height: -webkit-fill-available;
	display: inline-block;
	display: inline-grid;
}


.package-card h3 {
    text-align: center;
    background-color: #fff;
    border-radius: 24px;
    padding: 12px;
    border: 1px solid var(--primary-color);
    font-size: 18px;
    font-weight: 700;
    max-width: 85%;
    margin: auto;
    margin-top: -50px;
    margin-bottom: 32px;
}

.package-card ul {
    padding: 0;
    list-style: none;
}

.package-card li {
    font-size: 16px;
    margin-bottom: 8px;
}

.package-card ul li:last-child {
    margin-bottom: 0
}

.package-card .choose-plan-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    color: #252525;
    font-weight: 700;
    border-radius: 12px;
    padding: 10px 16px;
    transition: var(--transition);
    font-size: 14px;
}

.package-card .choose-plan-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.package-card .price {
    display: block;
    font-size: 16px;
    text-align: center;
}

.package-card .price span {
    display: block;
    font-size: 64px;
    color: var(--primary-color);
    line-height: 45px;
    margin: -12px auto 12px;
    font-weight: 700;
}

.sub_card {
    max-width: 100%;
    margin: 32px auto;
}

.sub_card h3 {

    max-width: 100%;
}



.reviews-section {
    padding: var(--section-padding);
    background: rgba(255, 178, 0, 0.05);
    padding-bottom: 0;
}

.reviews-section .shap {
    width: 100%;
    height: auto
}

.testimonials-carousel {
    margin-bottom: 40px;
}

.testimonial-card {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.testimonial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.partners-carousel {
    margin-bottom: 70px;
}

/* Footer */
.footer-section {
    position: relative;
    padding: 0;
    background: #252525;
    color: white;
}

.footer-section .section-header {
    margin-bottom: 64px;
}

.footer-section .section-header h2 {
    color: #fff
}

.footer-section .section-header p {
    color: #fff9
}



/* Contact Form Card */
.contact-form-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    margin-inline-start: 48px;
}

.contact-form-card h3 {
    color: var(--text-dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.contact-form-card .form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem !important;
    text-align: right;
    display: block;
    font-size: 16px;
}

.contact-form-card .form-control {
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: var(--transition);
    text-align: right;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(244, 176, 30, 0.15);
}

.contact-form-card textarea.form-control {
    resize: none;
}

.contact-form-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border: none;
    padding: 0.9rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 10px;
    transition: var(--transition);
}

.contact-form-card .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(244, 176, 30, 0.3);
}

/* Contact Info Cards */
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 10px;
}

.contact-info-card {
    background: white;
    padding: 1.8rem 2rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateX(-10px);
    box-shadow: 0 10px 30px rgba(244, 176, 30, 0.2);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.6rem;
    color: white;
}

.contact-info-content {
    flex: 1;
    text-align: right;
}

.contact-info-content h4 {
    color: var(--text-dark);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.contact-info-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 1rem;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 5rem;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-bottom .social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-bottom .social-links a {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #252525;
    font-size: 16px;
    transition: var(--transition);
}

.footer-bottom .social-links a:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

.footer-logo {
    width: 70px;
    display: block;
}

.footer-logo img {
    width: 100%;
    height: auto;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-size: 0.95rem;
}

/* Process Section */
.process-section {
    position: relative;
    background-color: rgba(255, 178, 0, 0.05);
}

.process-section .shap,
.process-section .bottom_shap {
    width: 100%;
    height: auto;
}

.process-section .section-header {
    margin-top: 70px;
}

.process-timeline {
    width: 100%;
    max-width: 900px;
    margin: 48px auto;
    display: flex;
    flex-direction: column;
    gap: 2rem 0;
    overflow: hidden;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

.step-icon-wrapper {
    position: relative;
    flex-shrink: 0;
}

.step-number {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 4px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number::after {
    content: "";
    background: linear-gradient(180deg, var(--primary-color) 0%, rgba(0, 0, 0, 0.00) 100%);
    width: 2px;
    height: 48px;
    bottom: -50px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
}

.step-number i {
    font-size: 28px;
    color: var(--dark-bg);
}

.step-number span {
    font-weight: 700;
    background-color: var(--primary-color);
    color: var(--dark-bg);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    line-height: 32px;
    text-align: center;
    font-size: 14px;
    position: absolute;
    top: -8px;
    inset-inline-start: -8px;
}

.step-content {
    flex: 1;
    background: white;
    padding: 24px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    max-width: 100%;
}

.step-content:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transform: translateX(-5px);
}

.step-content h3 {
    color: var(--text-dark);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.partners-section .shap {
    width: 100%;
    height: auto;
    margin-bottom: -2px;
}

.partner-logo {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive adjustments for process section */
@media (max-width: 768px) {
    .process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .step-icon-wrapper {
        margin-bottom: 1rem;
    }

    .step-content {
        width: 96%;
    }

    .step-content:hover {
        transform: translateY(-5px);
    }

    .step-number {
        width: 70px;
        height: 70px;
    }

    .step-number i {
        font-size: 1.5rem;
    }

    .step-number span {
        font-size: 0.7rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-aos] {
    /* opacity: 0; */
    /* transition: var(--transition-slow); */
}

[data-aos].aos-animate {
    opacity: 1;
}

section {
    position: relative;
}

.sectionId {
    position: absolute;
    top: -100px;
    width: 100%;
    height: 0;
}

@media all and (max-width:991px) {
    .hero-section {
        display: block !important;
        min-height: auto;
    }

    .hero-section .row.min-vh-100 {
        min-height: auto !important;
        padding: 140px 0;
        text-align: center;
    }

    .search-form {
        width: 100%;
        max-width: 540px;
        margin: auto;
    }

    .package-card {
        margin: 32px auto;
    }

    .contact-form-card {
        margin: 24px auto 0 !important;
    }
}

@media all and (max-width: 767px) {
    .service-card {
        padding: 12px;
    }



    .package-card {
        margin: 32px 2px;
		
    }
}

@media all and (max-width: 576px) {
    .hero-title {
        font-size: 24px;
        line-height: 34px;
    }

    .packages-section .packages_list .packages_list_cont {
        flex-direction: column;
    }
}

svg {
    max-width: 100%;
}

/* Loading
=========================*/
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 99999;
    overflow: hidden;
}

.loading span {
    width: 20%;
    height: 100%;
    background-color: var(--primary-color);
    display: inline-block;
    animation: minimizeHeight 0.8s ease-in-out forwards;
}

.loading span:nth-child(1) {
    animation-delay: 0.2s;
}

.loading span:nth-child(2) {
    animation-delay: 0.4s;
}

.loading span:nth-child(3) {
    animation-delay: 0.6s;
}

.loading span:nth-child(4) {
    animation-delay: 0.8s;
}

.loading span:nth-child(5) {
    animation-delay: 1s;
}

@keyframes minimizeHeight {
    0% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

.loginbtn{
	height: 43px;
    padding-top: 8px;
}
.hyplink{
	 color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 12px;
}