/*  import google fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}
html{
    scroll-behavior: smooth;
}

/* custom scroll bar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #888;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* all similar content styling codes */
section{
    padding: 100px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.about, .services, .skills, .teams, .contact, footer{
    font-family: 'Poppins', sans-serif;
}
.about .about-content,
.services .serv-content,
.skills .skills-content,
.contact .contact-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    position: relative;
    text-align: center;
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Ubuntu', sans-serif;
}
section .title::before{
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 180px;
    height: 3px;
    background: #111;
    transform: translateX(-50%);
}
section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: rgb(0, 135, 34);
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* navbar styling */
.navbar{
    position: fixed;
    width: 100%;
    z-index: 999;
    padding: 30px 0;
    font-family: 'Ubuntu', sans-serif;
    transition: all 0.3s ease;
}
.navbar.sticky{
    padding: 15px 0;
    background: rgb(0, 135, 34);
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar .logo a{
    color: #fff;
    font-size: 35px;
    font-weight: 600;
}
.navbar .logo a span{
    color: rgb(0, 135, 34);
    transition: all 0.3s ease;
}
.navbar.sticky .logo a span{
    color: #fff;
}
.navbar .menu li{
    list-style: none;
    display: inline-block;
}
.navbar .menu li a{
    display: block;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-left: 25px;
    transition: color 0.3s ease;
}
.navbar .menu li a:hover{
    color: rgb(0, 135, 34);
}
.navbar.sticky .menu li a:hover{
    color: #fff;
}

/* menu btn styling */
.menu-btn{
    color: #fff;
    font-size: 23px;
    cursor: pointer;
    display: none;
}
.scroll-up-btn{
    position: fixed;
    height: 45px;
    width: 42px;
    background: rgb(0, 135, 34);
    right: 30px;
    bottom: 10px;
    text-align: center;
    line-height: 45px;
    color: #fff;
    z-index: 9999;
    font-size: 30px;
    border-radius: 6px;
    border-bottom-width: 2px;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
}
.scroll-up-btn.show{
    bottom: 30px;
    opacity: 1;
    pointer-events: auto;
}
.scroll-up-btn:hover{
    filter: brightness(90%);
}


/* home section styling */
.home{
    display: flex;
    background: linear-gradient(130deg, #120e18 0%, #1c1025 45%, #120a1a 100%);
    height: 100vh;
    color: #fff;
    min-height: 500px;
    background-size: cover;
    background-attachment: fixed;
    font-family: 'Ubuntu', sans-serif;
}
.home .max-width{
  width: 100%;
  display: flex;
}
.home .max-width .row{
  margin-right: 0;
}
.home .home-content .text-1{
    font-size: 27px;
}
.home .home-content .text-2{
    font-size: 75px;
    font-weight: 600;
    margin-left: -3px;
}
.home .home-content .text-3{
    font-size: 40px;
    margin: 5px 0;
}
.home .home-content .text-3 span{
    color: rgb(0, 135, 34);
    font-weight: 500;
}
.home .home-content a{
    display: inline-block;
    background: rgb(0, 135, 34);
    color: #fff;
    font-size: 25px;
    padding: 12px 36px;
    margin-top: 20px;
    font-weight: 400;
    border-radius: 6px;
    border: 2px solid rgb(0, 135, 34);
    transition: all 0.3s ease;
}
.home .home-content a:hover{
    color: rgb(0, 135, 34);
    background: none;
}

/* about section styling */
.about .title::after{
    content: "Who Am I";
}
.about .about-content .left{
    width: 45%;
}
.about .about-content .left img{
    height: 400px;
    width: 400px;
    object-fit: cover;
    border-radius: 6px;
}
.about .about-content .right{
    width: 55%;
}
.about .about-content .right .text{
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
}
.about .about-content .right .text span{
    color: rgb(0, 135, 34);
}
.about .about-content .right p{
    text-align: justify;
}
.about .about-content .right a{
    display: inline-block;
    background: rgb(0, 135, 34);
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    padding: 10px 30px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid rgb(0, 135, 34);
    transition: all 0.3s ease;
}
.about .about-content .right a:hover{
    color: rgb(0, 135, 34);
    background: none;
}

/* services section styling */
.services, .teams{
    color:#fff;
    background: #111;
}
.services .title::before,
.teams .title::before{
    background: #fff;
}
.services .title::after,
.teams .title::after{
    background: #111;
    content: "Skills & Talents";
}
.services .serv-content .card{
    width: calc(33% - 20px);
    background: #222;
    text-align: center;
    border-radius: 6px;
    padding: 50px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.services .serv-content .card:hover{
    background: rgb(0, 135, 34);
}
.services .serv-content .card .box{
    transition: all 0.3s ease;
}
.services .serv-content .card:hover .box{
    transform: scale(1.05);
}
.services .serv-content .card i{
    font-size: 50px;
    color: rgb(0, 135, 34);
    transition: color 0.3s ease;
}
.services .serv-content .card:hover i{
    color: #fff;
}
.services .serv-content .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}

/* skills section styling */

.skills .title::after{
    content: "Extended Levels";
}
.skills .skills-content .column{
    width: calc(50% - 30px);
}
.skills .skills-content .left .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.skills .skills-content .left p{
    text-align: justify;
}
.skills .skills-content .left a{
    display: inline-block;
    background: rgb(0, 135, 34);
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    padding: 8px 16px;
    margin-top: 20px;
    border-radius: 6px;
    border: 2px solid rgb(0, 135, 34);
    transition: all 0.3s ease;
}
.skills .skills-content .left a:hover{
    color: rgb(0, 135, 34);
    background: none;
}
.skills .skills-content .right .bars{
    margin-bottom: 15px;
}
.skills .skills-content .right .info{
    display: flex;
    margin-bottom: 5px;
    align-items: center;
    justify-content: space-between;
}
.skills .skills-content .right span{
    font-weight: 500;
    font-size: 18px;
}
.skills .skills-content .right .line{
    height: 5px;
    width: 100%;
    background: lightgrey;
    position: relative;
}
.skills .skills-content .right .line::before{
    content: "";
    position: absolute;
    height: 100%;
    left: 0;
    top: 0;
    background: rgb(0, 135, 34);
}
.skills-content .right .html::before{
    width: 92%;
}
.skills-content .right .css::before{
    width: 95%;
}
.skills-content .right .js::before{
    width: 75%;
}
.skills-content .right .php::before{
    width: 97%;
}
.skills-content .right .mysql::before{
    width: 50%;
}

/* teams section styling */
.teams .title::after{
    content: "My True Supporter 💖";
}
.teams .carousel .card{
    background: #222;
    border-radius: 6px;
    padding: 25px 35px;
    text-align: center;
    overflow: hidden;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover{
    background: rgb(0, 135, 34);
}
.teams .carousel .card .box{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.teams .carousel .card:hover .box{
    transform: scale(1.05);
}
.teams .carousel .card .text{
    font-size: 25px;
    font-weight: 500;
    margin: 10px 0 7px 0;
}
.teams .carousel .card img{
    height: 150px;
    width: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid rgb(0, 135, 34);
    transition: all 0.3s ease;
}
.teams .carousel .card:hover img{
    border-color: #fff;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid rgb(0, 135, 34)!important;
    transition: all 0.3s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
}
.owl-dot.active,
.owl-dot:hover{
    background: rgb(0, 135, 34)!important;
}

/* contact section styling */
.contact .title::after{
    content: "OxyHydra";
}
.contact .contact-content .column{
    width: calc(50% - 30px);
}
.contact .contact-content .text{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contact .contact-content .left p{
    text-align: justify;
}
.contact .contact-content .left .icons{
    margin: 10px 0;
}
.contact .contact-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contact .contact-content .row .info{
    margin-left: 30px;
}
.contact .contact-content .row i{
    font-size: 25px;
    color: rgb(0, 135, 34);
}
.contact .contact-content .info .head{
    font-weight: 500;
}
.contact .contact-content .info .sub-title{
    color: #333;
}
.contact .right form .fields{
    display: flex;
}
.contact .right form .field,
.contact .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contact .right form .textarea{
    height: 80px;
    width: 100%;
}
.contact .right form .name{
    margin-right: 10px;
}
.contact .right form .field input,
.contact .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid lightgrey;
    border-radius: 6px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}
.contact .right form .field input:focus,
.contact .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contact .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contact .right form .button-area{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: rgb(0, 135, 34);
  border: 2px solid rgb(0, 135, 34);
  transition: all 0.3s ease;
}


.right form .button-area button:hover{
  color: rgb(0, 135, 34);
  background: none;
}
/* footer section styling */
footer{
    background: #111;
    padding: 15px 23px;
    color: #fff;
    text-align: center;
}
footer span a{
    color: rgb(0, 135, 34);
    text-decoration: none;
}
footer span a:hover{
    text-decoration: underline;
}


/* responsive media query start */
@media (max-width: 1104px) {
    .about .about-content .left img{
        height: 350px;
        width: 350px;
    }
}

@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
}
@media (max-width: 947px){
    .menu-btn{
        display: block;
        z-index: 999;
    }
    .menu-btn i.active:before{
        content: "\f00d";
    }
    .navbar .menu{
        position: fixed;
        height: 100vh;
        width: 100%;
        left: -100%;
        top: 0;
        background: #111;
        text-align: center;
        padding-top: 80px;
        transition: all 0.3s ease;
    }
    .navbar .menu.active{
        left: 0;
    }
    .navbar .menu li{
        display: block;
    }
    .navbar .menu li a{
        display: inline-block;
        margin: 20px 0;
        font-size: 25px;
    }
    .home .home-content .text-2{
        font-size: 70px;
    }
    .home .home-content .text-3{
        font-size: 35px;
    }
    .home .home-content a{
        font-size: 23px;
        padding: 10px 30px;
    }
    .max-width{
        max-width: 930px;
    }
    .about .about-content .column{
        width: 100%;
    }
    .about .about-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .about .about-content .right{
        flex: 100%;
    }
    .services .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
    .skills .skills-content .column,
    .contact .contact-content .column{
        width: 100%;
        margin-bottom: 35px;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .home .home-content .text-2{
        font-size: 60px;
    }
    .home .home-content .text-3{
        font-size: 32px;
    }
    .home .home-content a{
        font-size: 20px;
    }
    .services .serv-content .card{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .home .home-content .text-2{
        font-size: 50px;
    }
    .home .home-content .text-3{
        font-size: 27px;
    }
    .about .about-content .right .text,
    .skills .skills-content .left .text{
        font-size: 19px;
    }
    .contact .right form .fields{
        flex-direction: column;
    }
    .contact .right form .name,
    .contact .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
.discord-button {
  display: inline-block;
  background-color: #5865F2; /* platform accent color */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.discord-button:hover {
  background-color: #4752C4;
}
}

/* modern pink theme + motion refresh */
:root {
    --bg: #0f0a14;
    --bg-soft: #1a1122;
    --card: rgba(255, 255, 255, 0.06);
    --text: #fef7ff;
    --muted: #dbc9e5;
    --pink: #9cffe3;
    --pink-2: #c8ffef;
    --pink-3: #66d9b9;
    --border: rgba(156, 255, 227, 0.38);
    --shadow: 0 12px 30px rgba(156, 255, 227, 0.3);
}

body {
    background: radial-gradient(circle at 10% 10%, #23142e 0%, var(--bg) 45%, #09070d 100%);
    color: var(--text);
}

body::before {
    content: "";
    position: fixed;
    inset: -20% auto auto -10%;
    width: 36vw;
    height: 36vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(156, 255, 227, 0.22) 0%, rgba(156, 255, 227, 0) 68%);
    filter: blur(12px);
    pointer-events: none;
    z-index: -1;
    animation: floatAura 10s ease-in-out infinite;
}

body::after {
    content: "";
    position: fixed;
    inset: auto -12% -20% auto;
    width: 34vw;
    height: 34vw;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(102, 217, 185, 0.2) 0%, rgba(102, 217, 185, 0) 70%);
    filter: blur(14px);
    pointer-events: none;
    z-index: -1;
    animation: floatAura 12s ease-in-out infinite reverse;
}

body:not(.site-ready) .navbar,
body:not(.site-ready) .home .home-content .text-1,
body:not(.site-ready) .home .home-content .text-2,
body:not(.site-ready) .home .home-content .text-3,
body:not(.site-ready) .home .home-content a,
body:not(.site-ready) .home .home-cta-row,
body:not(.site-ready) .home .home-intro-card,
body:not(.site-ready) .home .skill-chip-list,
body:not(.site-ready) .home .home-visual,
body:not(.site-ready) .services .serv-content .card,
body:not(.site-ready) .skills .skills-content .right .bars,
body:not(.site-ready) .about .about-content .left img {
    opacity: 0;
}

body.site-ready .navbar {
    animation: navDropIn 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body.site-ready .navbar .logo,
body.site-ready .theme-toggle,
body.site-ready .navbar .menu li {
    animation: fadePopIn 0.65s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body.site-ready .navbar .logo { animation-delay: 0.08s; }
body.site-ready .navbar .menu li:nth-child(1) { animation-delay: 0.12s; }
body.site-ready .navbar .menu li:nth-child(2) { animation-delay: 0.17s; }
body.site-ready .navbar .menu li:nth-child(3) { animation-delay: 0.22s; }
body.site-ready .navbar .menu li:nth-child(4) { animation-delay: 0.27s; }
body.site-ready .theme-toggle { animation-delay: 0.3s; }

body.site-ready .home .home-content .text-1,
body.site-ready .home .home-content .text-2,
body.site-ready .home .home-content .text-3,
body.site-ready .home .home-content a,
body.site-ready .home .home-cta-row,
body.site-ready .home .home-intro-card,
body.site-ready .home .skill-chip-list,
body.site-ready .home .home-visual {
    animation: heroPopIn 0.75s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

body.site-ready .home .home-content .text-1 { animation-delay: 0.22s; }
body.site-ready .home .home-content .text-2 { animation-delay: 0.32s; }
body.site-ready .home .home-content .text-3 { animation-delay: 0.42s; }
body.site-ready .home .home-content a { animation-delay: 0.54s; }
body.site-ready .home .home-cta-row { animation-delay: 0.54s; }
body.site-ready .home .home-intro-card { animation-delay: 0.68s; }
body.site-ready .home .skill-chip-list { animation-delay: 0.8s; }
body.site-ready .home .home-visual { animation-delay: 0.62s; }

body.site-ready .services .serv-content .card,
body.site-ready .skills .skills-content .right .bars,
body.site-ready .about .about-content .left img {
    animation: cardPopIn 0.75s cubic-bezier(0.16, 1, 0.3, 1) both;
}

body.site-ready .services .serv-content .card:nth-child(1) { animation-delay: 0.58s; }
body.site-ready .services .serv-content .card:nth-child(2) { animation-delay: 0.68s; }
body.site-ready .services .serv-content .card:nth-child(3) { animation-delay: 0.78s; }
body.site-ready .skills .skills-content .right .bars:nth-child(1) { animation-delay: 0.7s; }
body.site-ready .skills .skills-content .right .bars:nth-child(2) { animation-delay: 0.8s; }
body.site-ready .skills .skills-content .right .bars:nth-child(3) { animation-delay: 0.9s; }
body.site-ready .about .about-content .left img { animation-delay: 0.48s; }

@keyframes navDropIn {
    from { opacity: 0; transform: translateY(-18px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadePopIn {
    from { opacity: 0; transform: translateY(-10px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes heroPopIn {
    from { opacity: 0; transform: translateY(24px) scale(0.97); filter: blur(2px); }
    to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

@keyframes cardPopIn {
    from { opacity: 0; transform: translateY(20px) scale(0.94); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes floatBlob {
    0%, 100% { transform: translateY(0) translateX(0) scale(1); }
    50% { transform: translateY(-12px) translateX(8px) scale(1.04); }
}

@keyframes floatAura {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-10px) translateX(10px); }
}

.reveal-pop {
    opacity: 0;
    transform: translateY(22px) scale(0.97);
    transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.04s;
}

.reveal-pop.in-view {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.services .serv-content .card.reveal-pop:nth-child(2),
.skills .skills-content .bars.reveal-pop:nth-child(2) {
    transition-delay: 0.1s;
}

.services .serv-content .card.reveal-pop:nth-child(3),
.skills .skills-content .bars.reveal-pop:nth-child(3) {
    transition-delay: 0.16s;
}

section {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.home { animation-delay: 0.05s; }
.about { animation-delay: 0.15s; }
.services { animation-delay: 0.25s; }
.skills { animation-delay: 0.35s; }
.contact { animation-delay: 0.45s; }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.navbar {
    backdrop-filter: blur(12px);
    background: linear-gradient(90deg, rgba(10, 8, 12, 0.35), rgba(25, 13, 35, 0.5));
}

.navbar.sticky {
    background: linear-gradient(90deg, rgba(156, 255, 227, 0.95), rgba(74, 183, 156, 0.95));
    box-shadow: 0 6px 20px rgba(156, 255, 227, 0.35);
}

.navbar .logo a span,
.navbar .menu li a:hover,
.home .home-content .text-3 span,
.about .about-content .right .text span,
.contact .contact-content .row i {
    color: var(--pink-2);
}

.scroll-up-btn {
    background: linear-gradient(135deg, var(--pink), var(--pink-3));
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.home {
    background:
        linear-gradient(130deg, rgba(9, 7, 13, 0.94), rgba(30, 9, 29, 0.92));
    position: relative;
    overflow: hidden;
}

.home::before,
.home::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.home::before {
    width: 260px;
    height: 260px;
    top: -70px;
    right: 8%;
    background: radial-gradient(circle, rgba(156, 255, 227, 0.35) 0%, rgba(156, 255, 227, 0) 72%);
    animation: floatBlob 8s ease-in-out infinite;
}

.home::after {
    width: 220px;
    height: 220px;
    bottom: -60px;
    left: 8%;
    background: radial-gradient(circle, rgba(102, 217, 185, 0.28) 0%, rgba(102, 217, 185, 0) 72%);
    animation: floatBlob 9s ease-in-out infinite reverse;
}

.home .max-width {
    position: relative;
    z-index: 1;
}

.home .home-content .text-2 {
    text-shadow: 0 0 20px rgba(156, 255, 227, 0.45);
}

.home .home-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
}

.home .home-content {
    flex: 1 1 62%;
}

.home .home-visual {
    flex: 0 0 320px;
    min-height: 380px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .visual-main-card {
    width: 100%;
    max-width: 320px;
    border-radius: 20px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    padding: 22px 20px;
    text-align: left;
    animation: floatBlob 7s ease-in-out infinite;
}

.home .visual-main-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(156, 255, 227, 0.45), rgba(102, 217, 185, 0.4));
    color: #0f1815;
    font-size: 22px;
    margin-bottom: 12px;
}

.home .visual-main-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.home .visual-main-card p {
    color: var(--muted);
    line-height: 1.55;
}

.home .visual-stats {
    margin-top: 16px;
    display: flex;
    gap: 10px;
}

.home .visual-stats div {
    flex: 1;
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 10px;
    background: rgba(156, 255, 227, 0.1);
}

.home .visual-stats strong {
    display: block;
    font-size: 22px;
    color: var(--pink-2);
    line-height: 1;
}

.home .visual-stats span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: var(--muted);
}

.home .visual-float-chip {
    position: absolute;
    border: 1px solid var(--border);
    background: rgba(156, 255, 227, 0.14);
    color: var(--text);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.home .chip-one { top: 28px; left: -18px; animation: floatAura 7s ease-in-out infinite; }
.home .chip-two { top: 160px; right: -18px; animation: floatAura 8s ease-in-out infinite reverse; }
.home .chip-three { bottom: 24px; left: 8px; animation: floatAura 9s ease-in-out infinite; }

.home .home-cta-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.home .home-content a.btn-secondary {
    background: transparent;
    border: 1px solid rgba(156, 255, 227, 0.7);
}

.home .home-content a.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(156, 255, 227, 0.3), rgba(102, 217, 185, 0.28));
}

.home .home-intro-card {
    margin-top: 18px;
    max-width: 680px;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

.home .home-intro-card p {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
}

.home .home-meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.home .home-meta span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--pink-2);
    font-weight: 500;
}

.home .home-meta .fa-circle {
    font-size: 10px;
}

.home .skill-chip-list {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 700px;
}

.home .skill-chip {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: rgba(156, 255, 227, 0.12);
    color: var(--text);
    font-size: 14px;
    font-weight: 500;
}

.home .home-content a,
.about .about-content .right a,
.skills .skills-content .left a,
.right form .button-area button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    isolation: isolate;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(156, 255, 227, 0.24), rgba(102, 217, 185, 0.22));
    border: 1px solid rgba(244, 184, 218, 0.75);
    color: var(--text);
    border-radius: 999px;
    letter-spacing: 0.4px;
    box-shadow: var(--shadow);
    transition: transform 0.28s ease, box-shadow 0.28s ease, color 0.28s ease, border-color 0.28s ease;
}

.home .home-content a::before,
.about .about-content .right a::before,
.skills .skills-content .left a::before,
.right form .button-area button::before,
.home .home-content a::after,
.about .about-content .right a::after,
.skills .skills-content .left a::after,
.right form .button-area button::after {
    content: "";
    position: absolute;
    width: 180%;
    height: 2px;
    left: -40%;
    top: 50%;
    transform-origin: center;
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    pointer-events: none;
    z-index: -1;
}

.home .home-content a::before,
.about .about-content .right a::before,
.skills .skills-content .left a::before,
.right form .button-area button::before {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.95), transparent);
    transform: translateX(-120%) rotate(25deg);
}

.home .home-content a::after,
.about .about-content .right a::after,
.skills .skills-content .left a::after,
.right form .button-area button::after {
    background: linear-gradient(90deg, transparent, rgba(156, 255, 227, 0.95), transparent);
    transform: translateX(120%) rotate(-25deg);
}

.home .home-content a:hover,
.about .about-content .right a:hover,
.skills .skills-content .left a:hover,
.right form .button-area button:hover {
    color: var(--text);
    border-color: var(--pink-2);
    background: linear-gradient(135deg, rgba(156, 255, 227, 0.44), rgba(102, 217, 185, 0.38));
    box-shadow: 0 16px 30px rgba(156, 255, 227, 0.42);
    transform: translateY(-3px) scale(1.02);
}

.home .home-content a:hover::before,
.about .about-content .right a:hover::before,
.skills .skills-content .left a:hover::before,
.right form .button-area button:hover::before {
    opacity: 1;
    transform: translateX(120%) rotate(25deg);
}

.home .home-content a:hover::after,
.about .about-content .right a:hover::after,
.skills .skills-content .left a:hover::after,
.right form .button-area button:hover::after {
    opacity: 1;
    transform: translateX(-120%) rotate(-25deg);
}

section .title::before {
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
}

section .title::after {
    color: var(--pink-2);
    background: transparent;
}

.about .about-content .left img {
    border: 2px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about .about-content .left img:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 18px 35px rgba(156, 255, 227, 0.4);
}

.services, .teams {
    background: linear-gradient(180deg, #140d1a 0%, #0f0a14 100%);
}

.services .title::after, .teams .title::after {
    background: transparent;
}

.services .serv-content .card,
.teams .carousel .card {
    background: var(--card);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 24px rgba(5, 0, 12, 0.35);
}

.services .serv-content .card:hover,
.teams .carousel .card:hover {
    background: linear-gradient(160deg, rgba(156, 255, 227, 0.25), rgba(102, 217, 185, 0.28));
    transform: translateY(-8px);
}

.services .serv-content .card i {
    color: var(--pink-2);
}

.skills .skills-content .right .line {
    background: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    overflow: hidden;
}

.skills .skills-content .right .line::before {
    background: linear-gradient(90deg, var(--pink), var(--pink-2));
    animation: pulseBar 2.4s ease-in-out infinite;
}

@keyframes pulseBar {
    0%, 100% { filter: brightness(0.95); }
    50% { filter: brightness(1.2); }
}

.contact .contact-content .info .sub-title,
.skills .skills-content .left p,
.about .about-content .right p {
    color: var(--muted);
}

footer {
    background: #0c0811;
    border-top: 1px solid var(--border);
}

footer span a {
    color: var(--pink-2);
}

.theme-toggle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: linear-gradient(145deg, rgba(156, 255, 227, 0.3), rgba(102, 217, 185, 0.25));
    color: var(--text);
    box-shadow: var(--shadow);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    filter: brightness(1.05);
    box-shadow: 0 16px 26px rgba(156, 255, 227, 0.34);
}

body.light-mode {
    --bg: #d7f6ed;
    --bg-soft: #c4eee2;
    --card: rgba(243, 255, 251, 0.9);
    --text: #1a2420;
    --muted: #33433d;
    --border: rgba(62, 160, 136, 0.42);
    --shadow: 0 14px 26px rgba(52, 133, 113, 0.24);
    background: radial-gradient(circle at 10% 10%, #effff9 0%, #d7f6ed 45%, #bce9dc 100%);
}

body.light-mode .navbar {
    background: linear-gradient(90deg, rgba(230, 255, 247, 0.94), rgba(196, 238, 226, 0.93));
    border-bottom: 1px solid rgba(62, 160, 136, 0.28);
}

body.light-mode .navbar .logo a,
body.light-mode .navbar .menu li a,
body.light-mode .home,
body.light-mode .services,
body.light-mode .teams {
    color: #2f1d2a;
}

body.light-mode .navbar .logo a span,
body.light-mode .navbar .menu li a:hover,
body.light-mode .home .home-content .text-3 span,
body.light-mode .about .about-content .right .text span,
body.light-mode .contact .contact-content .row i {
    color: #1a8a70;
}

body.light-mode .navbar.sticky {
    background: linear-gradient(90deg, rgba(126, 230, 203, 0.96), rgba(87, 195, 166, 0.95));
}

body.light-mode .navbar.sticky .logo a,
body.light-mode .navbar.sticky .menu li a {
    color: #1d2a26;
}

body.light-mode .home .home-content .text-1,
body.light-mode .home .home-content .text-2,
body.light-mode .home .home-content .text-3,
body.light-mode .about .about-content .right .text,
body.light-mode .skills .skills-content .left .text,
body.light-mode .contact .contact-content .text,
body.light-mode .contact .contact-content .info .head,
body.light-mode section .title {
    color: #17211d;
}

body.light-mode .services .serv-content .card .text,
body.light-mode .teams .carousel .card .text,
body.light-mode .services .serv-content .card p,
body.light-mode .teams .carousel .card p,
body.light-mode .skills .skills-content .right span {
    color: #1a2420;
}

body.light-mode .services .serv-content .card i,
body.light-mode .teams .carousel .card i {
    color: #1a8a70;
}

body.light-mode .services .title::before,
body.light-mode .teams .title::before {
    background: #17211d;
}

body.light-mode .about .title::after,
body.light-mode .skills .title::after,
body.light-mode .contact .title::after,
body.light-mode .services .title::after,
body.light-mode .teams .title::after {
    color: #1a8a70;
    font-weight: 600;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.4);
}

body.light-mode .home {
    background:
        linear-gradient(130deg, rgba(223, 249, 240, 0.98), rgba(184, 231, 217, 0.95));
}

body.light-mode .services,
body.light-mode .teams,
body.light-mode footer {
    background: #d9f5ec;
    color: #1a2420;
}

body.light-mode .services .title::after,
body.light-mode .teams .title::after {
    background: transparent;
}

body.light-mode .services .serv-content .card,
body.light-mode .teams .carousel .card {
    background: rgba(237, 252, 247, 0.95);
    border: 1px solid rgba(70, 170, 145, 0.3);
}

body.light-mode .services .serv-content .card:hover,
body.light-mode .teams .carousel .card:hover {
    background: linear-gradient(160deg, rgba(147, 233, 208, 0.5), rgba(94, 194, 167, 0.46));
}

body.light-mode .skills .skills-content .right .line {
    background: rgba(31, 73, 61, 0.2);
}

body.light-mode .contact .contact-content .info .sub-title,
body.light-mode .skills .skills-content .left p,
body.light-mode .about .about-content .right p {
    color: #33433d;
}

body.light-mode .skills .skills-content .right .info span:last-child {
    color: #123b30;
    font-weight: 700;
}

body.light-mode .contact .contact-content .info .head,
body.light-mode .contact .contact-content .text {
    color: #17211d;
}

body.light-mode .home .home-content a,
body.light-mode .about .about-content .right a,
body.light-mode .skills .skills-content .left a,
body.light-mode .right form .button-area button {
    color: #12211c;
    border-color: rgba(62, 160, 136, 0.8);
    background: linear-gradient(135deg, rgba(150, 237, 211, 0.75), rgba(95, 196, 169, 0.7));
}

body.light-mode .social-circle-btn {
    color: #1a8a70;
    border-color: #1a8a70;
    background: rgba(26, 138, 112, 0.08);
}

body.light-mode .social-circle-btn:hover {
    color: #0f5f4d;
    border-color: #0f5f4d;
    background: rgba(26, 138, 112, 0.14);
    box-shadow: 0 12px 24px rgba(26, 138, 112, 0.24);
}

body.light-mode .home .home-intro-card {
    background: rgba(239, 252, 247, 0.85);
    border-color: rgba(62, 160, 136, 0.35);
}

body.light-mode .home .home-intro-card p {
    color: #33433d;
}

body.light-mode .home .home-meta span {
    color: #1a8a70;
}

body.light-mode .home .skill-chip {
    background: rgba(150, 237, 211, 0.5);
    border-color: rgba(62, 160, 136, 0.45);
    color: #17211d;
}

body.light-mode .home .visual-main-card {
    background: rgba(236, 251, 246, 0.92);
    border-color: rgba(62, 160, 136, 0.4);
}

body.light-mode .home .visual-main-card p,
body.light-mode .home .visual-stats span {
    color: #33433d;
}

body.light-mode .home .visual-main-icon {
    color: #123b30;
}

body.light-mode .home .visual-float-chip {
    background: rgba(150, 237, 211, 0.52);
    border-color: rgba(62, 160, 136, 0.45);
    color: #17211d;
}

body.light-mode::before {
    background: radial-gradient(circle, rgba(156, 255, 227, 0.14) 0%, rgba(156, 255, 227, 0) 70%);
}

body.light-mode::after {
    background: radial-gradient(circle, rgba(102, 217, 185, 0.12) 0%, rgba(102, 217, 185, 0) 70%);
}

body.light-mode .home::before {
    background: radial-gradient(circle, rgba(156, 255, 227, 0.2) 0%, rgba(156, 255, 227, 0) 72%);
}

body.light-mode .home::after {
    background: radial-gradient(circle, rgba(102, 217, 185, 0.16) 0%, rgba(102, 217, 185, 0) 72%);
}

body.light-mode .navbar .menu {
    background: transparent;
}

@media (max-width: 947px) {
    .theme-toggle {
        margin-left: auto;
        margin-right: 12px;
    }

    body.light-mode .navbar .menu {
        background: #d9f5ec;
    }

    .home .home-cta-row {
        gap: 10px;
    }

    .home .home-content a {
        font-size: 20px;
        padding: 10px 24px;
    }

    .home .home-intro-card {
        max-width: 100%;
    }

    .home .home-layout {
        flex-direction: column;
        align-items: flex-start;
    }

    .home .home-visual {
        width: 100%;
        min-height: auto;
        margin-top: 16px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .home .visual-main-card {
        max-width: 100%;
        width: 100%;
        animation: none;
    }

    .home .visual-float-chip {
        position: static;
    }

    .home .chip-one,
    .home .chip-two,
    .home .chip-three {
        animation: none;
    }
}

@media (max-width: 690px) {
    .home .home-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .home .home-content a {
        width: 100%;
        text-align: center;
    }

    .home .home-meta {
        gap: 10px;
    }

    .home .visual-stats {
        width: 100%;
    }
}

/* custom cursor */
.cursor-dot,
.cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    z-index: 10000;
    transition: opacity 0.2s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--pink-2);
    box-shadow: 0 0 18px rgba(156, 255, 227, 0.55);
}

.cursor-ring {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1.5px solid rgba(156, 255, 227, 0.72);
    background: rgba(156, 255, 227, 0.08);
    box-shadow: 0 0 24px rgba(156, 255, 227, 0.24);
    backdrop-filter: blur(2px);
}

.cursor-dot.visible,
.cursor-ring.visible {
    opacity: 1;
}

.cursor-ring.active {
    width: 52px;
    height: 52px;
    border-color: rgba(200, 255, 239, 0.95);
    background: rgba(156, 255, 227, 0.15);
}

body.custom-cursor-enabled,
body.custom-cursor-enabled a,
body.custom-cursor-enabled button,
body.custom-cursor-enabled .card,
body.custom-cursor-enabled .menu-btn,
body.custom-cursor-enabled .scroll-up-btn {
    cursor: none;
}

body.light-mode .cursor-dot {
    background: #1a8a70;
    box-shadow: 0 0 16px rgba(26, 138, 112, 0.35);
}

body.light-mode .cursor-ring {
    border-color: rgba(26, 138, 112, 0.5);
    background: rgba(26, 138, 112, 0.08);
    box-shadow: 0 0 16px rgba(26, 138, 112, 0.16);
}

/* Social buttons container */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
  margin-top: 12px;
}

.social-circle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 2px solid currentColor;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background: transparent;
  color: #9cffe3;
  border-color: #9cffe3;
}

/* Shared hover/active */
.social-circle-btn:hover {
  transform: translateY(-4px) scale(1.05);
  color: #c8ffef;
  border-color: #c8ffef;
  background: rgba(156, 255, 227, 0.1);
  box-shadow: 0 12px 28px rgba(156, 255, 227, 0.35);
}

.social-circle-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.social-circle-btn i {
  transition: transform 0.3s ease;
}

.social-circle-btn img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.social-circle-btn:hover i,
.social-circle-btn:hover img {
  transform: scale(1.1);
}

.social-circle-btn:hover {
  transform: translateY(-4px) scale(1.05);
}

.social-circle-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.social-circle-btn i {
  transition: transform 0.3s ease;
}

.social-circle-btn:hover i {
  transform: scale(1.1);
}

@media (max-width: 690px) {
  .social-circle-btn {
    width: 52px;
    height: 52px;
    font-size: 20px;
    border-width: 2px;
    border-style: solid;
    background-clip: padding-box;
    -webkit-background-clip: padding-box;
  }
}

@media (pointer: coarse) {
    .cursor-dot,
    .cursor-ring {
        display: none !important;
    }
}

/* responsive cleanup overrides */
@media (max-width: 947px) {
    section {
        padding: 78px 0;
    }

    .max-width {
        padding: 0 20px;
    }

    .navbar {
        padding: 14px 0;
    }

    .navbar .logo a {
        font-size: 31px;
    }

    .navbar .menu {
        padding-top: 96px;
    }

    .home {
        min-height: auto;
        padding-top: 110px;
        padding-bottom: 56px;
        height: auto;
    }

    .home .home-content .text-1 {
        font-size: 22px;
    }

    .home .home-content .text-2 {
        font-size: 52px;
        line-height: 1.08;
    }

    .home .home-content .text-3 {
        font-size: 28px;
    }

    .home .home-intro-card {
        padding: 14px;
    }

    .home .home-intro-card p {
        font-size: 15px;
    }

    .home .home-meta span,
    .home .skill-chip {
        font-size: 13px;
    }

    .home .home-content a {
        min-height: 44px;
    }

    .services .serv-content .card,
    .contact .contact-content .column,
    .skills .skills-content .column {
        margin-bottom: 20px;
    }

    .services .serv-content .card {
        padding: 30px 18px;
    }

    .skills .skills-content .right span {
        font-size: 16px;
    }

    .contact .contact-content .row {
        height: auto;
        padding: 10px 0;
        align-items: flex-start;
    }
}

@media (max-width: 690px) {
    section .title {
        font-size: 34px;
        margin-bottom: 46px;
    }

    section .title::after {
        font-size: 17px;
        bottom: -7px;
    }

    .home .home-content .text-2 {
        font-size: 44px;
    }

    .home .home-content .text-3 {
        font-size: 24px;
    }

    .home .home-content a {
        font-size: 17px;
        padding: 10px 18px;
    }

    .home .visual-main-card {
        padding: 16px;
    }
}

@media (max-width: 500px) {
    .navbar .logo a {
        font-size: 24px;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
    }

    .menu-btn {
        font-size: 21px;
    }

    .home .home-content .text-1 {
        font-size: 19px;
    }

    .home .home-content .text-2 {
        font-size: 36px;
    }

    .home .home-content .text-3 {
        font-size: 21px;
    }

    .home .home-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .home .skill-chip-list {
        gap: 8px;
    }

    .home .skill-chip {
        padding: 7px 11px;
    }

    .home .visual-stats {
        flex-direction: column;
    }

    .right form .button-area button {
        width: 100% !important;
    }
}
.guns-btn img {
  mix-blend-mode: screen;
  width: 26px;
  height: 26px;

  /* turn image into your exact color */
  filter: brightness(0) saturate(100%) 
          invert(88%) sepia(12%) saturate(600%) 
          hue-rotate(90deg);
}
.guns-btn:hover img {
  filter: brightness(0) saturate(100%) 
          invert(95%) sepia(20%) saturate(800%) 
          hue-rotate(90deg);
}
