/* CSS Variables for Color Scheme */
:root {
    --main-gradient: #5A6BC7;
    --body-text: #2c3e50;
    --style: #4a5568;
    --light-gray: #D9D9D9;
    --main-color: #29265F;
    --secondary: #FDA31B;
    --tertiary-1: #393C7D;
    --tertiary-2: #6B7280;
    --white-base: #ffffff;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    line-height: 1.6;
}

/* Top Bar Styles */
.top-bar {
    background: linear-gradient(to right, var(--main-color) 0%, var(--main-color) 30%, var(--tertiary-1) 70%, var(--tertiary-1) 100%);
    color: var(--white-base);
    padding: 12px 0;
    font-size: 14px;
    position: relative;
}

.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 35%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 1;
}

.top-bar::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-color: var(--tertiary-1);
    z-index: 1;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
    z-index: 2;
}

.follow-text {
    font-weight: 500;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--secondary);
    color: var(--white-base);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon .svg-icon {
    width: 16px;
    height: 16px;
    /* filter: brightness(0) invert(1); */
}

.social-icon:hover {
    background-color: var(--main-color);
    transform: scale(1.1);
    color: var(--white-base);
}

.social-icon:hover .svg-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) invert(1);

}

/* Language Selector Styles */
.language-selector {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.language-dropdown {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white-base);
    font-size: 14px;
    padding: 6px 12px;
    border-radius: 6px;
    cursor: pointer;
    width: auto;
    min-width: 120px;
    max-width: 150px;
    transition: all 0.3s ease;
}

.language-dropdown:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 2px rgba(253, 163, 27, 0.2);
}

.language-dropdown option {
    background-color: var(--main-color);
    color: var(--white-base);
    padding: 8px;
}

.language-dropdown:hover {
    border-color: var(--secondary);
}

/* Make dropdown arrow white */
.language-dropdown {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 16px;
    padding-right: 32px;
}

/* Remove default browser dropdown arrow */
.language-dropdown::-ms-expand {
    display: none;
}

.language-dropdown {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Contact Info Styles */
.contact-info {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
}

.separator-solid {
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.5);
}

.contact-item i {
    font-size: 14px;
    color: var(--white-base);
}

.contact-icon {
    width: 14px;
    height: 14px;
    filter: brightness(0) invert(1);
}

/* Main Navigation Styles */
.main-nav {
    background-color: var(--white-base);
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    padding-top: 15px;
}

.main-nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-brand {
    padding: 0;
    flex-shrink: 0;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-graphic {
    width: 100%;
    height: 85px;
    position: relative;
}

.logo-image {
    width: 100%;
    height: 85px;

}

.navbar-nav-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-expand-lg .navbar-collapse {
    display: flex !important;
    justify-content: center !important;
    align-items: center;
}

.navbar-nav {
    gap: 4x;
    margin: 0;
    padding: 0;
}

.hire-button-container {
    flex-shrink: 0;
}

.nav-link {
    color: var(--body-text) !important;
    font-weight: 600;
    margin: 0px 10px !important;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--secondary) !important;
}

