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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}




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 {
    color: #333;
    line-height: 1.6;
    direction: rtl;
    overflow-x: hidden;
    font-family: 'Almarai', sans-serif;
    overflow-x: hidden !important;

}

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 Section */
.hero .main_hero_container {
    display: grid;
    padding-top: 100px;
    padding-bottom: 30px;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 100px;
}

@media(max-width:991px) {
    .hero .main_hero_container {
        grid-template-columns: 1fr;
    }
}

.hero .hero-content {
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 12px;
    background: #fff5ed;
    border: 2px solid #f68b1e;
    border-radius: 50px;
    margin-bottom: 11px;
    font-weight: 700;
    color: #f68b1e;
    font-size: 1rem;
}

.hero .badge i {
    font-size: 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #1a1a1a;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -2px;
}

.hero .orange-text {
    color: #f68b1e;
}

.hero .blue-text {
    color: #3098DE;
}

.hero .hero-description {
    color: #5a6c7d;
    font-size: 1.3rem;
    line-height: 2;
    margin-bottom: 50px;
    font-weight: 400;
}

/* Buttons */
.hero .cta-buttons {
    display: flex;
    gap: 20px;
}

.hero .btn {
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.hero .btn i {
    font-size: 1.1rem;
}

.hero .btn-orange {
    background: #f68b1e;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(246, 139, 30, 0.3);
}

.hero .btn-orange:hover {
    background: #e57a0e;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(246, 139, 30, 0.4);
}

.hero .btn-blue {
    background: #3098DE;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(48, 152, 222, 0.3);
}

.hero .btn-blue:hover {
    background: #2080c5;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(48, 152, 222, 0.4);
}

/* Hero Image */
.hero .hero-image {
    position: relative;
    animation: fadeInRight 1s ease 0.3s backwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.hero .image-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
}

.hero .main-image-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.hero .glow-orange {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #f68b1e;
    opacity: 0.15;
    filter: blur(60px);
    animation: pulseOrange 3s ease-in-out infinite;
}

@keyframes pulseOrange {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.15;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.25;
    }
}

.hero .image-border {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10%;
    padding: 4px;
    background: #f68b1e;
    box-shadow: 0 15px 10px rgba(246, 139, 30, 0.3);
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
}

.hero .image-inner {
    width: 100%;
    height: 100%;
    border-radius: 10%;
    overflow: hidden;
    background: #ffffff;
    padding: 4px;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
}

.hero .doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10%;
    -webkit-border-radius: 10%;
    -moz-border-radius: 10%;
    -ms-border-radius: 10%;
    -o-border-radius: 10%;
}

