:root {
    --orange: #ff6b21;
    --orange2: #ff8b3d;
    --dark: #0b1118;
    --charcoal: #121923;
    --muted: #667085;
    --light: #f7f3ef;
    --white: #fff;
    --border: rgba(255, 255, 255, .14);
    --shadow: 0 24px 70px rgba(0, 0, 0, .16)
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: Manrope, sans-serif;
    color: var(--charcoal);
    background: #fff;
    line-height: 1.65
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    display: block
}

.container {
    width: min(1180px, 92%);
    margin: auto
}

.top-bar {
    background: #070b10;
    color: #cfd6df;
    font-size: 13px;
    padding: 8px 0
}

.top-wrap {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    flex-wrap: wrap
}

.top-wrap i {
    color: var(--orange);
    margin-right: 6px
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, .9);
    backdrop-filter: blur(14px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, .06)
}

.nav-wrap {
    height: 125px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--orange), #111);
    display: grid;
    place-items: center;
    color: #fff;
    font-family: Oswald;
    font-weight: 700
}

.brand strong {
    display: block;
    font-weight: 800
}

.brand small {
    font-size: 12px;
    color: var(--muted)
}

.nav-menu {
    display: flex;
    gap: 28px;
    font-size: 14px;
    font-weight: 700
}

.nav-menu a {
    position: relative
}

.nav-menu a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: .3s
}

.nav-menu a:hover:after {
    width: 100%
}

.nav-cta,
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 13px 22px;
    font-weight: 800;
    font-size: 14px;
    transition: .3s
}

.nav-cta,
.btn-primary {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 12px 28px rgba(255, 107, 33, .28)
}

.nav-cta:hover,
.btn-primary:hover {
    transform: translateY(-3px);
    background: #e95712
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, .55);
    color: #fff
}

.btn-outline:hover {
    background: #fff;
    color: #111
}

.menu-btn {
    display: none;
    background: none;
    border: 0;
    font-size: 24px
}

.hero {
    min-height: 830px;
    position: relative;
    color: #fff;
    overflow: hidden;
    padding-top: 120px
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../image/slider.jpg') center/cover no-repeat;
    transform: scale(1.04)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 8, 12, .92), rgba(5, 8, 12, .72), rgba(5, 8, 12, .25))
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.1fr .55fr;
    gap: 40px;
    align-items: center
}

.eyebrow,
.section-label {
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--orange);
    font-size: 12px;
    font-weight: 900
}

.hero h1,
.section h2 {
    font-family: Oswald, sans-serif;
    text-transform: uppercase;
    line-height: 1.05
}

.hero h1 {
    font-size: clamp(48px, 7vw, 92px);
    max-width: 820px;
    margin: 18px 0
}

.hero p {
    font-size: 18px;
    max-width: 650px;
    color: #dce3ea
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin-top: 32px;
    flex-wrap: wrap
}

.hero-card {
    align-self: end;
    background: rgba(255, 255, 255, .12);
    border: 1px solid var(--border);
    backdrop-filter: blur(18px);
    border-radius: 28px;
    padding: 30px;
    box-shadow: var(--shadow)
}

.hero-card h3 {
    font-size: 28px;
    margin-bottom: 8px
}

.hero-card a {
    margin-top: 20px;
    color: var(--orange);
    display: inline-flex;
    gap: 8px;
    font-weight: 900
}

.stats-strip {
    position: relative;
    margin-top: 95px;
    background: #fff;
    color: #111;
    border-radius: 26px;
    padding: 30px;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stats-strip div {
    text-align: center;
    border-right: 1px solid #e8e8e8
}

.stats-strip div:last-child {
    border-right: 0
}

.stats-strip strong {
    font-family: Oswald;
    font-size: 44px;
    color: var(--orange);
    display: block
}

.stats-strip strong:after {
    content: "+"
}

.stats-strip span {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
    color: #59606b
}

.trust-section {
    padding: 24px 0;
    background: #f8f8f8;
    border-bottom: 1px solid #eee
}

.trust-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.trust-wrap > span {
    font-weight: 800
}

.trust-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.trust-badges b {
    padding: 9px 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 999px;
    font-size: 13px
}

.section {
    padding: 110px 0
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 55px
}

.section h2 {
    font-size: clamp(34px, 4vw, 56px);
    margin: 12px 0
}

.section-head p,
.section-copy p {
    color: var(--muted)
}

.about-grid,
.why-grid,
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center
}

.about-images {
    position: relative
}

.about-images img {
    height: 560px;
    width: 100%;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow)
}

.experience-box {
    position: absolute;
    right: -24px;
    bottom: 36px;
    background: #fff;
    border-radius: 24px;
    padding: 24px 30px;
    box-shadow: var(--shadow)
}

.experience-box strong {
    font-family: Oswald;
    font-size: 54px;
    color: var(--orange);
    display: block;
    line-height: 1
}

.tick-list {
    margin: 24px 0
}

.tick-list p {
    margin: 10px 0;
    color: #242b35
}

.tick-list i {
    color: var(--orange);
    margin-right: 8px
}