.nav-link.active {
    color: var(--secondary) !important;
    background-color: transparent;
    font-weight: 700;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: auto;
    height: 3px;
    background-color: var(--secondary);
    border-radius: 2px;
    transform: scaleX(1);
    transform-origin: center;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    border: none;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler:hover {
    background-color: rgba(253, 163, 27, 0.1);
}

.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(41, 38, 95, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Offcanvas Mobile Menu */
.offcanvas {
    background-color: var(--white-base);
    border-left: 1px solid #e0e0e0;
    width: 320px;
}

.offcanvas-header {
    border-bottom: 1px solid #e0e0e0;
    padding: 20px;
}

.offcanvas-title {
    color: var(--main-color);
    font-weight: 600;
    font-size: 18px;
}

.btn-close {
    background-size: 1.2em;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.btn-close:hover {
    opacity: 1;
}

.offcanvas-body {
    padding: 0;
}

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

/* Mobile Logo */
.mobile-logo {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.mobile-logo-img {
    width: 120px;
    height: auto;
}

/* Mobile Navigation */
.mobile-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-nav-item {
    border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-link {
    display: block;
    padding: 18px 0;
    color: var(--body-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-nav-link:hover {
    color: var(--secondary);
    background-color: rgba(253, 163, 27, 0.05);
    padding-left: 15px;
}

.mobile-nav-link.active {
    color: var(--secondary);
    font-weight: 600;
    background-color: rgba(253, 163, 27, 0.1);
    padding-left: 15px;
}

.mobile-nav-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--secondary);
}

/* Mobile Hire Button */
.btn-hire-mobile {
    background-color: var(--secondary);
    border: none;
    color: var(--white-base);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    width: 100%;
}

.btn-hire-mobile:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 163, 27, 0.3);
}

/* Mobile Contact Info */
.mobile-contact-info {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.mobile-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8f8f8;
}

.mobile-contact-item:last-child {
    border-bottom: none;
}

.mobile-contact-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%);
}

.mobile-contact-item span {
    color: var(--main-color);
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Social Links */
.mobile-social-links {
    border-top: 1px solid #f0f0f0;
    padding-top: 20px;
}

.mobile-follow-text {
    display: block;
    color: var(--main-color);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 15px;
}

.mobile-social-icons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.mobile-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    color: var(--white-base);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mobile-social-icon:hover {
    background-color: var(--main-color);
    transform: scale(1.1);
}

.mobile-social-icon .svg-icon {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

/* Mobile Language Selector */


.mobile-language-text {
    display: block;
    color: var(--main-color);
    font-weight: 600;
    font-size: 14px;
   
}

.mobile-language-dropdown {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 10px 12px;
    font-size: 14px;
    background-color: var(--white-base);
    color: var(--main-color);
    width: 100%;
    transition: all 0.3s ease;
}

.mobile-language-dropdown:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(253, 163, 27, 0.25);
    outline: none;
}

.mobile-language-dropdown option {
    background-color: var(--white-base);
    color: var(--main-color);
    padding: 8px;
}

/* Hire US Button */
.btn-hire {
    background-color: var(--secondary);
    border: none;
    color: var(--white-base);
    font-weight: 600;
    padding: 10px 35px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-hire:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 163, 27, 0.3);
}

/* Responsive Design */
@media (max-width: 991px) {
    .navbar-nav-container {
        display: none !important;
    }

    .hire-button-container {
        display: none !important;
    }

    .navbar-toggler {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none !important;
    }

    .contact-info {
        justify-content: flex-start;
        margin-top: 15px;
    }

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

    .logo-container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .logo-graphic {
        height: 60px;
    }

    .logo-image {
        height: 60px;
    }

    .main-nav {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

@media (max-width: 576px) {
    .contact-info {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .contact-item::after {
        display: none;
    }

    .social-links {
        gap: 10px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }
}

/* Animation */
@keyframes shine {
    0% {
        transform: translateX(-100%);
    }

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

/* Additional hover effects */
.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-item::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    width: auto;
    height: 3px;
    background-color: var(--secondary);
    transition: all 0.3s ease;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: center;
}

.navbar-nav .nav-item:hover::after {
    transform: scaleX(1);
}

.navbar-nav .nav-item.active::after {
    transform: scaleX(1);
}

/* Footer Styles */


.footer-main {
    background-image: url('assets/images/footerbg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    z-index: 1;
}

.footer-main .container {
    position: relative;
    z-index: 2;
}

/* Company Information Column */
.footer-company {
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo .logo-graphic {
    width: 100%;
    height: 85px;
}

.footer-logo .logo-text {
    display: flex;
    flex-direction: column;
}

.footer-logo .logo-arabic {
    font-size: 20px;
    font-weight: bold;
    color: var(--main-color);
    line-height: 1.2;
}

.footer-logo .logo-english {
    font-size: 14px;
    color: var(--main-color);
    font-weight: 500;
    line-height: 1.2;
}

.company-description {
    color: var(--main-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 25px;
}

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

.footer-social .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: transparent;
    color: var(--white-base);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social .social-icon .svg-icon {
    width: 20px;
    height: 20px;

}

.footer-social .social-icon:hover {
    background-color: var(--secondary);
    transform: scale(1.1);
}

/* Footer Sections */
.footer-section {
    margin-bottom: 20px;
}

.footer-heading {
    color: var(--body-text);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: 0%;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 30px;

    width: 40px;
    height: 1px;
    background-color: var(--secondary);
    border-radius: 2px;
    z-index: 2;
}

.footer-heading::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 1px;
    background-color: #D3D3D3;
    border-radius: 2px;
    z-index: 1;
}

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

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

.footer-links a {
    color: var(--body-text);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 140%;
}

.footer-links a:hover {
    color: var(--secondary);
    transform: translateX(5px);
}

.footer-links i {
    color: var(--secondary);
    font-size: 12px;
}

.link-arrow {

    margin-right: 8px;
}

/* Newsletter Section */
.newsletter-description {
    color: var(--main-color);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.newsletter-form .form-control {
    border: 1px solid var(--tertiary-2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    background-color: #F2F2F2;
    color: var(--white-base);
}

.newsletter-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(253, 163, 27, 0.25);
    outline: none;
}

.btn-subscribe {
    background-color: var(--secondary);
    border: none;
    color: var(--white-base);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.btn-subscribe:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 163, 27, 0.3);
}

/* Copyright Bar */
.footer-copyright {
    background-color: var(--main-color);
    color: var(--white-base);
    padding: 20px 0;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
}

/* Responsive Design for Footer */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }

    .footer-logo {
        justify-content: center;
        text-align: center;
    }

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

    .footer-section {
        text-align: center;
    }

    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links a {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-main {
        padding: 30px 0 20px;
    }

    .footer-logo {
        flex-direction: column;
        gap: 10px;
    }

    .footer-social {
        gap: 10px;
    }

    .footer-social .social-icon {
        width: 35px;
        height: 35px;
    }
}

/* Hero Section with Swiper Slider */
.hero-section {
    position: relative;
    height: 800px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(41, 38, 95, 0.7);
    z-index: 1;
}

.hero-text {
    position: relative;
    z-index: 2;
    color: var(--white-base);
    max-width: 100%;
}

/* Ensure hero content aligns with header container */
.hero-content .container {
    padding-left: 15px;
    padding-right: 15px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px;
}

.hero-subtitle {
    display: block;
    color: var(--secondary);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
}

.hero-title .highlight {
    color: var(--secondary);
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-about {
    background-color: var(--secondary);
    color: var(--white-base);
    padding: 15px 30px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-about:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(253, 163, 27, 0.3);
}

.btn-contact {
    background-color: #fff;
    color: var(--main-color);
    padding: 15px 30px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: var(--main-color);
    color: var(--white-base);
    transform: translateY(-2px);
}

.arrow-right {
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12,5 19,12 12,19'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    display: inline-block;
}

.btn-contact .arrow-right {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2329265F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='5' y1='12' x2='19' y2='12'%3E%3C/line%3E%3Cpolyline points='12,5 19,12 12,19'%3E%3C/polyline%3E%3C/svg%3E");
}

/* Swiper Navigation Arrows */
.swiper-button-next,
.swiper-button-prev {
    color: transparent !important;
    background-color: rgba(255, 255, 255, 0.8);
    width: 50px !important;
    height: 50px !important;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.swiper-button-prev {
    left: 40px !important;
}

.swiper-button-next {
    right: 40px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%) scale(1.05);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.swiper-button-prev::after {
    background-image: url('assets/images/left.png');
}

.swiper-button-next::after {
    background-image: url('assets/images/right.png');
}

/* Services Section */
.services-section {
    position: relative;
    padding: 0;
    background-color: transparent;
    z-index: 4 !important;
    width: auto;
    padding-left: 140px;
    flex-wrap: nowrap;
    margin-top: -150px !important;
}


.services-section .container {
    display: flex;
    justify-content: flex-end;
    align-items: stretch;
    gap: 20px;
}

.service-card {
    background-color: var(--white-base);
    border-radius: 50px 5px 50px 5px;
    padding: 30px 25px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 280px;
    position: relative;
    overflow: hidden;
    width: 265px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
    position: relative;
}

.service-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.service-number {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.service-content {
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: left;
    min-height: 52px;
    display: flex;
    align-items: center;
}

.service-description {
    color: var(--body-text);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    text-align: left;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Responsive Design for Hero and Services */
@media (max-width: 768px) {
    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 36px;
    }

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

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .btn-about,
    .btn-contact {
        text-align: center;
        justify-content: center;
    }

    .services-section {
        padding: 60px 0;
    }

    .service-card {
        padding: 30px 20px;
        margin-bottom: 30px;
    }

    /* Medium screen services adjustments */
    .services-section .d-md-none {
        display: none;
    }
}

@media (max-width: 576px) {

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

    .hero-section {
        height: 500px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .service-card {
        padding: 25px 15px;
    }

    .service-title {
        font-size: 18px;
    }

    /* Mobile services without container */
    .services-section .d-md-none {
        padding: 0 20px;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .services-section .d-md-none .service-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        min-height: 250px;
    }

}




.swiper-button-next,
.swiper-button-prev {
    color: transparent !important;
}

/* About Us Section */
.about-section {
    padding: 120px 0;
    background-color: var(--white-base);
    position: relative;
}


.experience-box {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 180px;
    height: 120px;
    background-color: var(--secondary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(253, 163, 27, 0.3);
}

.experience-content {
    text-align: center;
    color: var(--white-base);
}

.experience-content .years {
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 5px;
}

.experience-content .text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.about-content {
    padding-left: 50px;
}

.about-label {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.about-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.about-title .highlight {
    color: var(--secondary);
}

.about-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 40px;

}

.about-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
}

.feature-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-text);
    margin: 0;
}

.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.btn-contact-us {
    background-color: var(--secondary);
    color: var(--white-base);
    padding: 15px 30px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 163, 27, 0.3);
}

.btn-contact-us:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 163, 27, 0.4);
}

.call-info {
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 10px;

}

.call-info img {
    width: 44px;
    height: 42px;
}

.call-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.call-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.call-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.call-number {
    font-size: 16px;
    font-weight: 600;
    color: var(--main-color);
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: color 0.3s ease;
}

.call-number:hover {
    color: var(--secondary);
}

/* Responsive Design for About Section */
@media (max-width: 991px) {
    .about-section {
        padding: 80px 0;
    }

    .about-content {
        padding-left: 0;
        margin-top: 50px;
        text-align: center;
    }

    .about-images {
        height: 500px;
        margin-bottom: 30px;
    }

    .experience-box {
        width: 150px;
        height: 100px;
    }

    .experience-content .years {
        font-size: 28px;
    }

    .experience-content .text {
        font-size: 12px;
    }

    .about-title {
        font-size: 32px;
    }

    .about-description {
        max-width: 100%;
    }

    .feature-item {
        justify-content: center;
        text-align: center;
    }

    .about-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-section {
        padding: 10px 0;
    }

    .about-images {
        height: 400px;
    }

    .experience-box {
        width: 120px;
        height: 80px;
    }

    .experience-content .years {
        font-size: 24px;
    }

    .experience-content .text {
        font-size: 10px;
    }

    .about-title {
        font-size: 28px;
    }

    .about-description {
        font-size: 14px;
    }

    .about-actions {
        flex-direction: column;
        gap: 20px;
    }

    .call-info {
        width: 100%;
        justify-content: center;
    }
}

/* Our Vision Section */
.vision-section {
    padding: 100px 0;
    background-color: #FBFBFF;
    position: relative;
}

.vision-content {
    padding-right: 50px;
}

.vision-label {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.vision-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.vision-title .highlight {
    color: var(--secondary);
}

.vision-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--body-text);
    margin-bottom: 40px;
    max-width: 500px;
}

.btn-learn-more {
    background-color: var(--secondary);
    color: var(--white-base);
    padding: 15px 30px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 163, 27, 0.3);
}

.btn-learn-more:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 163, 27, 0.4);
}

