* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}




body::-webkit-scrollbar {
    width: 12px;
}

body::-webkit-scrollbar-track {
    background: #ffffff;
}

body::-webkit-scrollbar-thumb {
    background-color: var(--main-color);
    border: 3px solid #ffffff;
}


:root {
    --main-color: #F58E25;
    --tow-color: #3098DE;
}

body {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
    color: #333;
    line-height: 1.6;
    direction: rtl;
}

a {
    text-decoration: none;
    color: inherit;
}


/* header start */

.lang-btn-1 {
    background: var(--main-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn-1:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.lang-btn-1:active {
    transform: translateY(0);
}

.lang-btn-2 {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.lang-btn-2:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.lang-btn-3 {
    background: white;
    color: #667eea;
    border: none;
    padding: 12px 30px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.lang-btn-3::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.2), transparent);
    transition: left 0.5s;
}

.lang-btn-3:hover::before {
    left: 100%;
}

.lang-btn-3:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.lang-btn-4 {
    background: white;
    border: 3px solid var(--main-color);
    padding: 4px 13px;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.lang-option {
    padding: 3px 6px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 12px;
    transition: all 0.3s ease;
    color: var(--main-color);
}

.lang-option.active {
    background: var(--main-color);
    color: white;
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.4);
}

.lang-btn-4:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.lang-btn-5 {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 25px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: 1px;
}

.lang-btn-5:hover {
    background: white;
    color: #667eea;
    transform: translateX(5px);
}

.globe-icon {
    font-size: 20px;
    animation: rotate 3s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.lang-btn-1:hover .globe-icon,
.lang-btn-2:hover .globe-icon,
.lang-btn-3:hover .globe-icon {
    animation-duration: 1s;
}

.demo-container {
    backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.demo-label {
    color: white;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.9;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.navbar-brand img {
    width: 100px;
    height: 50px;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: #333;
    font-weight: 600;
    margin: 0 20px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--main-color);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--main-color);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--main-color);
}

.btn-contact {
    background: var(--main-color);
    color: white;
    padding: 5px 20px;
    border-radius: 5px;
    border: none;
    font-weight: 600;
    transition: all 0.3s ease;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.btn-contact:hover {
    transform: translateY(-2px);
    background-color: var(--tow-color);
    color: white;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(102, 126, 234, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


.hero {
    height: 100vh;
    background-image: url("../img/banner_tow.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

@media(max-width: 768px) {
    .hero {
           background-position:right;
    }
}


.contact {
    padding-right: 50px !important;
    text-align: start !important;
}


.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: bold;
}

.hero p {
    font-size: 1.7rem;
    margin-bottom: 15px;
    font-weight: 600;
    width: auto;
}

.hero a.btn {
    background-color: #f68b1e;
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.3s;
}

.hero a.btn:hover {
    background-color: #e07a00;
}


/* about */

.who-we-are-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f7 100%);
    padding: 40px 0;
    margin-bottom: 40px;
}


.video {
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.video video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .video video {
        height: 300px;
    }
}

.section-title {
    color: #1e3a5f;
    font-size: 48px;
    font-weight: 700;
}

.main_about {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (max-width: 992px) {
    .main_about {
        flex-direction: column;
        gap: 30px;
    }
}

.main_item {
    display: flex;
    gap: 50px;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--tow-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
}

.value-text {
    color: #1e3a5f;
    font-size: 24px;
    font-weight: 600;
}

.description-text {
    color: #4a5568;
    font-size: 20px;
    line-height: 1.8;
    max-width: 600px;
    padding-top: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }

    .values-container {
        gap: 30px;
    }

    .value-icon {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }

    .value-text {
        font-size: 20px;
    }

    .description-text {
        font-size: 18px;
    }
}

/* services section */

.services h2 {
    text-align: center;
    color: #1e3a5f;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.064);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;

}

.service-icon {
    border-radius: 12px;
    display: flex;
    gap: 10px;
    align-items: center;
}

.service-icon i {
    font-size: 30px;
    color: var(--tow-color);
}

@media(min-width:1600px) {
    .service-card h3 {
        font-size: 2rem !important;
    }

    .service-card p {
        font-size: 1.2rem !important;
    }
}

.service-card h3 {
    color: #1e3a5f;
    font-weight: bold;
    font-size: 1.7rem;
}



.service-card p {
    color: #666;
    font-size: 1.2rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-book {
    background: var(--tow-color);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-book:hover {
    background: var(--main-color);
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 4px 8px rgba(33, 150, 243, 0.3);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    overflow: hidden;
    pointer-events: none;
}

.wave-decoration::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(135deg, #2196F3 0%, #FF9800 100%);
    clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
    border-top-left-radius: 100px;
}

.services .col-lg-4 {
    margin-bottom: 30px;
}


/* main-section */

.main-section {
    position: relative;
    overflow: hidden;
    padding: 30px 0;
}

.orange-shape {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #ff9933 0%, #ff6600 100%);
    border-radius: 50%;
    z-index: 0;
}

.blue-shape {
    position: absolute;
    top: -50px;
    left: 100px;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #0077cc 0%, #0099ff 100%);
    border-radius: 50%;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

.section-title {
    color: #1e3a5f;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.064);
    transition: transform 0.3s ease;
}

.icon-circle {
    display: flex;
    align-items: center;
    gap: 12px;
}


.icon-circle i {
    font-size: 28px;
    color: var(--tow-color);
}

.feature-title {
    color: #1e3a5f;
    font-size: 1.5rem;
    font-weight: 700;
}

.feature-text {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}


.device-image {
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.device-image img {
    width: 100%;
    height: 160px !important;
    border-radius: 10px;
}

.device-img {
    width: 100%;
    height: auto;
    position: relative;
    z-index: 1;
}

.right-feature {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .orange-shape,
    .blue-shape {
        width: 300px;
        height: 300px;
    }
}


/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.7);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    color: #4a5568;
    transition: all 0.3s ease;
}



.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    color: #2d3748;
    font-size: 28px;
    margin-bottom: 10px;
}

.modal-header p {
    color: #718096;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
    text-align: right;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    background: var(--tow-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

/* Success Modal */
.success-modal {
    text-align: center;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.modal.show .success-icon {
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 50px;
    color: white;
}

.success-modal h2 {
    color: #2d3748;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: bold;
}

.success-modal p {
    color: #718096;
    font-size: 18px;
    line-height: 1.6;
}




.service-icon i {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.service-icon h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}


.btn-book:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.modal.show {
    display: flex !important;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    width: 90%;
    position: relative;
    animation: slideUp 0.3s ease;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    color: #000000;
}

.modal-header {
    text-align: center;
    margin-bottom: 30px;
}

.modal-header h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 10px;
}

.modal-header p {
    color: #666;
    font-size: 1rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e1e1;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 15px;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(102, 126, 234, 0.4);
}

/* Success Modal */
.success-modal {
    text-align: center;
    padding: 60px 40px;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.success-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.success-modal h2 {
    color: #333;
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-modal p {
    color: #666;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .services h2 {
        font-size: 2rem;
    }

    .service-icon i {
        font-size: 2.5rem;
    }

    .modal-content {
        padding: 30px 20px;
    }
}



footer {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-icons a {
    width: 50px;
    height: 50px;
    background: var(--tow-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: #333;
    text-decoration: none;
    margin: 0 15px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.copyright {
    color: #666;
    font-size: 14px;
}

@media (max-width: 600px) {
    .footer-links a {
        display: block;
        margin: 10px 0;
    }
}