/* ================= GLOBAL RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", "Segoe UI", Tahoma, sans-serif;
}

body {
    background: #f4f6f9;
    color: #333;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

/* ================= HEADER ================= */
header {
    background: linear-gradient(135deg, #67E8F9, #EFF6FF);
    padding: 12px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* REMOVE LINK STYLE */
header a {
    text-decoration: none;
    color: inherit;
}

/* ===== LOGO SECTION ===== */
.logo-container {
    display: flex;
    align-items: center;
}

/* LOGO BOX */
.logo-box {
    width: 55px;
    height: 55px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LOGO IMAGE */
.logo-box img {
    width: 150px;
    height: auto;
}

/* TEXT WRAPPER (IMPORTANT FIX) */
.logo-text {
    display: flex;
    flex-direction: column;  /* 🔥 aa thi p niche aavse */
    margin-left: 10px;
}

/* COMPANY NAME */
.logo-text h1 {
    font-size: 22px;
    color: black;
    letter-spacing: 1px;
}

/* TAGLINE */
.logo-text p {
    font-size: 12px;
    color: #444;
    margin-top: 2px;
}

/* ===== NAVIGATION ===== */
nav a {
    margin-left: 25px;
    text-decoration: none;
    color: black;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

/* UNDERLINE EFFECT */
nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: #007988;
    transition: 0.3s;
}

nav a:hover {
    color: #007988;
}

nav a:hover::after {
    width: 100%;
}

/* LOGO HOVER */
.logo-container:hover {
    transform: scale(1.03);
    transition: 0.3s;
}
/* ================= FOOTER ================= */
footer {
    background: linear-gradient(135deg, #67E8F9, #EFF6FF);
    color: #dcdcdc;
    text-align: center;
    padding: 25px 20px;
}

p {
    color: black;
}

/* ================= HERO (HOME) ================= */
/* ===== EXACT LIGHT WAVE BACKGROUND ===== */

.hero-home {
    position: relative;
    height: 100vh;
    background: #f5f9ff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #1e293b;
}

/* ===== SVG WAVE BACKGROUND ===== */
.hero-home::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    
    background: url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 500 Q400 300 800 500 T1600 500 V900 H0 Z' fill='%23dbeafe'/%3E%3Cpath d='M0 600 Q400 400 800 600 T1600 600 V900 H0 Z' fill='%23bfdbfe'/%3E%3Cpath d='M0 700 Q400 500 800 700 T1600 700 V900 H0 Z' fill='%2393c5fd'/%3E%3C/svg%3E");
    
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.9;
}

/* ===== CONTENT ===== */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-home h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #334155;
}

.hero-home p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

/* ===== BUTTON ===== */
.hero-home button {
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(45deg,#67E8F9, #EFF6FF);
    color: black;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-home button:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(59,130,246,0.4);
}


/* ================= COMMON SECTION ================= */
.section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: auto;
}

.section h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 40px;
}

/* ================= SERVICES ================= */
.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 cards per row */
    gap: 25px;
    justify-items: center;
}

.services .card a{
    text-decoration: none;
    color: inherit;
}

.services .card a:hover{
    text-decoration: none;
}

.card {
    background: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: 0.4s ease;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #007988, #007988);
    transition: 0.4s;
}

.card:hover::before {
    left: 0;
}
    
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(11,44,77,0.25);
    background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.card h4 {
    color: #0b2c4d;
    margin-bottom: 10px;
}

.card:hover h4 {
    color: 007988;
}

@media (max-width: 900px) {
    .services {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services {
        grid-template-columns: 1fr;
    }
}


/* ================= ABOUT PAGE ================= */

.about-hero {
    position: relative;
    height: 100vh;
    background: #f5f9ff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #1e293b;
}

/* SAME WAVE BACKGROUND */
.about-hero::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    
    background: url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 500 Q400 300 800 500 T1600 500 V900 H0 Z' fill='%23dbeafe'/%3E%3Cpath d='M0 600 Q400 400 800 600 T1600 600 V900 H0 Z' fill='%23bfdbfe'/%3E%3Cpath d='M0 700 Q400 500 800 700 T1600 700 V900 H0 Z' fill='%2393c5fd'/%3E%3C/svg%3E");
    
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.9;
}