.services {
    background: var(--light)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.service-card {
    background: #fff;
    padding: 34px;
    border-radius: 28px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
    border: 1px solid #eee;
    transition: .35s
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: rgba(255, 107, 33, .35)
}

.service-card i {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    background: rgba(255, 107, 33, .1);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 26px;
    margin-bottom: 24px
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 10px
}

.service-card p {
    color: var(--muted);
    font-size: 15px
}

.dark {
    background: var(--dark);
    color: #fff
}

.dark p {
    color: #cbd2da
}

.why-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.why-list div {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    padding: 26px;
    border-radius: 24px
}

.why-list i {
    color: var(--orange);
    font-size: 28px;
    margin-bottom: 14px
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 230px;
    gap: 18px
}

.project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #111
}

.project-card.large {
    grid-column: span 2;
    grid-row: span 2
}

.project-card.wide {
    grid-column: span 2
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
    opacity: .82
}

.project-card:hover img {
    transform: scale(1.08);
    opacity: .62
}

.project-card div {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 22px;
    color: #fff
}

.project-card h3 {
    font-size: 22px
}

.project-card span {
    color: var(--orange);
    font-weight: 900
}

.process {
    background: #fff
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.process-step {
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .05)
}

.process-step span {
    font-family: Oswald;
    font-size: 42px;
    color: var(--orange)
}

.clients {
    background: var(--light)
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px
}

.client-grid span {
    background: #fff;
    border: 1px dashed rgba(255, 107, 33, .5);
    border-radius: 18px;
    min-height: 90px;
    display: grid;
    place-items: center;
    font-weight: 900;
    text-align: center;
    padding: 15px
}

.narrow {
    max-width: 900px
}

.faq-item {
    border: 1px solid #eee;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    background: #fff
}

.faq-item button {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 20px;
    text-align: left;
    font-weight: 900;
    display: flex;
    justify-content: space-between;
    cursor: pointer
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: .3s
}

.faq-content p {
    padding: 0 20px 20px;
    color: var(--muted)
}

.faq-item.active .faq-content {
    max-height: 160px
}

.faq-item.active button {
    color: var(--orange)
}

.contact {
    background: #f8f9fb
}

.contact-info {
    margin-top: 26px
}

.contact-info p {
    margin: 12px 0
}

.contact-info i {
    color: var(--orange);
    margin-right: 10px
}

.contact-form {
    background: #fff;
    padding: 34px;
    border-radius: 28px;
    box-shadow: var(--shadow);
    display: grid;
    gap: 16px
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid #e3e6ea;
    border-radius: 14px;
    padding: 15px;
    font: inherit;
    outline: none
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--orange)
}

.footer {
    background: #070b10;
    color: #d7dde5;
    padding-top: 70px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px
}

.footer h3,
.footer h4 {
    color: #fff;
    margin-bottom: 18px
}

.footer a {
    display: block;
    margin: 8px 0;
    color: #bac3ce
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .09);
    margin-top: 50px;
    padding: 20px;
    color: #87909c;
    font-size: 13px
}

.whatsapp {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 30px;
    z-index: 999;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25)
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: .8s ease
}

.reveal.show {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .12s
}

.delay-2 {
    transition-delay: .22s
}

.delay-3 {
    transition-delay: .32s
}

@media(max-width:980px) {

    .nav-menu,
    .nav-cta {
        display: none
    }

    .menu-btn {
        display: block
    }

    .nav-menu.active {
        display: flex;
        position: absolute;
        top: 78px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 24px;
        width: 100%;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .1)
    }

    .hero {
        min-height: auto;
        padding: 90px 0 60px
    }

    .hero-grid,
    .about-grid,
    .why-grid,
    .contact-grid {
        grid-template-columns: 1fr
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr
    }

    .stats-strip div:nth-child(2) {
        border-right: 0
    }

    .service-grid {
        grid-template-columns: 1fr 1fr
    }

    .project-grid {
        grid-template-columns: 1fr 1fr
    }

    .project-card.large,
    .project-card.wide {
        grid-column: span 1;
        grid-row: span 1
    }

    .process-grid,
    .client-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-images img {
        height: 420px
    }

    .experience-box {
        right: 18px
    }
}

@media(max-width:640px) {
    .top-wrap {
        justify-content: center;
        font-size: 12px
    }

    .brand small {
        display: none
    }

    .hero h1 {
        font-size: 46px
    }

    .hero-card {
        display: none
    }

    .stats-strip,
    .service-grid,
    .project-grid,
    .process-grid,
    .client-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .stats-strip div {
        border-right: 0;
        border-bottom: 1px solid #eee;
        padding-bottom: 14px
    }

    .stats-strip div:last-child {
        border-bottom: 0
    }

    .section {
        padding: 75px 0
    }

    .why-list {
        grid-template-columns: 1fr
    }

    .hero-actions .btn {
        width: 100%
    }

    .experience-box {
        position: static;
        margin-top: 18px
    }

    .about-images img {
        height: 320px
    }
}

/* About Page */
.inner-hero {
    position: relative;
    min-height: 390px;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
    background: #111
}

