* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #07111f;
    color: white;
    overflow-x: hidden;
    position: relative;
}

/* =========================
   BACKGROUND
========================= */

.background {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
    z-index: -10;
    background:
        linear-gradient(135deg,
            #07111f,
            #0b1f35,
            #07111f);
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.08);
    backdrop-filter: blur(5px);
    animation: float 20s infinite linear;
}

.bubble:nth-child(1) {
    width: 250px;
    height: 250px;
    left: 5%;
    top: 60%;
    animation-duration: 25s;
}

.bubble:nth-child(2) {
    width: 350px;
    height: 350px;
    right: 5%;
    top: 10%;
    animation-duration: 30s;
}

.bubble:nth-child(3) {
    width: 180px;
    height: 180px;
    left: 45%;
    top: 40%;
    animation-duration: 20s;
}

@keyframes float {

    0% {
        transform:
            translateY(0px) rotate(0deg);
    }

    50% {
        transform:
            translateY(-60px) rotate(180deg);
    }

    100% {
        transform:
            translateY(0px) rotate(360deg);
    }
}

/* =========================
   HEADER
========================= */

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 20px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;

    background: rgba(255, 255, 255, 0.05);

    backdrop-filter: blur(12px);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.08);
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.logo span {
    color: #00d9ff;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

nav ul li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #00d9ff;
    left: 0;
    bottom: -6px;
    transition: 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

nav ul li a:hover {
    color: #00d9ff;
}

/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-btn {
    padding: 13px 26px;
    border-radius: 50px;
    text-decoration: none;
    background: #25D366;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.whatsapp-btn:hover {
    transform: translateY(-4px);
    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.4);
}

/* =========================
   HERO SECTION
========================= */

.hero {
    min-height: 100vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)),
        url('../images/hero-bg.jpg');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 120px 8%;
    position: relative;
}

.hero-content {
    max-width: 850px;
    z-index: 2;
}

.hero-content h4 {
    color: #00d9ff;
    letter-spacing: 2px;
    margin-bottom: 20px;
    font-weight: 500;
}

