* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Outfit', sans-serif;
    background: #f8fbff;
    color: #172033;
    overflow-x: hidden
}

a {
    text-decoration: none;
    color: inherit
}

.section {
    padding: 100px 7%
}

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1002;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    padding: 9px 7%;
    background: #061827;
    color: #eaffff;
    font-size: 14px
}

.top-bar i {
    color: #fbbf24;
    margin-right: 7px
}

.main-header {
    position: fixed;
    top: 42px;
    left: 50%;
    transform: translateX(-50%);
    width: 88%;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: rgba(255, 255, 255, .86);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .75);
    border-radius: 24px;
    box-shadow: 0 18px 55px rgba(8, 47, 73, .18)
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #082f49
}

.log strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 27px;
    letter-spacing: 2px;
    line-height: .9
}

.log small {
    font-weight: 800;
    color: #15803d;
    font-size: 12px;

}



.logo strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 27px;
    letter-spacing: 2px;
    line-height: .9
}

.logo small {
    font-weight: 800;
    color: #15803d;
    font-size: 12px;
}

.navbar {
    display: flex;
    gap: 21px
}

.navbar a {
    font-size: 15px;
    font-weight: 800;
    color: #18364f;
    position: relative
}

.navbar a:after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -9px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24, #22c55e);
    border-radius: 10px;
    transition: .35s;
    transform: translateX(-50%)
}

.navbar a:hover:after {
    width: 100%
}

.quote-btn,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: none;
    background: linear-gradient(135deg, #f59e0b, #f97316);
    color: #fff;
    padding: 13px 24px;
    border-radius: 16px;
    font-weight: 900;
    box-shadow: 0 14px 32px rgba(249, 115, 22, .30);
    cursor: pointer;
    transition: .35s
}

.quote-btn:hover,
.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 46px rgba(249, 115, 22, .42)
}

.menu-btn {
    display: none;
    border: 0;
    background: #082f49;
    color: white;
    width: 46px;
    height: 46px;
    border-radius: 15px;
    font-size: 19px
}

.hero {
    height: 100vh;
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 125px 7% 60px;
    overflow: hidden
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.08);
    transition: 1.5s ease
}

.slide.active {
    opacity: 1;
    transform: scale(1)
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 17, 31, .95) 0%, rgba(8, 47, 73, .74) 52%, rgba(8, 47, 73, .18) 100%)
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    color: white
}

.tag,
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, .16);
    color: #fbbf24;
    padding: 10px 18px;
    border: 1px solid rgba(251, 191, 36, .30);
    border-radius: 50px;
    font-weight: 900;
    margin-bottom: 18px
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 74px;
    line-height: 1.02;
    letter-spacing: -2px;
    margin-bottom: 20px
}

.hero p {
    font-size: 19px;
    line-height: 1.8;
    color: #e7f8ff;
    max-width: 680px;
    margin-bottom: 34px
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.light-btn {
    display: inline-flex;
    padding: 13px 24px;
    border-radius: 16px;
    color: white;
    border: 1px solid rgba(255, 255, 255, .48);
    font-weight: 900;
    transition: .35s;
    backdrop-filter: blur(10px)
}

.light-btn:hover {
    background: white;
    color: #082f49;
    transform: translateY(-4px)
}

.hero-panel {
    position: absolute;
    right: 7%;
    bottom: 12%;
    z-index: 2;
    width: 260px;
    padding: 26px;
    border-radius: 30px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(18px);
    color: white
}

.hero-panel h3 {
    font-family: 'Space Grotesk';
    font-size: 26px;
    margin-bottom: 8px
}

.hero-panel p {
    color: #dff7ff;
    line-height: 1.6
}

.hero-panel div {
    margin-top: 18px;
    background: #fbbf24;
    color: #082f49;
    border-radius: 20px;
    padding: 18px
}

.hero-panel b {
    display: block;
    font-size: 34px
}

.about {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 70px;
    align-items: center;
    background: radial-gradient(circle at 12% 20%, #dff7ff, transparent 28%), linear-gradient(135deg, #ffffff, #f0fdf4)
}

.about-content h2,
.section-title h2,
.choose-content h2,
.contact-details h2,
.cta h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 50px;
    line-height: 1.08;
    color: #082f49;
    margin-bottom: 18px;
    letter-spacing: -1px
}

.about-content p,
.section-title p,
.contact-details p {
    color: #5e7183;
    line-height: 1.85;
    font-size: 17px;
    margin-bottom: 25px
}

.about-points {
    display: grid;
    gap: 14px
}

.about-points div {
    background: white;
    padding: 18px 20px;
    border-radius: 19px;
    display: flex;
    gap: 13px;
    align-items: center;
    font-weight: 800;
    box-shadow: 0 14px 35px rgba(8, 47, 73, .08)
}

.about-points i {
    color: #22c55e
}

.about-gallery {
    position: relative;
    min-height: 560px
}

.about-gallery img {
    object-fit: cover;
    box-shadow: 0 25px 70px rgba(8, 47, 73, .20)
}

.about-main {
    position: absolute;
    right: 0;
    top: 0;
    width: 78%;
    height: 450px;
    border-radius: 40px
}

.about-small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 52%;
    height: 300px;
    border-radius: 34px;
    border: 12px solid white
}

