*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Manrope',sans-serif;
}

body{
    background:#F7F8FA;
}

/* =========================
   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
========================= */

.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;
    }
}


/* ==========================
   Hero Slider
========================== */

.slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slides {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.slide {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==========================
   Navigation Arrows
========================== */

.prev,
.next {
    position: absolute;
    top: 60%;
    transform: translateY(-50%);
    font-size: 40px;
    color: #b5b1b19c;
    cursor: pointer;
    z-index: 100;
    user-select: none;
    transition: 0.3s;
    padding: 10px;
}

.prev:hover,
.next:hover {
    transform: translateY(-50%) scale(1.1);
}

.prev {
    left: 20px;
}

.next {
    right: 20px;
}

/* ==========================
   Dots
========================== */

.dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 100;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    transition: .3s;
}

.dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* ==========================
   Tablet
========================== */

@media (max-width: 991px) {

    .slider {
        height: 70vh;
    }

    .slide,
    .slide img {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .prev,
    .next {
        font-size: 32px;
    }

}

/* ==========================
   Mobile
========================== */

@media (max-width: 768px) {

    .slider {
        height: 55vh;
    }

    .slides {
        display: flex;
        flex-wrap: nowrap;
    }

    .slide {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .slide img {
        width: 100%;
        height: 75vh;
        object-fit: cover;
    }

    .prev,
    .next {
        font-size: 28px;
        padding: 8px;
    }

    .prev {
        left: 10px;
    }

    .next {
        right: 10px;
    }

    .dots {
        bottom: 15px;
        gap: 10px;
    }

}

/* ==========================
   Small Mobile
========================== */

@media (max-width: 480px) {

    .slider {
        height: 45vh;
    }

    .slide img {
        height: 50vh;
    }

    .prev,
    .next {
        font-size: 24px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

}

/* banner*/
.einvoice-banner{
    background: #0B1F3A; /* Midnight Navy */
    padding: 14px 0;
}

.banner-container{
    max-width: 1200px;
    margin: auto;
    padding: 0 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.banner-icon{
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon i{
    font-size: 50px;
    color: #D4AF37; /* Royal Gold */
}

.banner-content h2{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
    line-height: 1.3;
}

.banner-content p{
    color: #F7F8FA;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
}

/* Tablet */
@media(max-width:768px){

    .banner-container{
        gap: 14px;
    }

    .banner-icon i{
        font-size: 42px;
    }

    .banner-content h2{
        font-size: 15px;
    }

    .banner-content p{
        font-size: 12px;
    }
}

/* Mobile */
@media(max-width:576px){

    .banner-container{
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .banner-icon i{
        font-size: 25px;
    }

    .banner-content h2{
        font-size: 11px;
    }

    .banner-content p{
        font-size: 9px;
    }

    .einvoice-banner{
        padding: 15px;
    }
}




/* COMPANY SECTION*/

.company-section {
    background: #f5f5f5;
    overflow: hidden;
}



.company-container {
    width: min(1400px, 90%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: center;
    gap: 40px;

    padding: 100px 0;
}


.company-sub-title{
    justify-content:left;
    gap:10px;
    color:#D4AF37;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:40px;
}

.company-content {
    grid-column: span 7;
    padding: 5%;
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s ease;
}

.company-content h2 {
    font-size: 30px;
    font-weight: 650;
    color: #0B1F3A;
    line-height: 1.2;
    margin-bottom: 12px;
    margin-top: 12px;
    letter-spacing: -1px;
}

.heading-line {
    width: 120px;
    height: 4px;
    background: #D4AF37;
    margin-bottom: 30px;
}

.company-content p {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #6B7280;
    margin-bottom: 12px;
    text-align: justify;
}

.hidden-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;

    transition:
        max-height 0.7s ease,
        opacity 0.4s ease,
        margin-top 0.4s ease;
}

.hidden-content.active {
    max-height: 1000px;
    opacity: 1;
    margin-top: 10px;
}

/* BUTTON*/

.learn-btn {
    background: transparent;
    border: none;

    font-family: inherit;
    font-size: 16px;
    font-weight: 700;

    color: #D4AF37;
    cursor: pointer;

    display: inline-flex;
    align-items: center;
    gap: 8px;

    transition: all .3s ease;
}

.learn-btn::after {
    content: "→";
    transition: .3s ease;
}

.learn-btn:hover {
    color: #D4AF37;
}

.learn-btn:hover::after {
    transform: translateX(5px);
}

/* IMAGE : 4 GRID*/

.company-image {
    grid-column: span 5;
    padding: 2%;
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s ease;
}

.company-image img {
    width: 100%;
    display: block;
    object-fit: cover;
    transition: transform .5s ease;
}

.company-image:hover img {
    transform: scale(1.03);
}

/* ACTIVE ANIMATION*/

.company-content.animate {
    opacity: 1;
    transform: translateX(0);
}

.company-image.animate {
    opacity: 1;
    transform: translateX(0);
}

/* INDIVIDUAL CONTENT ANIMATIONS*/

.company-content h2,
.company-content .heading-line,
.company-content p,
.company-content .learn-btn {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.8s ease;
}

.company-content.animate h2 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

.company-content.animate .heading-line {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.35s;
}

.company-content.animate p:nth-of-type(1) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.company-content.animate p:nth-of-type(2) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.company-content.animate p:nth-of-type(3) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.9s;
}

.company-content.animate p:nth-of-type(4) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.1s;
}

.company-content.animate p:nth-of-type(5) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.3s;
}

.company-content.animate p:nth-of-type(6) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.5s;
}

.company-content.animate .learn-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1.6s;
}

/* LARGE LAPTOP*/

@media (max-width: 1200px) {

    .company-container {
        width: 92%;
        gap: 50px;
    }

    .company-content h2 {
        font-size: 36px;
    }
}

/*TABLET*/

@media (max-width: 992px) {

    .company-container {
        width: 94%;
        gap: 40px;
    }

    .company-content {
        grid-column: span 7;
    }

    .company-image {
        grid-column: span 5;
    }

    .company-content h2 {
        font-size: 32px;
    }

    .company-content p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* MOBILE*/

@media (max-width: 768px) {

    .company-container {
        width: 90%;
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 60px 0;
    }

    .company-content {
        grid-column: 1;
        order: 1;
    }

    .company-image {
        grid-column: 1;
        order: 2;
    }

    .company-content h2 {
        font-size: 28px;
    }

    .heading-line {
        width: 90px;
        margin-bottom: 20px;
    }

    .company-content p {
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 18px;
    }

    .learn-btn {
        font-size: 15px;
    }
}

/* SMALL MOBILE*/

@media (max-width: 480px) {

    .company-container {
        width: 88%;
        padding: 50px 0;
    }

    .company-content h2 {
        font-size: 24px;
    }

    .company-content p {
        font-size: 14px;
        line-height: 1.8;
    }

    .heading-line {
        width: 70px;
        height: 3px;
    }
}



/* ==========================
   OUR SERVICES
========================== */

.services{
    padding: 30px 0 70px;
    background:#f5f5f5;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* ==========================
   SECTION TITLE
========================== */

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.sub-title{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    color:#D4AF37;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:12px;
}

.sub-title span{
    width:40px;
    height:2px;
    background:#D4AF37;
}

.section-title h2{
    font-size:40px;
    font-weight:700;
    color:#0B1F3A;
    margin-bottom:12px;
}

.section-title h2 span{
    color:#D4AF37;
}

.section-title p{
    color:#6B7280;
    font-size:16px;
    line-height:1.7;
}

/* ==========================
   ROW
========================== */

.services .row{
    row-gap:22px;
}

/* ==========================
   LINK
========================== */

.service-link{
    display:block;
    height:100%;
    color:inherit;
    text-decoration:none;
}

/* ==========================
   CARD
========================== */

.service-card{
    position:relative;
    background:#fff;
    border-radius:14px;
    min-height:265px;
    padding:15px 12px;
    text-align:center;
    overflow:hidden;
    transition:.35s ease;
    box-shadow:0 6px 18px rgba(2, 7, 72, 0.26);
}

.service-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:3px;
    background:#D4AF37;
    transform:scaleX(0);
    transform-origin:left;
    transition:.35s;
}

.service-link:hover .service-card{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(126, 55, 4, 0.441);
}

.service-link:hover .service-card::before{
    transform:scaleX(1);
}

/* Active Card */

.service-card.active{
    transform:translateY(-6px);
    box-shadow:
        0 0 0 2px rgba(212,175,55,.25),
        0 14px 28px rgba(212,175,55,.28);
}

/* ==========================
   IMAGE
========================== */

.service-image{
    width:92px;
    height:92px;
    margin:0 auto;
    border-radius:50%;
    overflow:hidden;
}

.service-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.35s;
}

.service-link:hover .service-image img{
    transform:scale(1.08);
}

/* ==========================
   ICON
========================== */

.service-icon{
    width:32px;
    height:32px;
    margin:8px auto 10px;
    border-radius:50%;
    background:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    box-shadow:0 4px 10px rgba(0,0,0,.10);
}

.service-icon i{
    color:#D4AF37;
    font-size:14px;
}

/* ==========================
   CONTENT
========================== */

.service-card h3{
    font-size:15px;
    font-weight:700;
    color:#0B1F3A;
    line-height:1.35;
    margin-bottom:8px;
}

.service-card p{
    color:#6B7280;
    font-size:12px;
    line-height:1.55;
    margin-bottom:14px;
}

/* ==========================
   LINE
========================== */

.card-line{
    display:block;
    width:30px;
    height:2px;
    margin:auto;
    background:#D4AF37;
    border-radius:50px;
    transition:.35s;
}

.service-link:hover .card-line{
    width:50px;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1199px){

    .service-card{
        min-height:255px;
    }

}

@media (max-width:991px){

    .section-title h2{
        font-size:34px;
    }

    .service-card{
        min-height:245px;
        padding:14px 10px;
    }

    .service-image{
        width:68px;
        height:68px;
    }

    .service-icon{
        width:30px;
        height:30px;
    }

    .service-icon i{
        font-size:13px;
    }

    .service-card h3{
        font-size:14px;
    }

    .service-card p{
        font-size:10px;
    }

}

@media (max-width:576px){

    .section-title{
        margin-bottom:40px;
    }

    .section-title h2{
        font-size:28px;
    }

    .section-title p{
        font-size:14px;
    }

    .service-card{
        min-height:225px;
        padding:12px 10px;
    }

    .service-image{
        width:60px;
        height:60px;
    }

    .service-icon{
        width:28px;
        height:28px;
        margin:7px auto 8px;
    }

    .service-icon i{
        font-size:12px;
    }

    .service-card h3{
        font-size:13px;
        margin-bottom:6px;
    }

    .service-card p{
        font-size:10px;
        line-height:1.45;
        margin-bottom:12px;
    }

    .card-line{
        width:26px;
    }
    .service-link:hover .service-card{
    transform:translateY(-6px);
    box-shadow:0 14px 28px rgba(126, 55, 4, 0.441);
}

.service-link:hover .service-card::before{
    transform:scaleX(1);
}


}

/* CONTACT SECTION */

.contact{
    position:relative;
    width:100%;
    padding:65px 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:360px;
    animation:leftFade .7s ease;
}

.contact-content h2{
    font-size:28px;
    color:#0B1E6D;
    font-weight:800;
    line-height:1.1;
    margin-bottom:8px;
}

.title-line{
    width:28px;
    height:3px;
    background:#F59E0B;
    border-radius:20px;
    margin-bottom:12px;
}

.contact-content p{
    font-size:12px;
    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:#F59E0B;
    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;
}

}