body {
padding: 0px;
margin: 0px;
font-family: 'outfit' , sans-serif;
}
p {
    font-size: 16px;
}
h2 span {
    color: #000;
    font-size: 40px;
    font-weight: 600;
}
h1{
font-size: 60px;
font-family: Poppins;
margin: 20px 0; 
background: linear-gradient(173deg, #eec900, #f2cc0061);;
background-clip: text;
color: transparent;
line-height: 1.2;
}
h2 {
font-size: 30px;
line-height: 1.2;
font-weight: 500;
margin: 10px 0px;
}
h3 {
font-size: 22px;
font-weight: 400;
line-height: 1.2;
margin: 15px 0px;
}
h4 {
font-size: 18px;
line-height: 1.2;
font-weight: 400;
margin: 10px 0px;
}
.primary_btn a {
display: inline-block;
padding: 15px 20px;
border: 1px solid #1bbc9b;
border-radius: 50px;
color: #1bbc9b;
font-size: 18px;
line-height: 1.2;
transition: all 0.3s ease-in-out;
cursor: pointer;
text-decoration: none;
}
.top-section{
    text-align: center;
    width: 60%;
    margin: 0 auto;
    padding: 0px 0px 30px;
}
.inner_grp:first-child{
margin-top: 50px;
}
.primary_btn {
margin-top: 60px;
}
.primary_btn a:hover {
background-color: #1bbc9b;
color: aliceblue;
}
.page-center {
max-width: 1440px;
margin: 0 auto;
}

/* Header css */

.header {
position: fixed;
top: 0;
left: 0;
width: 100%;
background-color: #000;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
z-index: 1000;
transition: all 0.3s ease;
}

.nav-container {
width: 90%;
max-width: 1440px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 0;
}
.nav-menu li a {
    color: #fff;
    text-decoration: none;
}
.nav-menu {
    gap: 30px;
}
.logo {
width: 120px;
color: #333;
text-decoration: none;
display: flex;
align-items: center;
}

.nav-menu {
display: flex;
list-style: none;
margin: 0px;
}

.nav-item {
margin-left: 30px;
position: relative;
}

.nav-link {
text-decoration: none;
color: #fff;
font-weight: 500;
font-size: 16px;
padding: 10px 0;
display: inline-block;
position: relative;
transition: color 0.3s ease;
}

.nav-link::before {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 3px;
background: linear-gradient(to right, #FFD700, #ffd7004d);
transition: width 0.3s ease;
border-radius: 3px;
}

.nav-link:hover {
color:#FFD700;
}

.nav-link:hover::before {
width: 100%;
}

.nav-link.active {
color:#FFD700;
}

.nav-link.active::before {
width: 100%;
}

.menu-toggle {
display: none;
cursor: pointer;
}

.bar {
width: 25px;
height: 3px;
background-color: #fff;
margin: 5px 0;
transition: all 0.3s ease;
border-radius: 3px;
}

/* Dropdown Styles */
.dropdown {
position: relative;
}

.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
background-color: #1a1a1a;
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
border-radius: 8px;
width: 200px;
padding: 10px 0;
opacity: 0;
visibility: hidden;
transform: translateY(20px);
transition: all 0.3s ease;
z-index: 100;
}

.dropdown:hover .dropdown-menu {
opacity: 1;
visibility: visible;
transform: translateY(10px);
}

.dropdown-item {
display: block;
padding: 12px 20px;
color: #FFD700;
text-decoration: none;
transition: all 0.2s ease;
}

.dropdown-item:hover {
background-color: #2c2c2c;
color: #FFD700;
padding-left: 25px;
}


/* Mobile Styles */
@media screen and (max-width: 768px) {
.menu-toggle {
    display: block;
}

.nav-menu {
    position: fixed;
    left: -100%;
    top: 59px;
    flex-direction: column;
    background-color: #000;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    height: 100vh;
    overflow-y: auto;
}

.nav-menu.active {
    left: 0;
}

.nav-item {
    margin: 15px 0;
}

.dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    transition: max-height 0.3s ease;
}

.dropdown.open .dropdown-menu {
    max-height: 300px;
    padding: 10px 0;
}
}
.logo img {
    width: 100%;
}


/* Footer */