.about-hero {
    background: url('https://images.unsplash.com/photo-1581094480465-4e6c25fb4a52?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat
}

.inner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(5, 8, 12, .9), rgba(5, 8, 12, .62), rgba(5, 8, 12, .22))
}

.inner-content {
    position: relative;
    padding-top: 20px
}

.inner-content h1 {
    font-family: Oswald, sans-serif;
    font-size: clamp(44px, 6vw, 78px);
    line-height: 1;
    text-transform: uppercase;
    margin: 14px 0
}

.inner-content p {
    max-width: 680px;
    color: #e5eaf0;
    font-size: 18px
}

.about-page-grid {
    align-items: center
}

.about-showcase {
    position: relative
}

.showcase-main {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 34px;
    box-shadow: var(--shadow)
}

.showcase-card {
    position: absolute;
    left: -28px;
    bottom: 34px;
    background: #fff;
    border-radius: 24px;
    padding: 24px 28px;
    box-shadow: var(--shadow);
    max-width: 220px
}

.showcase-card strong {
    display: block;
    font-family: Oswald;
    font-size: 58px;
    color: var(--orange);
    line-height: 1
}

.showcase-card span {
    font-weight: 900;
    color: #111
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0
}

.about-bullets span {
    background: #f8f3ef;
    border: 1px solid #f0e4da;
    border-radius: 14px;
    padding: 12px 14px;
    font-weight: 800;
    font-size: 14px
}

.about-bullets i {
    color: var(--orange);
    margin-right: 8px
}

.mission-section {
    background: var(--light)
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.mission-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 38px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .06)
}

.mission-icon {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    background: rgba(255, 107, 33, .12);
    color: var(--orange);
    display: grid;
    place-items: center;
    font-size: 28px;
    margin-bottom: 22px
}

.mission-card h3,
.certificate-card h3,
.team-card h3 {
    font-size: 23px;
    margin-bottom: 10px
}

.mission-card p,
.certificate-card p,
.team-card p {
    color: var(--muted)
}

.excellence-grid {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 60px;
    align-items: center
}

.excellence-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.excellence-list div {
    background: rgba(255, 255, 255, .07);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 26px
}

.excellence-list i {
    color: var(--orange);
    font-size: 28px;
    margin-bottom: 14px
}

.certificate-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px
}

.certificate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 30px;
    padding: 38px;
    text-align: center;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .06);
    transition: .35s
}

.certificate-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 33, .4)
}

.certificate-card i {
    font-size: 46px;
    color: var(--orange);
    margin-bottom: 20px
}

.team-section {
    background: var(--light)
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.team-card {
    text-align: center;
    background: #fff;
    border-radius: 30px;
    padding: 36px 26px;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .05);
    border: 1px solid #eee
}

.team-avatar {
    width: 135px;
    height: 135px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #fff, #f1e8e1);
    display: grid;
    place-items: center;
    font-size: 56px;
    color: var(--orange);
    border: 1px solid #eee
}

.about-cta-section {
    background: #fff
}

.about-cta {
    border-radius: 36px;
    overflow: hidden;
    background: linear-gradient(90deg, rgba(8, 12, 18, .9), rgba(8, 12, 18, .68)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
    color: #fff;
    padding: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    box-shadow: var(--shadow)
}

.about-cta h2 {
    font-family: Oswald, sans-serif;
    font-size: clamp(34px, 4vw, 54px);
    line-height: 1.05;
    text-transform: uppercase;
    margin: 10px 0
}

.about-cta p {
    color: #dce3ea;
    max-width: 700px
}

@media(max-width:980px) {

    .mission-grid,
    .excellence-grid {
        grid-template-columns: 1fr
    }

    .certificate-grid,
    .team-grid {
        grid-template-columns: 1fr 1fr
    }

    .about-bullets {
        grid-template-columns: 1fr
    }

    .showcase-main {
        height: 430px
    }

    .showcase-card {
        left: 20px
    }

    .about-cta {
        flex-direction: column;
        align-items: flex-start
    }
}

@media(max-width:640px) {
    .inner-hero {
        min-height: 320px
    }

    .certificate-grid,
    .team-grid,
    .excellence-list {
        grid-template-columns: 1fr
    }

    .showcase-main {
        height: 330px
    }

    .showcase-card {
        position: static;
        margin-top: 18px
    }

    .mission-card,
    .certificate-card,
    .team-card {
        padding: 28px
    }

    .about-cta {
        padding: 34px 24px;
        border-radius: 26px
    }
}

a.brand img {
    width: 200px;
}
.dropdown{
    position:relative;
}

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:280px;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
    border-radius:10px;
    padding:10px 0;
    list-style:none;
    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:all .3s ease;
    z-index:999;
}

.dropdown-menu li{
    list-style:none;
}

.dropdown-menu li a{
    display:block;
    padding:12px 20px;
    color:#222;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.dropdown-menu li a:hover{
    background:#f97316;
    color:#fff;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}
@media(max-width:992px){

    .dropdown-menu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        display:none;
        box-shadow:none;
        border:1px solid #eee;
        margin-top:10px;
    }

    .dropdown-menu.active{
        display:block;
    }

}