/* Modal overlay */

/* Reset */
*{margin:0;padding:0;box-sizing:border-box;font-family:'Poppins',sans-serif;}
:root{ --primary:#38bdf8; --secondary:#6366f1; --dark:#0f172a; --card:rgba(255,255,255,0.05); }

/* Body */
body{
    background:linear-gradient(-45deg,#0f172a,#020617,#111827,#0f172a);
    background-size:400% 400%;
    animation:gradientMove 12s ease infinite;
    color:white;
    scroll-behavior:smooth;
}
/* ============================= */
/* APPROACH SECTION */
/* ============================= */

#approach {
    padding:120px 6%;
    text-align:center;
}

#approach p {
    max-width:800px;
    margin:0 auto;
    font-size:18px;
    color:#cbd5e1;
    line-height:1.8;
}

#approach {
    background:rgba(255,255,255,0.03);
    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

@keyframes gradientMove{
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}


/* About Section*/
.about-container{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1100px;
    margin:0 auto;
}

.about-card{
    background:var(--card);
    padding:35px;
    border-radius:20px;
    backdrop-filter:blur(15px);
    transition:0.4s ease;
}

.about-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.08);
}

.about-card h3{
    margin-bottom:15px;
    background:linear-gradient(to right,var(--primary),var(--secondary));
    -webkit-background-clip:text;
    color:transparent;
}

.about-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* Blog Section */
.blog-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1100px;
    margin:0 auto;
}

.blog-card{
    background:var(--card);
    padding:30px;
    border-radius:20px;
    backdrop-filter:blur(15px);
    transition:0.4s ease;
    display:flex;
    flex-direction:column;
}

.blog-card:hover{
    transform:translateY(-10px);
    background:rgba(255,255,255,0.08);
    box-shadow:0 15px 35px rgba(99,102,241,0.3);
}

.blog-category{
    display:inline-block;
    background:rgba(56,189,248,0.15);
    color:var(--primary);
    padding:6px 14px;
    border-radius:20px;
    font-size:13px;
    margin-bottom:15px;
    font-weight:500;
}

.blog-card h3{
    margin-bottom:15px;
    font-size:20px;
}

.blog-card p{
    color:#cbd5e1;
    line-height:1.6;
    flex:1;
}

.read-more{
    margin-top:20px;
    color:var(--primary);
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.read-more:hover{
    color:var(--secondary);
}



/* ============================= */
/* SERVICES SECTION */
/* ============================= */

.services-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
    max-width:1100px;
    margin:0 auto;
}

.service-card{
    background:var(--card);
    padding:35px;
    border-radius:22px;
    backdrop-filter:blur(15px);
    transition:0.4s ease;
    text-align:left;
}

.service-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,0.08);
    box-shadow:0 20px 40px rgba(99,102,241,0.3);
}

.service-icon{
    font-size:35px;
    margin-bottom:20px;
}

.service-card h3{
    margin-bottom:15px;
    font-size:20px;
}

.service-card p{
    color:#cbd5e1;
    line-height:1.7;
}

/* Responsive */
@media(max-width:768px){
    .service-card{
        padding:25px;
    }
}


/* Navbar */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 10px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(15,23,42,0.8);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom:1px solid rgba(255,255,255,0.1);
}

nav h2.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    font-weight: 700;
    font-size: 22px;
}

nav .menu-left ul, nav .menu-right ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 8px;
    transition: 0.3s;
}

nav ul li a:hover {
    background: rgba(56,189,248,0.15);
}

.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
}

/* Sections */
section{
    padding: 120px 6%;
}

h2{
    font-size: 32px;
    margin-bottom: 50px;
    text-align: center;
    background: linear-gradient(to right, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    color: transparent;
}
 .project-card a{
     color:white;
 }
/* Hero */
.hero{
    display:flex;
    justify-content:space-between;
    align-items:center;
    min-height:100vh;
    gap:50px;
    flex-wrap:wrap;
}

.hero-text{
    flex:1;
}

.hero-text h1{
    font-size:48px;
    background:linear-gradient(to right,var(--primary),var(--secondary));
    -webkit-background-clip:text;
    color:transparent;
}

.hero-text h3{
    margin-top:10px;
    font-weight:400;
    color:#cbd5e1;
}

.hero-text p{
    margin-top:20px;
    color:#94a3b8;
    line-height:1.6;
}

.hero-img{
    flex:1;
    text-align:center;
}

.hero-img img{
    width:260px;
    border-radius:50%;
    border:4px solid var(--primary);
    box-shadow:0 0 40px rgba(56,189,248,0.6);
    transition:0.4s;
}

.hero-img img:hover{
    transform:scale(1.05);
}


/* Buttons */
.btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    color:white;
    text-decoration:none;
    font-weight:600;
    margin-top:25px;
    transition:0.3s ease;
}