footer {
padding: 40px 20px;
background-color: #000;
}
.container {
max-width: 1440px;
margin: 0 auto;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.footer-section {
flex: 1;
min-width: 200px;
margin: 10px;
}
.footer-section h2 {
font-size: 1.25rem;
font-weight: bold;
margin-bottom: 16px;
text-align: left;
color: #ffffff;
}
.footer-section ul {
list-style: none;
padding: 0;
}
.footer-section ul li {
margin-bottom: 8px;
}
.footer-section p,
.footer-section .contact-info li,
.footer-section ul li a {
color: white;
text-decoration: none;
}
.footer-section ul li a:hover {
text-decoration: underline;
}
.footer-section .contact-info i {
margin-right: 8px;
width: 20px;
height: 20px;
text-align: center;
padding: 4px;
border-radius: 5px;
color: #fff ;
}
.footer-section .social-icons a {
color: white;
margin-right: 16px;
text-decoration: none;
}
.footer-section .social-icons a:hover {
color: #ccc;
}
.footer-section .gallery {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 8px;
}
.footer-section .gallery img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}
p.desclaimer {
    width: 60%;
    margin: 40px auto 0;
    padding: 10px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 12px;
}
.footer-section .newsletter p {
margin-bottom: 16px;
}
.footer-section .newsletter form {
display: flex;
border: 1px solid#113d48;
border-radius: 4px;
overflow: hidden;
}
.footer-section .newsletter input[type="email"] {
padding: 8px;
flex: 1;
border: none;
color: #333;
}
.footer-section .newsletter button {
padding: 8px 16px;
background-color:#113d48;
color: white;
border: none;
cursor: pointer;
}
.footer-section .newsletter button:hover {
background-color:#113d48;
}
.footer-bottom {
border-top: 1px solid #333;
margin-top: 40px;
padding-top: 20px;   
width: 100%;
display: flex;
justify-content: space-between;
}
.footer-bottom p {
margin: 0;
color: #fff;
}
.footer-bottom a {
color: #fff;
text-decoration: none;
}
.footer-bottom a:hover {
text-decoration: underline;
}
a.contact-us {
    position: fixed;
    top: 50%;
    right: 0px;
    z-index: 999;
    background-color: #5b7e77;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    transform: translateX(140px);
}
.social-icons > a > img:hover {
transform: scale(1.09);
}
.social-icons img {
    width: 45px;
    height: 45px;
    transition: all 0.3s ease-in-out;
}
.footer_logo img {
    width: 100%;
    height: auto;
}

a.contact-us i.fa-solid.fa-phone-volume {
    width: 20px;
    height: 30px;
    text-align: center;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: aliceblue;
    font-size: 22px;
    position: relative;
    left: -10px;
}

a.contact-us i.fa-solid.fa-phone-volume:after {
    content: "";
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: #0d2d35;
    z-index: -1;
    border-radius: 50%;
    transform: scale(1.2) translateX(0px);
}

a.contact-us:hover {
    transform: translateX(0px);
}

a.contact-us span {
    padding: 0 8px;
    color: #fff;
}
.back-to-top {
position: fixed;
bottom: 16px;
right: 16px;
background-color: #0d2b32e0;
color: white;
padding: 12px;
text-align: center;
text-decoration: none;
z-index: 9999;
border-radius: 6px;
display: none;
}
.back-to-top:hover {
background-color: #113d48;
}
a.back-to-top.show {
    display: block;
}
footer form input {
height: 60px;
border: 1px solid #113d48;
width: 100%;
padding-left: 25px;
outline: none;
}
.footer_logo {
    max-width: 300px;
}
footer form {
position: relative;
}
.footer-section ul li a:hover {
    text-decoration: none;
}

footer form button {
position: absolute;
top: 50%;
transform: translateY(-58%);
z-index: 2;
padding: 12px 20px;
border: 1px solid #113d48;
background-color: #113d48;
right: 14px;
color: #fff;
}
.footer-bottom .footer-links a {
border-right: 1px solid #fff;
display: inline-block;
padding: 0px 8px 0;
}
.footer-section ul li a:hover {
    text-decoration: none;
}

.footer-section ul li a:hover:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #e5e5e5;
    bottom: -4px;
    left: 0px;
}

.footer-section ul li a {
    position: relative;
}

.footer-section ul li a:after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background-color: #e5e5e5;
    bottom: -4px;
    left: 0px;
    transition: all 0.3s ease-in-out;
}
.footer-section ul li a span i.fa-arrow-right {
    transform: scale(0) rotate(25deg);
    transition: all 0.3s ease-in-out;
}
.footer-section ul li a:hover span i.fa-arrow-right {
    transform: scale(1) ;
}


/* banner */


.banner {
    position: relative;
    padding: 85px 0px;
}
.banner_bg{
    background-image: url(images/banner3.jpg);
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100%;
    position: absolute;
    background-repeat: no-repeat;
    top: 0;
    left: 0;
    background-color: aliceblue;
    z-index: -1;
}

.banner {
    position: relative;
    padding: 85px 0px;
}

