* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Fredoka', sans-serif;
    background: #f7fcff;
    color: #333;
    overflow-x: hidden;
}

/* Global Container */

.container {
    width: 100%;
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================
   HEADER
========================= */

.header {
    position: sticky;
    top: 0px;
    z-index: 999;
    padding: 20px 0;
    margin: 0 20px;
}

.header .container {
    height: 84px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 100px;
    padding: 0 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-shadow:
        0 15px 50px rgba(15, 23, 42, .08);
}

/* Logo */

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo img {
    width: 130px;
    margin-bottom: -20px;
}

/* Navigation */

.navbar ul {
    display: flex;
    align-items: center;
    gap: 35px;
    list-style: none;
}

.navbar a {
    position: relative;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #334155;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #8b5cf6;
}

.navbar a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 3px;

    background: #8b5cf6;
    border-radius: 10px;

    transition: .3s;
}

.navbar a:hover::after,
.navbar a.active::after {
    width: 100%;
}

/* Button */

.contact-btn {
    text-decoration: none;
    color: #fff;
    font-weight: 600;

    padding: 15px 28px;
    border-radius: 50px;

    background: linear-gradient(135deg, #ff3600, #ffb600);

    box-shadow:
        0 12px 30px rgba(249, 115, 22, .3);

    transition: .3s;
}

.contact-btn:hover {
    transform: translateY(-4px);
}


/* Hero */
.hero-content h1 {
    font-size: 60px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #1e293b;
}

.hero-content span {
    color: #f97316;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 35px;
}

.btn {
    display: inline-block;
    padding: 15px 28px;
    background: linear-gradient(135deg, #ff3600, #ffb600);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    transition: .3s;
    animation: buttonFloat 3s ease-in-out infinite;
}

.btn:hover {
    transform: translateY(-5px);
}

@keyframes buttonFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Hero Illustration */


/**/
.hero {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

/* Background Blob */

.hero-bg {
    position: absolute;
    width: 700px;
    height: 700px;
    filter: blur(80px);
    border-radius: 50%;
    top: -250px;
    right: -200px;
}


/* Clouds */

.cloud {
    position: absolute;
    font-size: 80px;
    opacity: .55;
}

.cloud-1 {
    top: 20px;
    left: 8%;
}

.cloud-2 {
    bottom: 30px;
    right: 12%;
}

/* Badge */

.hero-badge {
    display: inline-block;
    padding: 12px 22px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    font-size: 15px;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 25px;
}

/* Tags */

.hero-tags {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}

.hero-tags span {
    background: #fff;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .08);
    font-size: 15px;
}

.hero-tags span:hover {
    transform: translateY(-10px) rotate(-4deg) scale(1.08);

    background: linear-gradient(135deg,
            #ffffff,
            #fef3c7);

    box-shadow:
        0 20px 40px rgba(56, 189, 248, .15),
        0 10px 25px rgba(249, 115, 22, .12);
}

.hero::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    border: 3px dashed #cbd5e1;
    border-radius: 50%;
    left: 45%;
    bottom: -180px;
    opacity: .5;
}

/*About*/
.about {
    padding: 120px 0;
    background: linear-gradient(180deg,
            #ffffff 0%,
            #f8fbff 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 520px 1fr;
    gap: 80px;
    align-items: center;
}

/* Hover Animation */
.about-badges span:hover {
    animation: badgeJump .7s ease;
}

@keyframes badgeJump {
    0% {
        transform: translateY(0) scale(1);
    }

    30% {
        transform: translateY(-12px) scale(1.08);
    }

    60% {
        transform: translateY(-6px) scale(1.04);
    }

    100% {
        transform: translateY(0) scale(1);
    }
}

/* IMAGE */

.about-image {
    position: relative;
}

.image-card {
    position: relative;
    z-index: 2;
    overflow: hidden;
    border-radius: 40px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, .12);
}

.image-card img {
    width: 100%;
    display: block;
    height: 650px;
    object-fit: cover;
}

/* Shapes */

.image-shape {
    position: absolute;
    border-radius: 35px;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: #dbeafe;
    top: -35px;
    left: -35px;
}

.shape-2 {
    width: 140px;
    height: 140px;
    background: #fef3c7;
    right: -30px;
    bottom: -30px;
}

/* Floating Cards */

.card-1 {
    top: 40px;
    right: -50px;
}

.card-2 {
    left: -10px;
    bottom: 80px;
}

/* CONTENT */

.about-content h2 {
    font-size: 54px;
    line-height: 1.15;
    color: #0f172a;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 20px;
}

/* Badges */

.about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 40px;
}

.about-badges span {
    padding: 14px 24px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
    color: #334155;
    font-weight: 500;
}

@media (max-width: 576px) {

    .about-content h2 {
        font-size: 32px;
    }

    .about-content p {
        font-size: 17px;
    }

    .image-card img {
        height: 400px;
    }
}

/* Skills */
.skills {
    padding: 120px 0;
    background: linear-gradient(135deg,
            #FFDCCF 0%,
            #FFF3B8 50%,
            #DFF3FF 100%);
}


.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.skill-card {
    padding: 40px 35px;
    border-radius: 35px;
    transition: .4s;
}

.skill-card:nth-child(1) {
    background: #dbeafe;
}

.skill-card:nth-child(2) {
    background: #dffeff;
}

.skill-card:nth-child(3) {
    background: #ffe4e6;
}

.skill-card:nth-child(4) {
    background: #dcfce7;
}

.skill-card:hover {
    transform: translateY(-12px);
}

.icon {
    width: 85px;
    height: 85px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .7);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;
    margin-bottom: 30px;

    animation: iconFloat 3s ease-in-out infinite;
}

.icon img {
    width: 60px;
    height: auto;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    25% {
        transform: translateY(-8px) rotate(-5deg);
    }

    50% {
        transform: translateY(-14px) rotate(0deg);
    }

    75% {
        transform: translateY(-8px) rotate(5deg);
    }
}

.skill-card:nth-child(2) .icon {
    animation-delay: .5s;
}

.skill-card:nth-child(3) .icon {
    animation-delay: 1s;
}

.skill-card:nth-child(4) .icon {
    animation-delay: 1.5s;
}

.skill-card h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 15px;
}

.skill-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
}