.btn:hover{
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(99,102,241,0.5);
}

.cv-btn{
    display:inline-block;
    padding:14px 32px;
    border-radius:50px;
    border:2px solid var(--primary);
    color:var(--primary);
    background:transparent;
    font-weight:600;
    margin-top:25px;
    margin-left:15px;
    transition:0.3s ease;
}

.cv-btn:hover{
    color:white;
    background:linear-gradient(45deg,var(--primary),var(--secondary));
    transform:translateY(-5px);
    box-shadow:0 12px 30px rgba(99,102,241,0.5);
}

/* Grid */
.skills-grid,
.project-grid,
.contact-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card, .project-card, .contact-card{
    background:var(--card);
    padding:25px;
    border-radius:18px;
    backdrop-filter:blur(15px);
    transition:0.3s;
}

.card:hover, .project-card:hover, .contact-card:hover{
    transform:translateY(-8px);
    background:rgba(255,255,255,0.08);
}

/* Alert Messages */
.alert{
    padding:15px 20px;
    border-radius:10px;
    margin-bottom:15px;
    font-weight:500;
    animation:fadeIn 0.5s ease;
}

.alert.success{
    background: rgba(56, 189, 248, 0.2);
    color: #38bdf8;
}

.alert.error{
    background: rgba(255, 56, 56, 0.2);
    color: #ff3838;
}

.alert ul{
    margin:0;
    padding-left:20px;
}

@keyframes fadeIn{
    0%{opacity:0;transform:translateY(-5px);}
    100%{opacity:1;transform:translateY(0);}
}

/* Footer */
footer{
    text-align:center;
    padding:25px;
    background:#020617;
    color:#94a3b8;
}
.packages-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
    max-width:1100px;
    margin:0 auto;
}

.package-card{
    background:var(--card);
    padding:40px 30px;
    border-radius:22px;
    text-align:center;
    backdrop-filter:blur(15px);
    transition:0.4s ease;
    position:relative;
}

.package-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,0.09);
}

.package-card h1{
    margin:20px 0;
    font-size:32px;
    background:linear-gradient(to right,var(--primary),var(--secondary));
    -webkit-background-clip:text;
    color:transparent;
}

.package-card ul{
    list-style:none;
    padding:0;
    margin:20px 0;
}

.package-card ul li{
    margin-bottom:10px;
    color:#cbd5e1;
}

.package-card.featured{
    border:2px solid var(--primary);
    box-shadow:0 0 25px rgba(56,189,248,0.4);
}
.package-card.rank-badge{
     border:2px solid red;
    box-shadow:0 0 25px rgba(56,189,248,0.4);
}

.popular-badge{
position:absolute;
top:-12px;
right:20px;
background:#38bdf8;
color:#000;
padding:6px 14px;
border-radius:20px;
font-size:12px;
font-weight:600;
}
/* ============================= */
/* CLIENT REVIEWS SECTION */
/* ============================= */

.reviews-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
    max-width:1100px;
    margin:0 auto;
}

.review-card{
    background:var(--card);
    padding:35px;
    border-radius:22px;
    backdrop-filter:blur(15px);
    transition:0.4s ease;
    position:relative;
}

.review-card:hover{
    transform:translateY(-12px);
    background:rgba(255,255,255,0.08);
    box-shadow:0 20px 40px rgba(99,102,241,0.3);
}

.review-text{
    color:#cbd5e1;
    line-height:1.8;
    margin-bottom:25px;
    font-style:italic;
}

/* Decorative quote */
.review-card::before{
    content:"“";
    font-size:60px;
    position:absolute;
    top:15px;
    left:20px;
    color:rgba(56,189,248,0.15);
}

.review-author h4{
    margin-bottom:5px;
    font-size:18px;
}

.review-author span{
    font-size:14px;
    color:#94a3b8;
}