.vision-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.vision-img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;

}

/* Responsive Design for Vision Section */
@media (max-width: 991px) {
    .vision-section {
        padding: 80px 0;
    }

    .vision-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .vision-title {
        font-size: 32px;
    }

    .vision-description {
        max-width: 100%;
    }

    .vision-image {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .vision-section {
        padding: 60px 0;
    }

    .vision-title {
        font-size: 28px;
    }

    .vision-description {
        font-size: 14px;
    }

    .btn-learn-more {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* Our Goals Section */
.goals-section {
    padding: 100px 0;
    background-color: var(--white-base);
    position: relative;
}

.goals-header {
    margin-bottom: 80px;
}

.goals-label {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.goals-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.goals-title .highlight {
    color: var(--secondary);
}

.goals-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--body-text);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

.goals-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
}

.goal-card {
    background-color: var(--white-base);
    border-radius: 50px 5px 50px 5px;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.11);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 100%;
    height: 500px;
    border: 1px solid #f0f0f0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.goal-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary);
}

.goal-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    padding: 10px;
    flex-shrink: 0;
}

.goal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 15px;
}

/* .goal-card:hover .goal-img {
    transform: scale(1.05);
} */

.goal-content {
    padding: 25px 15px 30px 10px;
    padding-bottom: 80px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.goal-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    min-height: 30px;
    display: flex;
    align-items: center;
}