.hero-content h1 {
    font-size: 4.3rem;
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-content p {
    color: #d9d9d9;
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 40px;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.primary-btn {
    padding: 16px 35px;
    background: #00d9ff;
    color: #07111f;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.primary-btn:hover {
    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(0, 217, 255, 0.35);
}

.secondary-btn {
    padding: 16px 35px;
    border-radius: 50px;
    border:
        1px solid rgba(255, 255, 255, 0.2);

    text-decoration: none;
    color: white;
    transition: 0.3s;
}

.secondary-btn:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* =========================
   STATS
========================= */

.stats {
    padding: 100px 8% 40px;

    display: grid;
    grid-template-columns:
        repeat(auto-fit, minmax(220px, 1fr));

    gap: 25px;
}

.stat-box {
    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border-radius: 25px;

    text-align: center;

    padding: 40px 30px;

    transition: 0.4s;
}

.stat-box:hover {
    transform: translateY(-10px);
}

.stat-box h2 {
    font-size: 3rem;
    color: #00d9ff;
    margin-bottom: 10px;
}

.stat-box p {
    color: #d5d5d5;
}

/* =========================
   SECTION TITLE
========================= */

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-title p {
    color: #d5d5d5;
}

/* =========================
   PRODUCTS
========================= */

.products-section {
    padding: 100px 8%;
}

.products-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.product-card {

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    border-radius: 30px;

    overflow: hidden;

    backdrop-filter: blur(18px);

    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-12px);
}

.product-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.product-content {
    padding: 30px;
}

.product-content h3 {
    margin-bottom: 15px;
}

.product-content p {
    color: #d5d5d5;
    line-height: 1.7;
}

.center-btn {
    text-align: center;
    margin-top: 50px;
}

/* =========================
   WHY US
========================= */

.why-us {
    padding: 100px 8%;
}

.why-container {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.why-box {

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border-radius: 30px;

    padding: 40px;

    text-align: center;

    transition: 0.4s;
}

.why-box:hover {
    transform: translateY(-10px);
}

.why-box i {
    font-size: 3rem;
    color: #00d9ff;
    margin-bottom: 25px;
}

.why-box h3 {
    margin-bottom: 15px;
}

.why-box p {
    color: #d5d5d5;
    line-height: 1.8;
}

/* =========================
   ABOUT PREVIEW
========================= */

.about-preview {
    padding: 100px 8%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 50px;

    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 25px;
}

.about-text p {
    color: #d5d5d5;
    line-height: 1.9;
    margin-bottom: 35px;
}

/* =========================
   FOOTER
========================= */

footer {
    padding: 70px 8%;
    text-align: center;

    background:
        rgba(255, 255, 255, 0.04);

    margin-top: 80px;
}

.footer-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-content p {
    color: #d5d5d5;
    margin-bottom: 10px;
}

.socials {
    margin-top: 25px;
    margin-bottom: 25px;
}

.socials i {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.08);

    display: inline-flex;

    justify-content: center;
    align-items: center;

    margin: 0 8px;

    color: #00d9ff;

    transition: 0.3s;

    cursor: pointer;
}

.socials i:hover {
    transform: translateY(-5px);
}

.copyright {
    margin-top: 20px;
    font-size: 0.95rem;
}

/* =========================
   FLOATING WHATSAPP
========================= */

.floating-whatsapp {

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 65px;
    height: 65px;

    border-radius: 50%;

    background: #25D366;

    display: flex;
    justify-content: center;
    align-items: center;

    color: white;

    font-size: 2rem;

    text-decoration: none;

    z-index: 999;

    box-shadow:
        0 10px 25px rgba(37, 211, 102, 0.5);

    animation: pulse 2s infinite;
}

@keyframes pulse {

    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    nav {
        display: none;
    }

    header {
        justify-content: space-between;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .section-title h2 {
        font-size: 2.5rem;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }
}

@media(max-width:768px) {

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats {
        padding-top: 70px;
    }

    .hero {
        padding-top: 160px;
    }

    .floating-whatsapp {
        width: 58px;
        height: 58px;
        font-size: 1.7rem;
    }
}



/* =========================
   TOP BAR
========================= */

.top-bar {

    width: 100%;

    background: #00d9ff;

    color: #07111f;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 10px 8%;

    font-size: 0.9rem;

    position: fixed;

    top: 0;
    left: 0;

    z-index: 1200;
}

.top-left,
.top-right {

    display: flex;
    gap: 25px;
    align-items: center;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-right i {
    cursor: pointer;
}

/* =========================
   HEADER UPDATE
========================= */

header {

    top: 42px;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {

    display: none;

    font-size: 1.8rem;

    color: white;

    cursor: pointer;
}

@media(max-width:991px) {

    .menu-toggle {
        display: block;
    }

    nav {

        position: absolute;

        top: 100px;
        left: 0;

        width: 100%;

        background: #081523;

        padding: 25px 0;

        display: none;
    }

    nav.active {
        display: block;
    }

    nav ul {

        flex-direction: column;

        align-items: center;

        gap: 25px;
    }

    .whatsapp-btn {
        display: none;
    }

    .hero-container {

        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image {
        margin-top: 50px;
    }

    .hero-buttons {
        justify-content: center;
    }

}

/* =========================
   HERO UPDATE
========================= */

.hero {

    min-height: 100vh;

    padding:
        180px 8% 100px;
}

.hero-container {

    width: 100%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    align-items: center;

    gap: 60px;
}

.hero-image img {

    width: 100%;

    animation: floatImage 5s ease-in-out infinite;
}

@keyframes floatImage {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* =========================
   CTA BANNER
========================= */

.cta-banner {

    position: relative;

    margin: 100px 8%;

    border-radius: 35px;

    overflow: hidden;

    background:
        linear-gradient(rgba(0, 0, 0, 0.65),
            rgba(0, 0, 0, 0.65)),
        url('../images/about.jpeg');

    background-size: cover;
    background-position: center;

    padding: 100px 40px;

    text-align: center;
}

.cta-content {

    position: relative;
    z-index: 2;
}

.cta-content h2 {

    font-size: 3rem;
    margin-bottom: 20px;
}

.cta-content p {

    max-width: 700px;

    margin: auto;

    color: #d5d5d5;

    line-height: 1.8;

    margin-bottom: 35px;
}

/* =========================
   RESPONSIVE FIXES
========================= */

@media(max-width:768px) {

    .top-bar {

        flex-direction: column;

        gap: 10px;

        padding: 12px;
    }

    header {

        top: 70px;
    }

    .hero-content h1 {

        font-size: 2.3rem;
    }

    .cta-content h2 {

        font-size: 2rem;
    }

    .top-left {

        flex-direction: column;
        gap: 8px;
    }

    .hero {

        padding-top: 220px;
    }

}

@media(max-width:600px) {

    .hero-image img {

        max-width: 100%;
    }

    .products-grid,
    .why-container {

        grid-template-columns: 1fr;
    }

    .hero-buttons {

        flex-direction: column;
    }

    .primary-btn,
    .secondary-btn {

        width: 100%;
        text-align: center;
    }

}









/* =========================
   ABOUT HERO
========================= */

.about-hero {

    min-height: 75vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.7),
            rgba(0, 0, 0, 0.7)),
        url('../images/cleaning-process.jpeg');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 180px 8% 100px;

    position: relative;
}

.about-hero-content {

    max-width: 850px;
}

.about-hero-content h4 {

    color: #00d9ff;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.about-hero-content h1 {

    font-size: 4rem;

    line-height: 1.2;

    margin-bottom: 25px;
}

.about-hero-content p {

    color: #d5d5d5;

    line-height: 1.9;

    font-size: 1.1rem;
}

/* =========================
   COMPANY STORY
========================= */

.company-story {

    padding: 100px 8%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 60px;

    align-items: center;
}

.story-image img {

    width: 100%;

    border-radius: 30px;

    animation: floatImage 5s ease-in-out infinite;
}

.story-text h2 {

    font-size: 3rem;

    margin-bottom: 25px;
}

.story-text p {

    color: #d5d5d5;

    line-height: 1.9;

    margin-bottom: 20px;
}

/* =========================
   MISSION SECTION
========================= */

.mission-section {

    padding: 20px 8% 100px;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.mission-box {

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border-radius: 30px;

    padding: 50px 40px;

    text-align: center;

    transition: 0.4s;
}

.mission-box:hover {

    transform: translateY(-10px);
}

.mission-box i {

    font-size: 3rem;

    color: #00d9ff;

    margin-bottom: 25px;
}

.mission-box h3 {

    margin-bottom: 20px;
}

.mission-box p {

    color: #d5d5d5;

    line-height: 1.8;
}

/* =========================
   VALUES
========================= */

.values-section {

    padding: 100px 8%;
}

.values-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.value-card {

    overflow: hidden;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    transition: 0.4s;
}

.value-card:hover {

    transform: translateY(-10px);
}

.value-card img {

    width: 100%;

    height: 260px;

    object-fit: cover;
}

.value-content {

    padding: 30px;
}

.value-content h3 {

    margin-bottom: 15px;
}

.value-content p {

    color: #d5d5d5;

    line-height: 1.7;
}

/* =========================
   TEAM
========================= */

.team-section {

    padding: 100px 8%;
}

.team-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 30px;
}

.team-card {

    text-align: center;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    border-radius: 30px;

    padding: 30px;

    transition: 0.4s;
}

.team-card:hover {

    transform: translateY(-10px);
}

.team-card img {

    width: 180px;
    height: 180px;

    object-fit: cover;

    border-radius: 50%;

    margin-bottom: 25px;

    border: 5px solid rgba(255, 255, 255, 0.08);
}

.team-card h3 {

    margin-bottom: 10px;
}

.team-card p {

    color: #d5d5d5;
}

/* =========================
   REVEAL EFFECT
========================= */

.reveal {

    opacity: 0;

    transform: translateY(60px);

    transition: 1s ease;
}

.reveal.active-reveal {

    opacity: 1;

    transform: translateY(0);
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .about-hero-content h1 {

        font-size: 2.5rem;
    }

    .story-text h2 {

        font-size: 2.2rem;
    }

}






/* =========================
   PRODUCTS HERO
========================= */

.products-hero {

    min-height: 75vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0.72)),
        url('../images/ad.jpeg');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 180px 8% 100px;
}

.products-hero-content {

    max-width: 850px;
}

.products-hero-content h4 {

    color: #00d9ff;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.products-hero-content h1 {

    font-size: 4rem;

    line-height: 1.2;

    margin-bottom: 25px;
}

.products-hero-content p {

    color: #d5d5d5;

    line-height: 1.9;

    font-size: 1.1rem;
}

/* =========================
   FILTERS
========================= */

.product-filters {

    padding: 70px 8% 20px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 20px;
}

.filter-btn {

    padding: 14px 28px;

    border: none;

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.08);

    color: white;

    cursor: pointer;

    font-weight: 500;

    backdrop-filter: blur(14px);

    transition: 0.3s;
}

.filter-btn:hover,
.active-filter {

    background: #00d9ff;

    color: #07111f;
}

/* =========================
   PRODUCTS PAGE
========================= */

.products-page-section {

    padding: 40px 8% 100px;
}

.products-page-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(320px, 1fr));

    gap: 35px;
}

