
/* inter-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/inter/inter-v20-latin-regular.woff2') format('woff2');
}
/* inter-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/inter/inter-v20-latin-500.woff2') format('woff2');
}
/* inter-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/inter/inter-v20-latin-600.woff2') format('woff2');
}
/* inter-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/inter/inter-v20-latin-700.woff2') format('woff2');
}

/* poppins-regular - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('fonts/poppins/poppins-v24-latin-regular.woff2') format('woff2');
}
/* poppins-500 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 500;
  src: url('fonts/poppins/poppins-v24-latin-500.woff2') format('woff2');
}
/* poppins-600 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('fonts/poppins/poppins-v24-latin-600.woff2') format('woff2');
}
/* poppins-700 - latin */
@font-face {
  font-display: swap;
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 700;
  src: url('fonts/poppins/poppins-v24-latin-700.woff2') format('woff2');
}


:root {
    --main-color: #16457b;
    --text-color: #444;
    --title-color: #222;
}

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

body {
    font-family: Inter, sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
}

body p, body ul {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #444;
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

img {
    max-width: 100%;
}
.hero-section {
    width: 100%;
    min-height: 100vh;
    background-image: url('images/hero-image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: right top;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: -68px;
}


.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0.95) 0%,
    
        rgba(255, 255, 255, 0) 80%
    );
    z-index: 1;
}


.logo {
    margin-top: 30px;
    position: relative;
    z-index: 999;
}
.logo img {
    height: 36px;
}


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

.hero-content h1 {
    font-size: 46px;
    font-weight: 500;
    color: var(--title-color);
}

.hero-content p {
    font-size: 22px;
    color: var(--text-color);
}

/* Hide mobile hero section on desktop */
.hero-mobile-section {
    display: none;
}


.btn-outline-dark-custom {
    margin-top: 30px;
    padding: 13px 35px;
    font-size: 18px;
    
    background-color: var(--main-color);
    color: #ffffff;
    border: 2px solid var(--main-color);
    border-radius: 6px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.btn-outline-dark-custom:hover {
    background-color: transparent;
    color:var(--main-color);
    border-color: var(--main-color);
}


.about-section {
    padding: 100px 10px;
}

.about-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 30px;
}

.about-section p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.about-image {
    width:85%;
    height: 390px;
    margin-top: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-left: auto;
}


.services-section {
    padding: 80px 10px;
    background-color: #F3F4F6;
}

.services-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 60px;
    text-align: center;
}

.services-section .row {
    display: flex;
    flex-wrap: wrap;
}

.services-section .col-lg-4,
.services-section .col-md-6 {
    display: flex;
}

.service-card {
    background-color: #ffffff;
    height: 100%;
    padding: 40px 32px 30px 32px;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;

    color: black;
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--main-color);
    margin-bottom: 40px;
    position: relative;
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -18px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: var(--main-color);
}

.service-card p {
    font-size: 1.1rem;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.service-card ul li {
    font-size:1.1rem;
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.service-card ul li::before {
    content: "•";
    font-weight: bold;
    position: absolute;
    left: 0;
}


.work-section {
    padding: 80px 10px;
    background-color: #ffffff;
    font-size: 16px;
}

.work-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 30px;
}

.work-section h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 20px;
}

.work-section p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.work-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.work-section ul li {
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.work-section ul li::before {
    content: "•";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.work-image{
    width: 87%;
    height: 440px;
    object-fit: cover;
    border-radius: 6px;
    margin-left: auto;
    margin-top: 65px;
}
.memberships-section img {
    width: 100%;
}

.target-section {
    padding: 80px 10px;
    background-color: #F3F4F6;
    font-size: 16px;
}

.target-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 30px;
}

.target-section h3 {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-color);
    margin-bottom: 20px;
}

.target-section p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.target-section ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.target-section ul li {
    color: var(--text-color);
    padding-left: 20px;
    position: relative;
    margin-bottom: 10px;
}

.target-section ul li::before {
    content: "•";
    font-weight: bold;
    position: absolute;
    left: 0;
}

.memberships-section {
    padding: 70px 10px;
    background-color: #ffffff;
}
.memberships-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 30px;
}



.contact-section {
    width: 100%;
    padding: 80px 10px;
    font-size: 16px;
}

.contact-section h2 {
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--title-color);
    margin-bottom: 30px;
}