.goal-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--body-text);
    margin-bottom: 0px;
    opacity: 0.8;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 80px;
}

.btn-read-more {
    background-color: var(--secondary);
    color: var(--white-base);
    padding: 12px 35px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(253, 163, 27, 0.3);
    position: absolute;
    bottom: 20px;
    left: 20px;
}

.btn-read-more:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 163, 27, 0.4);
}

/* Responsive Design for Goals Section */
@media (max-width: 1200px) {
    .goals-cards {
        gap: 15px;
    }

    .goal-card {
        width: 260px;
    }


}

@media (max-width: 991px) {
    .goals-section {
        padding: 80px 0;
    }

    .goals-header {
        margin-bottom: 60px;
    }

    .goals-title {
        font-size: 32px;
    }

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

    .goals-cards {
        gap: 20px;
        justify-content: center;
    }

    .goal-card {
        width: 240px;
    }
}

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

    .goals-header {
        margin-bottom: 50px;
    }

    .goals-title {
        font-size: 28px;
    }

    .goals-description {
        font-size: 15px;
    }

    .goals-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .goal-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        min-height: 450px;
    }
}

@media (max-width: 576px) {
    .goals-section {
        padding: 50px 0;
    }

    .goals-header {
        margin-bottom: 40px;
    }

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

    .goals-description {
        font-size: 14px;
    }

    .goal-card {
        max-width: 100%;
        height: auto;
        min-height: 400px;
    }

    .goal-content {
        padding: 20px;
    }

    .goal-title {
        font-size: 18px;
    }

    .goal-description {
        font-size: 13px;
    }

    .btn-read-more {
        padding: 10px 20px;
        font-size: 13px;
    }
}