/* CONTENT SAME STYLE */
.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #334155;
}

.about-hero p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

/* CONTENT */
.about-content{
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 50px;
}

.about-box{
    background: #fff;
    padding: 25px;
    width: 350px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.about-box:hover{
    transform: translateY(-5px);
}

.about-box h2{
    color: #0A74DA;
    margin-bottom: 10px;
}

/* SERVICES */
.about-services{
    text-align: center;
    margin-bottom: 60px;
}

.about-services h2{
    margin-bottom: 30px;
    font-size: 28px;
}

.services-grid{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card{
    background: #fff;
    padding: 25px;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-card:hover{
    transform: translateY(-8px);
}

.service-card i{
    font-size: 35px;
    color: #0A74DA;
    margin-bottom: 10px;
}

/* TEAM */
.team-section{
    text-align: center;
}

.team-section h2{
    margin-bottom: 30px;
}

.team-grid{
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-card{
    background: #fff;
    padding: 25px;
    width: 220px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.team-card:hover{
    transform: translateY(-8px);
}

.team-img{
    width: 80px;
    height: 80px;
    background: #0A74DA;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-img i{
    color: #fff;
    font-size: 30px;
}

/* RESPONSIVE */
@media (max-width: 768px){
    .about-hero h1{
        font-size: 28px;
    }

    .about-box,
    .service-card,
    .team-card{
        width: 100%;
    }
}


/* ================= CONTACT PAGE ================= */

.contact-hero {
    position: relative;
    height: 100vh;
    background: #f5f9ff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #1e293b;
}

/* SAME WAVE BACKGROUND */
.contact-hero::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 140%;
    top: -20%;
    left: -20%;
    
    background: url("data:image/svg+xml,%3Csvg width='1600' height='900' viewBox='0 0 1600 900' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 500 Q400 300 800 500 T1600 500 V900 H0 Z' fill='%23dbeafe'/%3E%3Cpath d='M0 600 Q400 400 800 600 T1600 600 V900 H0 Z' fill='%23bfdbfe'/%3E%3Cpath d='M0 700 Q400 500 800 700 T1600 700 V900 H0 Z' fill='%2393c5fd'/%3E%3C/svg%3E");
    
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0.9;
}

/* CONTENT */
.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #334155;
}

.contact-hero p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
}

/* Contact Layout */
.contact-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Info */
.contact-info {
    background: #ffffff;
    width: 350px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.contact-info h2 {
    color: #003366;
    margin-bottom: 15px;
}

.contact-info p {
    color: #333333;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* Contact Form */
.contact-form-box {
    background: #ffffff;
    width: 350px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.contact-form-box h2 {
    color: #003366;
    margin-bottom: 15px;
}

.contact-form-box input,
.contact-form-box textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.contact-form-box button {
    width: 100%;
    padding: 10px;
    background: #0A74DA;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}

.contact-form-box button:hover {
    background: #0B0D10;
}

.success-msg {
    margin-top: 15px;
    color: green;
    font-weight: bold;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 28px;
    }

    .contact-info,
    .contact-form-box {
        width: 100%;
    }
}

.success-msg {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.error-msg {
    color: red;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

/* ================= FLOATING SOCIAL ICONS ================= */

.social-float{
    position: fixed;
    right: 20px;
    bottom: 30px; /* default position */
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
    transition: all 0.3s ease;
}

/* When near footer -> move up */
.social-float.stop {
    bottom: 150px; /* footer ni height pramane adjust kari sako */
}

.social-float a{
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    text-decoration: none;  
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
    transition: 0.3s;
}

.social-float a:hover{
    transform: scale(1.1);
}

/* Social Colors */
.whatsapp{ background:#25D366; }
.facebook{ background:#1877F2; }
.instagram{ background:#E4405F; }
.linkedin{ background:#0A66C2; }

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .hero-home h2 {
        font-size: 28px;
    }

    .contact-info,
    .contact-form-box,
    .map-box {
        width: 100%;
    }
}

/* ================= FLOATING SOCIAL MEDIA ICONS ================= */
.social-float {
    position: fixed;
    right: 22px;
    bottom: 35px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 999;
}

.social-float .social {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.35);
    transition: all 0.35s ease;
    text-decoration: none;
    position: relative;
}

/* Hover Animation */
.social-float .social:hover {
    transform: translateY(-6px) scale(1.08);
    box-shadow: 0 15px 30px rgba(0,0,0,0.45);
}

/* Individual Platform Colors */
.social.whatsapp {
    background: #25D366;
}

.social.facebook {
    background: #1877F2;
}

.social.instagram {
    background: radial-gradient(circle at 30% 30%, #fdf497, #fd5949, #d6249f, #285AEB);
}

.social.linkedin {
    background: #0A66C2;
}

/* Tooltip Text */
.social::after {
    content: attr(title);
    position: absolute;
    right: 62px;
    background: #0B0D10;
    color: #fff;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 4px;
    opacity: 0;
    white-space: nowrap;
    transform: translateX(10px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.social:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ================= CONTACT FORM HOVER ENHANCEMENT ================= */
.contact-form-box {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.contact-form-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 40px rgba(11,44,77,0.25);
}

.contact-form-box button {
    transition: background 0.3s ease, transform 0.3s ease;
}

.contact-form-box button:hover {
    transform: translateY(-2px);
    background: #0B0D10;
}


/* ===== server-setup-management page ====== */

/* ================= GLOBAL ================= */
body {
    font-family: "Poppins", "Segoe UI", sans-serif;
    background: #f4f6f9;
    color: #333;
}

/* ================= HERO ================= */
.server-hero {
     position: relative;
    height: 100vh;
    background: radial-gradient(circle at center top, #0A74DA 0%, #0B0D10 60%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    color: #fff;
}
.glow-arc {
    position: absolute;
    width: 900px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30,144,255,0.8) 0%, rgba(30,144,255,0.3) 40%, transparent 70%);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(40px);
}
.server-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
}

.server-hero p {
     font-size: 22px;
    color: #cbd5e1;
    margin-bottom: 30px;
}

.hero-btn {
    padding: 14px 32px;
    border-radius: 30px;
    border: none;
    background: #ffffff;
    color: #0A74DA;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 0 25px rgba(30,144,255,0.8);
}
.server-hero::before {
    content: "";
    position: absolute;
    width: 1500px;
    height: 1500px;
    border-radius: 50%;
    bottom: -550px;   /* arc visibility control */
    left: 50%;
    transform: translateX(-50%);
    
    background: radial-gradient(circle at center,
        transparent 60%,
        rgba(0,140,255,0.15) 63%,
        rgba(0,140,255,0.5) 64.5%,
        rgba(255,255,255,0.95) 65%,
        rgba(0,140,255,0.6) 66%,
        rgba(0,140,255,0.2) 69%,
        transparent 72%
    );

    filter: blur(6px);
} 
/* ================= SERVICES ================= */
.server-services {
    padding: 60px 20px;
    background: #fff;
}

.server-services h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
}

.service-card h3 {
    color: #0A74DA;
    margin-bottom: 10px;
}

/* ================= WHY ================= */
.server-why {
    padding: 60px 20px;
    text-align: center;
    background: #eef3f7;
}

.server-why h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.server-why ul {
    list-style: none;
    padding: 0;
}

.server-why li {
    font-size: 18px;
    margin: 10px 0;
}

/* ================= CTA ================= */
.server-cta {
    background: #CFFAFE;
    color: black;
    padding: 70px 20px;
    text-align: center;
}

.server-cta h2 {
    font-size: 34px;
    margin-bottom: 10px;
}

.server-cta p {
    margin-bottom: 25px;
    font-size: 18px;
}

.cta-btn {
    background: #fff;
    color: black;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #007988;
    color: #fff;
}
