
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
    overflow-x:hidden;
    background:linear-gradient(
        -45deg,
        #04131f,
        #071b2d,
        #0a2c45,
        #12395a,
        #04131f
    );

    background-size:100% 100%;
    color:white;
}

@keyframes bgMove{
    0%{background-position:0% 50%;}
    50%{background-position:100% 50%;}
    100%{background-position:0% 50%;}
}

#networkCanvas{
    position:fixed;
    inset:0;
    z-index:-5;
}

.topbar{
    background:rgba(0,0,0,.65);
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:10px 8%;
    font-size:16px;
    backdrop-filter:blur(8px);
    position:relative;
    z-index:20;
}

.navbar{
    position:absolute;
    top:80px;
    left:0;
    width:100%;
    z-index:20;
}

nav{
    display:flex;
    justify-content:center;
    align-items:center;
    padding:15px 8%;
}

.logo-container {
    display: flex;
    align-items: center; /* Vertically align image and text */
    gap: 12px;           /* Space between image and text */
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.logo-content {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 32px;
    font-weight: bold;
    line-height: 1;
}

.logo-tagline {
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 2px;
    color: #faed31;
}


nav a{
    color:white;
    text-decoration:none;
    margin-left:28px;
    font-weight:bold;
    transition:.3s;
}

nav a:hover{
    color:#67e8f9;
}

.hero{
    height:100vh;
    position:relative;
    overflow:hidden;
}

.slider{
    position:absolute;
    inset:0;
    z-index:-2;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:opacity 1.5s ease;
    background-size:cover;
    background-position:center;
    transform:scale(1);
    animation:zoom 12s ease infinite alternate;
}

.slide.active{
    opacity:1;
}

@keyframes zoom{
    from{transform:scale(1);}
    to{transform:scale(1.08);}
}

.overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.7)
    );
}

.hero-content{
    position:relative;
    z-index:5;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    padding:20px;
}

.hero h1{
    font-size:clamp(32px,8vw,95px);
    color:#facc15;
    max-width:1100px;
    animation:fadeUp 1s ease;
}

.hero p{
    margin-top:20px;
    max-width:850px;
    line-height:1.8;
    font-size:22px;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(50px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.btn{
    margin-top:28px;
    background:linear-gradient(
        135deg,
        #14b8a6,
        #06b6d4
    );

    color:white;
    text-decoration:none;
    padding:15px 28px;
    border-radius:14px;
    font-weight:bold;
    transition:.3s;
}

.btn:hover{
    transform:translateY(-4px);
}

.section{
    padding:90px 8%;
}

.section h2{
    text-align:center;
    margin-bottom:35px;
    font-size:44px;
    color:#facc15;
}

.cards{
    display:grid;
    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:28px;
}

.card{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.08);
    backdrop-filter:blur(12px);
    border-radius:22px;
    padding:28px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 0 30px rgba(0,255,255,.18);
}

form{
    max-width:650px;
    margin:auto;
    display:grid;
    gap:15px;
}

input,textarea{
    padding:15px;
    border:none;
    border-radius:12px;
    background:rgba(255,255,255,.08);
    color:white;
}

button{
    padding:15px;
    border:none;
    border-radius:12px;
    background:#06b6d4;
    color:white;
    font-weight:bold;
}

footer{
    text-align:center;
    padding:25px;
    background:rgba(0,0,0,.35);
}
.h3_header{
    font-size:24px;
    color:#facc15;
    margin-bottom:20px;
    text-decoration-line: underline;
    text-decoration-color: #facc15; /* Custom color */
    text-decoration-style: double;    /* Options: solid, double, dotted, dashed, wavy */
    text-decoration-thickness: 1.95px;  /* Custom thickness */
    text-underline-offset: 5px; 
}
.h3_subheader{
    font-size:18px;
    color:#38e8ffba;
    margin-bottom:15px;
}
.h3_thank{
    font-size:20px;
    color:#d5ab02;
    margin-top:50px;
    text-align: center;
}
dd {
    margin-left: 20px;
    margin-top: 5px;
    margin-bottom: 8px;
}
.simpletxt{
    font-size:16px;
    line-height:1.8;
    text-align: justify;
}
ul.setList li::marker {
    content: "➢";       /* The arrow symbol */
    right: 3px;
    top: 0;
    padding-left: 20px;
}

.Maplink a {
    color: #ffffff;
    text-decoration: none;
}
.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.reviews-section h2 {
    color: #FFD700; /* Gold/Yellow */
    font-size: 2.5rem;
    font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════════════════════
   UTILITY CLASSES
   ══════════════════════════════════════════════════════════════════════════════ */
.pt-navbar {
    padding-top: 160px !important;
}

/* ══════════════════════════════════════════════════════════════════════════════
   RESPONSIVE MEDIA QUERIES (MOBILE AUTO-ADAPT)
   ══════════════════════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    nav {
        flex-direction: column;
        gap: 20px;
        padding: 15px 5%;
    }
    nav > div {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    nav a {
        margin-left: 0;
        margin: 0 10px;
    }
    .topbar {
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
        font-size: 14px;
        padding: 15px;
    }
    .navbar {
        position: relative;
        top: 0;
        padding-bottom: 10px;
    }
    .hero p {
        font-size: 18px;
        padding: 0 15px;
    }
    .pt-navbar {
        padding-top: 60px !important;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 5%;
    }
    .hero p {
        font-size: 16px;
    }
    .logo-image {
        width: 45px;
        height: 45px;
    }
    .logo-title {
        font-size: 24px;
    }
    .section h2 {
        font-size: 32px;
    }
}