/* Our Message Section */
.message-section {
    padding: 80px 0;

    position: relative;
    background-color: #f8f9fa;
}

.message-container {

    margin: 0 auto;
    position: relative;
    background-image: url('assets/images/message/message.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px 5px 50px 5px;

    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.message-content {
    text-align: center;
    color: var(--white-base);
    z-index: 2;
    position: relative;
    max-width: 600px;
    padding: 40px;
}

.message-title {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white-base);
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.message-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--white-base);
    opacity: 0.9;
    font-weight: 500;
}

.quote-mark {
    position: absolute;
    font-size: 120px;
    font-weight: 300;
    color: var(--white-base);
    opacity: 0.3;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
}

.quote-top-left {
    top: 30px;
    left: 40px;
}

.quote-bottom-right {
    bottom: 30px;
    right: 40px;
}

/* Responsive Design for Message Section */
@media (max-width: 991px) {
    .message-section {
        padding: 80px 0;
    }

    .message-container {
        margin: 0px;
        min-height: 350px;
    }

    .message-title {
        font-size: 36px;
    }

    .message-description {
        font-size: 18px;
    }

    .quote-mark {
        font-size: 80px;
    }
}

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

    .message-container {
        min-height: 300px;
        border-radius: 30px 5px 30px 5px;
    }

    .message-title {
        font-size: 28px;
    }

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

    .quote-mark {
        font-size: 60px;
    }

    .quote-top-left {
        top: 20px;
        left: 20px;
    }

    .quote-bottom-right {
        bottom: 20px;
        right: 20px;
    }
}