.product-item {

    overflow: hidden;

    border-radius: 30px;

    background:
        rgba(255, 255, 255, 0.07);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    transition: 0.4s;
}

.product-item:hover {

    transform: translateY(-10px);
}

.product-image {

    overflow: hidden;
}

.product-image img {

    width: 100%;

    height: 280px;

    object-fit: cover;

    transition: 0.5s;
}

.product-item:hover img {

    transform: scale(1.08);
}

.product-info {

    padding: 30px;
}

.product-info h3 {

    margin-bottom: 15px;
}

.product-info p {

    color: #d5d5d5;

    line-height: 1.8;

    margin-bottom: 25px;
}

.product-icons {

    display: flex;

    flex-wrap: wrap;

    gap: 15px;
}

.product-icons span {

    background:
        rgba(255, 255, 255, 0.08);

    padding: 10px 16px;

    border-radius: 50px;

    font-size: 0.9rem;

    display: flex;

    align-items: center;

    gap: 8px;
}

.product-icons i {

    color: #00d9ff;
}

/* =========================
   PRODUCT ANIMATION
========================= */

.product-item {

    opacity: 1;

    transform: scale(1);

    transition:
        opacity 0.4s ease,
        transform 0.4s ease;
}

.product-item.hide {

    opacity: 0;

    transform: scale(0.9);

    pointer-events: none;

    position: absolute;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px) {

    .products-hero-content h1 {

        font-size: 2.5rem;
    }

}















