/* Purple Gradient Background */
body{
    background: linear-gradient(135deg,#3b0764,#6d28d9,#a21caf);
    min-height:100vh;
    font-family: 'Segoe UI', sans-serif;
    color:white;
}

/* Navbar */
.navbar{
    background: linear-gradient(135deg,#4c1d95,#7c3aed,#a855f7);
    backdrop-filter: blur(8px);
}

.navbar-brand{
    font-weight:700;
    letter-spacing:1px;
}

.nav-link{
    color:white !important;
    font-weight:500;
    margin-left:15px;
}

.nav-link:hover{
    color:#e9d5ff !important;
}

/* Hero Section */

.hero{
    position: relative;
    min-height: 100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    overflow:hidden;
}

#particles-js{
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    z-index:0;
}

.hero .container{
    z-index:2;
    position:relative;
}

.hero h1{
    font-size:60px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    opacity:0.9;
}

.btn-outline-light{
border-radius:30px;
font-weight:600;
}

.btn:hover,
.pop:hover {
transform:translateY(-2px);
transition:0.3s;
}

.gradient-btn{
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    border: none;
    color: #fff;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(124,58,237,0.35);
}

.gradient-btn:hover{
    background: linear-gradient(135deg,#6d28d9,#9333ea);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(124,58,237,0.45);
    color:#fff;
}

.text-justify{
    text-align: justify;
}

.review-card{
    background:#fff;
    border:1px solid #e9ecef;
    border-radius:20px;
    padding:24px;
    box-shadow:0 8px 24px rgba(0,0,0,0.06);
    transition:0.3s ease;
}

.review-card:hover{
    transform:translateY(-6px);
    box-shadow:0 14px 30px rgba(0,0,0,0.10);
}

.review-avatar{
    width:50px;
    height:50px;
    border-radius:50%;
    background:linear-gradient(135deg,#7c3aed,#a855f7);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
}

.google-badge{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#fff;
    border:1px solid #dadce0;
    color:#4285f4;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
    font-size:18px;
    box-shadow:0 2px 6px rgba(0,0,0,0.06);
}

.review-stars{
    color:#fbbc04;
    letter-spacing:2px;
    font-size:18px;
}

.contact-section{
    position: relative;
}

.contact-info-wrap,
.contact-form-card{
    height: 95%;
}

.contact-info-card{
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 18px;
    padding: 18px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.contact-info-card:hover{
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

.contact-icon{
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg,#7c3aed,#a855f7);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 20px rgba(124,58,237,0.25);
}

.map-card{
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 22px;
    padding: 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.map-card iframe{
    width: 100%;
    height: 260px;
    border: 0;
    border-radius: 16px;
}

.contact-form-card{
    background: #fff;
    border: 1px solid #eef0f3;
    border-radius: 22px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.custom-input{
    border-radius: 14px;
    border: 1px solid #dee2e6;
    padding: 14px 16px;
    box-shadow: none !important;
}

.custom-input:focus{
    border-color: #a855f7;
    box-shadow: 0 0 0 0.2rem rgba(168,85,247,0.12) !important;
}

@media (max-width: 991.98px){
    .contact-form-card{
        padding: 24px;
    }
}

.footer-strip{
border-top:1px solid #e9ecef;
font-size:14px;
}

.footer-link{
color:#6c757d;
text-decoration:none;
transition:0.3s;
}

.footer-link:hover{
color:#6d28d9;
}

.footer-icon{
display:inline-flex;
align-items:center;
justify-content:center;
width:36px;
height:36px;
margin-left:8px;
border-radius:50%;
background:#f3f4f6;
color:#6d28d9;
font-size:16px;
transition:0.3s;
}

.footer-icon:hover{
background:#6d28d9;
color:#fff;
transform:translateY(-2px);
box-shadow:0 4px 10px rgba(109,40,217,0.25);
}