@media (max-width: 767px) {

    .skills-grid {
        grid-template-columns: 1fr;
    }
}

/* Achievements */
.achievements {
    padding: 120px 0;
    background: linear-gradient(180deg,
            #f8fbff 0%,
            #eef8ff 100%);
}

.section-tag {
    display: table;
    font-size: 24px;
    margin: 0 auto 20px;
    padding: 12px 24px;
    border-radius: 50px;
    background: #fff;
    color: #f97316;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
}

.about-tag {
    margin: 0 0 20px;

}

.section-title {
    text-align: center;
    font-size: 54px;
    color: #0f172a;
    margin-bottom: 20px;
}

.skills .section-title {
    color: #0f172a;
}

.section-desc {
    max-width: 780px;
    margin: 0 auto 50px;
    text-align: center;
    font-size: 20px;
    line-height: 1.8;
    color: #0f172a;
}

.achievements .section-desc {
    color: #64748b;
}

/* Grid */

.achievement-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 30px;
}

/* Card */

.achievement-card {
    background: #fff;
    border-radius: 35px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(15, 23, 42, .08);
    transition: .4s;
}

.achievement-card:hover {
    transform: translateY(-12px);
}

.achievement-image {
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    display: block;
    height: 305px;
    object-fit: cover;
    transition: .5s;
}

.achievement-third-img img {
    object-position: center 10%;
}

.achievement-card:hover img {
    transform: scale(1.08);
}

.achievement-content {
    padding: 30px;
}

.badge {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #eef2ff;
    color: #6366f1;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 18px;
}

.achievement-content h3 {
    font-size: 30px;
    color: #0f172a;
    margin-bottom: 15px;
}

.achievement-content p {
    color: #64748b;
    line-height: 1.8;
    font-size: 17px;
}

/* Featured Card */