/* =========================
   SERVICES HERO
========================= */

.services-hero {

    min-height: 70vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('../images/scientist.jpeg');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 180px 8% 100px;
}

.services-hero-content h4 {

    color: #00d9ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.services-hero-content h1 {

    font-size: 4rem;
    margin-bottom: 20px;
}

.services-hero-content p {

    color: #d5d5d5;
    line-height: 1.8;
}

/* =========================
   SERVICES GRID
========================= */

.services-section {

    padding: 100px 8%;
}

.services-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 30px;
}

.service-card {

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    padding: 40px;

    border-radius: 30px;

    text-align: center;

    transition: 0.4s;
}

.service-card:hover {

    transform: translateY(-10px);
}

.service-card i {

    font-size: 2.5rem;
    color: #00d9ff;
    margin-bottom: 20px;
}

/* =========================
   PROCESS
========================= */

.process-section {

    padding: 100px 8%;
}

.process-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
}

.process-step {

    text-align: center;

    padding: 30px;

    border-radius: 25px;

    background: rgba(255, 255, 255, 0.05);

    border: 1px solid rgba(255, 255, 255, 0.08);
}

.process-step span {

    font-size: 2rem;
    color: #00d9ff;
}

/* =========================
   GALLERY
========================= */

.gallery-section {

    padding: 100px 8%;
}

.gallery-grid {

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 20px;
}

.gallery-item {

    overflow: hidden;

    border-radius: 20px;
}

.gallery-item img {

    width: 100%;

    height: 250px;

    object-fit: cover;

    transition: 0.5s;
}

.gallery-item img:hover {

    transform: scale(1.1);
}




















/* =========================
   CONTACT HERO
========================= */

.contact-hero {

    min-height: 60vh;

    background:
        linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),
        url('../images/support.jpeg');

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 180px 8% 100px;
}

.contact-hero h4 {

    color: #00d9ff;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.contact-hero h1 {

    font-size: 4rem;
    margin-bottom: 20px;
}

/* =========================
   CONTACT INFO
========================= */

.contact-info {

    padding: 80px 8%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(250px, 1fr));

    gap: 30px;
}

.contact-card {

    background: rgba(255, 255, 255, 0.07);

    border: 1px solid rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(18px);

    padding: 40px;

    border-radius: 25px;

    text-align: center;

    transition: 0.4s;
}

.contact-card:hover {

    transform: translateY(-10px);
}

.contact-card i {

    font-size: 2.5rem;
    color: #00d9ff;
    margin-bottom: 20px;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section {

    padding: 80px 8%;

    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(300px, 1fr));

    gap: 40px;
}

.contact-form {

    background: rgba(255, 255, 255, 0.05);

    padding: 40px;

    border-radius: 30px;
}

.contact-form input,
.contact-form textarea {

    width: 100%;

    padding: 15px;

    margin-bottom: 20px;

    border: none;

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.08);

    color: white;

    outline: none;
}

.whatsapp-big-btn {

    display: inline-block;

    padding: 15px 25px;

    background: #25D366;

    color: white;

    border-radius: 50px;

    margin-top: 20px;

    text-decoration: none;

    font-weight: 600;
}

/* =========================
   MAP
========================= */

.map-section {

    padding: 80px 8%;
}

.map-container iframe {

    border-radius: 20px;
}