.banner_bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 0;
    opacity: 0.6;
}
.bottom-section * {
    color: #fff;
}
.banner {
    position: relative;
    padding: 85px 0px;
}
.banner_bg:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 0;
    opacity: 0.6;
}
.bottom-section * {
    color: #fff;
}
.cta-btn a {
    display: inline-block;
    max-width: fit-content;
    padding: 10px 20px;
    background-color: #c5ae0b;
    font-size: 20px;
    cursor: pointer;
    color: #000;
}
.cta-btn a:hover {
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* Client testimonials  */

.testimonial_box-img img {
    width: 100%;
    border-radius: 50%;
    height: 100%;
    object-fit: cover;
}

.testimonial_box-img {
    width: 80px;
    height: 80px;
}

.testimonial_btm_left {
    display: flex;
    gap: 30px;
    align-items: center;
}
.testimonial_slider .bottom {
    display: flex;
    margin-top: 30px;
    gap: 30px;
}
.testimonial_slider .left-section {
    flex: 0 0 45%;
}

.testimonial_box-name h4 {
    margin-top: 0px;
    margin-bottom: 0px;
}

.testimonial_box-name p {
    margin-top: 5px;
}

.testimonial_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial_slider .image img {
    width: 100%;
    height: 350px;
    border-radius: 12px;
}
.slick-slide.slick-current.slick-active.slick-center .testimonial_box {
    background-color: #f5cf0045;
}
.testimonial_box {
    padding: 20px;
    margin-top: 5px;
    margin-bottom: 5px;
    max-width: 100%;
    border-radius: 20px;
    background-color: #f0f8ff;
}
.testimonial_slider {
    position: relative;
    padding: 40px 0px;
    background-color: #00000014;
}


/* about us  */


.about_us .inner_wrap {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about_us .inner_wrap .left {
    flex: 46%;
}

.about_us .inner_wrap .img img {
    width: 100%;
}

.about_us .inner_wrap .right {
    flex: 42%;
    padding: 60px 130px;
}

.about_us {
    padding: 60px 0px;
}

.about_us .inner_wrap .right h3 {
    font-weight: 600;
}

.about_us .inner_wrap .right h4 {
    font-weight: 600;
}
.bottom-card .icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bottom-card {
    display: flex;
    align-items: center;
    gap: 30px;
}

.icon {
    padding: 0;
    width: 120px;
    height: 80px;
}


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

.cards-section .inner-wrap {
    display: flex;
    gap: 19px;
}

.cards-section .inner-wrap .card {
    padding: 15px;
    border-radius: 12px;
    background-color: #edf0e7;
    transition: all 0.2s ease-in-out;
    cursor: pointer;
}

.cards-section .inner-wrap .card:hover {
    background-color: #e4f7f3;
}

/* faq section  */
.sec-btn a {color: #000;text-decoration: none;}

.sec-btn a:hover {
    text-decoration: underline;
}

.faq_section a.accordion-section-title {
    background-color: #000;
    color: #f9d200;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 18px;
}
.faq_section .accordion-section-content {
    padding: 0px 20px 20px;
    color: #f9d200;
}
.faq_section .accordion-section-content p{
margin: 0px;
font-size: 16px;
}
.faq_section .accordion-section {
    border-radius: 12px;
    background-color: #000;
    margin-bottom: 10px;
}
.faq_section {
    padding: 60px 0px;
    background-color: #e4f7f3;
}
.our_mission {
    padding: 40px 0px;
    background-color: #52ccb329;
}

.our_mission .content {
    text-align: center;
}
.faq_section a.accordion-section-title span.plus {
    display: block;
    font-size: 22px;
    margin-right: 20px;
    
}

.faq_section a.accordion-section-title span.minus {
    display: none;
    font-size: 22px;
    margin-right: 20px;
}

.faq_section a.accordion-section-title.active .minus {
    display: block;
}

.faq_section a.accordion-section-title.active span.plus {display: none;}


@media(max-width:1440px){
    .page-center{
        max-width: 1100px;
        padding: 0px 20px;
    }
    .about_us .inner_wrap .right{
        padding: 0px;
    }
    .about_us .inner_wrap .img {
        text-align: center;
    }
}
@media(max-width: 1100px){
    .page-center{
        max-width: 991px;
    }
    }
    

@media(max-width:991px){
    .testimonial_slider .bottom{
        flex-wrap: wrap;
    }
    .testimonial_slider .left-section{
        flex: 100%;
    }
    .testimonial_slider .slider_wrapper{
        flex: 100%;
        width: 100%;
    }
    .cards-section .inner-wrap{
        flex-wrap: wrap;
    }
    .cards-section .inner-wrap .card {
        flex: 30%;
    }
.page-center{
    max-width: 991px;
}
}

@media (max-width: 767px) {
    p.desclaimer{
        width: 100%;
    }
    .about_us .inner_wrap .img img{
        width: 60%;
    }
    .about_us .inner_wrap .left {
        flex: 100%;
    }
    .about_us .inner_wrap {
        flex-wrap: wrap;
    }
    .our_blogs .top_section{
        padding: 0px 0px 30px;
    }
    p{
        font-size: 14px;
    }
    h1{
        font-size: 35px;
    }
    h2{
        font-size: 25px;
    }
    h3{
        font-size: 18px;
    }
}

@media(max-width:576px){
    .testimonial_slider .left-section {
        text-align: center;
        margin-bottom: 30px;
    }
.testimonial_bottom {
    flex-wrap: wrap;
}

.testimonial_btm_left {
    flex: 100%;
}
    .cta-btn a{
        font-size: 14px;
    }
    .cards-section .inner-wrap .card {
        flex: 100%;
    }
    .about_us .inner_wrap .img img{
        width: 100%;
    }
    .top-section{
        width: 100%;
    }
}