:root {
    --top-bar-blue: #1192CF;
    --main-blue: #1192CF;
}

body {
    margin: 0;
    padding: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--top-bar-blue);
    color: white;
    width: 100%;
    position: relative;
    z-index: 10;
}

.top-bar-text {
    color: white;
    font-size: 14px;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    font-size: 15px;
    padding: 0 10px;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    color: white;
    opacity: 0.8;
}

.btn-quick-contact {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    padding: 8px 18px;
    border-radius: 50px;
    margin-left: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-quick-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-quick-contact:hover::before {
    left: 100%;
}

.btn-quick-contact:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.btn-quick-contact i {
    font-size: 1.1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.top-bar-divider {
    color: white;
    padding: 0 5px;
    font-size: 14px;
}

/* Main Navigation Bar Styles */
.main-navbar {
    background-color: white;
    border-bottom: 1px solid #e5e7eb;
    width: 100%;
    position: relative;
    z-index: 10;
}

.navbar-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.main-nav-link {
    color: #1f2937 !important;
    font-weight: 500;
    font-size: 15px;
    padding: 0 !important;
    transition: color 0.3s;
}

.main-nav-link:hover {
    color: #1192CF !important;
}

.btn-menu-toggle {
    background: none;
    border: none;
    font-size: 20px;
    color: #1f2937;
    cursor: pointer;
    padding: 5px 10px;
    transition: color 0.3s;
}

.btn-menu-toggle:hover {
    color: #1192CF;
}

.btn-contact {
    color: #00aced;
    border: none;
    padding: 10px 30px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(17, 146, 207, 0.3);
    text-decoration: none;
    display: inline-block;
    background: white;
    border: 1px solid #00aced;
}

.btn-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(17, 146, 207, 0.4);
    color: #00aced;
    text-decoration: none;
}

/* Banner Area Styles */

.banner-new{
    background-image: url('image/banner.png');
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    position: relative;
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.banner-content {
    position: relative;
    z-index: 2;
}

.banner-text {
    color: white;
}

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

.banner-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.btn-services {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-services:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.banner-swiper {
    height: 500px;
    width: 100%;
    position: relative;
}

.banner-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Pagination - Ortada */
.banner-swiper .swiper-pagination {
    right: 0px !important;
    left: auto !important;
    width: 40px !important;
    top: 50% !important;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.banner-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: transparent;
    opacity: 1;
    margin: 0 !important;
    border-radius: 50%;
    border: 2px solid white;
    transition: all 0.3s;
}

.banner-swiper .swiper-pagination-bullet-active {
    background: white;
    border-color: white;
    width: 10px;
    height: 10px;
}

/* Navigation Buttons - Üstte ve Altta */
.banner-swiper .swiper-button-next,
.banner-swiper .swiper-button-prev {
    color: #1192CF;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    right: 0px !important;
    left: auto !important;
    margin-top: 0;
    border: 1px solid #1192CF;
    transform: translateX(0);
}

.banner-swiper .swiper-button-prev {
    top: calc(50% - 90px) !important;
    bottom: auto !important;
}

.banner-swiper .swiper-button-next {
    top: calc(50% + 50px) !important;
    bottom: auto !important;
}

.banner-swiper .swiper-button-next:after,
.banner-swiper .swiper-button-prev:after {
    font-size: 14px;
    font-weight: 700;
}

.banner-swiper .swiper-button-prev:after {
    transform: rotate(90deg);
}

.banner-swiper .swiper-button-next:after {
    transform: rotate(90deg);
}

.banner-swiper .swiper-button-next:hover,
.banner-swiper .swiper-button-prev:hover {
    background: #f8f9fa;
}

.banner-curve {
    position: relative;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 120px;
    background: white;
    border-radius: 50% 50% 0 0 / 60px 60px 0 0;
    z-index: 3;
}


/* Services Banner Area - Custom Height */
.services-banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    display: flex;
    align-items: center;
    position: relative;
    /* padding: 80px 0;*/
}

.services-banner-content {
    position: relative;
    z-index: 2;
}

.services-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Services Banner Styles */
.services-banner-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.services-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #002d69;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.banner-arrow-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.arrow-image {
    width: 100%;
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.services-banner-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-banner-single-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

.single-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.services-image-container {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.x-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 110px;
    height: 110px;
    border-bottom-right-radius: 50px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.x-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.woman-image {
    position: relative;
    z-index: 2;
    width: 200px;
    height: 200px;
}

.woman-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.twitter-logo {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 130px;
    height: auto;
}

.twitter-logo img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* About Banner Area - Custom Height */
.about-banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    display: flex;
    align-items: center;
    position: relative;
}

.about-banner-content {
    position: relative;
    z-index: 2;
}

.about-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.about-banner-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.about-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #002d69;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.btn-about-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: fit-content;
}

.btn-about-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.about-banner-single-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

/* Contact Banner Area - Custom Height */
.contact-banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    display: flex;
    align-items: center;
    position: relative;
}