/* Our Services Section */
.services-main-section {
    padding: 100px 0;
    position: relative;
}

.services-header {
    margin-bottom: 80px;
}

.services-label {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--main-color);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.services-title .highlight {
    color: var(--secondary);
}

.services-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--body-text);
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.8;
}

.services-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: stretch;
}

.service-main-card {
    background-color: var(--white-base);
    border-radius: 50px 5px 50px 5px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.11);
    overflow: hidden;
    transition: all 0.3s ease;
    width: 300px;
    flex-shrink: 0;
    padding: 20px 25px 30px 25px;
    text-align: left;
    position: relative;
}

.service-main-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--secondary) 0%, #ffb84d 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-main-icon {
    width: 70px;
    height: 70px;
    object-fit: contain;

}

.service-main-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--main-color);
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
    min-height: 52px;
    display: flex;
    align-items: center;
}

.service-main-description {
    color: var(--body-text);
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
    flex: 1;
}

.service-read-more {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    bottom: 20px;
    left: 25px;
}

.service-read-more:hover {
    color: var(--main-color);
    transform: translateX(5px);
}

/* Responsive Design for Services Section */
@media (max-width: 1200px) {
    .services-cards {
        gap: 15px;
    }

    .service-main-card {
        width: 260px;
    }

    .logo-image {
        width: 80% !important;
    }

    .navbar-nav .nav-link {
        font-size: 12px !important;
    }

    .btn-hire {
        padding: 10px 15px !important;
        font-size: 11px !important;
    }
.switch-btn{
           font-size: 11px !important;
}
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
        font-size: 12px !important;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1480px) {
    .navbar-nav .nav-link {
        font-size: 14px !important;
    }

    .btn-hire {
        padding: 10px 20px !important;
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-left: 0px !important;
        padding-right: 0px !important;
        font-size: 12px !important;
    }
}

@media (max-width: 991px) {
    .services-main-section {
        padding: 80px 0;
    }

    .services-header {
        margin-bottom: 60px;
    }

    .services-title {
        font-size: 32px;
    }

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

    .services-cards {
        gap: 20px;
        justify-content: center;
    }

    .service-main-card {
        width: 240px;
    }
}

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

    .services-header {
        margin-bottom: 50px;
    }

    .services-title {
        font-size: 28px;
    }

    .services-description {
        font-size: 15px;
    }

    .services-cards {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

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

@media (max-width: 576px) {
    .services-main-section {
        padding: 50px 0;
    }

    .services-header {
        margin-bottom: 40px;
    }

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

    .services-description {
        font-size: 14px;
    }

    .service-main-card {
        max-width: 100%;
        padding: 25px 20px;
    }

    .service-main-title {
        font-size: 18px;
    }

    .service-main-description {
        font-size: 13px;
    }
}


/* Contact Us Section */
.contact-section {

    background-color: var(--white-base);
    position: relative;
}

.contact-container {
    padding: 100px 0;
    margin: 0 auto;
    position: relative;
    background-image: url('assets//images/contactus/conatcus.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    overflow: hidden;
    min-height: 600px;
}


.contact-info-content {
    color: var(--white-base);
    padding-right: 40px;
}

.contact-label {
    color: var(--secondary);
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: block;
}

.contact-title {
    font-size: 42px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--white-base);
    margin-bottom: 30px;
    font-family: 'Poppins', sans-serif;
}

.contact-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--white-base);
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-item span {
    font-size: 13px !important;
}

.contact-icon-circle {
    width: 60px;
    height: 60px;
    background-color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon-white {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label-text {
    color: var(--secondary);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: var(--white-base);
    font-size: 16px;
    font-weight: 500;
}

/* Contact Form */
.contact-form-container {
    background-color: var(--white-base);
    border-radius: 50px 15px 50px 15px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    margin-bottom: 0;
}

.contact-form .form-control {
    border: 1px solid #e0e0e0;
    border-radius: 15px;
    padding: 15px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    color: var(--body-text);
}

.contact-form .form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem rgba(253, 163, 27, 0.25);
    outline: none;
    background-color: var(--white-base);
}

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

.btn-submit {
    background-color: var(--secondary);
    border: none;
    color: var(--white-base);
    font-weight: 600;
    padding: 15px 40px;
    border-radius: 20px 5px 20px 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    font-size: 16px;
    cursor: pointer;
    width: 170px;
}

.btn-submit:hover {
    background-color: #e6952e;
    color: var(--white-base);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 163, 27, 0.4);
}

