/* =========================
   GLOBAL STYLES
========================= */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins', sans-serif;
    background:#0a0a0f;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.6;
    position:relative;
}

/* Gradient glow background */
body::before{
    content:'';
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0,174,239,0.12), transparent 35%),
        radial-gradient(circle at 80% 30%, rgba(107,175,30,0.12), transparent 35%),
        radial-gradient(circle at 50% 80%, rgba(0,174,239,0.12), transparent 35%);
    z-index:-3;
}

/* Floating background shapes */
.bg-animation{
    position:fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    overflow:hidden;
    z-index:-2;
}

.bg-animation span{
    position:absolute;
    display:block;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    animation:float 20s linear infinite;
    bottom:-150px;
    backdrop-filter:blur(3px);
}

.bg-animation span:nth-child(1){width:120px;height:120px;left:10%;animation-duration:18s;}
.bg-animation span:nth-child(2){width:80px;height:80px;left:30%;animation-duration:22s;animation-delay:2s;}
.bg-animation span:nth-child(3){width:160px;height:160px;left:55%;animation-duration:26s;animation-delay:4s;}
.bg-animation span:nth-child(4){width:70px;height:70px;left:75%;animation-duration:20s;animation-delay:1s;}
.bg-animation span:nth-child(5){width:140px;height:140px;left:90%;animation-duration:28s;animation-delay:3s;}

@keyframes float{
    0%{transform:translateY(0) rotate(0deg);opacity:0;}
    10%{opacity:1;}
    100%{transform:translateY(-120vh) rotate(360deg);opacity:0;}
}

/* =========================
   HEADER
========================= */
header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    background:rgba(10,10,15,0.6);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,0.08);
    z-index:1000;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:1.5rem;
    font-weight:700;
    letter-spacing:1px;
    color:#ffffff;
}

.logo-img{
    width:48px;
    height:48px;
    object-fit:contain;
    border-radius:50%;
    background:#ffffff;
    padding:4px;
    box-shadow:0 0 18px rgba(0,174,239,0.35);
}

.glow-logo{
    background:linear-gradient(
        90deg,
        #00aeef,
        #6baf1e
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;

    background-clip:text;
    color:transparent;

    text-shadow:
        0 0 10px rgba(0,174,239,0.5),
        0 0 20px rgba(107,175,30,0.3);

    animation:logoGlow 3s infinite alternate;
}

@keyframes logoGlow{
    from{
        filter:drop-shadow(0 0 5px rgba(0,174,239,0.5));
    }

    to{
        filter:drop-shadow(0 0 15px rgba(107,175,30,0.7));
    }
}

nav a{
    margin-left:24px;
    text-decoration:none;
    color:#ffffff;
    font-weight:500;
    position:relative;
    transition:0.3s;
}

nav a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-6px;
    width:0;
    height:2px;
    background:#00AEEF;
    transition:0.3s;
    box-shadow:0 0 10px rgba(0,174,239,0.8);
}

nav a:hover{color:#00AEEF;}
nav a:hover,
nav a:hover::after{
    width:100%;
}

/* =========================
   HERO SECTION
========================= */
.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:120px 8% 80px;
    gap:50px;
}

.hero-content{flex:1;}

.hero-content h1{
    font-size:3.8rem;
    line-height:1.1;
    margin-bottom:15px;
}

.hero-content h1 span{
    color:#00AEEF;
    text-shadow:
        0 0 5px rgba(0,174,239,0.5),
        0 0 10px rgba(0,174,239,0.25);
}

.hero-content h2{
    font-size:1.8rem;
    color:#6BAF1E;
    margin-bottom:20px;
}

.hero-content p{
    max-width:560px;
    color:#b8b8c5;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
}

.btn{
    padding:14px 30px;
    border-radius:40px;
    text-decoration:none;
    font-weight:600;
    transition:all 0.35s ease;
    display:inline-block;
}

.primary{
    background:linear-gradient(45deg,#00AEEF,#6BAF1E);
    color:#fff;
    box-shadow:0 0 18px rgba(0,174,239,0.35);
}

.primary:hover{
    transform:translateY(-4px) scale(1.03);
    box-shadow:0 0 24px rgba(107,175,30,0.35);
}

.secondary{
    border:1px solid rgba(255,255,255,0.25);
    color:#fff;
    background:rgba(255,255,255,0.04);
    backdrop-filter:blur(10px);
}

.secondary:hover{
    border-color:#00AEEF;
    color:#00AEEF;
    transform:translateY(-4px);
    box-shadow:0 0 20px rgba(0,174,239,0.35);
}

/* =========================
   ART BOX
========================= */
.art-box{
    flex:1;
    min-height:420px;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
}

.circle{
    position:absolute;
    border-radius:50%;
    filter:blur(2px);
    animation:orbit 8s ease-in-out infinite alternate;
}

.c1{
    width:260px;
    height:260px;
    background:rgba(0,174,239,0.22);
    box-shadow:0 0 40px rgba(0,174,239,0.35);
}

.c2{
    width:180px;
    height:180px;
    background:rgba(107,175,30,0.18);
    top:20px;
    right:70px;
}

.c3{
    width:120px;
    height:120px;
    background:rgba(0,174,239,0.16);
    bottom:30px;
    left:80px;
}

.c4{
    width:80px;
    height:80px;
    background:rgba(255,255,255,0.12);
    top:120px;
    left:40px;
}

@keyframes orbit{
    from{transform:translateY(-10px) translateX(-6px) scale(1);}
    to{transform:translateY(10px) translateX(6px) scale(1.08);}
}

/* =========================
   SECTIONS
========================= */
.section{
    padding:20px 8%;
}

/* Correct scroll position for fixed header */
#about{
    scroll-margin-top:120px;
}