.experience-card {
    position: absolute;
    right: 35px;
    bottom: 25px;
    background: #082f49;
    color: white;
    padding: 25px 30px;
    border-radius: 26px;
    box-shadow: 0 18px 45px rgba(8, 47, 73, .25)
}

.experience-card strong {
    display: block;
    color: #fbbf24;
    font-size: 40px;
    font-family: 'Space Grotesk'
}

.stats {
    padding: 75px 7%;
    background: linear-gradient(135deg, #031827, #0c4a6e);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 23px;
    position: relative
}

.stats:before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(251, 191, 36, .25) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: .35
}

.stat-card {
    position: relative;
    background: linear-gradient(180deg, rgba(255, 255, 255, .15), rgba(255, 255, 255, .06));
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 30px;
    padding: 38px 25px;
    text-align: center;
    color: white;
    transition: .35s;
    overflow: hidden
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .18)
}

.stat-card i {
    font-size: 42px;
    color: #fbbf24;
    margin-bottom: 18px
}

.stat-card h3 {
    font-family: 'Space Grotesk';
    font-size: 54px
}

.stat-card p {
    color: #dff7ff;
    font-weight: 800
}

.section-title {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 58px
}

.services {
    background: linear-gradient(135deg, #f8fbff, #fff7ed)
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.service-card {
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8, 47, 73, .10);
    transition: .4s;
    border: 1px solid #eaf2f8
}

.service-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 75px rgba(8, 47, 73, .18)
}

.service-card img {
    width: 100%;
    height: 300PX;
    object-fit: cover;
    transition: .5s
}

.service-card:hover img {
    transform: scale(1.08)
}

.service-body {
    padding: 28px
}

.service-body i {
    width: 62px;
    height: 62px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #22c55e, #0ea5e9);
    color: white;
    font-size: 26px;
    margin-top: -60px;
    margin-bottom: 18px;
    position: relative;
    box-shadow: 0 15px 30px rgba(14, 165, 233, .25)
}

.service-body h3 {
    font-family: 'Space Grotesk';
    font-size: 27px;
    color: #082f49;
    margin-bottom: 10px
}

.service-body p {
    color: #5e7183;
    line-height: 1.75;
    margin-bottom: 18px
}

.service-body a {
    font-weight: 900;
    color: #f97316
}


.gallery {
    background: #f8fbff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(8, 47, 73, .12);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.products {
    background: #ecfeff
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.product-card {
    background: white;
    border-radius: 28px;
    padding: 34px 25px;
    text-align: center;
    box-shadow: 0 16px 40px rgba(8, 47, 73, .08);
    transition: .35s
}

.product-card:hover {
    transform: translateY(-10px);
    background: #082f49;
    color: white
}

.product-card i {
    font-size: 38px;
    color: #f59e0b;
    margin-bottom: 18px
}

.product-card h3 {
    font-family: 'Space Grotesk';
    font-size: 24px;
    margin-bottom: 10px
}

.product-card p {
    line-height: 1.7;
    color: #65788b
}

.product-card:hover p {
    color: #dff7ff
}

.choose {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 55px;
    align-items: center;
    background: #fff
}

.choose-image {
    position: relative
}

.choose-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 42px;
    box-shadow: 0 28px 70px rgba(8, 47, 73, .16)
}

