*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:black;
    color:var(--dark);
    line-height:1.7;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}
.about-content{
     width:100%;
}
.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

section{
    padding:100px 0;
}

/* ---------- COLORS ---------- */

:root{

    --gold:#d4af37;
    --gold-light:#f6d46b;

    --dark:#1f1f2b;
    --dark2:#33334a;
    --card:#ffffff;

    --white:#ffffff;

    --gray:#7a7a8f;
    --background:#f6f5fb;
    --default-color: #212529;
    --accent-color: #ffffff;
    --heading-color-dark: #231f20;
    --heading-color-light: #1a192e;

}
.primary-color{
    color: var(--gold);
}

/* ---------- SECTION TITLE ---------- */

.section-title{
    text-align:center;
    margin-bottom:130px;
    
}

.section-title h2{

    font-size:42px;

   color:var(--gold);

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    width:80px;

    height:4px;

    background:var(--gold);

    position:absolute;

    bottom:-12px;

    left:50%;

    transform:translateX(-50%);

}

/* ---------- HEADER ---------- */

header{
    width:100%;
    position:fixed;
    top:0;
    left:0;
    z-index:999;
    backdrop-filter: blur(8px);
    transition:.3s;
    color:var(--white);
    pointer-events:auto;
}
.stroke-text {
    color: transparent;
    -webkit-text-stroke: 1px var(--gold);
    font-weight: 800;
}
.stroke-text-black {
    color: transparent;
    -webkit-text-stroke: 1px black;
    font-weight: 800;
}

/* ---------- NAVIGATION ---------- */

.navbar{

    width:90%;

    max-width:1200px;

    margin:auto;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:20px 0;

}

.logo h2{

    color:var(--gold);

    font-size:32px;

    font-weight:800;

    letter-spacing:3px;

}

.logo img{

    display:block;

    max-height:52px;

    width:auto;

}

.nav-links{

    display:flex;

    gap:35px;

}

.nav-links a{

    color:var(--white);

    transition:.3s;

    font-weight:500;

}

.nav-links a:hover{

    color:var(--gold);

}

/* ---------- BUTTON ---------- */

.btn{
    width: 17%;
    background: linear-gradient(267deg, #96969600, #4e4e4e);
    box-shadow: inset -4px 0px 0px 0px rgb(255 195 0);
    color: #ffffff;
    border: none;
    border-radius: 14px;
    padding: 10px 0;
    font-size: 17px;
    cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease;

}

.btn:hover{

    transform:translatex(-4px);
    box-shadow: inset 4px 0px 0px 0px rgb(255 195 0);

}

.btn-outline{

    border:2px solid var(--gold);

    color:var(--gold);

    padding:14px 30px;

    border-radius:40px;

    transition:.35s;

}

.btn-outline:hover{

    background:var(--gold);

    color:black;

}

/* ---------- HERO ---------- */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:flex-start;

    align-items:center;

    text-align:left;

    position:relative;

    padding-left:5%;

    background:linear-gradient(180deg, rgba(10,10,10,.78), rgba(10,10,10,.88)),
    url("../img/PNG/hero.jpg") center/cover;

    background-size:cover;
    background-attachment:fixed;
    background-repeat:no-repeat;

}

.hero-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(180deg, rgba(17,17,34,.14), rgba(17,17,34,.42));

}

.hero-content{

    position:relative;

    z-index:2;

    width:90%;

    max-width:920px;

    text-align:left;

}

@media(max-width:768px){
    .hero{
        justify-content:center;
        padding-left:0;
        text-align:center;
    }
    .hero-content{
        text-align:center;
    }
}

.hero-tag{

    display:inline-block;

    text-transform:uppercase;

    letter-spacing:2px;

    color:#e6d8aa;

    border:1px solid rgba(212,175,55,.24);

    padding:10px 18px;

    border-radius:999px;

    margin-bottom:24px;

    font-size:13px;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin-bottom:30px;

    text-shadow:0 24px 45px rgba(0,0,0,.18);

}

.hero h1 span{

    color:var(--gold);

}

.hero p{

    color:#f1f1f5;

    font-size:20px;

    margin:0 auto 40px;

    max-width:760px;

}

