* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

.header {
    background: #fff;
    height: 80px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 9999;
    transition: .3s;
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
}

.container {
    width: 92%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

.nav ul {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav a {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

.nav a.active {
    color: #1693b8;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #1693b8;
    transition: .3s;
}

.nav a.active::after {
    width: 100%;
}

.contact-btn {
    background: #1693b8;
    color: #fff !important;
    padding: 8px 18px;
    border-radius: 6px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
}

@media(max-width:992px) {
    .nav {
        position: absolute;
        top: 80px;
        right: 0;
        background: #fff;
        width: 280px;
        height: 0;
        overflow: hidden;
        transition: .3s;
    }

    .nav.show {
        height: 300px;
        padding: 20px;
    }

    .nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .hamburger {
        display: flex;
    }
}

/* HERO */
.hero-slider {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: .8s;
}

.slide.active {
    opacity: 1;
}

.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, .75), transparent);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
}

.slide-content h1 {
    font-size: 52px;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #1693b8;
    color: #fff;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
}

.arrow.left {
    left: 20px;
}

.arrow.right {
    right: 20px;
}

.dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    opacity: .5;
}

.dot.active {
    opacity: 1;
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.light {
    background: #fff;
}

.section.blue {
    background: #E0EBF6;
}

.boxed {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 60px;
}

.section-title {
    font-size: 48px;
    margin-bottom: 30px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 60px;
    height: 3px;
    background: #1693b8;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.grid-2 ul {
    padding-left: 20px;
}

.grid-2 li {
    margin-bottom: 15px;
}

@media(max-width:768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }
}

/* Contact */
.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border-radius: 6px;
    border: none;
    background: #fff;
}

.contact-form textarea {
    min-height: 150px;
    margin-bottom: 20px;
}

.contact-form button {
    background: #1693b8;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
}

@media(max-width:768px) {
    .contact-form .row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.footer {
    background: #1793b7;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
}

.footer-social a {
    display: inline-flex;
    width: 45px;
    height: 45px;
    margin: 0 8px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .4);
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: .3s;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, .2);
}

/* Animation */
.animate {
    opacity: 0;
    transform: translateY(60px);
    transition: .8s;
}

.animate.show {
    opacity: 1;
    transform: translateY(0);
}













/* =========================
   GENERIC SECTION WRAPPER
========================= */

.section-wrapper {
    background: #ffffff;
    padding: 80px 0;
}

.section-box {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 70px;
    background: #f3f3f3; /* default grey */
}

/* Alternate blue box */
.section-box.blue {
    background: #E0EBF6;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 3px;
    background: #1693b8;
}





/* =========================
   SECTION SYSTEM
========================= */

.section-wrapper {
    background: #ffffff;
    padding: 80px 0;
}

.section-box {
    width: 85%;
    max-width: 1200px;
    margin: auto;
    padding: 80px 70px;
    background: #f3f3f3; /* default grey */
}

.section-box.blue {
    background: #E0EBF6; /* blue tone */
}

/* Responsive */
@media (max-width: 992px) {
    .section-box {
        padding: 60px 40px;
    }
}

@media (max-width: 576px) {
    .section-box {
        width: 92%;
        padding: 40px 25px;
    }
}




.trends-btn {
    display: inline-block;
    margin-top: 30px;
    background: #1693b8;
    color: #fff;
    padding: 14px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
}

.trends-btn:hover {
    background: #117a98;
}


















/* HERO CONTENT FIX */

.slide-content {
    position: absolute;
    top: 50%;
    left: 8%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 650px;
    z-index: 2;
}

.slide-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.slide-content p {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 400;
    opacity: 0.95;
    max-width: 600px;
}
.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(0,0,0,0.85) 0%,
        rgba(0,0,0,0.6) 40%,
        rgba(0,0,0,0.2) 70%,
        transparent 100%
    );
}
@media (max-width: 768px) {

    .slide-content {
        left: 5%;
        right: 5%;
        max-width: 90%;
    }

    .slide-content h1 {
        font-size: 30px;
    }

    .slide-content p {
        font-size: 15px;
    }
}