.choose-badge {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background: white;
    padding: 24px 28px;
    border-radius: 25px;
    box-shadow: 0 18px 45px rgba(8, 47, 73, .18)
}

.choose-badge b {
    display: block;
    color: #f97316;
    font-size: 30px;
    font-family: 'Space Grotesk'
}

.choose-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px
}

.choose-list div {
    position: relative;
    background: #f8fbff;
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 35px rgba(8, 47, 73, .07);
    transition: .35s;
    border: 1px solid #e9f2f8
}

.choose-list div:hover {
    transform: translateY(-8px);
    background: #fff7ed
}

.choose-list span {
    position: absolute;
    right: 20px;
    top: 14px;
    font-size: 40px;
    font-weight: 900;
    color: #dce8ef
}

.choose-list i {
    font-size: 32px;
    color: #22c55e;
    margin-bottom: 16px
}

.choose-list h3 {
    font-size: 22px;
    color: #082f49;
    margin-bottom: 8px
}

.choose-list p {
    color: #63758a;
    line-height: 1.7
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: linear-gradient(135deg, #082f49, #064e3b)
}

.vm-card {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 25px;
    align-items: center;
    padding: 24px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .10);
    border: 1px solid rgba(255, 255, 255, .16);
    color: white;
    transition: .35s
}

.vm-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, .16)
}

.vm-card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 26px
}

.vm-card i {
    font-size: 40px;
    color: #fbbf24;
    margin-bottom: 16px
}

.vm-card h3 {
    font-family: 'Space Grotesk';
    font-size: 34px;
    margin-bottom: 10px
}

.vm-card p {
    line-height: 1.8;
    color: #e7f8ff
}

/* ================= Gallery ================= */

.gallery {
    background: #f8fbff;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 45px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(8, 47, 73, .12);
    background: #fff;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: .5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.process {
    background: #fff
}

.process-line {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.process-card {
    background: #f8fbff;
    border-radius: 28px;
    padding: 30px;
    box-shadow: 0 14px 35px rgba(8, 47, 73, .07);
    border: 1px solid #e8f2f9;
    transition: .35s
}

.process-card:hover {
    transform: translateY(-10px);
    background: #fff7ed
}

.process-card b {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background: #fbbf24;
    color: #082f49;
    display: grid;
    place-items: center;
    font-size: 24px;
    margin-bottom: 18px
}

.process-card h3 {
    color: #082f49;
    margin-bottom: 9px
}

.process-card p {
    color: #63758a;
    line-height: 1.7
}

.cta {
    margin: 0 7% 90px;
    padding: 60px;
    border-radius: 40px;
    text-align: center;
    color: white;
    background: linear-gradient(rgba(8, 47, 73, .88), rgba(8, 47, 73, .88)), url('https://images.unsplash.com/photo-1497435334941-8c899ee9e8e9?auto=format&fit=crop&w=1600&q=80') center/cover;
    box-shadow: 0 25px 70px rgba(8, 47, 73, .18)
}

.cta p {
    font-size: 18px;
    color: #dff7ff;
    margin-bottom: 25px
}

.cta h2 {
    color: white;
}


.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    background: linear-gradient(rgba(248, 251, 255, .90), rgba(248, 251, 255, .90)), url('https://images.unsplash.com/photo-1473341304170-971dccb5ac1e?auto=format&fit=crop&w=1600&q=80') center/cover
}

.contact-details,
.contact-form {
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(18px);
    border-radius: 34px;
    padding: 42px;
    box-shadow: 0 25px 70px rgba(8, 47, 73, .13);
    border: 1px solid rgba(255, 255, 255, .8)
}

.detail {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #edf2f7;
    color: #4b5d70
}