/* Floating Cards */
.hero .floating-card {
    position: absolute;
    background: #ffffff;
    border-radius: 25px;
    padding: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.hero .card-customers {
    top: 40px;
    right: -20px;
    border: 2px solid #3098DE;
    animation: floatCard 3s ease-in-out infinite;
}

@keyframes floatCard {

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

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

.hero .card-title {
    font-weight: 800;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero .card-title i {
    color: #3098DE;
    font-size: 1.3rem;
}

.hero .avatars-row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .avatar {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    border: 4px solid white;
    margin-right: -15px;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero .avatar-more {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3098DE;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    border: 4px solid white;
    margin-right: -15px;
    box-shadow: 0 6px 20px rgba(48, 152, 222, 0.4);
}

.hero .card-rating {
    bottom: 0px;
    right: 10px;
    border: 2px solid #f68b1e;
    animation: floatCard2 4s ease-in-out infinite;
}

@keyframes floatCard2 {

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

    50% {
        transform: translateY(-12px) rotate(-2deg);
    }
}

.hero .rating-icon {
    width: 40px;
    height: 40px;
    background: #f68b1e;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(246, 139, 30, 0.3);
    color: white;
}

.hero .rating-text {
    color: #2c3e50;
    font-weight: 800;
    font-size: 1.05rem;
    line-height: 1.5;
}

/* Decorative Elements */
.hero .deco-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.hero .deco-orange {
    width: 120px;
    height: 120px;
    background: rgba(246, 139, 30, 0.1);
    border: 3px solid rgba(246, 139, 30, 0.3);
    top: 15%;
    left: -60px;
    animation: rotate 20s linear infinite;
}

.hero .deco-blue {
    width: 80px;
    height: 80px;
    background: rgba(48, 152, 222, 0.1);
    border: 3px solid rgba(48, 152, 222, 0.3);
    bottom: 25%;
    right: -40px;
    animation: rotate 15s linear infinite reverse;
}

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

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

/* Responsive */
@media (max-width: 1200px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 80px 60px;
        gap: 60px;
    }

    .hero .main_hero_container {
        padding-top: 50px !important;
    }

    .hero .main-image-container {
        width: 350px;
        height: 310px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 36px 7px;
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

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

    .hero .btn {
        width: 100%;
        justify-content: center;
    }

    .hero .main-image-container {
        width: 300px;
        height: 310px;
    }

    .hero .floating-card {
        padding: 20px;
    }

    .hero .card-customers {
        right: -10px;
        top: -50px;
        padding: 10px;
    }

    .hero .card-rating {
        right: -20px;
    }

    .hero .deco-orange {
        display: none;
    }
}

/* about */

.who-we-are-section {
    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-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);
}


.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;
}



/* 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-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;
    }
}



.services .section-header {
    text-align: center;
    margin-bottom: 70px;
}

.services .section-header h2 {
    font-size: 36px;
    font-weight: 600;
    color: var(--tow-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
}

.services .section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
}

.services .section-subtitle {
    color: #64748b;
    font-size: 18px;
    margin-top: 20px;
}

.services .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.services .service-card {
    background: white;
    border-radius: 24px;
    padding: 25px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s ease;
}

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

.services .service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 20px rgba(14, 165, 233, 0.15);
    border-color: #0ea5e9;
}

.services .icon-wrapper {
    width: 55px;
    height: 55px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    transition: all 0.4s ease;
}

.icon-wrapper img {
    height: 90px;
    width: 90px;
}


.services .service-card:hover .icon-wrapper {
    transform: scale(1.08) rotate(5deg);
}

.services .service-card:hover .icon-wrapper::after {
    transform: scale(1.35);
    opacity: 0;
}

.services .icon-wrapper i {
    font-size: 22px;
    color: white;
    z-index: 1;
}

.services .service-content h3 {
    color: #1e293b;
    font-size: 19px;
    line-height: 1.7;
    font-weight: 700;
    transition: color 0.3s ease;
}

.services .service-card:hover .service-content h3 {
    color: #0ea5e9;
}

.services .service-content p {
    color: #64748b;
    font-size: 13px;
    line-height: 1.8;
}

.services .btn-book {
    background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.services .btn-book i {
    transition: transform 0.3s ease;
}

.services .btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(14, 165, 233, 0.35);
    background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%);
}

.services .btn-book:hover i {
    transform: translateX(-5px);
}

.services .btn-book:active {
    transform: translateY(0);
}



/* Responsive Design */
@media (max-width: 911px) {


    .services .section-header h2 {
        font-size: 36px;
    }

    .services .section-subtitle {
        font-size: 16px;
    }

    .services .services-grid {
        grid-template-columns: 2fr;
        gap: 25px;
    }

    .services .service-card {
        padding: 35px 25px;
    }

    .services .icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .services .icon-wrapper i {
        font-size: 36px;
    }

    .services .service-content h3 {
        font-size: 22px;
    }

    .services .service-content p {
        font-size: 15px;
        min-height: auto;
    }
}

@media (min-width: 769px) and (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}


.section-title_main {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    color: var(--tow-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    padding-top: 60px;
    margin-bottom: 30px;
}

.section-title_main::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
}


#why p {
    text-align: center;
    color: #64748b;
    font-size: 18px;
    margin-top: 20px;
}

.content-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.feature-card {
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.2);
    border-color: #667eea;
}

.icon-circle {
    margin-bottom: 30px;
}

