 /* ==========================================
   SITEWAVE - PROFESSIONAL WEBSITE STYLES
   Colors: Dark Blue, Light Blue, White, Black
   ========================================== */

/* Reset */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#f5f9ff;
    color:#111;
    line-height:1.6;
}

/* =====================
   Navigation
   ===================== */
nav{
    background:#061a40;
    padding:18px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.2);
}

.logo{
    font-size:2rem;
    font-weight:bold;
    color:#ffffff;
    letter-spacing:1px;
}

.nav-links{
    display:flex;
    gap:20px;
    align-items:center;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-weight:700;
    padding:10px 16px;
    border-radius:999px;
    background:linear-gradient(135deg, #7b2cbf, #9b5de5);
    box-shadow:0 6px 16px rgba(123, 44, 191, 0.35);
    transition:0.3s ease;
    transform:translateY(0);
}

.nav-links a:hover{
    background:linear-gradient(135deg, #9b5de5, #7b2cbf);
    color:white;
    transform:translateY(-3px) scale(1.05);
    box-shadow:0 10px 20px rgba(123, 44, 191, 0.45);
}

/* =====================
   Hero Section
   ===================== */
.hero{
    min-height:90vh;
    background:linear-gradient(
        135deg,
        #061a40,
        #0353a4,
        #4cc9f0
    );
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:50px 10%;
    color:white;
}

.hero-content{
    max-width:900px;
}

.hero-image{
    width:100%;
    max-width:700px;
    display:block;
    margin:30px auto;
    border-radius:25px;
    box-shadow:0 20px 60px rgba(0,0,0,0.15);
}

.hero-content h1{
    font-size:4rem;
    margin-bottom:20px;
    text-shadow:2px 2px 10px rgba(0,0,0,0.3);
}

.hero-content p{
    font-size:1.3rem;
    margin-bottom:30px;
}

/* =====================
   POPPING BUTTONS
   ===================== */
.btn{
    display:inline-block;
    padding:16px 38px;
    background:#00c2ff;
    color:white;
    text-decoration:none;
    border-radius:50px;
    font-weight:bold;
    font-size:1rem;
    letter-spacing:1px;
    cursor:pointer;
    position:relative;
    z-index:1;

    box-shadow:
    0 0 15px rgba(0,194,255,0.6),
    0 0 30px rgba(0,194,255,0.4);

    transition:0.3s;
}

.btn:hover{
    transform:translateY(-5px) scale(1.05);

    box-shadow:
    0 0 25px rgba(0,194,255,0.8),
    0 0 50px rgba(0,194,255,0.5);
}

/* =====================
   Section Styling
   ===================== */
section{
    padding:90px 10%;
}

.section-title{
    text-align:center;
    font-size:2.7rem;
    color:#0353a4;
    margin-bottom:50px;
}

/* =====================
   Services
   ===================== */
.services{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
    background:white;
    padding:35px;
    border-radius:20px;
    text-align:center;

    box-shadow:
    0 5px 20px rgba(0,0,0,0.08);

    transition:0.4s;
}

.card:hover{
    transform:translateY(-10px);

    box-shadow:
    0 15px 30px rgba(0,0,0,0.15);
}

.card h3{
    color:#0353a4;
    margin-bottom:15px;
}

/* =====================
   About Section
   ===================== */
.about{
    max-width:1000px;
    margin:auto;
    text-align:center;
}

.about p{
    font-size:1.15rem;
}

/* =====================
   Description Section
   ===================== */
.description{
    background:#061a40;
    color:white;
    text-align:center;
    border-radius:20px;
    padding:60px;
}

.description h2{
    margin-bottom:20px;
    font-size:2.5rem;
}

.description p{
    font-size:1.2rem;
    max-width:900px;
    margin:auto;
}

/* =====================
   Contact Section
   ===================== */
.contact{
    background:white;
    border-radius:20px;
    text-align:center;
    padding:60px;

    box-shadow:
    0 5px 25px rgba(0,0,0,0.1);
}

.contact h2{
    color:#0353a4;
    margin-bottom:20px;
}

/* =====================
   Footer
   ===================== */
footer{
    background:#000;
    color:white;
    text-align:center;
    padding:25px;
}

/* =====================
   Floating WhatsApp
   ===================== */
.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;

    width:70px;
    height:70px;

    background:#25D366;
    color:white;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    font-size:35px;
    text-decoration:none;

    z-index:9999;

    box-shadow:
    0 0 15px rgba(37,211,102,0.8),
    0 0 30px rgba(37,211,102,0.5);

    transition:0.3s;
}

.whatsapp:hover{
    transform:scale(1.15);

    box-shadow:
    0 0 25px rgba(37,211,102,1),
    0 0 50px rgba(37,211,102,0.8);
}

/* =====================
   Business Statistics
   ===================== */
.stats{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
    text-align:center;
}

.stat-box{
    background:white;
    padding:30px;
    border-radius:15px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.stat-box h3{
    color:#0353a4;
    font-size:2rem;
}

/* =====================
   Responsive
   ===================== */
@media(max-width:768px){

    nav{
        flex-direction:column;
        gap:15px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
    }

    .hero-content h1{
        font-size:2.7rem;
    }

    .hero-content p{
        font-size:1.1rem;
    }

    .section-title{
        font-size:2rem;
    }

    .description{
        padding:40px 25px;
    }
}/* ===================================
   CONTACT PAGE STYLING - SITEWAVE
   =================================== */

.contact-hero{
    text-align:center;
    padding:120px 10%;
    background:linear-gradient(135deg,#081b33,#0f3d7a,#1a5fb4);
    color:white;
}

.contact-hero h1{
    font-size:3rem;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(0,153,255,0.7);
}

.contact-hero p{
    max-width:800px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.8;
    opacity:0.95;
}

/* Contact Cards */

.contact-options{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:80px 10%;
    background:#07111f;
}

.contact-card{
    width:320px;
    padding:35px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,153,255,0.2);
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.contact-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 0 35px rgba(0,153,255,0.6);
    border-color:#00aaff;
}

.contact-card h2{
    color:#00c3ff;
    margin-bottom:15px;
    font-size:1.8rem;
}

.contact-card p{
    color:#d9e6ff;
    margin-bottom:25px;
    line-height:1.6;
}

/* POPPING BUTTONS */

.contact-btn{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(45deg,#00aaff,#00e0ff);
    color:white;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:0.3s;
    box-shadow:0 0 20px rgba(0,170,255,0.5);
}

.contact-btn:hover{
    transform:scale(1.12);
    box-shadow:0 0 35px rgba(0,200,255,0.9);
}

.contact-btn:active{
    transform:scale(0.95);
}

/* Why Choose Section */

.contact-message{
    text-align:center;
    padding:80px 10%;
    background:#0b1c33;
    color:white;
}

.contact-message h2{
    color:#00c3ff;
    margin-bottom:20px;
    font-size:2.3rem;
}

.contact-message p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    font-size:1.1rem;
}

/* Footer */

footer{
    text-align:center;
    padding:25px;
    background:#050d18;
    color:#aab7d1;
}

/* Floating WhatsApp Button */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    text-decoration:none;
    color:white;
    background:linear-gradient(45deg,#25D366,#1ebe5d);
    box-shadow:0 0 25px rgba(37,211,102,0.8);
    z-index:999;
    transition:0.3s;
    animation:float 2s ease-in-out infinite;
}

.whatsapp:hover{
    transform:scale(1.15);
    box-shadow:0 0 40px rgba(37,211,102,1);
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

/* Mobile Responsive */

@media(max-width:768px){

    .contact-hero h1{
        font-size:2.2rem;
    }

    .contact-card{
        width:100%;
        max-width:400px;
    }

    .contact-options{
        padding:50px 5%;
    }
}/* ===================================
   CONTACT PAGE STYLING - SITEWAVE
   =================================== */

.contact-hero{
    text-align:center;
    padding:120px 10%;
    background:linear-gradient(135deg,#081b33,#0f3d7a,#1a5fb4);
    color:white;
}

.contact-hero h1{
    font-size:3rem;
    margin-bottom:20px;
    text-shadow:0 0 20px rgba(0,153,255,0.7);
}

.contact-hero p{
    max-width:800px;
    margin:auto;
    font-size:1.2rem;
    line-height:1.8;
    opacity:0.95;
}

/* Contact Cards */

.contact-options{
    display:flex;
    justify-content:center;
    gap:30px;
    flex-wrap:wrap;
    padding:80px 10%;
    background:#07111f;
}

.contact-card{
    width:320px;
    padding:35px;
    text-align:center;
    border-radius:20px;
    background:rgba(255,255,255,0.05);
    backdrop-filter:blur(10px);
    border:1px solid rgba(0,153,255,0.2);
    transition:0.4s;
    box-shadow:0 10px 25px rgba(0,0,0,0.3);
}

.contact-card:hover{
    transform:translateY(-12px) scale(1.03);
    box-shadow:0 0 35px rgba(0,153,255,0.6);
    border-color:#00aaff;
}

.contact-card h2{
    color:#00c3ff;
    margin-bottom:15px;
    font-size:1.8rem;
}

.contact-card p{
    color:#d9e6ff;
    margin-bottom:25px;
    line-height:1.6;
}

/* POPPING BUTTONS */

.contact-btn{
    display:inline-block;
    padding:14px 28px;
    background:linear-gradient(45deg,#00aaff,#00e0ff);
    color:white;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;
    transition:0.3s;
    box-shadow:0 0 20px rgba(0,170,255,0.5);
}

.contact-btn:hover{
    transform:scale(1.12);
    box-shadow:0 0 35px rgba(0,200,255,0.9);
}

.contact-btn:active{
    transform:scale(0.95);
}

/* Why Choose Section */

.contact-message{
    text-align:center;
    padding:80px 10%;
    background:#0b1c33;
    color:white;
}

.contact-message h2{
    color:#00c3ff;
    margin-bottom:20px;
    font-size:2.3rem;
}

.contact-message p{
    max-width:850px;
    margin:auto;
    line-height:1.8;
    font-size:1.1rem;
}

/* Footer */

footer{
    text-align:center;
    padding:25px;
    background:#050d18;
    color:#aab7d1;
}

/* Floating WhatsApp Button */

.whatsapp{
    position:fixed;
    right:25px;
    bottom:25px;
    width:70px;
    height:70px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:2rem;
    text-decoration:none;
    color:white;
    background:linear-gradient(45deg,#25D366,#1ebe5d);
    box-shadow:0 0 25px rgba(37,211,102,0.8);
    z-index:999;
    transition:0.3s;
    animation:float 2s ease-in-out infinite;
}

.whatsapp:hover{
    transform:scale(1.15);
    box-shadow:0 0 40px rgba(37,211,102,1);
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}

/* Mobile Responsive */

@media(max-width:768px){

    .contact-hero h1{
        font-size:2.2rem;
    }

    .contact-card{
        width:100%;
        max-width:400px;
    }

    .contact-options{
        padding:50px 5%;
    }
}/* =====================================
   PURPLE FLOATING NAVIGATION BUTTONS
   ===================================== */

nav ul li a{
    display:inline-block;
    padding:12px 24px;
    background:linear-gradient(135deg,#5a189a,#7b2cbf,#9d4edd);
    color:white !important;
    text-decoration:none;
    font-weight:700;
    border-radius:50px;

    box-shadow:
    0 5px 15px rgba(123,44,191,0.5),
    0 0 25px rgba(157,78,221,0.4);

    transition:all 0.3s ease;
}

/* Hover Effect */
nav ul li a:hover{
    transform:translateY(-6px) scale(1.08);

    background:linear-gradient(135deg,#7b2cbf,#9d4edd,#c77dff);

    box-shadow:
    0 10px 25px rgba(123,44,191,0.8),
    0 0 40px rgba(199,125,255,0.9);

    color:white !important;
}

/* Click Effect */
nav ul li a:active{
    transform:scale(0.95);
}

/* Home Button */
nav ul li:first-child a{
    animation:purpleFloat 3s ease-in-out infinite;
}

/* Contact Button */
nav ul li:last-child a{
    animation:purplePulse 2s infinite;

    box-shadow:
    0 0 20px rgba(199,125,255,0.9),
    0 0 40px rgba(157,78,221,0.7);
}

/* Floating Animation */
@keyframes purpleFloat{
    0%{transform:translateY(0);}
    50%{transform:translateY(-4px);}
    100%{transform:translateY(0);}
}

/* Pulsing Contact Button */
@keyframes purplePulse{
    0%{
        transform:scale(1);
    }
    50%{
        transform:scale(1.08);
    }
    100%{
        transform:scale(1);
    }
}

/* Extra spacing between buttons */
nav ul{
    gap:18px;
}/* Floating About Button */

.about-float{
    position:fixed;
    left:25px;
    bottom:25px;

    width:70px;
    height:70px;

    border-radius:50%;

    display:flex;
    justify-content:center;
    align-items:center;

    text-decoration:none;
    font-size:32px;
    color:white;

    background:linear-gradient(135deg,#7b2cbf,#9d4edd);

    box-shadow:
    0 0 20px rgba(123,44,191,0.8),
    0 0 40px rgba(157,78,221,0.5);

    transition:0.3s;
    z-index:999;
}

.about-float:hover{
    transform:scale(1.15);
    box-shadow:
    0 0 30px rgba(199,125,255,1),
    0 0 60px rgba(157,78,221,0.8);
}