:root{
    --roven-blue: #09417D;
    --roven-blue-2: #1B4F86;
    --roven-orange: #E75A00;
    --roven-dark: #1F201D;
    --roven-white: #F9FAFB;
    --roven-text: #222222;
    --roven-border: rgba(9, 65, 125, 0.12);
}

/* RESET */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    width: 100%;
    overflow-x: hidden;
}

body{
    font-family: 'Poppins', sans-serif;
    color: var(--roven-text);
    background: #ffffff;
}

/* CONTAINER */
.container{
    width: 95%;
    max-width: 1200px;
    margin: auto;
}

/* ================= TOPBAR ================= */
.topbar{
    background: var(--roven-dark);
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.topbar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
}

/* LEFT + RIGHT */
.topbar-left,
.topbar-right{
    display: flex;
    align-items: center;
    gap: 20px;
}

/* ITEMS */
.topbar-item{
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--roven-white);
    font-weight: 500;
    white-space: nowrap;
}

/* LINKS */
.topbar a{
    color: var(--roven-white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
    font-weight: 500;
    white-space: nowrap;
}

.topbar a:hover{
    color: var(--roven-orange);
}

/* ICONS */
.topbar i{
    color: var(--roven-orange);
    font-size: 13px;
}

/* FLAG */
.flag{
    font-size: 11px;
    font-weight: 700;
    color: var(--roven-white);
    letter-spacing: 0.6px;
    margin-right: 2px;
    flex-shrink: 0;
}

/* WHATSAPP */
.whatsapp-link{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #25D366 !important;
    font-size: 16px;
    line-height: 1;
    flex-shrink: 0;
}

.whatsapp-link i{
    color: #25D366 !important;
    font-size: 16px;
}

.whatsapp-link:hover{
    color: #1ebe5d !important;
}

.whatsapp-link:hover i{
    color: #1ebe5d !important;
}

/* TABLET */
@media (max-width: 991px){
    .topbar .container{
        flex-direction: column;
        gap: 6px;
        padding: 8px 0;
    }

    .topbar-left,
    .topbar-right{
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
    }
}

/* MOBILE */
@media (max-width: 575px){
    .topbar{
        font-size: 11px;
    }

    .topbar .container{
        padding: 6px 0;
        gap: 4px;
    }

    .topbar-left{
        width: 100%;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-wrap: nowrap;
        gap: 10px;
    }

    .topbar-right{
        width: 100%;
        justify-content: center;
        gap: 8px;
    }

    .topbar-item,
    .topbar a{
        font-size: 11px;
        gap: 4px;
    }

    .topbar i{
        font-size: 11px;
    }

    .flag{
        font-size: 10px;
        margin-right: 0;
    }

    .whatsapp-link,
    .whatsapp-link i{
        font-size: 14px;
    }

    #liveDateTime{
        white-space: nowrap;
    }
}

/* ================= NAVBAR ================= */
.site-header{
    position: relative;
    width: 100%;
    background: var(--roven-white);
    z-index: 999;
    transition: all 0.35s ease;
    border-bottom: 1px solid rgba(9, 65, 125, 0.06);
}

.nav-container{
    position: relative;
}