.hero-highlights{

    display:flex;

    justify-content:flex-start;

    gap:16px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.hero-highlights span{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:11px 18px;

    border-radius:14px;

    border:1px solid rgba(31,31,43,.08);

    color:white;

    font-size:14px;

    letter-spacing:.5px;

    background: linear-gradient(267deg, #96969600, #4e4e4e00);
    box-shadow: inset -4px 0px 0px 0px rgb(255 195 0);

}

.hero-buttons{

    display:flex;

    justify-content:flex-start;

    gap:20px;

    flex-wrap:wrap;

}
.btn a{
    color:white
}
.btn a:hover{
    transition:.35s;
    box-shadow: inset 4px 0px 0px 0px rgb(255 195 0);
}

.hero-buttons .btn,

.hero-buttons .btn-outline{

    min-width:180px;

}


/* ---------- ABOUT ---------- */

.about{
    background-image: linear-gradient(to top, #ffffffc1,#000000);
}

.about p{
    text-align:center;
    max-width:900px;
    margin:0 auto 60px;
    color:white;
    font-size:18px;
}

.experience-badge {
    bottom: 5%;
    right: 5%;
    background-color: var(--gold);
    color: var(--contrast-color);
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    width: 10%;
    animation: experience-float 3s ease-in-out infinite;
}

@media (max-width: 992px) {
    .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
    }
}

.experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    line-height: 0.5;
}

.experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}

.experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}

.about-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); 
    gap:40px; 
    margin-bottom:60px; 
    align-items:stretch;
    width:100%; 
    height:500px;
    
}

.about-grid:last-child{
    margin-bottom:0;
}

.about-card{
    opacity: 0;
    transform: translateX(120%);
    will-change: transform, opacity;
}

.about-card p{
    text-align: left;
    margin: 0;
    line-height: 1.8;
    color: #5a5a6f;
}
.card-about{
  position:absolute;
    left:50%;
    top:20%;
    transform:translate(100vw,-50%);
    opacity:0;
    padding: 70px;
    text-align: left;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 15px 45px rgba(31,31,43,0.08);
    inset:0;
    margin: 10% auto auto auto;
    width:80%;
    max-width:800px;
    height:400px;
}
  .card-about:hover {
    transform:translateY(-12px);
    border-color: rgba(212,175,55,.35);
    box-shadow:0 20px 55px rgba(212,175,55,.12);
  }
  .card-about p {
    text-align: left;
    margin: 20px 0px 0px 0px;
        color: rgba(255,255,255,0.92);
  }
  .card-about h3{
    color: var(--gold);
    }
.card{

    background:#ffffff;

    padding:40px;

    border-radius:18px;

    transition:.35s;

    border:1px solid rgba(31,31,43,.08);

}

.card:hover{

    transform:translateY(-12px);

    border-color:rgba(212,175,55,.35);

    box-shadow:0 15px 45px rgba(31,31,43,.08);

}

.card h3{

    color:var(--gold);

    margin-bottom:20px;

    font-size:28px;

}

.card p{

    text-align:left;

    margin:0;

}

/* ---------- PROCESS ---------- */

.process{
    background: linear-gradient(180deg, rgba(17,17,34,0.72), rgba(17,17,34,0.72)), url("../img/PNG/steps-bg.jpg") center/cover;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.timeline{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    position: relative;
    padding: 80px 0 40px 0;
}

.timeline::before{
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 15%, var(--gold) 85%, transparent 100%);
    display: block;
}

.step{
    backdrop-filter: blur(8px);
    transition:.3s;
    background: #0909094c;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border: 0.5px solid var(--gold);
    position: relative;
    z-index: 2;
    box-shadow: inset -4px 0px 0px var(--gold);
}

.step:hover{
    transform: translateY(-12px);
    border-color: var(--gold);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.2);
}

.step h3{
    font-size: 30px;
    font-weight: 800;
    background: linear-gradient(2deg, var(--white), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.step h4{
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: 400;
}

.step p{
    color: #7a7a8f;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

.step::before{
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: var(--gold);
    border-radius: 50%;
    top: -73px;
    left: 50%;
    transform: translateX(-50%);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px var(--gold), inset 0 0 0 3px var(--gold);
}

.step::after{
    content: "";
    position: absolute;
    width: 2px;
    height: 32px;
    background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.4));
    left: 50%;
    top: -32px;
    transform: translateX(-50%);
}

@media(max-width: 768px){
    .timeline{
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .timeline::before{
        display: none;
    }

    .step{
        padding: 32px 24px;
    }

    .step h3{
        font-size: 36px;
    }

    .step h4{
        font-size: 20px;
    }
}

/* ---------- CLIENTS ---------- */

.clients{
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    position: relative;
    overflow: hidden;
}

.clients::before{
    content: "";
    position: absolute;
    top: -50%;
    right: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.clients::after{
    content: "";
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.clients .section-title h2{
    color: var(--gold);
}

.client-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    position: relative;
    z-index: 2;
}

.client-item{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.88) 100%);
    padding: 48px 32px;
    border-radius: 20px;
    transition: all 0.45s cubic-bezier(0.23, 1, 0.320, 1);
    border: 1px solid rgb(212, 175, 55);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: inset -4px 0px 0px var(--gold);
    min-height: 240px;
}

.client-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.6s ease;
}

.client-item:hover::before{
    left: 100%;
}