.featured-card {
    background: linear-gradient(135deg,
            #ffffff,
            #fefce8);
}

.featured-card .achievement-image img {
    height: 420px;
}

.featured-card .achievement-content h3 {
    font-size: 30px;
}

/* Responsive */

@media (max-width: 1100px) {

    .featured-card .achievement-image img,
    .achievement-image img {
        height: 350px;
    }
}

@media (max-width:900px) and (min-width:600px) {
    .achievement-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:600px) {
    .achievement-grid{
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 34px;
    }

    .section-desc {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .achievement-content {
        padding: 25px;
    }

    .achievement-content h3 {
        font-size: 26px;
    }

    .featured-card .achievement-content h3 {
        font-size: 30px;
    }
}

/**/
.gallery {
    padding: 120px 0;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-heading span {
    display: inline-block;
    padding: 10px 22px;
    font-size: 24px;
    background: #eef2ff;
    color: #f97316;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-heading h2 {
    font-size: 54px;
    color: #0f172a;
    margin-bottom: 20px;
}

.section-heading p {
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
}

/* Gallery */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 25px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 35px;
    background: linear-gradient(270deg,
            #ff3600,
            #ffb600,
            #8b5cf6,
            #ff3600);
    background-size: 400% 400%;
    padding: 10px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, .08);
    transition: .4s;
    animation: gradientMove 10s ease infinite;
}

@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 28px;
    display: block;
}

.gallery-item:hover {
    transform: translateY(-10px) rotate(0deg);
}

/* Layout */

.item-1 {
    grid-column: span 5;
    height: 420px;
    transform: rotate(-2deg);
}

.item-2 {
    grid-column: span 7;
    height: 420px;
    transform: rotate(2deg);
}

.item-3 {
    grid-column: span 4;
    height: 300px;
    transform: rotate(2deg);
}

.item-4 {
    grid-column: span 4;
    height: 300px;
    transform: rotate(-2deg);
}

.item-5 {
    grid-column: span 4;
    height: 300px;
    transform: rotate(2deg);
}

.item-6 {
    grid-column: span 12;
    height: 500px;
}

.item-2 img {
    object-position: center 2%;
}

.item-4 img {
    object-position: center 4%;
}


@media (max-width: 576px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        height: 260px !important;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .section-heading p {
        font-size: 17px;
    }
}

/* Footer */

.footer {
    padding: 100px 0 40px;
    background: #F5F1FF;
    text-align: center;
}

.footer-badge {
    display: inline-block;
    padding: 12px 24px;
    background: #fff;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
    margin-bottom: 25px;
    font-weight: 500;
    color: #7c3aed;
    animation: pulseGrow 3s ease-in-out infinite;
}

.footer h2 {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 38px;
    line-height: 1.3;
    color: #0f172a;
    animation: breathe 4s ease-in-out infinite;
    transform-origin: center;
}

/* Social */

.footer-social {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-social a {
    min-width: 180px;
    height: 65px;
    padding: 10px 15px;
    display: flex;
    font-size: 17px;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: #fff;
    border-radius: 20px;

    text-decoration: none;
    color: #334155;
    font-weight: 500;

    box-shadow: 0 15px 40px rgba(15, 23, 42, .06);
    transition: .3s;
}

.footer-social a:hover {
    transform: translateY(-6px);
}

.footer-social img {
    width: 34px;
    height: 34px;
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #0f172a;
    color: #0f172a;
    font-size: 16px;
}

@keyframes pulseGrow {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

@keyframes breathe {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.03);
    }
}


@media (max-width: 576px) {

    .footer h2 {
        font-size: 20px !important;
    }

    .footer p {
        font-size: 16px;
    }
}


/*footer end*/

/*Pop up */

.contact-popup {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, .35);
    backdrop-filter: blur(8px);

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 20px;
    z-index: 9999;

    opacity: 0;
    visibility: hidden;
    transition: .35s;
}

.contact-popup.active {
    opacity: 1;
    visibility: visible;
}

.popup-card {
    width: 100%;
    max-width: 480px;

    background:
        linear-gradient(135deg,
            #ffffff,
            #fefce8,
            #eff6ff);

    border-radius: 35px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: visible;
    box-shadow:
        0 30px 80px rgba(15, 23, 42, .15);

    transform: scale(.8);
    transition: .4s;
}

.popup-emoji {
    font-size: 35px;
    margin-bottom: 15px;
    animation: floatEmoji 3s ease-in-out infinite;
    margin: 0 auto 15px;
    max-width: fit-content;
}

.popup-card h3 {
    font-size: 35px;
    color: #0f172a;
}

.popup-card p {
    color: #64748b;
    margin-top: 10px;
    font-size: 17px;
}

.popup-close {
    position: absolute;
    top: 18px;
    right: 18px;

    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;

    background: #fff;
    font-size: 18px;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .08);
}