.contact-banner-content {
    position: relative;
    z-index: 2;
}

.contact-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact-banner-text-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact-banner-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.contact-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #002d69;
    margin-bottom: 2rem;
    line-height: 1.2;
}

/* Contact Banner Arrow Center */
.contact-banner-arrow-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-arrow-image {
    width: 100%;
    height: auto;
    animation: bounce 2s infinite;
}

/* Contact Arrow Down Animation */
.contact-arrow-down {
    margin: 20px 0;
    animation: contactBounceDown 2s infinite;
}

.contact-arrow-down i {
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

@keyframes contactBounceDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(15px);
    }
}

.contact-banner-image-centered {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-banner-image-centered img {
    max-width: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.btn-contact-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: fit-content;
}

.btn-contact-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

/* Contact Form Section */
.contact-form-section {
    padding: 100px 0;
    background: white;
}

.contact-form-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 20px;
    line-height: 1.3;
}

.contact-background{
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    background: white;
    padding: 0rem 3rem;
    border-radius: 50px;
}

.highlight-text {
    color: #2563eb;
}

.contact-form-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 15px;
}

.contact-whatsapp-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-bottom: 25px;
}

.btn-contact-form-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-contact-form-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-contact-form-whatsapp i {
    font-size: 1.2rem;
}

.contact-form-wrapper {
    padding: 50px;
    border-radius: 30px;
}

.contact-form .form-group {
    margin-bottom: 10px;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f1f3d;
    margin-bottom: 10px;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none;
}

.contact-form .form-control:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form textarea.form-control {
    border-radius: 25px;
    resize: vertical;
    min-height: 120px;
}

.btn-submit-contact {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    width: 100%;
    margin-top: 10px;
}

.btn-submit-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
}

@media (max-width: 991px) {
    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-left {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }

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

    .contact-form-wrapper {
        padding: 30px 25px;
    }
}

/* FAQ Banner Area - Custom Height */
.faq-banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    display: flex;
    align-items: center;
    position: relative;
}

.faq-banner-content {
    position: relative;
    z-index: 2;
}

.faq-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.faq-banner-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.faq-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #002d69;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.btn-faq-whatsapp {
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: fit-content;
}

.btn-faq-whatsapp:hover {
    background: #128C7E;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

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

.faq-banner-single-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

/* FAQ Accordion Section */
.faq-accordion-section {
    padding: 80px 0;
    background: white;
}

.faq-accordion-item {
    margin-bottom: 20px;
}

.faq-accordion-header {
    margin: 0;
}

.faq-accordion-button {
    width: 100%;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 50px;
    padding: 20px 30px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f1f3d;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    box-shadow: none;
}

.faq-accordion-button:hover {
    border-color: #2563eb;
    background: white;
}

.faq-accordion-button:focus {
    box-shadow: none;
    border-color: #2563eb;
}

.faq-accordion-button:not(.collapsed) {
    background: white;
    border-color: #2563eb;
    color: #0f1f3d;
}

.faq-accordion-icon {
    color: #2563eb;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-accordion-button:not(.collapsed) .faq-accordion-icon {
    transform: rotate(180deg);
}

.faq-accordion-body {
    padding: 20px 30px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    background: white;
}

.accordion-collapse {
    border: none;
}

@media (max-width: 991px) {
    .faq-accordion-section {
        padding: 60px 0;
    }

    .faq-accordion-button {
        padding: 15px 20px;
        font-size: 0.95rem;
    }

    .faq-accordion-body {
        padding: 15px 20px;
    }
}

/* About Content Section */
.about-content-section {
    padding: 100px 0;
    background: white;
}

.about-content-image {
    position: relative;
    width: 100%;
}

.about-content-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.about-content-text {
    padding-left: 40px;
}

.about-content-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 30px;
    line-height: 1.3;
}

.about-content-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 20px;
}

.about-content-description:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .about-content-section {
        padding: 60px 0;
    }

    .about-content-text {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-content-title {
        font-size: 1.8rem;
    }
}

/* Social Media Section */
.social-media-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    z-index: 4;
    overflow: hidden;
}

.social-media-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.social-media-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(17, 146, 207, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.social-card {
    background: #F9FAFB;
    border-radius: 20px;
    padding: 0px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: 45vh;
    display: flex;
}

.world-map-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.world-map-image {
    width: 80vh;
    height: auto;
    /* max-width: 100%; */
    object-fit: cover;
}

.people-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 75%;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    z-index: 2;
}