.icon-circle i {
    font-size: 40px;
    background: var(--tow-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 20px;
    transition: all 0.4s ease;
}

.feature-card:hover .icon-circle i {
    transform: scale(1.15) rotate(10deg);
}

.feature-title {
    font-size: 30px;
    color: #2d3748;
    font-weight: 700;
    margin-bottom: 20px;
    transition: color 0.3s ease;
}

.feature-card:hover .feature-title {
    color: #667eea;
}

.feature-text {
    font-size: 18px;
    color: #718096;
    line-height: 1.8;
    margin-bottom: 35px;
}

.btn-book {
    background: var(--tow-color);
    color: white;
    text-decoration: none;
    padding: 10px 45px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: 600;
    display: inline-block;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}


.btn-book span {
    position: relative;
    z-index: 1;
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.5);
}

.device-image {
    background: white;
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
    position: relative;
}

.device-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.device-image:hover::before {
    opacity: 1;
}

.device-image:hover {
    transform: scale(1.03);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.15);
}

.device-image img {
    width: 100%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.device-image:hover img {
    transform: scale(1.05);
}

/* Placeholder for missing images */
.device-image:empty::after {
    content: '📷';
    font-size: 80px;
    opacity: 0.3;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 42px;
        margin-bottom: 60px;
    }

    .device-image {
        min-height: 350px;
    }
}

@media (max-width: 768px) {

    .section-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .feature-card {
        padding: 40px 30px;
    }

    .icon-circle i {
        font-size: 60px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-text {
        font-size: 16px;
    }

    .btn-book {
        padding: 16px 35px;
        font-size: 16px;
        width: 100%;
    }

    .device-image {
        min-height: 300px;
        padding: 20px;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-card,
.device-image {
    animation: fadeIn 0.8s ease forwards;
    opacity: 0;
}

.content-wrapper>*:nth-child(1) {
    animation-delay: 0.1s;
}

.content-wrapper>*:nth-child(2) {
    animation-delay: 0.2s;
}

.content-wrapper>*:nth-child(3) {
    animation-delay: 0.3s;
}

.content-wrapper>*:nth-child(4) {
    animation-delay: 0.4s;
}

/* Special effect for first card */
.feature-card:first-child {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}


.who-we-are-section {
    margin-top: 40px;
}

.main_about {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.values-container_main {
    position: relative;
    animation: fadeInRight 0.8s ease-out;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

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

.label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #e0f2fe;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--tow-color);
    margin-bottom: 25px;
    border: 1px solid #bae6fd;
}

.label i {
    font-size: 14px;
}

.section-title {
    font-size: 36px;
    font-weight: 600;
    color: var(--tow-color);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #0ea5e9, #06b6d4);
    border-radius: 2px;
}

.description-text {
    font-size: 19px;
    line-height: 2;
    color: #475569;
    font-weight: 400;
    margin-bottom: 30px;
}

.main_item {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}



.value-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.064);
}

.value-item:hover .value-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #bae6fd 0%, #bfdbfe 100%);
}

.value-icon i {
    font-size: 36px;
    color: #0284c7;
}

.value-text {
    font-size: 20px;
    font-weight: 700;
    color: #334155;
}

.video-container {
    position: relative;
    animation: fadeInLeft 0.8s ease-out;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

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

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #ffffff;
    padding: 12px;
}

.image-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f1f5f9;
}

.image-box img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}

.info-cards {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.info-card {
    background: #ffffff;
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    min-width: 120px;
    border: 1px solid #e2e8f0;
}

.info-number {
    font-size: 28px;
    font-weight: 800;
    color: #0284c7;
    line-height: 1;
    margin-bottom: 6px;
}

.info-label {
    font-size: 13px;
    color: #64748b;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .main_about {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .section-title {
        font-size: 48px;
    }

    .info-cards {
        position: relative;
        bottom: 89px;
        left: 0;
        transform: none;
        margin-top: 50px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .who-we-are-section {}

    .value-item {
        justify-content: center;
    }

    .icon-wrapper {
        margin: 20px auto;
    }

    .service-content {
        text-align: center;
    }

    .section-title {
        font-size: 38px;
    }

    .description-text {
        font-size: 17px;
        line-height: 1.8;
    }


    .value-item {
        padding: 0px 0px;
    }


    .info-card {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 32px;
    }

    .description-text {
        font-size: 16px;
    }

    .value-icon {
        width: 20px;
        height: 20px;
    }

    .value-icon i {
        font-size: 32px;
    }

    .value-text {
        font-size: 18px;
    }
}

@media(max-width:390px) {
    .info-cards {
        flex-direction: column;
        width: 100%;
    }

}


.navbar-nav .nav-link {
    position: relative;
    padding-bottom: 8px;
    color: #000;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 20%;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--main-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 30%;
}

.navbar-nav .nav-link.active::after {
    width: 50%;
}


.whatsapp-floating {
    position: fixed;
    bottom: 25px;
    left: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.wa-icon {
    width: 55px;
    height: 55px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease;
    animation: floatUpDown 2.5s ease-in-out infinite;
}

.wa-two {
    animation-delay: 0.6s;
}

.wa-icon:hover {
    transform: scale(1.15);
}

/* Animation */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }

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

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


.wa-icon {
    position: relative;
}

.wa-icon::after {
    content: attr(data-city);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%) translateX(-10px);
    background: var(--main-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.wa-icon::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--main-color);
    opacity: 0;
    transition: 0.3s ease;
}