.popup-social {
    margin-top: 25px;
    display: grid;
    gap: 15px;
}

.popup-social a {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 17px;
    padding: 15px 20px;
    border-radius: 20px;
    background: #fff;

    text-decoration: none;
    color: #334155;

    box-shadow:
        0 10px 25px rgba(15, 23, 42, .06);

    transition: .3s;
}

.popup-social a:hover {
    transform: translateY(-5px);
}

.popup-social img {
    width: 34px;
    height: 34px;
}

.popup-address {
    margin-top: 25px;
    padding: 18px;
    background: #fff;
    border-radius: 20px;
    color: #475569;
    line-height: 1.8;
    font-size: 17px;
}

@keyframes floatEmoji {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Mobile */

@media (max-width:991px) {
    .header {
        margin: 0 10px;
        top: 0;
        padding: 15px 0;
    }

    .navbar ul {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .contact-btn {
        width: 100%;
        text-align: center;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-content {
        text-align: center;
    }

    .about-content h2 {
        font-size: 34px;
    }

    .about-badges {
        justify-content: center;
    }

    .card-1,
    .card-2 {
        position: static;
        display: inline-block;
        margin-top: 20px;
    }

    .image-card img {
        height: 500px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-item {
        grid-column: auto !important;
        height: 280px !important;
        transform: none;
    }

    .footer {
        padding: 80px 0 40px;
    }

    .footer h2 {
        font-size: 34px;
    }

    .footer p {
        font-size: 18px;
    }

    .item-5 {
        grid-column: span 2 !important;
    }

    .achievements,
    .skills,
    .about,
    .gallery {
        padding: 80px 0;
    }


}

@media (max-width:800px) {
    .header .container {
        height: auto;
        padding: 20px;
        border-radius: 30px;
        flex-direction: column;
        gap: 20px;
    }
    html,
body {
    overflow-x: hidden;
    width: 100%;
}  

}

@media (max-width:991px) and (min-width:468px) {
    .contact-btn {
        max-width: fit-content;
    }
}

@media (max-width:468px) {
    
    .footer-social a {
        width: 100%;
        min-width: auto;
    }

    .footer-address {
        margin: 20px auto 0;
    }

    .section-heading {
        margin: 0 auto 40px;
    }

    .about {
        padding: 90px 0 60px;
    }

    .skills {
        padding: 60px 0;
    }

    .achievements {
        padding: 60px 0;
    }

    .gallery {
        padding: 60px 0;
    }

    .hero-tags {
        gap: 10px;
    }

    .cloud-2 {
        bottom: 18px;
        right: 55%;
    }

    .float {
        z-index: 2;
        font-size: 32px;
    }
}

@media (max-width:600px) and (min-width:470px) {
    .shape-2 {
        display: none;
    }

}

@media (max-width:990px) {
    .about-tag {
        margin: 0 auto 20px;
    }

}

.avatar {
    position: relative;
    width: 210px;
    height: 210px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    padding: 8px;
}

/* Rotating Border */
.avatar::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(#38bdf8,
            #8b5cf6,
            #f97316,
            #38bdf8);
    animation: spin 4s linear infinite;
}

/* White layer to create border thickness */
.avatar::after {
    content: "";
    position: absolute;
    inset: 8px;
    background: #fff;
    border-radius: 50%;
    z-index: 1;
}

/* Image stays fixed */
.avatar img {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center top;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
}

/* =====================
   Tablet
===================== */

@media (max-width: 991px) {

    .hero {
        padding: 80px 0;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        order: 2;
    }

    .hero-image {
        order: 1;
    }

    .hero-tags {
        justify-content: center;
    }

    .hero-image img {
        margin: 0 auto !important;
    }

    .cloud {
        font-size: 60px;
    }

    .hero::after {
        display: none;
    }
    .skills .section-title{
        font-size: 34px;
    }
    .section-title{
        font-size: 34px;
    }
}
/* =====================
   Mobile
===================== */

@media (max-width: 576px) {

    .hero {
        padding: 50px 0 70px;
    }

    .card-2 {
        left: -15px;
    }

    .card-1 {
        right: -15px;
    }

    .hero-badge {
        font-size: 14px;
        padding: 10px 18px;
    }

    .hero-content p {
        font-size: 17px;
        line-height: 1.8;
    }

    .hero-tags {
        gap: 12px;
        margin-bottom: 30px;
        justify-content: center;
    }

    .hero-tags span {
        padding: 10px 16px;
        font-size: 14px;
    }

    .cloud {
        font-size: 45px;
        opacity: .35;
    }

    .cloud-1 {
        display: none;

    }

    .cloud-2 {
        bottom: 20px;
        right: 5%;
    }
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 650px;
    border-radius: 35px;
    display: block;
    box-shadow: 0 25px 70px rgba(15, 23, 42, .12);
    max-height: 500px;
    margin-right: 20px;
    object-fit: cover;
    border-radius: 20px;
}

/* Floating Icons */

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 22px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 34px;

    animation: float 4s ease-in-out infinite;
}

/* Positions */

.icon-star {
    top: -25px;
    left: 50px;
}

.icon-book {
    bottom: 80px;
    left: -25px;
    animation-delay: 1s;
}

.icon-tennis {
    bottom: -20px;
    right: 70px;
    animation-delay: 1.5s;
}

.icon-trophy {
    bottom: 140px;
    right: -25px;
    animation-delay: .8s;
}

/* Floating Animation */

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-18px) rotate(5deg);
    }
}

