body {
    font-family: 'Quicksand', sans-serif;
    background-color: #ffffff;
    color: #40464d;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    height: 75vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}



*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

.header{
    background:#fff;
    box-shadow:0 2px 5px rgba(0,0,0,.1);
}



.logo img{
    height:60px;
}

nav ul{
    list-style:none;
    display:flex;
}

nav ul li{
    position:relative;
}

nav ul li a{
    display:block;
    padding:15px;
    text-decoration:none;
    color:#333;
}

nav ul li ul{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    background:#fff;
    min-width:220px;
    box-shadow:0 5px 10px rgba(0,0,0,.2);
}

nav ul li:hover ul{
    display:block;
}

nav ul li ul li{
    display:block;
}

.profile a{
    background:#007bff;
    color:#fff;
    padding:10px 20px;
    text-decoration:none;
    border-radius:5px;
}





.compliance{
    padding:60px 0;
}

.left,
.right{
    flex:1;
}

.left h2{
    font-size:36px;
    margin-bottom:20px;
}

.left p{
    line-height:1.8;
    margin-bottom:15px;
    color:#555;
}

.left img{
    max-width:100%;
    margin-top:20px;
}

.btn{
    display:inline-block;
    padding:12px 30px;
    background:#007bff;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
}

.btn:hover{
    background:#0056b3;
}

.right h4{
    font-size:26px;
    margin-bottom:30px;
}

.counter{
    margin-bottom:25px;
}

.counter h3{
    font-size:40px;
    color:#007bff;
}

.counter p{
    color:#555;
    font-size:18px;
}

.right img{
    margin-top:30px;
    max-width:200px;
}

@media(max-width:768px){

    .left,
    .right{
        width:100%;
    }

}









        .services{
            padding:60px 0;
        }

      

        .services h2{
            font-size:40px;
            color:#222;
            margin-bottom:20px;
        }

        .services p{
            font-size:16px;
            line-height:1.8;
            color:#555;
            text-align:justify;
        }

        @media(max-width:768px){

            .services{
                padding:40px 20px;
            }

            .services h2{
                font-size:30px;
            }

            .services p{
                font-size:15px;
            }

        }

h2{
    text-align:center;
    margin-bottom:40px;
    font-size:40px;
}

.services{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.card{
    background:#fff;
    padding:25px;
    border-radius:8px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.card h3{
    margin-bottom:15px;
    color:#0d6efd;
}

.card p{
    color:#555;
    line-height:1.7;
    margin-bottom:20px;
}

.btn{
    display:inline-block;
    text-decoration:none;
    background:#0d6efd;
    color:#fff;
    padding:10px 20px;
    border-radius:5px;
}

.btn:hover{
    background:#084298;
}

@media(max-width:992px){
.services{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:768px){
.services{
grid-template-columns:1fr;
}
}





.presence{
    padding:60px 0;
}

.presence-content,
.presence-image{
    flex:1;
}

.presence h2{
    font-size:36px;
    margin-bottom:20px;
    color:#222;
}

.presence p{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
    text-align:justify;
}

.presence-image img{
    width:100%;
    border-radius:10px;
    display:block;
}

@media(max-width:768px){

    .presence h2{
        font-size:30px;
    }

}




.why-us{
    padding:70px 0;
    background:#f8f9fa;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h5{
    color:#0d6efd;
    font-size:18px;
    margin-bottom:10px;
    text-transform:uppercase;
}

.section-title h2{
    font-size:38px;
    color:#222;
}

.features{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
}

.feature-box{
    background:#fff;
    padding:30px;
    border-radius:8px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
    transition:.3s;
}

.feature-box:hover{
    transform:translateY(-5px);
}

.feature-box h3{
    margin-bottom:15px;
    color:#0d6efd;
    font-size:22px;
}

.feature-box p{
    color:#555;
    line-height:1.7;
}

@media(max-width:992px){
    .features{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:768px){
    .features{
        grid-template-columns:1fr;
    }

    .section-title h2{
        font-size:30px;
    }
}






.business-segment{
    padding:60px 0;
}

.business-segment h2{
    text-align:center;
    font-size:36px;
    margin-bottom:40px;
    color:#222;
}

.segment-grid{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:20px;
}

.segment-card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:8px;
    padding:20px;
    text-align:center;
    transition:.3s;
}

.segment-card:hover{
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    transform:translateY(-5px);
}

.segment-card img{
    width:100%;
    max-width:150px;
    margin:auto;
    display:block;
}

.segment-card h4{
    margin-top:15px;
    font-size:18px;
    color:#333;
}

@media(max-width:992px){
    .segment-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

@media(max-width:768px){
    .segment-grid{
        grid-template-columns:repeat(2,1fr);
    }
}

@media(max-width:480px){
    .segment-grid{
        grid-template-columns:1fr;
    }
}







section{
    padding:60px 8%;
    background:#f8f9fa;
}

.left,
.right{
    flex:1;
}

.left img{
    width:100%;
    max-width:450px;
}

h2{
    font-size:36px;
    color:#0d4b8e;
    margin-bottom:15px;
}

h4{
    margin-bottom:15px;
    color:#333;
}

p{
    color:#555;
    line-height:1.7;
    margin-bottom:25px;
}

.accordion-item{
    margin-bottom:10px;
    border:1px solid #ddd;
    border-radius:5px;
    overflow:hidden;
}

.accordion-header{
    background:#0d4b8e;
    color:#fff;
    padding:15px;
    cursor:pointer;
    font-weight:bold;
}

.accordion-content{
    display:none;
    padding:15px;
    background:#fff;
}

.accordion-item.active .accordion-content{
    display:block;
}

@media(max-width:768px){

    h2{
        font-size:28px;
    }
}







section{
    padding:60px 8%;
}

.title{
    text-align:center;
    margin-bottom:50px;
}

.title h2{
    font-size:40px;
    color:#0d4b8e;
}

.image{
    flex:1;
    text-align:center;
}

.image img{
    width:100%;
    max-width:400px;
    border-radius:10px;
}

.content{
    flex:2;
}

.content h3{
    color:#0d4b8e;
    margin:25px 0 10px;
    font-size:24px;
}

.content p{
    color:#555;
    line-height:1.8;
    margin-bottom:15px;
}

@media(max-width:768px){

    .title h2{
        font-size:32px;
    }
}






        .contact-box{
            background:#0d6efd;
            color:#fff;
            padding:30px;
            border-radius:10px;
            height:100%;
        }

        .contact-box h2{
            margin-bottom:25px;
        }

        .contact-box p{
            margin-bottom:20px;
        }

        .social a{
            color:#fff;
            font-size:22px;
            margin-right:15px;
        }

        iframe{
            width:100%;
            height:100%;
            min-height:500px;
            border:0;
        }
    



.cta-section{
    padding:60px 8%;
    background:#f4f8fc;
}

.cta-box{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:40px;
    background:#fff;
    padding:40px;
    border-radius:10px;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.cta-content{
    flex:1;
}

.cta-content h2{
    color:#0d4b8e;
    font-size:36px;
    margin-bottom:15px;
}

.cta-content p{
    color:#555;
    line-height:1.8;
    margin-bottom:25px;
}

.btn{
    display:inline-block;
    padding:12px 30px;
    background:#0d4b8e;
    color:#fff;
    text-decoration:none;
    border-radius:5px;
    transition:.3s;
}

.btn:hover{
    background:#08386b;
}

.cta-image{
    flex:1;
    text-align:center;
}

.cta-image img{
    max-width:100%;
}

@media(max-width:768px){

.cta-box{
    flex-direction:column;
    text-align:center;
}

.cta-content h2{
    font-size:28px;
}

}
        
        
     
.testimonial{
    background:#fff;
    padding:25px;
    border-radius:10px;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
    height:100%;
    text-align:center;
}

.stars{
    color:#ffc107;
    font-size:20px;
    margin:10px 0;
}

.client-name{
    font-weight:bold;
    margin-top:15px;
}

.client-designation{
    color:#777;
    font-size:14px;
}

.section-title{
    text-align:center;
    margin-bottom:40px;
}

        
.section-title{
    text-align:center;
    margin:50px 0 30px;
    font-weight:bold;
}

.client-list{
    columns:2;
}

.client-list li{
    margin-bottom:8px;
}

@media(max-width:768px){
    .client-list{
        columns:1;
    }
}




.swiper{
    width:100%;
}

.swiper-slide{
    display:flex;
    justify-content:center;
    align-items:center;
}

.swiper-slide img{
    max-width:120px;
    max-height:80px;
    object-fit:contain;
}





.contact-section{
    padding:60px 20px;
    background:#f5f5f5;
}

.left{
    flex:1;
    text-align:center;
}

.left img{
    width:100%;
    max-width:450px;
}

.right{
    flex:1;
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 0 10px rgba(0,0,0,.1);
}

.right h2{
    margin-bottom:20px;
}

input,
textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ccc;
    border-radius:5px;
    font-size:15px;
}

textarea{
    height:120px;
    resize:none;
}

button{
    width:100%;
    padding:12px;
    background:#007bff;
    color:#fff;
    border:none;
    border-radius:5px;
    cursor:pointer;
    font-size:16px;
}

button:hover{
    background:#0056b3;
}