.contact-section > .container > p {
    color: var(--title-color);
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.contact-section .contact-item p {
    margin: 0;
    color: var(--text-color);
}

.contact-section .contact-item a {
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-section .contact-item a:hover {
    color: var(--main-color);
    text-decoration: none;
}

.contact-section .contact-item img {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}


.footer-section {
    background-color: var(--main-color);
    color: #ffffff;
    font-size: 16px;
    padding: 0 10px;
}

.footer-section p {
    color: #ffffff; 
}
.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

@media (max-width: 768px) {

    
    .hero-section {
        display: none;
    }

    /* .hero-section::after {
        content: '';
        display: block;
        padding-bottom: 133%;
    }
     .hero-section::before {
        display: none;
    } */

    /* Hide desktop hero content on mobile */
    .hero-desktop-content {
        display: none;
    }

    /* Show mobile hero section */
    .hero-mobile-section {
        display: block;
        background-color: #ffffff;
        padding: 0 0 20px 0;
        margin-top: -99px;
        border-radius: 20px 20px 0 0;
        position: relative;
        z-index: 10;
        
    }
    .hero-mobile-section img{
        width: 100%;
        height: auto;
        margin-bottom: 50px;

    }

    .logo {
        padding-top: 0px;
        margin: 35px 0;
    }

    .logo img {
        width: 100px;
        height: 28px;
    }

    .hero-mobile-section .hero-content h1 {
        font-size: 1.6rem;
        color: #222;
    }

    .hero-mobile-section .hero-content p {
        color: #444;
        font-size: 1.1rem;
    }

    .btn-outline-dark-custom {
        padding: 10px 25px;
        margin-top: 15px;
        font-size: 14px;
    }


    
    .about-section {
        padding: 30px 10px 40px;
    }

    .about-section h2 {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 15px;
    }

    .about-image {

        width:100%;
        height: auto;
        margin-top: 30px;
        margin-bottom: 50px;
    }

    .services-section {
        padding: 50px 10px 30px;
    }

    .services-section h2 {
        font-size: 1.5rem;
        margin-bottom: 40px;
    }
    
    .service-card p{
        font-size: 15px;
    }
    .service-card {
        height: auto;
        margin-bottom: 15px;
    }
    .service-card h3 {
        font-size: 20px;
    }
    .service-card ul li {
        font-size: 15px;
    }

    .work-section {
        padding: 20px 10px 40px;
    }

    .work-section h2 {
        font-size: 1.5rem;
    }

    .work-section h3 {
        font-size: 1.2rem;
    }

    .work-section p {
        font-size: 15px;
    }
    .work-section ul li {
        font-size: 15px;
    }

    .work-image {
        margin-bottom: 60px;
        width: 100%;
        height: auto;
    }

    .target-section {
        padding: 20px 10px;
    }

    .target-section h2 {
        font-size: 1.5rem;
    }

    .target-section h3 {
        font-size: 1.2rem;
    }

    .target-section p {
        font-size: 15px;
    }
    .target-section ul li {
        font-size: 15px;
    }

    .memberships-section {
        padding: 50px 10px !important;
    }

    .memberships-section h2 {
        font-size: 1.5rem;
    }

    .memberships-section img {
        max-width: 140px;
        height: auto;
    }

    .contact-section {
        padding: 50px 10px !important;
    }

    .contact-section h2 {
        font-size: 1.5rem;
    }

    .contact-section p {
        font-size: 15px;
    }

    .contact-section a {
        font-size: 15px;
    }

    .footer-section {
        padding: 0px 15px !important;
        color:#fff ;
    }

    .footer-section p{
        font-size: 12px;
    }

}



/************** Legal Page Styles ***************/

.legal-page {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: #333;
    background-color: #fff;
}

.legal-header {
    padding: 30px 0;
    background-color: transparent;
}

.legal-header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.legal-logo {
    width: 126px;
    height: 36px;
    display: block;
}

.legal-page .legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1{
    font-size: 2rem;
    font-weight: 600;
    margin: 60px 0 30px 0;
    color: #1a1a1a;
}

.legal-page h1:first-child {
    margin-top: 0;
}

.legal-page h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px 0;
    color: #1a1a1a;
}

.legal-page p {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #4a4a4a;
}

.legal-page ul {
    margin: 20px 0;
    padding-left: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #4a4a4a;
}

.legal-page .divider {
    border: none;
    border-top: 1px solid #333;
    margin: 50px 0;
}

.legal-page a {
    color: #333;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-page strong {
    font-weight: 600;
    color: #1a1a1a;
}
    .legal-page .footer-section p{
        color:#fff ;
    }
.legal-page .footer-section a{
        color:#fff ;
    }


@media (max-width: 768px) {
    .legal-header {
        padding: 20px 0;
    }

    .legal-header .container {
        padding: 0 20px;
    }

    .legal-logo {
        margin-top: 30px;
        width: 100px;
        height: 28px;
    }
    

    .legal-page .legal-container {
        padding: 10px 20px 20px;
    }

    .legal-page h1 {
        font-size: 1.5rem;
        margin: 40px 0 20px 0;
    }
        .legal-page .footer-section {
        padding: 0px 15px !important;
        color:#fff ;
    }

        .legal-page .footer-section p{
        font-size: 12px;
    }
}
