@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    color:#444;
    overflow-x:hidden;
    background:
    radial-gradient(circle at top left,#dff9eb 0%,transparent 35%),
    radial-gradient(circle at bottom right,#d9fff0 0%,transparent 35%),
    linear-gradient(135deg,#fdfbf7,#f8efe5,#fff8f0);
}

/* Floating Background */

body::before{
    content:"";
    position:fixed;
    width:450px;
    height:450px;
    background:#34c97b25;
    border-radius:50%;
    top:-180px;
    left:-180px;
    filter:blur(70px);
    z-index:-1;
}

body::after{
    content:"";
    position:fixed;
    width:420px;
    height:420px;
    background:#2ecc7120;
    border-radius:50%;
    bottom:-160px;
    right:-160px;
    filter:blur(80px);
    z-index:-1;
}

/* NAVBAR */

/* Navbar */

.navbar{
    width:100%;
    padding:25px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    text-decoration:none;
    font-size:42px;
    font-weight:800;
    color:#1b8a4a;
    letter-spacing:2px;
}

/* Desktop Home Button */

.home-btn{
    display:flex;
    align-items:center;
    gap:8px;
    text-decoration:none;
    color:#fff;
    background:linear-gradient(135deg,#32D176,#17864D);
    padding:12px 24px;
    border-radius:50px;
    font-size:16px;
    font-weight:600;
    box-shadow:0 10px 25px rgba(50,209,118,.35);
    transition:.3s;
}

.home-btn i{
    font-size:20px;
}

.home-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 35px rgba(50,209,118,.45);
}

.logo:hover{
    color:#fff;
    transform:scale(1.03);
}

/* MAIN */

.about-container{
    width:100%;
    max-width:1450px;
    margin:auto;
    padding:10px 8% 80px;
}

/* TITLE */

.title-section{
    text-align:center;
    margin-bottom:70px;
}

.title-section h1{

    font-size:58px;
    font-weight:800;
    line-height:1.2;

    background:linear-gradient(
    135deg,
    #37d67a,
    #17864d,
    #0d6a3d);

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    margin-bottom:25px;
}

/* QUOTE */

.quote{

    display:inline-block;

    padding:18px 38px;

    border-radius:60px;

    color:#fff;

    font-size:18px;

    font-weight:500;

    background:linear-gradient(
    135deg,
    #32d176,
    #17864d);

    box-shadow:
    0 12px 30px rgba(39,174,96,.35);

    transition:.35s;
}

.quote:hover{

    transform:translateY(-5px);

    box-shadow:
    0 18px 40px rgba(39,174,96,.45);

}

/* CONTENT */

.about-content{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:70px;

    align-items:center;

}

/* GLASS CARD */

.about-text{

    position:relative;

    padding:45px;

    border-radius:30px;

    background:rgba(255,255,255,.70);

    backdrop-filter:blur(18px);

    border:1px solid rgba(39,174,96,.15);

    box-shadow:
    0 25px 55px rgba(0,0,0,.08);

    transition:.4s;

}

.about-text:hover{

    transform:translateY(-8px);

    box-shadow:
    0 35px 70px rgba(0,0,0,.12);

}

/* Green Accent */

.about-text::before{

    content:"";

    position:absolute;

    left:0;

    top:30px;

    width:7px;

    height:90px;

    border-radius:20px;

    background:linear-gradient(
    #2ecc71,
    #17864d);

}

.about-text h2{

    font-size:38px;

    color:#17864d;

    margin-bottom:25px;

    font-weight:700;

}

.about-text p{

    color:#666;

    font-size:18px;

    line-height:35px;

    text-align:justify;

}

/* ===========================
   IMAGE SECTION
=========================== */

.about-image{
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

.about-image::before{
    content:"";
    position:absolute;
    width:420px;
    height:420px;
    background:radial-gradient(circle,#2ECC7130,transparent 70%);
    border-radius:50%;
    z-index:0;
    animation:pulse 4s ease-in-out infinite;
}

.about-image img{
    position:relative;
    z-index:2;
    width:100%;
    max-width:560px;
    aspect-ratio:4/3;
    object-fit:cover;
    border-radius:35px;
    border:6px solid #32d176;
    background:#fff;
    box-shadow:
        0 15px 35px rgba(0,0,0,.12),
        0 25px 60px rgba(46,204,113,.25);
    transition:.45s ease;
}

.about-image img:hover{
    transform:translateY(-12px) scale(1.03) rotate(-1deg);
    box-shadow:
        0 20px 45px rgba(0,0,0,.16),
        0 35px 80px rgba(46,204,113,.40);
}

/* ===========================
   ANIMATIONS
=========================== */

@keyframes pulse{

    0%{
        transform:scale(.95);
        opacity:.55;
    }

    50%{
        transform:scale(1.08);
        opacity:1;
    }

    100%{
        transform:scale(.95);
        opacity:.55;
    }

}

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(45px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.title-section{
    animation:fadeUp .8s ease;
}

.about-text{
    animation:fadeUp 1s ease;
}

.about-image{
    animation:fadeUp 1.2s ease;
}

/* ===========================
   TABLET
=========================== */

@media(max-width:991px){

.logo{
    font-size:34px;
}

.title-section h1{
    font-size:42px;
}

.quote{
    font-size:16px;
    padding:15px 28px;
}

.about-content{
    gap:45px;
}

.about-text{
    padding:35px;
}

.about-text h2{
    font-size:30px;
}

.about-text p{
    font-size:17px;
    line-height:31px;
}

.about-image::before{
    width:320px;
    height:320px;
}

.about-image img{
    max-width:430px;
}

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

.navbar{
    justify-content:center;
    padding:22px;
}

.logo{
    font-size:34px;
}

.about-container{
    padding:20px;
}

.title-section{
    margin-bottom:40px;
}

.title-section h1{
    font-size:32px;
}

.quote{
    font-size:14px;
    padding:13px 22px;
}

.about-content{
    display:flex;
    flex-direction:column;
    gap:35px;
}

.about-image::before{
    width:260px;
    height:260px;
}

.about-image img{
    max-width:100%;
    border-radius:28px;
}

.about-text{
    padding:28px;
    text-align:center;
}

.about-text::before{
    display:none;
}

.about-text h2{
    font-size:27px;
}

.about-text p{
    font-size:16px;
    line-height:30px;
    text-align:center;
}

}

/* ===========================
   SMALL MOBILE
=========================== */

@media(max-width:430px){

.logo{
    font-size:28px;
}

.title-section h1{
    font-size:27px;
}

.quote{
    font-size:13px;
    padding:11px 18px;
}

.about-text{
    padding:22px;
    border-radius:24px;
}

.about-text h2{
    font-size:23px;
}

.about-text p{
    font-size:15px;
    line-height:28px;
}

.about-image img{
    border-width:4px;
}

}

/* ===========================
   CUSTOM SCROLLBAR
=========================== */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#f6f6f6;
}

::-webkit-scrollbar-thumb{
    background:linear-gradient(#2ECC71,#17864d);
    border-radius:20px;
}

::-webkit-scrollbar-thumb:hover{
    background:#17864d;
}



/* MOBILE NAV */
.bottom-nav{
  display:none;
}


@media (max-width:768px){
 /* MOBILE NAV */
  .bottom-nav{
    display:flex;

    position:fixed;
    bottom:0;
    left:0;

    width:100%;

    justify-content:space-around;

    background:rgba(255,255,255,0.92);

    backdrop-filter:blur(10px);

    padding:10px 0;

    border-top:1px solid rgba(0,0,0,0.08);

    z-index:20;
  }

  .bottom-nav div{
    text-align:center;
    font-size:12px;
    color:#7a6a58;
  }

  .bottom-nav i{
    font-size:20px;
    color:#8b5e34;
  }
  
  
.home-btn{
    display:none;
}

}