@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto:wght@400;700&display=swap');

/* common section */

* {
    padding: 0;
    margin: 0;
}

body {
    background-color: aliceblue;
    color: black;

}


.carousel-inner h1 {
    font-size: 64px;
    font-weight: 900;
    max-width: 650px;
}

@media (max-width: 768px) {
    .carousel-inner h1 {
        padding-top: 150px;
        font-size: 48px;
        font-weight: 800;

    }

}


.pattern-sub {
    width: 550px;
    position: relative;
    position: absolute;
    bottom: 0;
    right: 0;

    
}
.pattern-left {
    width: 450px;
    position: relative;
    position: absolute;
    bottom: 0;
    left: 0;

}
@media (max-width: 768px) {
    .pattern-sub {
        width: 250px;
        position: relative;
        position: absolute;
        bottom: 0;
        right: 0;


    }
    .pattern-left {
        width: 250px;
        position: relative;
        position: absolute;
        bottom: 0;
        left: 0;
    
    }
}

@keyframes rotate {
    from {
        transform: rotateY(0deg);
    }

    to {
        transform: rotateY(360deg);
    }
}


.banner {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.text-gradient {
    background: linear-gradient(45deg, #93001F, #0D3A70);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    font-size: 2.5rem;
    font-weight: bold;

}

/* Hero Section Styles */
.hero-section {
    color: #ffffff;
    background-color: #4DB8D6;
    background-image: url(assets/aboutme-parallax.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    width: auto;
    padding: 60px 20px;
    text-align: center;
}


.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.text-content {
    max-width: 50%;
    padding-right: 20px;
}

.text-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
}

.text-content .lead {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #fff;
}

.image-content {
    max-width: 40%;
    padding-left: 20px;
    text-align: center;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}


@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

    .text-content {
        max-width: 100%;
        padding-right: 0;
    }

    .image-content {
        max-width: 100%;
        padding-left: 0;
    }
}



/* Navbar section */



.navbar-custom {
    padding-left: 150px;
    padding-right: 150px;
    background-color: #002F58;
    /* background: linear-gradient(to right, #000000, #1ab9e0); */
    color: #4DB8D6;
    font-family: 'Roboto', sans-serif;

}

.navbar-logo {
    width: 200px;
    height: auto;
}

.navbar-toggler {
    border: none;

}

.navbar-toggler-icon {
    background-color: transparent;
    width: 30px;
    height: 30px;

}

.navbar-toggler-icon::before {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #1ab9e0;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.navbar-toggler-icon::after {
    content: "";
    display: block;
    width: 30px;
    height: 3px;
    background: #fff;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 2px;
    transition: background 0.3s ease;
}

.navbar-toggler-icon {
    background-image: none;
}

.navbar-custom .dropdown-menu .dropdown-item {
    color: rgb(255, 255, 255);
}

.navbar-custom .nav-link:hover {
    color: #4DB8D6;
    ;
}

.navbar-nav .nav-link {
    color: #ffffff;
}

.navbar-nav .nav-link:hover {
    color: #4DB8D6;
    ;
}

.dropdown-menu {
    background: linear-gradient(45deg, #1ab9e0, #1589a7);
}

.dropdown-item {
    color: #000000 !important;
}

.dropdown-item:hover {
    background: linear-gradient(45deg, #ffffff, #fffefa);
    color: #ffffff;
}

.btn-custom {
    margin-left: 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
    /* background: linear-gradient(45deg, #DAA520, #FFD700); */

    background-color: #1ab9e0 !important;
    color: #ffffff;
    border: 1px solid #1ab9e0;
}

.btn-custom:hover {
    color: #000000 !important;
    border-color: #ffffff;
    background-color: #fff !important;
}

@media (max-width: 768px) {
    .navbar-custom {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-logo {
        width: 150px;
        height: auto;
    }

    .btn-custom {
        margin-left: 15px;
        padding-left: 15px !important;
        padding-right: 15px !important;
        background-color: #4DB8D6 !important;
        color: #ffffff !important;
        border: 1px solid #ffffff;
    }
}

.bg-gradient-custom {
    background: linear-gradient(to right, #4DB8D6, #003A6C) !important;


}


@keyframes moveBackground {
    0% {
        background-position: 0% 0%;
    }

    100% {
        background-position: 100% 100%;
    }
}

.welcome-section {
    background-color: #4DB8D6;
    background-image: url(assets/image-267.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 800px;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
    animation: moveBackground 10s linear infinite;
}

.welcome-section p {
    font-size: 24px;

}



.solution-sub-section {
    background: linear-gradient(to right, #E0DFDF, #F4F4F4);
    background-image: url(assets/image-267.png);
    height: auto;
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 100px;


}

.solution-sub-section .immigration-img {
    max-width: 100%;
    height: auto;

}



.solution-sub-section .title-box {
    max-width: 575px;
    height: 50px;
    padding-left: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 36px;
    background-color: #FFFFFF;


}

.title-box span {
    font-weight: 600;
    font-size: 20px;
    color: #BF0A30;
}


.solution-sub-section .title-box .arrow-log {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: #F8E5E9;
    border: 1px solid white;

}

/* @keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
} */

.solution-sub-section h4 {
    color: #6E6E6E;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
}

.solution-sub-section h5 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
}

.card {
    height: auto;
    border-radius: 7.5px;
    background-color: #4DB8D6;
    color: white;
}

@media (max-width: 992px) {
    .solution-sub-section {
        padding-top: 80px;
        padding-bottom: 80px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .solution-sub-section {
        padding-top: 60px;
        padding-bottom: 60px;
        display: flex;
        flex-direction: column;
    }

    .solution-sub-section .title-box {
        margin-top: 45px;
    }

    #contract-drafting {
        display: flex;
        flex-direction: column-reverse;
    }

    .title-box span {
        font-size: 18px;
    }

    .immigration-img {
        max-width: 100%;
        height: auto;
    }

    .card {
        padding: 15px;
        margin-bottom: 45px;
    }
}

@media (max-width: 576px) {
    .title-box span {
        font-size: 16px;
    }

    .solution-sub-section {
        padding-top: 40px;
        padding-bottom: 40px;
        display: flex;
        flex-direction: column;
    }

    #contract-drafting {
        display: flex;
        flex-direction: column-reverse;
    }

}






/* who we are page section */


.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
}

.hero-section .lead {
    font-size: 1.25rem;
    color: fff;
}


.bg-light {
    background-color: #f8f9fa;
}

.text-center {
    text-align: center;
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

@media (max-width: 767.98px) {
    .mb-md-0 {
        margin-bottom: 0;
    }
}


#who-we-are {

    background-image: url('/Assets/cta.webp');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #f9f9f9;
    min-height: 100vh;
    padding: 60px 0;
    color: #808285;
}

#who-we-are h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #000000;
}

#who-we-are p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #808285;
}

/* Team Section Styling */
.team-section {
    padding: 60px 0;
}

.team-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #4DB8D6;
}

.team-section p {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.6;
}


.core-values {
    background-color: #F5F5F5;
    padding: 40px 0;

}

.value {

    background-color: #4DB8D6;

    border-radius: 8px;
    border: 2px solid #fff;

    padding: 40px;
    transition: all 0.3s ease-in-out;
    margin-bottom: 20px;
    color: #4DB8D6;

}


.value:hover {
    background-color: #f9fafb;
    border: 2px solid #fff;
    color: #4DB8D6;

}


.value:active {
    background-color: #fff;
    border: 2px solid #fff;
    color: #4DB8D6;

}


.value-icon {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}


.value:hover .value-icon {
    color: #4DB8D6;

}

.value-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #fff;
}


.value:hover .value-title {
    color: #4DB8D6;

}


.value-description {
    font-size: 1rem;
    color: #fff;
    transition: color 0.3s ease-in-out;

}


.value:hover .value-description {
    color: #4DB8D6;

}


.value:active .value-description {
    color: #4DB8D6;

}



/* footer section */

.footer {
    background-color: #002F58;
    color: #ffffff;
}

.footer h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer address {
    line-height: 1.6;
}

.disclaimer-text {
    border: 1px solid #dee2e6;
    border-radius: 5px;
    padding: 15px;
    color: #f8f9fa;
    margin-bottom: 1rem;
    font-size: 12px;
}

.disclaimer-text strong {
    color: #FFD700;


}



.footer a {
    color: #ffffff;
    text-decoration: none;
}



.footer a:hover {
    text-decoration: none;
    color: #4DB8D6 !important;
}

.social-media-icons {
    display: flex;
    gap: 10px;

}

.social-icon {
    width: 24px;
    height: auto;
    transition: opacity 0.3s ease;
}

.social-icon:hover {
    opacity: 0.7;
}


@media (max-width: 767.98px) {
    .footer {
        padding: 2rem 1rem;
    }

    .footer h5 {
        font-size: 1.25rem;
    }
}