.social-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 40px 0;
}

.social-icon-badge {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon-badge i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.social-icon-badge i:nth-child(1) {
    background: linear-gradient(135deg, #1DA1F2 0%, #0d7ab0 100%);
    color: white;
}

.social-icon-badge i:nth-child(2) {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 100%);
    color: white;
}

.social-icon-badge i:nth-child(3) {
    background: linear-gradient(135deg, #1877F2 0%, #0A66C2 100%);
    color: white;
}

.social-icon-badge i:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 25px;
    line-height: 1.2;
}

.title-highlight {
    background: linear-gradient(135deg, #2563eb 0%, #1192CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.social-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 35px;
    font-weight: 400;
}

.social-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 25px 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563eb 0%, #1192CF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: #6b7280;
    font-weight: 500;
}

.btn-contact-social {
    background: linear-gradient(135deg, #2563eb 0%, #1192CF 100%);
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-contact-social::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-contact-social:hover::before {
    left: 100%;
}

.btn-contact-social:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #0d7ab0 100%);
    color: white;
    text-decoration: none;
}

.btn-contact-social i {
    transition: transform 0.3s ease;
}

.btn-contact-social:hover i {
    transform: translateX(5px);
}

.social-mockup-wrapper {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.mockup-phone {
    position: relative;
    z-index: 3;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(-5deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

.phone-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    position: relative;
    z-index: 2;
}

.mockup-tablet {
    position: absolute;
    right: 10%;
    bottom: 10%;
    width: 350px;
    height: 250px;
    background: #1a1a1a;
    border-radius: 20px;
    padding: 15px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    z-index: 1;
    animation: float-tablet 7s ease-in-out infinite;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
}

@keyframes float-tablet {
    0%, 100% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(0px);
    }
    50% {
        transform: perspective(1000px) rotateY(-15deg) rotateX(5deg) translateY(-15px);
    }
}

.tablet-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.tablet-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 400 300"><rect fill="%23ffffff" opacity="0.1" width="400" height="300"/></svg>');
    opacity: 0.3;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: shape-float 8s ease-in-out infinite;
}

.shape-1 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #2563eb 0%, #1192CF 100%);
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1192CF 0%, #2563eb 100%);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb 0%, #1192CF 100%);
    top: 50%;
    left: 10%;
    animation-delay: 4s;
}

@keyframes shape-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(20px, -20px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Packages Section */
.packages-section {
    padding: 80px 0;
    background: white;
}

.packages-subtitle {
    color: #2563eb;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.packages-title {
    font-size: 25px !important;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 3rem;
}

.package-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.package-card-link:hover {
    text-decoration: none;
    color: inherit;
}

.package-card {
    background: white;
    border-radius: 50px;
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.package-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg, #2563eb, #1d4ed8);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

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

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.2);
}

.package-featured {
    border: 3px solid #2563eb;
    transform: scale(1.05);
}

.package-featured:hover {
    transform: translateY(-10px) scale(1.05);
}

.package-heading {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f1f3d;
    margin-bottom: 1rem;
    text-align: center;
}

.package-service {
    color: #2563eb;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
    text-align: center;
}

.package-features li {
    padding: 10px 0;
    color: #4b5563;
    font-size: 0.95rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.package-features li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    font-size: 1.5rem;
    margin-right: 8px;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #54EA8C 0%, #54EA8C 100%);
    color: white;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    display: inline-block;
    text-align: center;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: white;
    position: relative;
    border-bottom: 2px solid #e5e7eb;
}

.testimonials-subtitle {
    color: #2563eb;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 3rem;
}

.world-map-testimonials {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-dots {
    width: 100%;
    height: auto;
}

.user-avatar {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.user-avatar:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    border-color: #2563eb;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-1 {
    top: 20%;
    left: 15%;
}

.avatar-2 {
    top: 15%;
    left: 45%;
    width: 70px;
    height: 70px;
}

.avatar-3 {
    top: 25%;
    right: 20%;
}

.avatar-4 {
    bottom: 35%;
    left: 25%;
}

.avatar-5 {
    bottom: 25%;
    left: 50%;
}

.avatar-6 {
    bottom: 20%;
    right: 15%;
}

.testimonials-swiper {
    position: relative;
    padding-bottom: 60px;
}

.testimonial-card {
    background: #f8f9fa;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f1f3d;
    margin-bottom: 8px;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-stars i {
    margin-right: 3px;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    font-style: italic;
    margin: 0;
}

.testimonial-navigation {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 10px;
    z-index: 10;
}

.testimonial-prev,
.testimonial-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
    margin: 0;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.testimonial-next {
    background: #2563eb;
    color: white;
}

.testimonial-next:hover {
    background: #1d4ed8;
}

.testimonial-prev::after,
.testimonial-next::after {
    display: none;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #07B0E8 1%, #24559E 99%);
    position: relative;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.faq-icon {
    font-size: 2rem;
    color: white;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.faq-item {
    background: transparent;
    border: none;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-button {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.faq-button:not(.collapsed) {
    background: rgba(255, 255, 255, 0.25);
    color: white;
}

.faq-button:focus {
    box-shadow: none;
    outline: none;
}

.faq-button::after {
    display: none;
}

.faq-arrow {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: white;
}

.faq-button:not(.collapsed) .faq-arrow {
    transform: rotate(180deg);
}

.faq-body {
    padding: 20px 25px;
    color: white;
    font-size: 0.95rem;
    line-height: 1.7;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0 0 15px 15px;
}

.accordion-item{
    border-radius: 30px !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-bar .row {
        text-align: center;
    }

    .top-bar .col-md-6:last-child {
        justify-content: center !important;
        margin-top: 10px;
    }

    .main-navbar .navbar-nav {
        flex-direction: column;
    }

    .main-navbar .nav-item {
        margin-bottom: 10px;
        margin-right: 0 !important;
    }

    .social-title {
        font-size: 1.8rem;
    }

    .social-content {
        padding: 20px;
        text-align: center;
    }

    .world-map-container {
        min-height: 300px;
        margin-bottom: 30px;
    }

    .faq-title {
        font-size: 1.8rem;
    }

    .faq-button {
        font-size: 0.9rem;
        padding: 15px 20px;
    }
}

/* Blog Banner Area - Custom Height */
.blog-banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    display: flex;
    align-items: center;
    position: relative;
}

.blog-banner-content {
    position: relative;
    z-index: 2;
}

.blog-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.blog-banner-subtitle {
    font-size: 2.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.blog-banner-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #002d69;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.blog-banner-arrow-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-arrow-image {
    width: 100%;
    height: auto;
    animation: blogBounce 2s infinite;
}

@keyframes blogBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.blog-banner-single-image {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: end;
}

/* Blog Cards Section */
.blog-cards-section {
    padding: 80px 0;
    background: white;
}

.blog-section-subtitle {
    color: #2563eb;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 3rem;
}

.blog-post-card {
    /* background: white; */
    border-radius: 25px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.blog-post-image {
    width: 100%;
    height: 30vh;
    overflow: hidden;
    position: relative;
    border-radius: 15px;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.1);
}

.blog-post-content {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
    background: #f8f9fa;
    border-radius: 15px;
}

.blog-post-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f1f3d;
    margin-bottom: 15px;
    line-height: 1.4;
    min-height: 60px;
}

.blog-post-excerpt {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 20px;
    flex: 1;
}

.btn-blog-watch {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    width: 100%;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-blog-watch:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
}

/* Blog Pagination */
.blog-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.pagination-list {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #f3f4f6;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.pagination-link:hover {
    background: #e5e7eb;
    color: #1f2937;
    border-color: #2563eb;
}

.pagination-item.active .pagination-link {
    background: #2563eb;
    color: white;
    border-color: #2563eb;
}

.pagination-dots span {
    color: #6b7280;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.pagination-next .pagination-link {
    background: #f3f4f6;
    color: #4b5563;
}

.pagination-next .pagination-link:hover {
    background: #2563eb;
    color: white;
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .blog-cards-section {
        padding: 60px 0;
    }

    .blog-section-title {
        font-size: 1.8rem;
    }

    .blog-post-card {
        margin-bottom: 20px;
    }

    .blog-post-title {
        font-size: 1.1rem;
        min-height: auto;
    }

    .pagination-link {
        width: 40px;
        height: 40px;
        font-size: 0.85rem;
    }

    .pagination-dots span {
        width: 40px;
        height: 40px;
    }

    .pagination-list {
        gap: 5px;
    }
}

/* Blog Detail Banner Area - Custom Height */
.blog-detail-banner-area {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    min-height: 35vh;
    display: flex;
    align-items: center;
    position: relative;
}

.blog-detail-banner-content {
    position: relative;
    z-index: 2;
}

.blog-detail-banner-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.blog-detail-banner-subtitle {
    font-size: 2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

.blog-detail-banner-title {
    font-size: 2rem;
    font-weight: 800;
    color: #002d69;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.blog-detail-banner-arrow-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.blog-detail-arrow-image {
    width: 100%;
    height: auto;
    animation: blogDetailBounce 2s infinite;
}

@keyframes blogDetailBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

@media (max-width: 991px) {
    .blog-detail-banner-title {
        font-size: 1.8rem;
    }

    .blog-detail-banner-text {
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }
}

/* Blog Detail Content Section */
.blog-detail-content-section {
    padding: 80px 0;
    background: white;
}

.blog-detail-main-image {
    width: 100%;
    height: auto;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.blog-detail-main-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-detail-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 30px;
    line-height: 1.3;
}

.blog-detail-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 50px;
}

.blog-detail-text p {
    margin-bottom: 20px;
}

.blog-detail-share-section {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.blog-detail-share-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.blog-detail-social-icons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.blog-social-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
}

.blog-social-icon i {
    font-size: 1.2rem;
}

.blog-social-icon.twitter {
    color: #1DA1F2;
}

.blog-social-icon.twitter:hover {
    background: #1DA1F2;
    color: white;
    border-color: #1DA1F2;
    transform: translateY(-3px);
}

.blog-social-icon.facebook {
    color: #1877F2;
}

.blog-social-icon.facebook:hover {
    background: #1877F2;
    color: white;
    border-color: #1877F2;
    transform: translateY(-3px);
}

.blog-social-icon.linkedin {
    color: #0A66C2;
}

.blog-social-icon.linkedin:hover {
    background: #0A66C2;
    color: white;
    border-color: #0A66C2;
    transform: translateY(-3px);
}

.blog-social-icon.email {
    color: #EA4335;
}

.blog-social-icon.email:hover {
    background: #EA4335;
    color: white;
    border-color: #EA4335;
    transform: translateY(-3px);
}

.blog-social-icon.whatsapp {
    color: #25D366;
}

.blog-social-icon.whatsapp:hover {
    background: #25D366;
    color: white;
    border-color: #25D366;
    transform: translateY(-3px);
}

.blog-social-icon.telegram {
    color: #0088cc;
}

.blog-social-icon.telegram:hover {
    background: #0088cc;
    color: white;
    border-color: #0088cc;
    transform: translateY(-3px);
}

.blog-social-icon.instagram {
    color: #E4405F;
}

.blog-social-icon.instagram:hover {
    background: #E4405F;
    color: white;
    border-color: #E4405F;
    transform: translateY(-3px);
}

.blog-social-icon.youtube {
    color: #FF0000;
}

.blog-social-icon.youtube:hover {
    background: #FF0000;
    color: white;
    border-color: #FF0000;
    transform: translateY(-3px);
}

@media (max-width: 991px) {
    .blog-detail-content-section {
        padding: 60px 0;
    }

    .blog-detail-main-title {
        font-size: 1.8rem;
    }

    .blog-detail-main-image {
        border-radius: 20px;
        margin-bottom: 30px;
    }

    .blog-detail-social-icons {
        justify-content: center;
    }
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.blog-section .container-fluid {
    overflow: hidden;
}

.blog-subtitle {
    color: #2563eb;
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0f1f3d;
    margin-bottom: 3rem;
}

.blog-swiper {
    position: relative;
    padding-bottom: 80px;
    overflow: hidden;
}

.blog-card {
    /* background: white; */
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08); */
    transition: all 0.4s ease;
    min-height: 350px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 20px;
}

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

.blog-image {
    width: 45%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border-radius: 25px;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-content {
    background-color: #fafafa;
    padding: 50px 40px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0f1f3d;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 25px;
    flex: 1;
}

.btn-blog-detail {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    align-self: flex-start;
    text-decoration: none;
    display: inline-block;
}

.btn-blog-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, #1d4ed8 0%, #1e40af 100%);
    color: white;
    text-decoration: none;
}

.blog-navigation {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 10;
}

.blog-prev,
.blog-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: static;
    margin: 0;
}

.blog-prev:hover,
.blog-next:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-2px);
}

.blog-next {
    background: #2563eb;
    color: white;
}

.blog-next:hover {
    background: #1d4ed8;
}

.blog-prev::after,
.blog-next::after {
    display: none;
}

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

    .blog-card {
        flex-direction: column;
    }

    .blog-image {
        width: 100%;
        height: 200px;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }
}

/* Footer Section */
.footer-section {
    background: linear-gradient(105deg, #1f4c9c, #2aa8e0);
    padding: 80px 0 30px;
    color: white;
}

.footer-brand {
    padding-right: 30px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    /* border-radius: 50%; */
    /* background: rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    border: 1px dashed #0b214a;
}

.social-icon:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 25px;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.footer-menu a i {
    font-size: 0.7rem;
    color: #2563eb;
}

.footer-menu a:hover {
    color: white;
    padding-left: 5px;
}

.payment-logos {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.payment-logos img {
    height: 25px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 3px 8px;
    border-radius: 5px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright-text {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 20px;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .footer-logo {
        display: flex;
        justify-content: center;
    }

    .footer-logo-img {
        height: 40px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-title {
        font-size: 1.1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .payment-logos {
        justify-content: center;
    }
}

/* ========================================
   Mobile Menu Overlay Styles
   ======================================== */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(180deg, #1192CF 0%, #0d7ab0 100%);
    z-index: 9999;
    transition: right 0.3s ease-in-out;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    overflow-y: auto;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-menu-logo {
    flex: 1;
}

.mobile-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 10px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 5px 10px;
    transition: transform 0.2s;
}

.mobile-menu-close:hover {
    transform: rotate(90deg);
}

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-item {
    margin-bottom: 5px;
}

.mobile-menu-link {
    display: block;
    padding: 15px 20px;
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    transform: translateX(5px);
}

.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.2) !important;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: white !important;
    transform: translateY(-2px) !important;
}

.mobile-menu-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mobile-top-bar-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.mobile-top-bar-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.mobile-top-bar-link:hover::before {
    left: 100%;
}

.mobile-top-bar-link:hover {
    background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.mobile-top-bar-link i {
    font-size: 1.4rem;
    animation: pulse 2s ease-in-out infinite;
}

/* Mobile Menu Backdrop */
.mobile-menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   Responsive Header Styles
   ======================================== */

/* Tablet and below */
@media (max-width: 991px) {
    /* Hide desktop menu on tablet and mobile */
    .desktop-menu {
        display: none !important;
    }

    /* Show hamburger button on tablet and mobile */
    .btn-menu-toggle {
        display: block;
    }

    /* Adjust contact button on tablet */
    .desktop-contact-btn {
        padding: 8px 20px;
        font-size: 14px;
    }
}

/* Mobile styles */
@media (max-width: 768px) {
    /* Top Bar Mobile Styles */
    .top-bar .row {
        flex-direction: column;
        text-align: center;
    }

    .top-bar .col-md-6 {
        width: 100%;
    }

    .top-bar .d-flex {
        justify-content: center !important;
        flex-wrap: wrap;
        gap: 8px;
    }

    .top-bar-text {
        font-size: 13px;
    }

    .top-bar-link {
        font-size: 13px;
        padding: 0 8px;
    }

    .top-bar-divider {
        display: none;
    }

    .btn-quick-contact {
        font-size: 13px;
        padding: 7px 16px;
        margin-left: 0;
        margin-top: 6px;
    }

    .btn-quick-contact i {
        font-size: 1rem;
    }

    .top-bar .py-2 {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    /* Main navbar mobile adjustments */
    .main-navbar .py-3 {
        padding-top: 15px !important;
        padding-bottom: 15px !important;
    }

    .logo-img {
        height: 40px;
    }

    .btn-menu-toggle {
        font-size: 24px;
        margin-right: 10px !important;
    }

    .desktop-contact-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .top-bar-link {
        font-size: 12px;
        padding: 0 5px;
    }

    .top-bar-divider {
        padding: 0 3px;
    }

    .btn-quick-contact {
        font-size: 12px;
        padding: 6px 14px;
        margin-left: 5px;
        gap: 6px;
    }

    .btn-quick-contact i {
        font-size: 0.95rem;
    }

    .desktop-contact-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

    .btn-menu-toggle {
        font-size: 20px;
    }

    .logo-img {
        height: 35px;
    }

    .mobile-menu-overlay {
        width: 280px;
    }
}

/* ========================================
   Banner Area Mobile Responsive
   ======================================== */

/* Tablet devices */
@media (max-width: 991px) {
    .banner-area {
        height: auto;
        min-height: 60vh;
        padding: 40px 0;
    }

    .banner-content {
        height: auto;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-description {
        font-size: 1rem;
    }

    .banner-text {
        text-align: center;
        margin-bottom: 30px;
    }

    .banner-swiper {
        height: 400px;
        padding-right: 0;
    }

    .banner-swiper .swiper-pagination {
        bottom: 0 !important;
        top: auto !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%);
        width: auto !important;
        flex-direction: row;
    }

    .banner-swiper .swiper-button-prev,
    .banner-swiper .swiper-button-next {
        display: none;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .banner-area {
        min-height: auto;
        padding: 30px 0;
    }

    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .banner-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .btn-services {
        padding: 10px 25px;
        font-size: 0.9rem;
    }

    .banner-swiper {
        height: 300px;
        margin-top: 20px;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .banner-title {
        font-size: 1.5rem;
    }

    .banner-description {
        font-size: 0.9rem;
    }

    .btn-services {
        padding: 8px 20px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .banner-swiper {
        height: 250px;
    }
}

/* ========================================
   Social Media Section Mobile Responsive
   ======================================== */

/* Tablet devices */
@media (max-width: 991px) {
    .social-media-section {
        padding: 80px 0;
    }

    .social-content-wrapper {
        padding: 30px 0;
    }

    .social-title {
        font-size: 2.4rem;
    }

    .social-description {
        font-size: 1rem;
    }

    .social-stats {
        gap: 25px;
    }

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

    .social-mockup-wrapper {
        height: 500px;
    }

    .phone-image {
        width: 240px;
    }

    .mockup-tablet {
        width: 300px;
        height: 220px;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .social-media-section {
        padding: 60px 0;
    }

    .social-content-wrapper {
        padding: 20px 0;
        text-align: center;
    }

    .social-icon-badge {
        justify-content: center;
        margin-bottom: 25px;
    }

    .social-icon-badge i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .social-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .social-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .social-stats {
        justify-content: center;
        gap: 20px;
        margin-bottom: 30px;
    }

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

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

    .btn-contact-social {
        padding: 15px 35px;
        font-size: 0.95rem;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .social-mockup-wrapper {
        height: 400px;
        margin-top: 30px;
    }

    .phone-image {
        width: 200px;
    }

    .mockup-tablet {
        width: 250px;
        height: 180px;
        right: 5%;
        bottom: 5%;
    }

    .shape-1,
    .shape-2,
    .shape-3 {
        display: none;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .social-media-section {
        padding: 40px 0;
    }

    .social-content-wrapper {
        padding: 15px 0;
    }

    .social-icon-badge {
        gap: 8px;
        margin-bottom: 20px;
    }

    .social-icon-badge i {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .social-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .social-description {
        font-size: 0.9rem;
        margin-bottom: 25px;
    }

    .social-stats {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
    }

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

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

    .btn-contact-social {
        padding: 14px 30px;
        font-size: 0.9rem;
        width: 100%;
    }

    .social-mockup-wrapper {
        height: 350px;
    }

    .phone-image {
        width: 160px;
    }

    .mockup-tablet {
        width: 200px;
        height: 140px;
        right: 0;
        bottom: 0;
    }
}

.contact-banner-single-image {
    display: flex;
    align-items: center;
    justify-content: end;
}

/* ========================================
   All Banner Areas Mobile Responsive
   ======================================== */

/* Services Banner, About Banner, Contact Banner, FAQ Banner Responsive */

/* Tablet devices */
@media (max-width: 991px) {
    .services-banner-area,
    .about-banner-area,
    .contact-banner-area,
    .faq-banner-area,
    .blog-banner-area {
        min-height: 30vh;
        padding: 30px 0;
    }

    .services-banner-text,
    .about-banner-text,
    .contact-banner-text,
    .faq-banner-text,
    .blog-banner-text {
        text-align: center;
        align-items: center;
        margin-bottom: 30px;
    }

    .services-banner-title,
    .about-banner-title,
    .contact-banner-title,
    .faq-banner-title,
    .blog-banner-title {
        font-size: 1.8rem;
    }

    .services-banner-subtitle,
    .about-banner-subtitle,
    .contact-banner-subtitle,
    .faq-banner-subtitle,
    .blog-banner-subtitle {
        font-size: 1.8rem;
    }

    .banner-arrow-center {
        margin-bottom: 20px;
    }

    .arrow-image {
        max-width: 80px;
    }

    /* Services banner specific */
    .services-image-container {
        height: 300px;
    }

    .x-logo {
        width: 80px;
        height: 80px;
    }

    .woman-image {
        width: 150px;
        height: 150px;
    }

    .twitter-logo {
        width: 100px;
    }

    .btn-about-whatsapp,
    .btn-contact-whatsapp,
    .btn-faq-whatsapp {
        padding: 12px 25px;
        font-size: 0.95rem;
    }
}

/* Mobile devices */
@media (max-width: 768px) {
    .services-banner-area,
    .about-banner-area,
    .contact-banner-area,
    .faq-banner-area,
    .blog-banner-area {
        min-height: auto;
        padding: 20px 0;
    }

    .services-banner-text,
    .about-banner-text,
    .contact-banner-text,
    .faq-banner-text,
    .blog-banner-text {
        margin-bottom: 20px;
    }

    .services-banner-title,
    .about-banner-title,
    .contact-banner-title,
    .faq-banner-title,
    .blog-banner-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .services-banner-subtitle,
    .about-banner-subtitle,
    .contact-banner-subtitle,
    .faq-banner-subtitle,
    .blog-banner-subtitle {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .banner-arrow-center {
        display: none;
    }

    /* Contact banner arrow - rotate to point down on mobile */
    .contact-banner-arrow-center {
        display: flex !important;
        margin: 20px 0;
    }

    .contact-arrow-image {
        transform: rotate(-90deg);
        max-width: 60px;
        animation: contactBounceDown 2s infinite;
    }

    @keyframes contactBounceDown {
        0%, 100% {
            transform: rotate(-90deg) translateX(0);
        }
        50% {
            transform: rotate(-90deg) translateX(10px);
        }
    }

    /* About, Services, FAQ banner arrows - rotate to point down on mobile */
    .about-banner-area .banner-arrow-center,
    .services-banner-area .banner-arrow-center,
    .faq-banner-area .banner-arrow-center {
        display: flex !important;
        margin: 20px 0;
    }

    .about-banner-area .arrow-image,
    .services-banner-area .arrow-image,
    .faq-banner-area .arrow-image {
        transform: rotate(-90deg);
        max-width: 60px;
        animation: arrowBounceDown 2s infinite;
    }

    @keyframes arrowBounceDown {
        0%, 100% {
            transform: rotate(-90deg) translateX(0);
        }
        50% {
            transform: rotate(-90deg) translateX(10px);
        }
    }

    /* Blog banner arrow - rotate to point down on mobile */
    .blog-banner-arrow-center {
        display: flex !important;
        margin: 20px 0;
    }

    .blog-arrow-image {
        transform: rotate(-90deg);
        max-width: 60px;
        animation: blogArrowBounceDown 2s infinite;
    }

    @keyframes blogArrowBounceDown {
        0%, 100% {
            transform: rotate(-90deg) translateX(0);
        }
        50% {
            transform: rotate(-90deg) translateX(10px);
        }
    }

    /* Contact arrow mobile */
    .contact-arrow-down i {
        font-size: 2rem;
    }

    .contact-banner-image-centered img {
        max-width: 300px;
    }

    /* Services banner specific - stack layout */
    .services-banner-area .row {
        flex-direction: column;
    }

    .services-image-container {
        height: 250px;
        margin-top: 20px;
    }

    .x-logo {
        width: 60px;
        height: 60px;
        left: 10px;
    }

    .woman-image {
        width: 120px;
        height: 120px;
    }

    .twitter-logo {
        width: 80px;
        right: 10px;
    }

    .services-banner-image,
    .about-banner-single-image,
    .contact-banner-single-image,
    .faq-banner-single-image,
    .blog-banner-single-image {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    .services-banner-image img,
    .services-banner-single-image img,
    .about-banner-single-image img,
    .contact-banner-single-image img,
    .faq-banner-single-image img,
    .blog-banner-single-image img {
        max-width: 250px;
        height: auto;
    }

    .btn-about-whatsapp,
    .btn-contact-whatsapp,
    .btn-faq-whatsapp {
        padding: 10px 20px;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .services-banner-area,
    .about-banner-area,
    .contact-banner-area,
    .faq-banner-area,
    .blog-banner-area {
        padding: 15px 15px 0px 15px;
    }

    .services-banner-title,
    .about-banner-title,
    .contact-banner-title,
    .faq-banner-title,
    .blog-banner-title {
        font-size: 1.3rem;
    }

    .services-banner-subtitle,
    .about-banner-subtitle,
    .contact-banner-subtitle,
    .faq-banner-subtitle,
    .blog-banner-subtitle {
        font-size: 1.3rem;
    }

    /* Contact banner arrow - smaller on small mobile */
    .contact-arrow-image {
        max-width: 45px;
    }

    /* About, Services, FAQ banner arrows - smaller on small mobile */
    .about-banner-area .arrow-image,
    .services-banner-area .arrow-image,
    .faq-banner-area .arrow-image {
        max-width: 45px;
    }

    /* Blog banner arrow - smaller on small mobile */
    .blog-arrow-image {
        max-width: 45px;
    }

    /* Contact arrow small mobile */
    .contact-arrow-down i {
        font-size: 1.5rem;
    }

    .contact-banner-image-centered img {
        max-width: 250px;
    }

    .services-image-container {
        height: 200px;
    }

    .x-logo {
        width: 50px;
        height: 50px;
    }

    .woman-image {
        width: 100px;
        height: 100px;
    }

    .twitter-logo {
        width: 60px;
    }

    .services-banner-image img,
    .services-banner-single-image img,
    .about-banner-single-image img,
    .contact-banner-single-image img,
    .faq-banner-single-image img,
    .blog-banner-single-image img {
        max-width: 250px;
    }

    .btn-about-whatsapp,
    .btn-contact-whatsapp,
    .btn-faq-whatsapp {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .services-banner-single-image{
        justify-content: center;
    }
}

.btn-whatsapp i {
    font-size: 1.4rem;
    margin-right: 10px;
    vertical-align: middle;
}