*{
    margin:0;
    padding:0;
    font-family:'Manrope',sans-serif;
}


/* NAVBAR*/

.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#FFFFFF;
    border-top:4px solid #D4AF37;
    z-index:9999;

    transition:
        background .45s ease,
        box-shadow .45s ease;
}

.nav-container{
    width:100%;
    padding:0 15px;
    box-sizing:border-box;

    display:flex;
    justify-content:space-between;
    align-items:center;

    height:80px;
}


.logo img{
    height:60px;
    width:auto;
    display:block;

    transition:all .45s ease;
}

/* RIGHT SIDE*/

.nav-right{
    display:flex;
    align-items:center;
    gap:35px;
}

/* NAV LINKS*/

.nav-links{
    display:flex;
    align-items:center;
    gap:38px;
    list-style:none;
}

.nav-links li{
    position:relative;
}

.nav-links li a{
    text-decoration:none;
    color:#0B1F3A;
    font-size:16px;
    font-weight:500;
    transition:all .45s ease;
}

.nav-links li:hover > a{
    color:#D4AF37;
}

.nav-links li::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-38px;
    width:0;
    height:2px;
    background:#D4AF37;
    transition:.3s;
}

.nav-links li:hover::after{
    width:100%;
}

/* DROPDOWN*/

.ourservices > a{
    position:relative;
    padding-right:14px;
}

.ourservices > a::after{
    content:"";
    position:absolute;

    right:0;
    top:45%;

    width:6px;
    height:6px;

    border-right:1.5px solid #D4AF37;
    border-bottom:1.5px solid #D4AF37;

    transform:translateY(-50%) rotate(45deg);

    transition:.3s ease;
}

.ourservices:hover > a::after{
    transform:translateY(-50%) rotate(225deg);
}

.dropdown{
    position:absolute;
    top:68px;
    left:-20px;

    width:340px;

    background:#fff;
    border-top:2px solid #D4AF37;

    box-shadow:0 12px 30px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transform:translateY(15px);

    transition:.35s ease;
}