/* Responsive Design for Contact Section */
@media (max-width: 991px) {
    .contact-section {
        padding: 80px 0;
    }

    .contact-container {
        margin: 0px;
        min-height: 500px;
    }

    .contact-info-content {
        padding-right: 0;
        margin-bottom: 50px;
        text-align: center;
    }

    .contact-title {
        font-size: 32px;
    }

    .contact-description {
        font-size: 15px;
    }

    .contact-item {
        justify-content: center;
        text-align: center;
    }

    .contact-form-container {
        padding: 30px;
    }
}

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

    .contact-container {
        min-height: 400px;
    }

    .contact-title {
        font-size: 28px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-form-container {
        padding: 25px;
    }

    .btn-submit {
        padding: 12px 30px;
        font-size: 14px;
    }
}




@media (max-width: 768px) {
    .main-image{
        margin-top: 50px !important;
    }
    .services-section .container {
        display: block;

    }
    .services-section{
        padding-right: 0px !important;
    }
    .footer-social {
        justify-content: start;
    }

    .contact-details {
        align-items: start !important;
    }

    .goal-content {
        padding-bottom: 60px !important;
    }

    .service-main-description {
        padding-bottom: 20px !important;
    }

    .services-section {
        padding: 0;
        background-color: transparent;
        position: unset !important;
        margin-top: 60px !important;
        right: 40px;
        z-index: 3;
        width: auto;
        display: block !important;
        /* justify-content: flex-end; */
        /* align-items: stretch; */
        gap: 20px;
        /* flex-wrap: nowrap; */
    }

    .service-card {
        width: 100% !important;
    }

    .footer-heading::before {
        left: 0;
        width: 100px;
        height: 1px;
    }

    .footer-logo .logo-graphic {
        text-align: left !important;

    }

    .feature-content {
        text-align: left !important;
    }

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

    .footer-section .footer-heading {
        text-align: start;
    }


    .footer-heading::after {
        left: 40px;
    }


    .footer-section .footer-links li a {
        justify-content: start;
    }


    .newsletter-description {
        text-align: start;
    }


    .company-description {
        padding-left: 15px;
    }


    .footer-section {
        padding-left: 15px;
        padding-right: 15px;
    }


    .footer-social {
        padding-left: 5px;
    }
}




.about-main-img {
    width: 100% !important;
}



.navbar-expand-lg .navbar-nav .nav-link {
    padding-left: 5px !important;
    padding-right: 5px !important;

}

/* Contact link styling */
.contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--secondary);
}

.mobile-contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.mobile-contact-link:hover {
    color: var(--secondary);
}

.contact-value-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.contact-value-link:hover {
    color: var(--secondary);
}

/* Footer contact styling */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.footer-contact-icon {
    width: 16px;
    height: 16px;
    filter: brightness(0) saturate(100%) invert(100%);
}

.footer-contact-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-contact-link:hover {
    color: var(--secondary);
}


 
.language-outer-wrapper {
   background-color: var(--secondary);
    padding: 2px;
    border-radius: 20px 5px 20px 5px;
}
 
.switch {
    display: inline-flex;
    overflow: hidden;
}
 
.switch-btn {
    padding: 7px 18px;
    font-family: Poppins, sans-serif;
    font-size: 16px;
    font-weight: 600;
    background-color: transparent;
    border: none;
    border-radius: 20px 5px 20px 5px;
    color: #ffff;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 50px;
    text-align: center;
}
 
.switch-btn.active {
    background-color: #fff;
    /* filled purple */
    color: var(--secondary);
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}
 
.switch-btn:not(.active):hover {
    background-color: rgba(191, 170, 210, 0.15);
    /* light hover effect */
}
 @media(max-width: 992px){
    .switch-btn {
        width: 50%;
    }
}