.client-item:hover{
    transform: translateY(-16px) scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 25px 60px rgba(212, 175, 55, 0.25);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.client-item img{
    max-height: 90px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
    filter: grayscale(100%) brightness(1);
    transition: filter 0.35s ease;
}

.client-item:hover img{
    filter: grayscale(0%) brightness(1.1);
}

.client-item span{
    color: var(--dark);
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, var(--dark), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.45s ease;
}

.client-item:hover span{
    opacity: 1;
    transform: translateY(0);
}

/* ---------- SERVICES ---------- */

.services{
    background: var(--background);
}
.section-padding{
    padding-top: 150px;
    padding-bottom: 190px;
}
.card .card-icon{
    width:86px;
    height:86px;
    object-fit:contain;
    display:block;
    margin:0 auto 18px;
    border-radius:12px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(31,31,43,0.06); 
}

.VMP-card{
    width: auto;
    height: auto;
    padding: 20px;
    border-radius: 6px;
    cursor: pointer;

    backdrop-filter: blur(8px);
    transition: .3s;
    background: linear-gradient(180deg, black, transparent);
    box-shadow: inset -4px 0px 0px var(--gold);
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.35s ease;
    border: 0.5px solid var(--gold);
    position: relative;
    z-index: 2;

}
.VMP-card h3{
    color: var(--gold);
    margin-bottom: 15px;
    font-size: 26px;
    text-align: left;
    margin-top: 20px;
}
.VMP-card p{
    color: white;
    text-align: left;
    font-size: 16px;
}
.VMP-card:hover{
  color: rgb(88 199 250 / 100%);
  transition: color 1s;
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.service-card{

    background:#ffffff;
    box-shadow: inset -4px 0px 0px var(--gold);

    padding:40px 30px;

    border-radius:18px;

    text-align:center;

    transition:.35s;

    cursor:pointer;

    border:1px solid rgba(31,31,43,.08);

}

.service-card:hover{

    transform:translateY(-10px);

    border-color:var(--gold);

    box-shadow:0 15px 35px rgba(31,31,43,.08);

}

.service-card h3{

    color:var(--gold);

    margin-bottom:15px;

    font-size:26px;

}

.service-card p{

    color:#5a5a6f;

}

/* ---------- LEADERSHIP ---------- */

.leadership{
    background: var(--background);
}

.leadership-content{
    display: flex;
    align-items: center;
    gap: 48px;
    background: linear-gradient(89deg, #0000008a, #ff000000);
    padding: 50px 45px;
    border-radius: 34px;
    border: 1px solid rgb(255 200 0 / 41%);
    box-shadow: inset -15px 0px 0px var(--gold);
    transition: all 0.35s ease;
    max-width: 900px;
    margin: 0px auto 84px auto;
}

.leadership-content:hover{
    box-shadow: inset -15px 0px 0px var(--gold);
    transform: translateX(-4px);
}

.leadership-content img{
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    border: 1px solid var(--gold);
    box-shadow: 6px 0px 0px var(--gold);
}

.leadership-content p{
    color: #3f3f58;
    font-size: 18px;
    line-height: 1.8;
    text-align: left;
    margin: 0;
}

@media(max-width: 768px){
    .leadership-content{
        flex-direction: column;
        gap: 32px;
        padding: 40px 30px;
    }

    .leadership-content img{
        width: 240px;
        height: 240px;
    }

    .leadership-content p{
        text-align: center;
        font-size: 16px;
    }
}

/* ---------- CONTACT FORM ---------- */

.contact{
    color:white;
     background:linear-gradient(180deg, rgba(10,10,10,.78), rgba(10,10,10,.88)),
    url("../img/clients/BackGround.png") center/cover;
}
.contact-panel-parent{
    background: transparent;
    backdrop-filter: blur(1px);
    border-radius: 28px;
    padding: 50px;
    margin: 0 auto;
    box-shadow: 0 30px 60px rgba(31, 31, 43, .08);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    justify-items: start;
    align-items: center;


}
.contact-panel{
    border-right:1px solid var(--gold);
    border-radius:28px;
    padding-right:30px;
    max-width:780px;
}

.contact-panel p{

    color:white;

    font-size:18px;

    line-height:1.8;

    text-align:left;

    max-width:720px;

    margin:0 auto 35px;

}

.contact-form{

    display:flex;
    background-color: transparent;
    flex-direction:column;

}

.contact-form > * + *{

    margin-top:20px;

}

.form-row{

    display:flex;

    justify-content:space-between;

    flex-wrap:wrap;

    margin:0 -10px;

}

.form-row input{

    width:calc(50% - 10px);

    min-width:240px;

    margin:10px 0;

}

.contact-form input,

.contact-form textarea{

    width:100%;

    background:transparent;
    box-shadow: inset 4px 0px 0px 0px rgb(255 195 0);

    color:white;

    border-radius:18px;

    padding:18px 22px;
    font-size:16px;


}

.contact-form textarea{

    min-height:150px;
  
    resize:vertical;

}

.contact-form input:focus,

.contact-form textarea:focus{


    box-shadow:0 0 0 4px rgba(212,175,55,.12);
    transform:translateY(-2px);
    background:transparent;
    color:white;

}

.contact-form button{

    width: 40%;
    background: linear-gradient(267deg, #96969600, #4e4e4e);
    color: #ffffff;
    border: none;
    border-radius: 18px;
    padding: 18px 0;
    font-size: 18px;
    cursor: pointer;
    box-shadow: inset -6px 0px 0px 0px rgb(255 195 0);
    transition: transform .25s ease, box-shadow .25s ease;

}

.contact-form button:hover{

    transform:translateX(3px);
    color: var(--gold);
    box-shadow: inset 6px 0px 0px 0px rgb(255 195 0);

}

/* ---------- SPACING ---------- */

.mt-50{
    margin-top:50px;
}

.mt-100{
    margin-top:100px;
}

.text-center{
    text-align:center;
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: whitesmoke;
  background: linear-gradient(225deg, color-mix(in srgb, var(--accent-color), transparent 95%) 50%, color-mix(in srgb, var(--accent-color), transparent 98%) 25%, transparent 50%);
  font-size: 14px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}
.row{
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 0;
    display: flex;
    flex-wrap: nowrap;
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left: calc(-.5 * var(--bs-gutter-x));
    justify-content: space-around;
}
.footer .social-links a {
     display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid
 color-mix(in srgb, #828282, transparent 50%);
    box-shadow: 2px 0px 0 0px var(--gold);
    font-size: 16px;
    color: #828282;
    margin-right: 10px;
    transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links {
  margin-bottom: 30px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  color: #9da9b6;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 8px;
  font-size: 13px;
}

/* ---------- DEVELOPER CREDIT ---------- */

.developed-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

@keyframes developedByGlow {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1), inset 0 0 20px rgba(212, 175, 55, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
  }
  50% {
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.2), inset 0 0 30px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.5);
  }
}

.dev-label {
  font-size: 12px;
  font-weight: 600;
  color: rgba(212, 175, 55, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: labelPulse 2s ease-in-out infinite;
}

@keyframes labelPulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

.dev-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.dev-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.dev-link::before {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), #ffffff);
  transition: width 0.4s ease;
}

.dev-link:hover::before {
  width: 100%;
}

.dev-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  animation: iconRotate 20s linear infinite;
  filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.4));
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.dev-link:hover .dev-icon {
  animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
  0%, 100% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(10deg) scale(1.2);
  }
}