.ourservices:hover .dropdown{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown ul{
    list-style:none;
}

.dropdown ul li{
    border-bottom:1px solid #eee;
}

.dropdown ul li:last-child{
    border-bottom:none;
}

.dropdown ul li::after{
    display:none;
}

.dropdown ul li a{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:15px 20px;
    font-size:13px;
    font-weight:500;
}

.dropdown ul li a:hover{
    background:#FAFAFA;
}

.arrow{
    color:#D4AF37;
}

/* BUTTON */

.consult-btn{
    text-decoration:none;

    background:#D4AF37;
    color:#fff;
    
    padding:8px 16px;

    border-radius:4px;

    font-size:11px;
    font-weight:700;
    letter-spacing:.5px;

    transition:all .45s ease;
}

.consult-btn:hover{
    background:#BE9622;
}

/* STICKY EFFECT*/

.navbar.sticky{
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.navbar.sticky .nav-container{
    height:75px;
}

.navbar.sticky .logo img{
    height:55px;
    transform:scale(.95);
}

.navbar.sticky .nav-links li a{
    font-size:15px;
}

.navbar.sticky .consult-btn{
    padding:10px 18px;
    font-size:11px;
}

.navbar.sticky .dropdown{
    top:55px;
}

.navbar.sticky .nav-links li::after{
    bottom:-26px;
}

/* MOBILE MENU*/

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
    color:#0B1F3A;
    z-index:10001;
}

/* MOBILE*/

@media(max-width:991px){

    .nav-container{
        height:75px !important;
        padding:0 20px;
    }

    .logo img{
        height:50px !important;
    }

    .menu-toggle{
        display:block;
    }

    .nav-right{
        position:fixed;
        top:25px;
        left:-100%;

        width:100%;
        height:calc(100vh - 75px);

        background:#fff;

        overflow-y:auto;
        overflow-x:hidden;

        display:flex;
        flex-direction:column;
        align-items:flex-start;

        transition:left .4s ease;

        box-shadow:0 10px 20px rgba(0,0,0,.08);
    }

    .nav-right.active{
        left:0;
    }

    .nav-links{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
    }

    .nav-links li{
        width:100%;
    }

    .nav-links li::after{
        display:none;
    }

    .nav-links li a{
        width:100%;
        display:flex;
        align-items:center;
        justify-content:space-between;

        padding:18px 24px;

        border-bottom:1px solid #eee;

        font-size:15px;
        font-weight:600;
    }

    .ourservices > a{
        position:relative;
    }

    .ourservices > a::after{

        content:"";

        width:6px;
        height:6px;

        border-right:2px solid #D4AF37;
        border-bottom:2px solid #D4AF37;

        transform:rotate(45deg);

        transition:.3s ease;

        margin-left:auto;
    }

    .ourservices.active > a::after{
        transform:rotate(225deg);
    }

    .dropdown{
        position:static;

        width:100%;

        display:none;

        opacity:1;
        visibility:visible;
        transform:none;

        border-top:none;
        box-shadow:none;

        background:#fafafa;
    }

    .ourservices.active .dropdown{
        display:block;
    }

    .dropdown ul li{
        border-bottom:1px solid #ececec;
    }

    .dropdown ul li a{
        padding:15px 24px 15px 42px;
        font-size:14px;
        font-weight:500;
        background:#fafafa;
    }

    .dropdown ul li a:hover{
        background:#f3f4f6;
    }

    .consult-btn{
        margin:24px;
        width:calc(100% - 48px);

        text-align:center;

        padding:14px 20px;
        font-size:12px;
    }

}



.whatsapp{
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 34px;
    box-shadow: 0 8px 20px rgba(37,211,102,0.35);
    z-index: 9999;
    transition: all 0.3s ease;
    animation: whatsappPulse 2s infinite;
}

.whatsapp:hover{
    transform: translateY(-5px) scale(1.08);
    background: #1EBE5D;
    color: #fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}

@media (max-width:768px){
    .whatsapp{
        width: 55px;
        height: 55px;
        font-size: 30px;
        right: 18px;
        bottom: 18px;
    }
}




.service-sec img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    object-position: center;
    margin-top: 50px;
}

@media (max-width: 1199px) {
    .service-sec img {
        height: 520px;
    }
}

@media (max-width: 991px) {
    .service-sec img {
        height: 420px;
    }
}

@media (max-width: 767px) {
    .service-sec img {
        width: 100%;      /* Reduce width */
        height: 220px;
        display: block;
        margin: 50px auto 0; /* Center horizontally */
    }
}











/* Text bg*/

.page-background{
    position:fixed;
    inset:0;
    z-index:-100;
    overflow:hidden;
    pointer-events:none;
}

/* Large Circle */

.circle1{
    position:absolute;
    width:900px;
    height:900px;
    background:#fafafa;
    border-radius:50%;
    top:-520px;
    right:-220px;
}

/* Second Circle */

.circle2{
    position:absolute;
    width:550px;
    height:550px;
    background:#fcfcfc;
    border-radius:50%;
    left:-280px;
    bottom:-280px;
}

/* Gold Dot Pattern */

.dots{
    position:absolute;
    right:60px;
    bottom:80px;
    width:220px;
    height:220px;
    background-image:
        radial-gradient(#D4AF37 2px, transparent 2px);
    background-size:18px 18px;
    opacity:.35;
}

/* Blur Gold */

.blur1{
    position:absolute;
    width:260px;
    height:260px;
    border-radius:50%;
    background:#D4AF37;
    filter:blur(90px);
    opacity:.08;
    right:-60px;
    top:35%;
}
/* Blur Navy */

.blur2{
    position:absolute;
    width:320px;
    height:320px;
    border-radius:50%;
    background:#0B1F3A;
    filter:blur(100px);
    opacity:.04;
    left:-120px;
    bottom:10%;
}

/* ABOUT SECTION*/

.service-info{
    max-width:1100px;
    margin:80px auto;
    padding:40px;
    text-align: justify;
}

.service-info-title{
    text-align:center;
    color:#0b213d;
    font-size:38px;
    font-weight:700;
    line-height:1.3;
}

.service-info-title::after{
    content:"";
    display:block;
    width:180px;
    height:4px;
    background:#D4AF37;
    margin:25px auto 45px;
    border-radius:50px;
}

.service-info-text{
    font-size:16px;
    color:#4d4c4c;
    font-weight: 450;
    line-height:1.9;
    margin-bottom:20px;
    opacity:0;
    transform:translateY(25px);
    animation:fadeUp .8s forwards;
    text-align: justify;
}

.service-info-text:nth-of-type(1){
animation-delay:.2s;
}

.service-info-text:nth-of-type(2){
animation-delay:.35s;
}

.service-info-text:nth-of-type(3){
animation-delay:.5s;
}

.learn-more{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:700;
    color:#D4AF37;
    cursor:pointer;
    transition:.35s;
}

.learn-more:hover{
    color:#9c7905;
    transform:translateX(5px);
}

/* Hidden Content */

.hidden-content{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:.6s;
}

.hidden-content.active{
    max-height:3000px;
    opacity:1;
    margin-top:30px;
}

.hidden-inner{
    position:relative;
    padding-top:20px;
}

.close-icon{
    position:absolute;
    right:0;
    top:0;
    font-size:18px;
    cursor:pointer;
    transition:.3s;
    color:#0B1F3A;
}

.close-icon:hover{
    color:#D4AF37;
    transform:rotate(90deg);
}

.hidden-item{
    position:relative;
    padding-left:22px;
    margin:15px 0;
    line-height:1.8;
    color:#282828;
    text-align: justify;

}

.hidden-item::before{
    content:"";
    position:absolute;
    left:0;
    top:11px;
    width:7px;
    height:7px;
    background:#D4AF37;
    border-radius:50%;
}

.show-less{
    margin-top:25px;
    display:inline-flex;
    align-items:center;
    gap:8px;
    font-weight:700;
    color:#0B1F3A;
    cursor:pointer;
    transition:.3s;
}

.show-less:hover{
    color:#D4AF37;
    transform:translateX(-5px);

}

@keyframes fadeUp{

to{

opacity:1;

transform:translateY(0);

}

}

/* RESPONSIVE*/

@media(max-width:768px){

.service-info{
padding:25px;
margin:60px auto;
}

.service-info-title{
font-size:20px;
}
.service-info-text{
font-size:14px;
}
.circle1{
width:520px;
height:520px;
top:-260px;
right:-180px;
}

.circle2{
width:300px;
height:300px;
left:-150px;
bottom:-150px;
}

.dots{
width:130px;
height:130px;
right:20px;
bottom:20px;
background-size:14px 14px;
}

.blur1{
width:150px;
height:150px;
}

.blur2{
width:180px;
height:180px;
}

}



/* FEATURE SLIDER SECTION */

.feature-section{
    position: relative;
    padding: 40px 2%;
    background: #fff;
    overflow: hidden;
}

.feature-section::before{
    content: "";
    position: absolute;
    width: 320px;
    height: 320px;
    background: #c29011ad;
    filter: blur(170px);
    opacity: .07;
    top: -140px;
    left: -120px;
}

.feature-section::after{
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    background: #0A2342;
    filter: blur(150px);
    opacity: .05;
    right: -120px;
    bottom: -120px;
}

/* SECTION TITLE */

.section-title{
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-title span{
    display: inline-block;
    color: #c29011ad;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title h2{
    color: #0A2342;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-title p{
    color: #707070;
    font-size: 16px;
    line-height: 1.8;
}

/* SWIPER */

.featureSwiper{
    max-width: 920px;
    margin: auto;
    padding: 20px 40px 60px;
}

.swiper-slide{
    display: flex;
    justify-content: center;
    height: auto;
}

/* CARD */

.feature-card{
    position: relative;
    background: #fff;
    border-radius: 14px;
    min-height: 265px;
    padding: 15px 12px;
    text-align: center;
    overflow: hidden;
    transition: all .10s ease;
    box-shadow: 0 6px 18px rgba(95,67,5,.20);
}

.feature-card::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: #a68414be;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .10s ease;
}

.feature-card:hover{
    transform: translateY(-8px);
    border-color: #c29011ad;
    box-shadow:
        0 20px 45px rgba(212,175,55,.35),
        0 10px 25px rgba(0,0,0,.12);
}

.feature-card:hover::before{
    transform: scaleX(1);
}

/* IMAGE */

.image-box{
    overflow: hidden;
    border-radius: 14px;
}

.image-box img{
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 14px;
    transition: .4s;
}

.feature-card:hover img{
    transform: scale(1.08);
}

/* CONTENT */

.feature-card h3{
    font-size: 15px;
    color: #0A2342;
    margin-top: 14px;
    font-weight: 700;
}

.feature-card p{
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    margin: 10px 0 16px;
    text-align: justify;
}


.feature-list{
    list-style: none;
    padding: 0;
    margin-top: 15px;
}

.feature-list li{
    position: relative;
    padding-left: 22px;
    margin-bottom: 12px;
    color: #333333;
    font-size: 13px;
    line-height: 1.8;
    text-align:left;
}

.feature-list li::before{
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #D4AF37;
}
/* NAVIGATION */

.swiper-button-next,
.swiper-button-prev{
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    color: #0A2342;
    box-shadow: 0 8px 18px rgba(0,0,0,.08);
    transition: .3s;
}

.swiper-button-next:hover,
.swiper-button-prev:hover{
    background: #a97807d6;
    color: #fff;
}

.swiper-button-next::after,
.swiper-button-prev::after{
    font-size: 15px;
    font-weight: bold;
}

/* PAGINATION */

.swiper-pagination{
    bottom: 0 !important;
}

.swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: #d4d4d4;
    opacity: 1;
    transition: .3s;
}

.swiper-pagination-bullet-active{
    width: 28px;
    border-radius: 30px;
    background: #a97810;
}

/* RESPONSIVE */

@media (max-width:1200px){

    .featureSwiper{
        max-width: 1000px;
    }

}

@media (max-width:992px){

    .feature-section{
        padding: 70px 5%;
    }

    .section-title h2{
        font-size: 32px;
    }

    .image-box img{
        height: 150px;
    }

    .feature-card h3{
        font-size: 18px;
    }

}

@media (max-width:768px){

    .feature-section{
        padding: 60px 20px;
    }

    .section-title h2{
        font-size: 22px;
    }

    .section-title p{
        font-size: 14px;
    }

    .image-box img{
        height: 170px;
    }

    .feature-card{
        padding: 15px;
    }

    .feature-card p{
        font-size: 12px;
    }

    .swiper-button-next,
    .swiper-button-prev{
        display: none;
    }

}

@media (max-width:576px){

    .image-box img{
        height: 180px;
    }

    .feature-card{
        padding: 14px;
    }

    .feature-card h3{
        font-size: 18px;
    }

}




.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-section h2 {
    font-size: 27px;
    font-weight: 700;
    margin: 15px 0 40px;
    color: #0d2145;
    line-height: 1.3;
}

.faq-tag {
    color: #bb840fa2;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-item {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    margin-bottom: 15px;
    overflow: hidden;
    background: #fff;
    transition: 0.3s ease;
}

.faq-item:hover {
    background: #d4af371e;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #0d2145;
    text-align: left;
    line-height: 1.5;
}

.faq-question .icon {
    font-size: 28px;
    font-weight: 400;
    color: #D4AF37;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: transparent;
}

.faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
}