/* Responsive */
@media(max-width:768px){
    .review-card{
        padding:25px;
    }
}
/* Mobile */
@media(max-width:768px){
    nav {
        padding: 10px 3%;
    }
    nav .menu-left ul, nav .menu-right ul {
        position: absolute;
        top: 60px;
        width: 100%;
        flex-direction: column;
        background: rgba(15,23,42,0.95);
        display: none;
        padding: 10px 0;
    }
    nav ul.active{
        display: flex !important;
    }
    .menu-toggle {
        display: block;
    }
    .hero{
        flex-direction:column-reverse;
        text-align:center;
    }
    .hero-text h1{
        font-size:32px;
    }
    .hero-img img{
        width:200px;
        margin-bottom:20px;
    }
    section{
        padding:90px 5%;
    }
}
.project-card img{
    width:100%;
}
.tech-list{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
    margin-top:10px;
    margin-bottom: 10px;
}
.tech-list span{
    background:rgba(56,189,248,0.15);
    padding:8px 14px;
    border-radius:20px;
    font-size:14px;
}
/* FAQ Section */
.faq-container{
    max-width:900px;
    margin:0 auto;
}

.faq-item{
    background:var(--card);
    margin-bottom:15px;
    border-radius:14px;
    overflow:hidden;
    backdrop-filter:blur(15px);
    transition:0.3s;
}

.faq-question{
    width:100%;
    padding:20px;
    background:none;
    border:none;
    outline:none;
    color:white;
    font-size:16px;
    text-align:left;
    display:flex;
    justify-content:space-between;
    align-items:center;
    cursor:pointer;
}

.faq-question:hover{
    background:rgba(255,255,255,0.05);
}

.faq-icon{
    font-size:20px;
    color:var(--primary);
    transition:0.3s;
}

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height 0.4s ease, padding 0.3s ease;
    padding:0 20px;
    color:#cbd5e1;
}

.faq-item.active .faq-answer{
    max-height:200px;
    padding:0 20px 20px 20px;
}

.faq-item.active .faq-icon{
    transform:rotate(45deg);
}
/* ============================= */
/* CLIENT FEEDBACK FORM */
/* ============================= */

.feedback-container{
    max-width:700px;
    margin:0 auto;
}

.feedback-form{
    background:var(--card);
    padding:40px;
    border-radius:22px;
    backdrop-filter:blur(15px);
    display:flex;
    flex-direction:column;
    gap:20px;
    transition:0.4s ease;
}

.feedback-form:hover{
    background:rgba(255,255,255,0.08);
}

.feedback-form input,
.feedback-form textarea{
    width:100%;
    padding:12px 15px;
    border-radius:10px;
    border:none;
    outline:none;
    background:rgba(255,255,255,0.05);
    color:white;
    font-size:14px;
}

.feedback-form input::placeholder,
.feedback-form textarea::placeholder{
    color:#94a3b8;
}

/* Rating Stars */
.rating-wrapper{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:#cbd5e1;
}

.stars{
    display:flex;
    flex-direction:row-reverse;
    justify-content:flex-end;
}

.stars input{
    display:none;
}

.stars label{
    font-size:28px;
    cursor:pointer;
    color:rgba(255,255,255,0.2);
    transition:0.3s;
}

.stars label:hover,
.stars label:hover ~ label{
    color:var(--primary);
}

.stars input:checked ~ label{
    color:var(--primary);
}

/* Responsive */
@media(max-width:768px){
    .feedback-form{
        padding:25px;
    }
}
/* Review Rating */
.review-rating{
    font-size:20px;
    color:#38bdf8;
    margin-bottom:15px;
    letter-spacing:2px;
}

/* Review Footer */
.review-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:20px;
    font-size:14px;
}

.review-date{
    color:#94a3b8;
}
/* WhatsApp Floating Button */
.whatsapp-float{
    position:fixed;
    bottom:25px;
    right:25px;
    width:60px;
    height:60px;
    background:linear-gradient(45deg,#25D366,#128C7E);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 10px 25px rgba(0,0,0,0.4);
    transition:0.3s ease;
    z-index:1000;
}

.whatsapp-float:hover{
    transform:translateY(-6px) scale(1.08);
    box-shadow:0 15px 35px rgba(0,0,0,0.6);
}
#booking-modal{
    display:none;

}