#portfolio{
    scroll-margin-top:120px;
}

#reviews{
    scroll-margin-top:120px;
}

#contact{
    scroll-margin-top:120px;
}

/* NEW - transparent glass effect */
.dark{
    background:transparent
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h2{
    font-size:2.5rem;
    margin-bottom:12px;
    color:#ffffff;
}

.line{
    width:90px;
    height:4px;
    margin:auto;
    border-radius:10px;
    background:linear-gradient(90deg,#00AEEF,#6BAF1E);
    box-shadow:0 0 14px rgba(0,174,239,0.45);
}

/* =========================
   ABOUT
========================= */
.about-layout{
    display:grid;
    grid-template-columns:320px 1fr;
    gap:40px;
    align-items:start;
}

.about-left{text-align:center;}

.about-photo{
    width:100%;
    max-width:300px;
    border-radius:20px;
    object-fit:cover;
    box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.photo-description{
    margin-top:15px;
    padding:15px;
    background:rgba(255,255,255,0.04);
    border-radius:16px;
}

.photo-description h3{
    color:#6BAF1E;
    margin-bottom:8px;
}

.photo-description p{
    font-size:0.95rem;
    color:#d1d5db;
}

.about-text{
    background:rgba(255,255,255,0.05);
    padding:25px;
    border-radius:20px;
    color:#e8eef5;
}

/* =========================
   PORTFOLIO
========================= */
.portfolio-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:28px;
}

.portfolio-card{
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    border-radius:22px;
    overflow:hidden;
    transition:all 0.4s ease;
}

/* ADD THIS BELOW */
.card-image{
    width:100%;
    height:250px;
    overflow:hidden;
}

.card-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.portfolio-card:hover{
    transform:translateY(-12px);
    box-shadow:0 18px 40px rgba(0,174,239,0.18);
    border-color:rgba(0,174,239,0.45);
}

.card-image{
    height:200px;
    background:linear-gradient(135deg,#00AEEF,#0066cc 50%,#6BAF1E);
}

.portfolio-card h3{padding:20px 20px 10px;}
.portfolio-card p{padding:0 20px 24px;color:#bdbdd3;}

/* =========================
   SERVICES
========================= */
.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
    gap:28px;
}

.service-box{
    padding:32px;
    border-radius:24px;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(255,255,255,0.08);
    text-align:center;
    transition:0.35s ease;
    backdrop-filter:blur(12px);
}

.service-box:hover{
    transform:translateY(-10px);
    border-color:rgba(107,175,30,0.45);
    box-shadow:0 16px 36px rgba(107,175,30,0.15);
}

.service-box h3{
    margin-bottom:14px;
    color:#6BAF1E;
}

/* =========================
   CONTACT
========================= */
.contact-box{
    max-width:650px;
    margin:auto;
    text-align:center;
    background:rgba(255,255,255,0.04);
    border:1px solid rgba(0,174,239,0.18);
    border-radius:24px;
    padding:40px 30px;
    box-shadow:0 8px 25px rgba(0,174,239,0.08);
}

.my-info{
    margin-top:30px;
    text-align:center;
    padding-top:20px;
    border-top:1px solid rgba(255,255,255,0.1);
}

.my-info p{
    margin:10px 0;
    font-size:1rem;
    color:#d0d0e0;
}

.my-info strong{
    color:#00AEEF;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:992px){
    .hero{
        flex-direction:column;
        text-align:center;
        padding-top:140px;
    }

    .hero-content p{
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .about-layout{
        grid-template-columns:1fr;
        text-align:center;
    }
}

@media (max-width:768px){
    header{
        flex-direction:column;
        gap:15px;
        padding:18px 6%;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
        gap:14px;
    }

    nav a{margin:0;}

    .hero-content h1{font-size:2.8rem;}
    .hero-content h2{font-size:1.3rem;}

    .section{
        padding:80px 6%;
    }

    .section-title h2{font-size:2rem;}
}

@media (max-width:480px){
    .hero-content h1{font-size:2.2rem;}

    .btn{
        width:100%;
        text-align:center;
    }

    .portfolio-grid,
    .services-grid{
        grid-template-columns:1fr;
    }

    .contact-box{
        padding:30px 20px;
    }
    
.review-name{
  margin-top:20px;   /* space above the name */
  margin-bottom:14px; /* space between name and stars */
  color:#ffd27f;
}

.review-stars{
  font-size:22px;
  letter-spacing:3px;
  color:#ffd700;
  text-shadow:0 0 8px #ffb347,0 0 15px #ff8c00;
}
@media (max-width: 768px) {

  /* Remove art section completely on mobile */
  .art-box{
    display:none;
  }

  /* Remove extra space left by the art */
  .hero{
    min-height:auto;
    padding-bottom:40px;
    gap:20px;
  }
}
}