.navbar{
    min-height: 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand{
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.brand img{
    height: 78px;
    width: auto;
    display: block;
}

/* ================= DESKTOP MENU ================= */
.desktop-menu{
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    margin-left: auto;
    padding-left: 0;
    margin-bottom: 0;
}

.desktop-menu li{
    list-style: none;
}

.desktop-menu li a{
    text-decoration: none;
    color: var(--roven-dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 4px 0;
}

.desktop-menu li a:hover,
.desktop-menu li a.active{
    color: var(--roven-orange);
}

.desktop-menu li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--roven-orange);
    transition: width 0.3s ease;
}

.desktop-menu li a:hover::after,
.desktop-menu li a.active::after{
    width: 100%;
}

/* ================= TOGGLE BUTTON ================= */
.nav-toggle{
    display: none;
    width: 54px;
    height: 54px;
    border: 2px solid rgba(31, 32, 29, 0.45);
    background: transparent;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
    z-index: 10002;
}

.nav-toggle span{
    width: 24px;
    height: 2px;
    background: var(--roven-dark);
    display: block;
    transition: 0.3s ease;
}

.nav-toggle:hover{
    border-color: var(--roven-orange);
}

.nav-toggle.active span:nth-child(1){
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2){
    opacity: 0;
}

.nav-toggle.active span:nth-child(3){
    transform: translateY(-7px) rotate(-45deg);
}

/* ================= STICKY HEADER ================= */
.site-header.sticky{
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(249, 250, 251, 0.98);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    animation: navbarZoomIn 0.4s ease forwards;
    border-bottom: 1px solid rgba(9, 65, 125, 0.08);
    width: 100%;
}

.site-header.sticky .navbar{
    min-height: 84px;
}

.site-header.sticky .brand img{
    height: 68px;
}

@keyframes navbarZoomIn{
    0%{
        opacity: 0;
        transform: translateY(-18px) scale(0.95);
    }
    100%{
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* ================= MOBILE OVERLAY ================= */
.mobile-menu-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.35s ease;
    z-index: 10000;
}

.mobile-menu-overlay.active{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ================= MOBILE SIDE MENU ================= */
.mobile-side-menu{
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    max-width: 85%;
    height: 100vh;
    background: var(--roven-white);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.12);
    z-index: 10001;
    transition: right 0.35s ease;
    padding: 110px 0 30px;
    overflow-y: auto;
}

.mobile-side-menu.active{
    right: 0;
}

.mobile-menu-close{
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(31, 32, 29, 0.25);
    background: transparent;
    color: var(--roven-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: 0.3s ease;
}

.mobile-menu-close:hover,
.mobile-menu-close:focus-visible{
    border-color: var(--roven-orange);
    color: var(--roven-orange);
    outline: none;
}

.mobile-nav-menu{
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav-menu li{
    list-style: none;
    width: 100%;
}

.mobile-nav-menu li a{
    display: block;
    width: 100%;
    padding: 16px 24px;
    text-decoration: none;
    color: var(--roven-dark);
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(9, 65, 125, 0.07);
    transition: 0.3s ease;
}

.mobile-nav-menu li a:hover,
.mobile-nav-menu li a.active{
    background: rgba(9, 65, 125, 0.05);
    color: var(--roven-orange);
}

/* ================= TABLET ================= */
@media (max-width: 991px){
    .navbar{
        min-height: 90px;
    }

    .brand img{
        height: 70px;
    }

    .desktop-menu{
        gap: 20px;
    }

    .desktop-menu li a{
        font-size: 14px;
    }
}

/* ================= MOBILE ================= */
@media (max-width: 767px){
    .navbar{
        min-height: 88px;
    }

    .brand img{
        height: 66px;
    }

    .desktop-menu{
        display: none;
    }

    .nav-toggle{
        display: inline-flex;
    }

    .site-header.sticky .navbar{
        min-height: 78px;
    }

    .site-header.sticky .brand img{
        height: 60px;
    }
}





/* ================= HERO SLIDER ================= */
.hero-slider{
    position: relative;
    width: 100%;
    height: 78vh;
    min-height: 520px;
    max-height: 680px;
    overflow: hidden;
    background: var(--roven-dark);
}

.hero-slide{
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.06);
    transition: opacity 0.8s ease, transform 1.4s ease, visibility 0.8s ease;
}

.hero-slide.active{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

/* STRONGER OVERLAY */
.hero-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(17, 20, 24, 0.62) 0%, rgba(17, 20, 24, 0.38) 45%, rgba(17, 20, 24, 0.60) 100%),
        linear-gradient(180deg, rgba(10, 14, 18, 0.48) 0%, rgba(10, 14, 18, 0.58) 100%);
    z-index: 1;
}

.hero-slide .container{
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content{
    max-width: 900px;
    text-align: center;
    color: var(--roven-white);
    padding: 0 20px;
}

.hero-subtitle{
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--roven-orange);
    margin-bottom: 18px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-content h1{
    font-size: 58px;
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--roven-white);
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.hero-content p{
    max-width: 760px;
    margin: 0 auto 28px;
    font-size: 17px;
    line-height: 1.8;
    color: rgba(249, 250, 251, 0.95);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.hero-buttons{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.hero-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 170px;
    height: 54px;
    padding: 0 28px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.primary-btn{
    background: var(--roven-orange);
    color: var(--roven-white);
    border: 2px solid var(--roven-orange);
}

.primary-btn:hover{
    background: transparent;
    color: var(--roven-white);
    border-color: var(--roven-white);
}

.secondary-btn{
    background: transparent;
    color: var(--roven-white);
    border: 2px solid rgba(249, 250, 251, 0.85);
}

.secondary-btn:hover{
    background: var(--roven-blue);
    border-color: var(--roven-blue);
    color: var(--roven-white);
}

/* ARROWS */
.hero-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border: none;
    background: rgba(9, 65, 125, 0.78);
    color: var(--roven-white);
    font-size: 28px;
    cursor: pointer;
    z-index: 4;
    transition: 0.3s ease;
}

.hero-arrow:hover{
    background: var(--roven-orange);
}

.hero-arrow-left{
    left: 18px;
}

.hero-arrow-right{
    right: 18px;
}

/* DOTS */
.hero-dots{
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 5;
}

.hero-dot{
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-dot.active{
    background: var(--roven-orange);
    transform: scale(1.15);
}

/* LARGE TABLET */
@media (max-width: 991px){
    .hero-slider{
        height: 66vh;
        min-height: 460px;
        max-height: 580px;
    }

    .hero-content h1{
        font-size: 42px;
    }

    .hero-content p{
        font-size: 15px;
        max-width: 680px;
        line-height: 1.7;
    }

    .hero-arrow{
        width: 48px;
        height: 48px;
        font-size: 24px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .hero-slider{
        height: 48vh;
        min-height: 340px;
        max-height: 400px;
    }

    .hero-slide{
        background-position: center center;
    }

    .hero-overlay{
        background:
            linear-gradient(90deg, rgba(17, 20, 24, 0.70) 0%, rgba(17, 20, 24, 0.48) 50%, rgba(17, 20, 24, 0.68) 100%),
            linear-gradient(180deg, rgba(10, 14, 18, 0.52) 0%, rgba(10, 14, 18, 0.66) 100%);
    }

    .hero-slide .container{
        align-items: center;
    }

    .hero-content{
        padding: 0 16px;
        max-width: 100%;
    }

    .hero-subtitle{
        font-size: 10px;
        letter-spacing: 1.2px;
        margin-bottom: 10px;
    }

    .hero-content h1{
        font-size: 24px;
        line-height: 1.16;
        margin-bottom: 12px;
    }

    .hero-content p{
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 18px;
        max-width: 100%;
    }

    .hero-buttons{
        gap: 8px;
    }

    .hero-btn{
        min-width: 130px;
        height: 44px;
        padding: 0 16px;
        font-size: 11px;
    }

    .hero-arrow{
        width: 38px;
        height: 38px;
        font-size: 20px;
        display: none;
    }

    .hero-arrow-left{
        left: 8px;
    }

    .hero-arrow-right{
        right: 8px;
    }

    .hero-dots{
        bottom: 10px;
        gap: 7px;
    }

    .hero-dot{
        width: 9px;
        height: 9px;
    }
}



/* ================= MISSION & VISION ================= */
.mission-vision-section{
    padding: 100px 0;
    background: #ffffff;
}

/* ROW */
.mv-row{
    display: grid;
    grid-template-columns: 1fr 4px 1.4fr;
    align-items: center;
    gap: 30px;
    padding: 40px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 12px 35px rgba(211, 211, 211, 0.08);
}

.mv-row:last-child{
    border-bottom: none;
}

/* LEFT */
.mv-left{
    max-width: 480px;
}

.mv-tag{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--roven-orange);
    margin-bottom: 10px;
}

.mv-left h2{
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--roven-dark);
    margin: 0;
}

/* DIVIDER */
.mv-divider{
    width: 4px;
    height: 100%;
    background: var(--roven-orange);
    border-radius: 4px;
}

/* RIGHT */
.mv-right{
    max-width: 640px;
}

.mv-right p{
    font-size: 17px;
    line-height: 1.9;
    color: #5b6470;
    margin: 0;
}

/* TABLET */
@media (max-width: 991px){
    .mission-vision-section{
        padding: 80px 0;
    }

    .mv-row{
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 30px 0;
    }

    .mv-divider{
        width: 60px;
        height: 3px;
        
    }

    .mv-left h2{
        font-size: 28px;
    }

    .mv-right p{
        font-size: 15px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .mission-vision-section{
        padding: 65px 0;
    }

    .mv-row{
        padding: 25px 0;
         text-align: center;
    }

    .mv-tag{
        font-size: 11px;
        letter-spacing: 1.3px;
    }

    .mv-left h2{
        font-size: 24px;
    }

    .mv-divider{
        width: 50px;
        height: 3px;
        margin: 12px auto; /* THIS centers it */
    }

    .mv-right p{
        font-size: 14px;
        line-height: 1.75;
    }
}


/* ================= SERVICES SECTION ================= */
.services-section{
    padding: 100px 0 90px;
    background: #f8fafc;
}

.section-heading{
    max-width: 850px;
    margin: 0 auto 55px;
    text-align: center;
}

.section-tag{
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    color: var(--roven-orange);
    margin-bottom: 12px;
}

.section-heading h2{
    font-size: 46px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--roven-dark);
    margin-bottom: 18px;
    text-transform: uppercase;
}

.section-heading h2 span{
    color: var(--roven-orange);
}

.section-heading p{
    font-size: 16px;
    line-height: 1.9;
    color: #5b6470;
    max-width: 760px;
    margin: 0 auto;
}

/* GRID */
.services-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* CARD */
.service-card{
    background: var(--roven-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(206, 206, 206, 0.08);
    border: 1px solid rgba(9, 65, 125, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(128, 128, 128, 0.14);
}

/* IMAGE AREA */
.service-image-wrap{
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    transition: transform 0.6s ease;
}

/* ZOOM OUT ON HOVER */
.service-card:hover .service-image-wrap img{
    transform: scale(1);
}

.service-overlay{
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(9, 65, 125, 0.08) 0%, rgba(31, 32, 29, 0.38) 100%);
    transition: 0.35s ease;
}

.service-card:hover .service-overlay{
    background:
        linear-gradient(180deg, rgba(9, 65, 125, 0.02) 0%, rgba(31, 32, 29, 0.18) 100%);
}

/* CONTENT */
.service-content{
    padding: 24px 24px 26px;
}

.service-content h3{
    font-size: 23px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--roven-dark);
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.service-card:hover .service-content h3{
    color: var(--roven-blue);
}

.service-content p{
    font-size: 15px;
    line-height: 1.8;
    color: #5f6874;
    margin: 0;
}

/* TABLET */
@media (max-width: 991px){
    .services-section{
        padding: 85px 0 75px;
    }

    .section-heading{
        margin-bottom: 45px;
    }

    .section-heading h2{
        font-size: 38px;
    }

    .services-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .service-image-wrap{
        height: 230px;
    }

    .service-content h3{
        font-size: 21px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .services-section{
        padding: 70px 0 65px;
    }

    .section-heading{
        margin-bottom: 36px;
    }

    .section-tag{
        font-size: 11px;
        letter-spacing: 1.3px;
        margin-bottom: 10px;
    }

    .section-heading h2{
        font-size: 30px;
        margin-bottom: 14px;
    }

    .section-heading p{
        font-size: 14px;
        line-height: 1.75;
    }

    .services-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-card{
        border-radius: 16px;
    }

    .service-image-wrap{
        height: 220px;
    }

    .service-content{
        padding: 20px 18px 22px;
    }

    .service-content h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .service-content p{
        font-size: 14px;
        line-height: 1.75;
    }
}






/* ================= PROJECTS SECTION ================= */
.projects-section{
    padding: 100px 0 90px;
    background: #f5f7fb;
}

/* GRID */
.projects-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

/* CARD */
.project-card{
    background: var(--roven-white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(206, 206, 206, 0.08);
    border: 1px solid rgba(9, 65, 125, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.project-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(128, 128, 128, 0.14);
}

/* IMAGE AREA */
.project-image-wrap{
    position: relative;
    height: 260px;
    overflow: hidden;
}

.project-image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.12);
    transition: transform 0.6s ease;
}

/* ZOOM OUT ON HOVER */
.project-card:hover .project-image-wrap img{
    transform: scale(1);
}

.project-overlay{
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 65, 125, 0.2) 0%, rgba(31, 32, 29, 0.5) 100%);
    transition: 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
}

.project-card:hover .project-overlay{
    opacity: 1;
    background: linear-gradient(180deg, rgba(9, 65, 125, 0.1) 0%, rgba(31, 32, 29, 0.35) 100%);
}

.project-info{
    color: var(--roven-white);
}

.project-info h3{
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--roven-white);
}

.project-info p{
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* CONTENT */
.project-content{
    padding: 24px 24px 26px;
}

.project-content h3{
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
    color: var(--roven-dark);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.project-card:hover .project-content h3{
    color: var(--roven-orange);
}

.project-category{
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--roven-orange);
    letter-spacing: 0.6px;
    margin-bottom: 10px !important;
}

.project-content p{
    font-size: 14px;
    line-height: 1.75;
    color: #5f6874;
    margin: 0 0 14px 0;
}

.project-meta{
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 12px;
    color: #888;
}

.project-meta span{
    display: flex;
    align-items: center;
    gap: 6px;
}

.project-meta i{
    color: var(--roven-orange);
    font-size: 11px;
}

/* TABLET */
@media (max-width: 991px){
    .projects-section{
        padding: 85px 0 75px;
    }

    .projects-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .project-image-wrap{
        height: 240px;
    }

    .project-content h3{
        font-size: 20px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .projects-section{
        padding: 70px 0 60px;
    }

    .projects-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card{
        border-radius: 16px;
    }

    .project-image-wrap{
        height: 220px;
    }

    .project-content{
        padding: 20px 18px 22px;
    }

    .project-content h3{
        font-size: 19px;
        margin-bottom: 6px;
    }

    .project-content p{
        font-size: 13px;
        line-height: 1.7;
    }

    .project-meta{
        gap: 15px;
        font-size: 11px;
    }
}




/* ================= WHY CHOOSE US ================= */
.why-choose-section{
    padding: 100px 0 90px;
    background: #ffffff;
}

.why-choose-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 10px;
}

.why-card{
    background: #f8fafc;
    border: 1px solid rgba(9, 65, 125, 0.07);
    border-radius: 18px;
    padding: 32px 26px;
    box-shadow: 0 12px 30px rgba(13, 26, 38, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    text-align: center;
}

.why-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(13, 26, 38, 0.10);
    border-color: rgba(231, 90, 0, 0.22);
}

.why-icon-box{
    width: 72px;
    height: 72px;
    margin: 0 auto 20px;
    border-radius: 18px;
    background: rgba(9, 65, 125, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.35s ease;
}

.why-card:hover .why-icon-box{
    background: rgba(231, 90, 0, 0.10);
    transform: scale(1.06);
}

.why-icon-box i{
    font-size: 28px;
    color: var(--roven-orange);
}

.why-card h3{
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: var(--roven-dark);
    margin-bottom: 14px;
    transition: color 0.3s ease;
}

.why-card:hover h3{
    color: var(--roven-blue);
}

.why-card p{
    font-size: 15px;
    line-height: 1.85;
    color: #5f6874;
    margin: 0;
}

/* TABLET */
@media (max-width: 991px){
    .why-choose-section{
        padding: 85px 0 75px;
    }

    .why-choose-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
    }

    .why-card{
        padding: 28px 22px;
    }

    .why-card h3{
        font-size: 22px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .why-choose-section{
        padding: 70px 0 65px;
    }

    .why-choose-grid{
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-card{
        padding: 24px 18px;
        border-radius: 16px;
    }

    .why-icon-box{
        width: 64px;
        height: 64px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .why-icon-box i{
        font-size: 24px;
    }

    .why-card h3{
        font-size: 20px;
        margin-bottom: 10px;
    }

    .why-card p{
        font-size: 14px;
        line-height: 1.75;
    }
}



/* ================= CORE TEAM ================= */
.core-team-section{
    padding: 100px 0 90px;
    background: #f8fafc;
}

.team-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
    margin-top: 10px;
}

/* CARD */
.team-card{
    background: var(--roven-white);
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    border: 1px solid rgba(9, 65, 125, 0.06);
    box-shadow: 0 10px 28px rgba(13, 26, 38, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.team-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(13, 26, 38, 0.10);
}

/* ICON */
.team-icon{
    width: 70px;
    height: 70px;
    margin: 0 auto 18px;
    border-radius: 18px;
    background: rgba(9, 65, 125, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease;
}

.team-card:hover .team-icon{
    background: rgba(231, 90, 0, 0.12);
    transform: scale(1.05);
}

.team-icon i{
    font-size: 26px;
    color: var(--roven-orange);
}

/* TEXT */
.team-card h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--roven-dark);
    margin-bottom: 10px;
}

.team-card p{
    font-size: 14px;
    line-height: 1.8;
    color: #5f6874;
    margin: 0;
}

/* TABLET */
@media (max-width: 991px){
    .core-team-section{
        padding: 85px 0 75px;
    }

    .team-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .team-card{
        padding: 26px 20px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .core-team-section{
        padding: 70px 0 65px;
    }

    .team-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .team-card{
        padding: 24px 18px;
        border-radius: 16px;
    }

    .team-icon{
        width: 60px;
        height: 60px;
        border-radius: 14px;
    }

    .team-icon i{
        font-size: 22px;
    }

    .team-card h3{
        font-size: 18px;
    }

    .team-card p{
        font-size: 13px;
        line-height: 1.7;
    }
}





/* ================= FLOATING ACTIONS ================= */
.floating-actions{
    position: fixed;
    right: 18px;
    bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
}

.floating-btn{
    width: 56px;
    height: 56px;
    border: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(13, 26, 38, 0.18);
    transition: all 0.3s ease;
    position: relative;
}

.floating-btn:hover{
    transform: translateY(-4px) scale(1.03);
}

/* WhatsApp */
.whatsapp-float{
    background: #25D366;
    color: #ffffff;
}

.whatsapp-float i{
    font-size: 24px;
    color: #ffffff;
}

.whatsapp-float:hover{
    background: #1ebe5d;
}

.float-flag{
    position: absolute;
    top: -6px;
    right: -6px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--roven-orange);
    color: #ffffff;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(231, 90, 0, 0.28);
}

/* Scroll To Top */
.scroll-top-btn{
    background: var(--roven-blue);
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(12px);
}

.scroll-top-btn i{
    font-size: 20px;
    color: #ffffff;
}

.scroll-top-btn.show{
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.scroll-top-btn:hover{
    background: var(--roven-orange);
}

/* MOBILE */
@media (max-width: 767px){
    .floating-actions{
        right: 12px;
        bottom: 12px;
        gap: 10px;
    }

    .floating-btn{
        width: 50px;
        height: 50px;
        border-radius: 14px;
    }

    .whatsapp-float i{
        font-size: 22px;
    }

    .scroll-top-btn i{
        font-size: 18px;
    }

    .float-flag{
        min-width: 22px;
        height: 22px;
        font-size: 9px;
        top: -5px;
        right: -5px;
    }
}



/* ================= CONTACT SECTION ================= */
.contact-section{
    padding: 100px 0 90px;
    background: #ffffff;
}

.contact-grid{
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 32px;
    align-items: start;
    margin-top: 10px;
}

/* LEFT INFO CARD */
.contact-info-card{
    background: #f8fafc;
    border: 1px solid rgba(9, 65, 125, 0.07);
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 12px 35px rgba(207, 207, 207, 0.05);
}

.contact-mini-tag{
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: var(--roven-orange);
    margin-bottom: 12px;
}

.contact-info-card h3{
    font-size: 34px;
    line-height: 1.2;
    font-weight: 800;
    color: var(--roven-dark);
    margin-bottom: 14px;
}

.contact-info-card > p{
    font-size: 15px;
    line-height: 1.85;
    color: #5f6874;
    margin-bottom: 28px;
}

.contact-info-list{
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-info-item{
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 0;
    border-top: 1px solid rgba(9, 65, 125, 0.07);
}

.contact-info-item:first-child{
    border-top: none;
    padding-top: 0;
}

.contact-info-icon{
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: rgba(9, 65, 125, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i{
    font-size: 20px;
    color: var(--roven-orange);
}

.contact-info-text span{
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #6a7380;
    margin-bottom: 5px;
}

.contact-info-text a,
.contact-info-text p{
    font-size: 16px;
    line-height: 1.7;
    color: var(--roven-dark);
    text-decoration: none;
    margin: 0;
    transition: 0.3s ease;
    word-break: break-word;
}

.contact-info-text a:hover{
    color: var(--roven-orange);
}

/* FORM CARD */
.contact-form-card{
    background: #f8fafc;
    border: 1px solid rgba(9, 65, 125, 0.07);
    border-radius: 22px;
    padding: 34px 28px;
    box-shadow: 0 12px 35px rgba(207, 207, 207, 0.05);
}

.contact-form{
    margin-bottom: 28px;
}

.form-row{
    display: block;
    margin-bottom: 18px;
}

.form-row.two-col{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.form-group label{
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--roven-dark);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea{
    width: 100%;
    border: 1px solid rgba(9, 65, 125, 0.10);
    background: #ffffff;
    border-radius: 14px;
    padding: 15px 16px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: var(--roven-dark);
    outline: none;
    transition: 0.3s ease;
}

.form-group textarea{
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
    border-color: rgba(231, 90, 0, 0.42);
    box-shadow: 0 0 0 4px rgba(231, 90, 0, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder{
    color: #8a93a0;
}

.form-submit-wrap{
    margin-top: 6px;
}

.contact-submit-btn{
    min-width: 180px;
    height: 54px;
    padding: 0 28px;
    border: none;
    border-radius: 14px;
    background: var(--roven-orange);
    color: var(--roven-white);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-submit-btn:hover{
    background: var(--roven-blue);
    transform: translateY(-2px);
}

/* ALT CONTACT BOX */
.contact-alt-box{
    border-top: 1px solid rgba(9, 65, 125, 0.08);
    padding-top: 22px;
}

.contact-alt-box h4{
    font-size: 22px;
    font-weight: 700;
    color: var(--roven-dark);
    margin-bottom: 10px;
}

.contact-alt-box p{
    font-size: 14px;
    line-height: 1.8;
    color: #606976;
    margin-bottom: 18px;
}

.contact-alt-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-alt-btn{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.contact-alt-btn i{
    font-size: 16px;
}

.alt-call{
    background: rgba(9, 65, 125, 0.08);
    color: var(--roven-blue);
}

.alt-call:hover{
    background: var(--roven-blue);
    color: var(--roven-white);
}

.alt-whatsapp{
    background: rgba(37, 211, 102, 0.12);
    color: #159947;
}

.alt-whatsapp:hover{
    background: #25D366;
    color: #ffffff;
}

.alt-email{
    background: rgba(231, 90, 0, 0.10);
    color: var(--roven-orange);
}

.alt-email:hover{
    background: var(--roven-orange);
    color: var(--roven-white);
}

/* TABLET */
@media (max-width: 991px){
    .contact-section{
        padding: 85px 0 75px;
    }

    .contact-grid{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-info-card h3{
        font-size: 30px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .contact-section{
        padding: 70px 0 65px;
    }

    .contact-info-card,
    .contact-form-card{
        padding: 24px 18px;
        border-radius: 18px;
    }

    .contact-info-card h3{
        font-size: 25px;
    }

    .contact-info-card > p{
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 22px;
    }

    .contact-info-item{
        gap: 12px;
        padding: 14px 0;
    }

    .contact-info-icon{
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 12px;
    }

    .contact-info-icon i{
        font-size: 18px;
    }

    .contact-info-text a,
    .contact-info-text p{
        font-size: 14px;
    }

    .form-row.two-col{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .form-group label{
        font-size: 13px;
    }

    .contact-mini-tag{
        justify-content: center;
        align-items: center;
        
    }

    .form-group input,
    .form-group select,
    .form-group textarea{
        padding: 14px 14px;
        font-size: 14px;
        border-radius: 12px;
    }

    .contact-submit-btn{
        width: 100%;
        min-width: 100%;
        height: 50px;
        border-radius: 12px;
        font-size: 13px;
    }

    .contact-alt-box h4{
        font-size: 19px;
    }

    .contact-alt-box p{
        font-size: 13px;
        line-height: 1.75;
    }

    .contact-alt-actions{
        flex-direction: column;
    }

    .contact-alt-btn{
        width: 100%;
        justify-content: center;
        border-radius: 12px;
        font-size: 13px;
    }
}


/* ================= FOOTER ================= */
.site-footer{
    background: var(--roven-dark);
    color: rgba(249, 250, 251, 0.88);
    padding: 85px 0 0;
}

.footer-grid{
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr 1fr;
    gap: 34px;
    padding-bottom: 38px;
}

.footer-col h3{
    font-size: 20px;
    font-weight: 700;
    color: var(--roven-white);
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after{
    content: "";
    display: block;
    width: 42px;
    height: 3px;
    background: var(--roven-orange);
    margin-top: 10px;
    border-radius: 3px;
}

.footer-logo{
    display: inline-block;
    margin-bottom: 18px;
}

.footer-logo img{
    height: 72px;
    width: auto;
    display: block;
}

.footer-about{
    font-size: 15px;
    line-height: 1.9;
    color: rgba(249, 250, 251, 0.75);
    margin-bottom: 22px;
    max-width: 360px;
}

.footer-socials{
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-socials a{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: rgba(255,255,255,0.06);
    color: var(--roven-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 16px;
}

.footer-socials a:hover{
    background: var(--roven-orange);
    color: var(--roven-white);
    transform: translateY(-4px);
}

.footer-links,
.footer-contact{
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li{
    margin-bottom: 14px;
}

.footer-links li:last-child,
.footer-contact li:last-child{
    margin-bottom: 0;
}

.footer-links a{
    text-decoration: none;
    color: rgba(249, 250, 251, 0.75);
    font-size: 15px;
    line-height: 1.8;
    transition: 0.3s ease;
}

.footer-links a:hover{
    color: var(--roven-orange);
    padding-left: 4px;
}

.footer-contact li{
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(249, 250, 251, 0.75);
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact li i{
    color: var(--roven-orange);
    font-size: 16px;
    margin-top: 5px;
    min-width: 16px;
}

.footer-contact a{
    text-decoration: none;
    color: rgba(249, 250, 251, 0.75);
    transition: 0.3s ease;
    word-break: break-word;
}

.footer-contact a:hover{
    color: var(--roven-orange);
}

.footer-bottom{
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0 24px;
    text-align: center;
}

.footer-bottom p{
    margin: 0;
    font-size: 14px;
    color: rgba(249, 250, 251, 0.65);
}

/* TABLET */
@media (max-width: 991px){
    .site-footer{
        padding: 70px 0 0;
    }

    .footer-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px;
    }

    .footer-logo img{
        height: 66px;
    }
}

/* MOBILE */
@media (max-width: 767px){
    .site-footer{
        padding: 60px 0 0;
    }

    .footer-grid{
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 30px;
    }

    .footer-col h3{
        font-size: 18px;
        margin-bottom: 16px;
    }

    .footer-logo img{
        height: 60px;
    }

    .footer-about{
        font-size: 14px;
        line-height: 1.8;
        max-width: 100%;
    }

    .footer-links a,
    .footer-contact li{
        font-size: 14px;
    }

    .footer-bottom{
        padding: 18px 0 22px;
    }

    .footer-bottom p{
        font-size: 13px;
        line-height: 1.7;
    }
}

.contact-submit-btn:disabled{
    cursor: wait;
    opacity: 0.7;
}

.form-honeypot{
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.form-status{
    display: none;
    margin: 16px 0 0;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

.form-status.success,
.form-status.error{
    display: block;
}

.form-status.success{
    color: #176b35;
    background: #eaf8ef;
    border: 1px solid #a9dfba;
}

.form-status.error{
    color: #9b1c1c;
    background: #fff0f0;
    border: 1px solid #efb4b4;
}