.detail i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #082f49;
    color: #fbbf24;
    display: grid;
    place-items: center;
    flex: 0 0 auto
}

.contact-form h3 {
    font-family: 'Space Grotesk';
    font-size: 34px;
    color: #082f49;
    margin-bottom: 20px
}

form {
    display: grid;
    gap: 15px
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dbe7ef;
    padding: 16px 18px;
    border-radius: 17px;
    font-size: 15.5px;
    outline: none;
    background: #fff;
    font-family: 'Outfit', sans-serif
}

textarea {
    height: 125px;
    resize: none
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0ea5e9;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, .10)
}

.footer {
    background: #031827;
    color: white;
    padding: 70px 7% 25px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .8fr 1fr 1.3fr;
    gap: 35px
}

.footer-logo a {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Space Grotesk';
    font-size: 25px;
    font-weight: 800;
    margin-bottom: 40px;
    justify-content: center;
}


.footer p {
    color: #cde7f5;
    line-height: 1.7;
    margin-bottom: 10px
}

.footer h3 {
    color: #fbbf24;
    margin-bottom: 18px;
    font-family: 'Space Grotesk'
}

.footer a {
    display: block;
    color: #cde7f5;
    margin-bottom: 10px;
    transition: .3s
}

.footer a:hover {
    color: #fbbf24;
    transform: translateX(5px)
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 18px
}

.socials a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .10);
    display: grid;
    place-items: center;
    margin: 0
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .13);
    margin-top: 45px;
    padding-top: 22px;
    color: #adcadd
}

.whatsapp {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 1005;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25d366;
    color: white;
    display: grid;
    place-items: center;
    font-size: 34px;
    box-shadow: 0 18px 35px rgba(37, 211, 102, .35);
    animation: pulse 1.8s infinite
}

@keyframes pulse {
    50% {
        transform: scale(1.08)
    }
}

.reveal {
    opacity: 0;
    transform: translateY(55px);
    transition: 1s ease
}

.reveal.active {
    opacity: 1;
    transform: translateY(0)
}

@media(max-width:1100px) {
    .navbar {
        display: none;
        position: absolute;
        top: 82px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 22px;
        border-radius: 24px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, .12)
    }
    .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    }

    .navbar.active {
        display: flex
    }

    .quote-btn {
        display: none
    }

    .menu-btn {
        display: block
    }

    .hero h1 {
        font-size: 56px
    }

    .hero-panel {
        display: none
    }

    .about,
    .choose,
    .vision-mission,
    .contact,
    .service-grid,
    .stats,
    .process-line,
    .product-grid,
    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .vm-card {
        grid-template-columns: 1fr
    }

    .choose-image img {
        height: 460px
    }
}

@media(max-width:680px) {
    .top-bar {
        display: none
    }

    .main-header {
        top: 10px;
        width: 94%;
        border-radius: 22px
    }

    .logo strong {
        font-size: 21px
    }

    .hero {
        min-height: 720px;
        padding: 105px 5% 40px
    }

    .hero h1 {
        font-size: 40px
    }

    .hero p {
        font-size: 16px
    }

    .gallery {
        padding: 70px 15px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 18px;  
    
    }

    .gallery-item img {
        height: 220px;
    }

    .section {
        padding: 70px 5%
    }

    .about-content h2,
    .section-title h2,
    .choose-content h2,
    .contact-details h2,
    .cta h2 {
        font-size: 34px
    }

    .about,
    .choose,
    .vision-mission,
    .contact,
    .service-grid,
    .stats,
    .process-line,
    .product-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .choose-list {
        grid-template-columns: 1fr
    }

    .about-gallery {
        min-height: 430px
    }

    .about-main {
        width: 86%;
        height: 330px
    }

    .about-small {
        width: 58%;
        height: 220px
    }

    .experience-card {
        right: 15px;
        bottom: 15px
    }

    .contact-details,
    .contact-form {
        padding: 28px
    }

    .cta {
        margin: 0 5% 60px;
        padding: 42px 24px
    }

    .whatsapp {
        width: 54px;
        height: 54px;
        font-size: 30px
    }
}