.footer-address {
    max-width: 650px;
    margin: 35px auto 0;
    padding: 18px 25px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;

    background: #fff;
    backdrop-filter: blur(20px);
    border-radius: 24px;

    box-shadow:
        0 15px 40px rgba(15, 23, 42, .06);
}

.footer-address img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.footer-address span {
    font-size: 17px;
    line-height: 1.6;
    color: #334155;
    font-weight: 500;
}

.floating-card {
    position: absolute;
    background: #fff;
    padding: 14px 22px;
    border-radius: 50px;
    font-weight: 500;
    box-shadow: 0 15px 40px rgba(15, 23, 42, .08);
    z-index: 3;
    animation: cardFloat 4s ease-in-out infinite;
}

/* Different timing */
.card-1 {
    animation-delay: 0s;
}

.card-2 {
    animation-delay: 1.5s;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@media (max-width:1024px) {
    .card-2 {
        left: 0;
    }

    .card-1 {
        right: 0;
    }

    .shape-2 {
        right: -10px;
    }

    .shape-1 {
        left: -10px;
    }
}

/*Hambuger*/
/*==============================
Hamburger
==============================*/

.menu-btn {
    display: none;
    width: 45px;
    height: 45px;
    border: none;
    background: none;
    cursor: pointer;
    z-index: 1002;
}

.menu-btn span {
    display: block;
    width: 28px;
    height: 3px;
    margin: 6px auto;
    background: #333;
    border-radius: 20px;
    transition: .35s;
}

.menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.mob-btn {
    display: none;
}



@media(max-width:800px) {

    .header .container {
        flex-direction: row !important;
        justify-content: space-between;
        align-items: center;
        height: 84px;
        border-radius: 100px;
    }

    .menu-btn {
        display: block;
    }

    .contact-btn {
        display: none;
    }

    .navbar {

        position: fixed;

        top: 0;
        right: -100%;

        width: 280px;
        height: 80vh;

        background: #fff;

        display: flex;
        justify-content: center;

        transition: .4s;

        box-shadow: -10px 0 30px rgba(0, 0, 0, .1);

        z-index: 1000;
    }

    .navbar.active {
        right: 0;
        border-radius: 16px;
    }

    .navbar ul {
        flex-direction: column;
        gap: 30px;
        flex-wrap: nowrap;
    }

    .navbar a {
        font-size: 20px;
    }

    body.menu-open {
        overflow-x: hidden;
    }

    
    .mob-btn {
    text-decoration: none;
    color: #fff !important;
    font-weight: 600;
    display: block;
    padding: 15px 28px;
    border-radius: 50px;

    background: linear-gradient(135deg, #ff3600, #ffb600);

    box-shadow:
        0 12px 30px rgba(249, 115, 22, .3);

    transition: .3s;
}

.mob-btn:hover {
    transform: translateY(-4px);
}

.navbar .mob-btn::after{
    display: none;
}
}