.dev-name {
  font-size: 14px;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.dev-name::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.dev-link:hover .dev-name {
  text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

@media (max-width: 768px) {
  .developed-by {
    flex-direction: column;
    gap: 8px;
    padding: 12px 16px;
  }

  .dev-label {
    font-size: 11px;
  }

  .dev-link {
    gap: 6px;
  }

  .dev-icon {
    width: 18px;
    height: 18px;
  }

  .dev-name {
    font-size: 13px;
  }
}

/* ---------- HAMBURGER MENU ---------- */

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
    gap: 6px;
}

.hamburger-line {
    width: 28px;
    height: 3px;
    background-color: var(--white);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.nav-links {
    position: fixed;
    left: 0;
    top: 60px;
    flex-direction: column;
    background-color: rgba(15, 15, 30, 0.98);
    backdrop-filter: blur(10px);
    width: 100%;
    text-align: center;
    transition: all 0.3s ease;
    padding: 20px 0;
    gap: 15px;
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
}

.nav-links.active {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
    border-bottom: 2px solid var(--gold);
    padding: 30px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-links li {
    padding: 12px 0;
}

.nav-links a {
    display: block;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--gold);
}

.nav-links a::before {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 80px;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        justify-content: space-between;
    }

    .btn {
        display: none;
    }

    .nav-links {
        position: fixed;
        left: 0;
        top: 70px;
        width: 100%;
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Hide hamburger on larger screens */
@media (min-width: 769px) {
    .hamburger {
        display: none !important;
    }

    .nav-links {
        position: static !important;
        transform: translateX(0) !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        background-color: transparent !important;
        backdrop-filter: none !important;
        width: auto !important;
        flex-direction: row !important;
        gap: 35px !important;
        padding: 0 !important;
        border-bottom: none !important;
        flex-direction: row;
        gap: 35px;
    }

    .nav-links li {
        padding: 0 !important;
    }

    .nav-links a {
        font-size: 14px !important;
        padding: 0 !important;
        position: relative;
    }

    .nav-links a::before {
        display: none;
    }

    .btn {
        display: block !important;
    }
}