.wa-icon:hover::after,
.wa-icon:hover::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}



.wa-icon::after {
    content: attr(data-city);
    position: absolute;
    left: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--main-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 1;
    pointer-events: none;
}

.wa-icon::before {
    content: "";
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--main-color);
    opacity: 1;
}

.video-box video {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}


.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.services-row {
    display: flex;
    gap: 20px;
}

.services-row .service-card {
    flex: 1;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}


.video-wrapper {
    position: relative;
}

.image-box {
    position: relative;
}

.video-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.video-controls button {
    width: 45px;
    height: 45px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-controls button:hover {
    background: rgba(0, 0, 0, 0.8);
}


.card_main_medcil {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(max-width:991px) {
    .card_main_medcil {
        grid-template-columns: repeat(1, 1fr);
    }
}


.card_main_medcil .card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.card_main_medcil .card:hover {
    transform: translateY(-10px);
}

.card_main_medcil .card-image {
    width: 100%;
    height: 500px;
    /* object-fit: cover; */
    display: block;
}

.card_main_medcil .card-content {
    padding: 25px;
    text-align: center;
}

.card_main_medcil .card-title {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}


.card_main_medcil .book-button:active {
    transform: scale(0.98);
}

@media (max-width: 768px) {


    .card_main_medcil .card {
        width: 100%;
        max-width: 350px;
    }

    .card_main_medcil .card-image {
        height: 350px;
    }
}

.main_card_container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media(max-width:991px) {
    .main_card_container {
        grid-template-columns: repeat(1, 1fr);

    }

    .footer-links {
        gap: 10px;
    }
}

.main_card_container .card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    height: 500px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}

.main_card_container .card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.main_card_container .card:hover .card-image {
    transform: scale(1.1);
}

.main_card_container .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--tow-color);
    padding: 40px 30px;
    transform: translateY(calc(100% - 120px));
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: auto;
    min-height: 250px;
    justify-content: center;
}

.main_card_container .card:hover .card-overlay {
    transform: translateY(0);
}

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

.main_card_container .card-title {
    color: white;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
    margin-top: -30px;
    margin-bottom: 15px;
}

.main_card_container .card-description {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 16px;
    text-align: center;
    line-height: 1.8;
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.main_card_container .card:hover .card-description {
    opacity: 1;
    transform: translateY(0);
}



.main_card_container .card-btn {
    background: white;
    color: var(--tow-color);
    border: 2px solid white;
    padding: 12px 35px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    margin-top: 20px;
    transform: translateY(10px);
    transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, background 0.3s ease, color 0.3s ease;
}

.main_card_container .card:hover .card-btn {
    opacity: 1;
    transform: translateY(0);
}

.main_card_container .card-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.main_card_container .card-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    transition: transform 0.3s ease;
}

.main_card_container .card:hover .card-icon svg {
    transform: scale(1.1);
}



@media (max-width: 768px) {
    .main_about {
        flex-direction: column;
    }

    .values-container_main {
        order: 1;
        text-align: center;
    }

    .video-container {
        order: 2;
    }

    .section-title::after {
        bottom: -10px;
        right: -45%;
    }

    .who-we-are-section {
        padding: 0;
    }
}