.faq-item.active {
    background: rgba(209, 151, 25, 0.1);
}

.faq-item.active .faq-answer {
    max-height: 350px;
}

@media (max-width: 991px) {
    .faq-section {
        padding: 60px 0;
    }

    .faq-section h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .faq-question {
        padding: 16px 18px;
        font-size: 15px;
    }

    .faq-answer p {
        font-size: 14px;
        padding: 0 18px 18px;
    }
}

@media (max-width: 767px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-section h2 {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .faq-question {
        padding: 15px;
        font-size: 14px;
        align-items: flex-start;
    }

    .faq-question .icon {
        font-size: 24px;
        margin-top: 2px;
    }

    .faq-answer p {
        padding: 0 15px 18px;
        font-size: 14px;
        line-height: 1.7;
    }

    .faq-item.active .faq-answer {
        max-height: 450px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-section h2 {
        font-size: 20px;
    }

    .faq-question {
        padding: 14px;
        font-size: 13.5px;
        gap: 10px;
    }

    .faq-question .icon {
        font-size: 22px;
    }

    .faq-answer p {
        font-size: 13px;
        padding: 0 14px 16px;
    }

    .faq-item.active .faq-answer {
        max-height: 600px;
    }
    
    .faq-tag {
    font-weight: 600;
    font-size:12;
}
}


/* CONTACT SECTION */

.contact{
    position:relative;
    width:100%;
    padding:55px 50px;
    background:#fff;
    overflow:hidden;
}

/* Background Circle */

.contact::before{
    content:"";
    position:absolute;
    width:520px;
    height:520px;
    right:-170px;
    top:-50px;
    background:#F7F8FB;
    border-radius:50%;
    z-index:0;
}

/* Orange Dots */

.contact::after{
    content:"";
    position:absolute;
    top:22px;
    right:35px;
    width:42px;
    height:42px;
    background-image:radial-gradient(#F59E0B 2px,transparent 2px);
    background-size:8px 8px;
    z-index:2;
}

/* Container */

.contact-container{
    width:90%;
    max-width:980px;
    margin:auto;
    display:grid;
    grid-template-columns:40% 60%;
    align-items:center;
    gap:24px;
    position:relative;
    z-index:5;
}

/* Left Content */

.contact-content{
    max-width:400px;
    animation:leftFade .7s ease;
}

.contact-content h2{
    font-size:30px;
    color:#0B1F3A;
    font-weight:800;
    line-height:1.1;
    margin-bottom:8px;
}

.title-line{
    width:28px;
    height:3px;
    background:#D4AF37;
    border-radius:20px;
    margin-bottom:12px;
}

.contact-content p{
    font-size:14px;
    line-height:20px;
    color:#4B5563;
    margin-bottom:16px;
}

/* Form */

form{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group{
    position:relative;
}

.form-group i{
    position:absolute;
    left:13px;
    top:50%;
    transform:translateY(-50%);
    color:#F59E0B;
    font-size:13px;
}

.textarea i{
    top:16px;
}

.form-group input{
    width:100%;
    height:36px;
    border:1px solid #D8DCE4;
    border-radius:6px;
    padding:0 14px 0 38px;
    font-size:12px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.form-group textarea{
    width:100%;
    height:72px;
    border:1px solid #D8DCE4;
    border-radius:6px;
    padding:12px 14px 12px 38px;
    resize:none;
    font-size:12px;
    outline:none;
    transition:.3s;
    background:#fff;
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color:#9CA3AF;
    font-size:12px;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#F59E0B;
    box-shadow:0 0 8px rgba(245,158,11,.12);
}

/* Button */

form button{
    width:135px;
    height:36px;
    border:none;
    border-radius:6px;
    background:#D4AF37;
    color:#fff;
    font-size:12px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:6px;
    transition:.3s;
}

form button:hover{
    background:#E88900;
    transform:translateY(-2px);
    box-shadow:0 6px 14px rgba(245,158,11,.2);
}

form button i{
    transition:.3s;
}

form button:hover i{
    transform:translateX(3px);
}

/* Image */

.contact-image{
    position:relative;
    height:330px;
    overflow:hidden;
    border-top-left-radius:140px;
    border-bottom-left-radius:140px;
    animation:rightFade .7s ease;
}

.contact-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.8s;
}

.contact-image:hover img{
    transform:scale(1.04);
}

/* Animations */

@keyframes leftFade{
    from{
        opacity:0;
        transform:translateX(-30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes rightFade{
    from{
        opacity:0;
        transform:translateX(30px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

/* Tablet */

@media(max-width:991px){

.contact{
    padding:30px 0;
}

.contact::before{
    display:none;
}

.contact::after{
    right:25px;
    top:18px;
}

.contact-container{
    width:92%;
    grid-template-columns:1fr;
    gap:22px;
}

.contact-content{
    max-width:100%;
}

.contact-content h2{
    font-size:24px;
}

.contact-content p{
    font-size:12px;
    line-height:19px;
}

.form-group input{
    height:34px;
}

.form-group textarea{
    height:68px;
}

form button{
    width:130px;
    height:34px;
}

.contact-image{
    height:260px;
    border-radius:18px;
}

}
/* Mobile */

@media(max-width:576px){

.contact{
    padding:25px 15px;   /* Top & Bottom: 25px, Left & Right: 15px */
}

.contact-container{
    width:90%;
}

.contact::after{
    width:36px;
    height:36px;
    right:15px;
    top:15px;
    background-size:7px 7px;
}

.contact-content h2{
    font-size:22px;
}

.title-line{
    width:24px;
    margin-bottom:10px;
}

.contact-content p{
    font-size:11px;
    line-height:18px;
    margin-bottom:14px;
}

form{
    gap:7px;
}

.form-group i{
    left:12px;
    font-size:12px;
}

.textarea i{
    top:15px;
}

.form-group input{
    height:34px;
    padding-left:36px;
    font-size:11px;
}

.form-group textarea{
    height:65px;
    padding-left:36px;
    font-size:11px;
}

form button{
    width:100%;
    height:34px;
    font-size:12px;
}

.contact-image{
    height:200px;
    border-radius:14px;
}

}

/*FOOTER SECTION*/

.footer-section{
    background:#fff;
    padding:30px 0 0;
    position:relative;
    overflow:hidden;
}

/* Decorative Dots */

.footer-section::before{
    content:"";
    position:absolute;
    left:0;
    bottom:70px;
    width:110px;
    height:110px;
    background-image:radial-gradient(#d6a018 2px,transparent 2px);
    background-size:10px 10px;
    opacity:.25;
}

.footer-section::after{
    content:"";
    position:absolute;
    right:0;
    top:0;
    width:110px;
    height:110px;
    background-image:radial-gradient(#d6a018 2px,transparent 2px);
    background-size:10px 10px;
    opacity:.25;
}

/*==========================================
                LOGO
==========================================*/

.footer-logo{
    width:220px;
    max-width:100%;
    margin-bottom:12px;
}

/*==========================================
              DESCRIPTION
==========================================*/

.footer-text{
    font-size:13px;
    line-height:1.7;
    color:#444;
    margin-bottom:18px;
    text-align: justify;
    padding: 5px;
}

/*==========================================
             COLUMN BORDER
==========================================*/

.footer-border{
    border-left:1px solid #e8d8b4;
    padding-left:18px;
}

/*==========================================
              HEADINGS
==========================================*/

.footer-section h4{
    color:#07224d;
    font-size:17px;
    font-weight:700;
    margin-bottom:15px;
    text-transform:uppercase;
    position:relative;
}

.footer-section h4::after{
    content:"";
    width:35px;
    height:2px;
    background:#d6a018;
    display:block;
    margin-top:6px;
}

/*==========================================
                 LIST
==========================================*/

.footer-section ul{
    list-style:none;
    margin:0;
    padding:0;
}

.footer-section ul li{
    display:flex;
    align-items:flex-start;
    gap:8px;
    margin-bottom:10px;
    color:#333;
    font-size:13px;
    line-height:1.5;
    transition:.3s;
}

.footer-section ul li i{
    color:#d6a018;
    font-size:13px;
    min-width:14px;
    margin-top:4px;
}

.footer-section a{
    text-decoration:none;
    color:#333;
    transition:.3s;
}

.footer-section a:hover{
    color:#d6a018;
    padding-left:4px;
}

.footer-section ul li:hover{
    transform:translateX(4px);
}

/*==========================================
            SOCIAL ICONS
==========================================*/

.footer-social{
    display:flex;
    gap:10px;
}

.footer-social a{
    width:36px;
    height:36px;
    border:1.5px solid #d6a018;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#d6a018;
    font-size:14px;
    transition:.3s;
}

.footer-social a:hover{
    background:#d6a018;
    color:#fff;
    transform:translateY(-3px);
}

/*==========================================
               WAVE
==========================================*/

.footer-wave{
    margin-top:10px;
    line-height:0;
}

.footer-wave svg{
    width:100%;
    height:45px;
    display:block;
}

/*==========================================
            COPYRIGHT
==========================================*/

.footer-bottom{
    background:#031738;
    text-align:center;
    padding:10px 10px 12px;
}

.footer-bottom p{
    color:#fff;
    font-size:13px;
    margin-bottom:6px;
}

.footer-bottom span{
    display:inline-block;
    width:100px;
    height:2px;
    background:#d6a018;
}

/*==========================================
             RESPONSIVE
==========================================*/

@media(max-width:991px){

.footer-border{
    border:none;
    padding-left:0;
    margin-top:20px;
}

.footer-logo{
    width:200px;
}

.footer-wave svg{
    height:38px;
}

}

@media(max-width:767px){

.footer-section{
    padding-top:20px;
}

.footer-logo{
    width:180px;
}

.footer-text{
    font-size:12px;
}

.footer-section h4{
    font-size:16px;
}

.footer-section ul li{
    font-size:12px;
    margin-bottom:8px;
}

.footer-social a{
    width:34px;
    height:34px;
    font-size:13px;
}

.footer-wave svg{
    height:30px;
}

.footer-bottom{
    padding:8px 10px;
}

.footer-bottom p{
    font-size:12px;
    margin-bottom:4px;
}

.footer-bottom span{
    width:60px;
}

}