
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", system-ui, sans-serif;
}

html, body {
    width: 100%;
    height: auto;
    min-height: 100%;
    color: #111;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    padding-top: 130px;
}


.live-bg {
    position: fixed;
    inset: 0;
    z-index: -3;

    background-image: url("assets/background.png");
    background-size: 120%;
    background-position: center;
    background-repeat: no-repeat;

    animation: bgDrift 24s ease-in-out infinite alternate;
}

.live-bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom right,
        rgba(255, 255, 255, 0.72),
        rgba(255, 255, 255, 0.58)
    );
}

@keyframes bgDrift {
    0%   { background-position: 48% 50%; transform: scale(1.04); }
    50%  { background-position: 52% 48%; transform: scale(1.08); }
    100% { background-position: 48% 50%; transform: scale(1.04); }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}


.navbar {
    padding: 15px 35px;
    background: #ffffff !important;
    border-bottom: none;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    right: auto !important;
    z-index: 9999 !important;
    width: auto !important;
    border-radius: 50px;
    max-width: 650px;
    min-width: 450px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: #2c7be5;
    font-size: 1.1rem;
    white-space: nowrap;
}

.brand img {
    width: 36px;
    flex-shrink: 0;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: #111 !important;
    margin-left: 28px;
    padding-bottom: 4px;
    font-size: 1.05rem;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 0;
    background-color: #2c7be5;
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 0;
}


.hero {
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hero-content {
    max-width: 640px;
    text-align: center;
}


.hero-title-inline {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    white-space: nowrap;
    display: inline-block;
    margin-bottom: 12px;

    background: linear-gradient(
        135deg,
        #7fbcd2 0%,
        #2c7be5 45%,
        #111 90%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.hero-fullform {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-tagline {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 40px;
}


.btn-primary {
    padding: 16px 38px;
    background: linear-gradient(135deg, #2c7be5, #1a8ecf);
    color: #fff;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    box-shadow: 0 14px 32px rgba(44, 123, 229, 0.45);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 18px 40px rgba(44, 123, 229, 0.55);
}


.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.particle-zone {
    position: relative;
    width: 520px;
    height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image img {
    width: 440px;
    max-width: 100%;
    position: relative;
    z-index: 2;
}


.particle {
    position: absolute;
    width: 6px;
    height: 6px;

    background: rgba(44, 123, 229, 0.8);
    border-radius: 50%;

    opacity: 0.85;
    box-shadow: 0 0 14px rgba(44, 123, 229, 0.8);

    animation: floatParticle 3.5s ease-in-out infinite;
    will-change: transform, opacity;
}

.p1  { top: 4%;   left: 50%; animation-delay: -0.2s; }
.p2  { top: 10%;  left: 30%; animation-delay: -1.1s; }
.p3  { top: 12%;  right: 28%; animation-delay: -2.3s; }

.p4  { top: 35%;  right: 6%; animation-delay: -0.7s; }
.p5  { top: 55%;  right: 4%; animation-delay: -1.9s; }

.p6  { bottom: 6%;  left: 48%; animation-delay: -2.6s; }
.p7  { bottom: 12%; left: 28%; animation-delay: -3.1s; }
.p8  { bottom: 10%; right: 30%; animation-delay: -1.5s; }

.p9  { top: 38%; left: 4%; animation-delay: -0.9s; }
.p10 { top: 58%; left: 6%; animation-delay: -2.2s; }

.p11 { top: 22%; left: 14%; animation-delay: -1.4s; }
.p12 { bottom: 22%; right: 14%; animation-delay: -2.8s; }



@keyframes floatParticle {
    0% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.4;
    }
    50% {
        transform: translate(16px, -28px) scale(1.25);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) scale(0.9);
        opacity: 0.4;
    }
}


@media (max-width: 900px) {
    .particle-zone {
        width: 360px;
        height: 360px;
    }

    .hero-image img {
        width: 300px;
    }

    .particle {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    .particle {
        animation: none;
    }
}



@media (max-width: 900px) {
    .container {
        padding: 0 32px;
    }

    .hero-inner {
        flex-direction: column;
    }

    .hero-title-inline {
        white-space: normal;
        font-size: 48px;
    }

    .hero-image img {
        width: 340px;
    }

    .particle {
        display: none;
    }
}


@media (prefers-reduced-motion: reduce) {
    .particle,
    .live-bg {
        animation: none;
    }
}


.about-section {
    position: relative;
    padding: 95px 0;
    overflow: hidden;
}


.about-section::before {
display: none;
}

.about-section::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #2c7be5 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.12;
    top: -120px;
    right: 8%;
    z-index: 0;
}

.orange-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, #2c7be5 0%, transparent 70%);
    filter: blur(120px);
    opacity: 0.15;
    bottom: -120px;
    left: 12%;
    z-index: 0;
}



.about-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 70px;
}


.about-title {
    text-align: center;
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 55px;
   background: linear-gradient(
        90deg,
        #2c7be5,
        #1a8ecf,
        #1f5fd1
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 55px;
}



.about-gif {
    position: relative;
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-gif::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(44,123,229,0.25), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 6s ease-in-out infinite alternate;
}

.about-gif::after {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(242,140,56,0.20), transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: pulseGlow 7s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.4; }
    100% { transform: scale(1.1); opacity: 0.6; }
}

.orbit-ring {
    position: absolute;
    width: 450px;
    height: 450px;
    border: 1px dashed rgba(44,123,229,0.2);
    border-radius: 50%;
    animation: rotateRing 30s linear infinite;
    z-index: 1;
}

@keyframes rotateRing {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.gif-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #2c7be5;
    border-radius: 50%;
    opacity: 0.6;
    animation: floatGifDot 5s ease-in-out infinite alternate;
    z-index: 2;
}

.dot1 { top: 15%; left: 20%; }
.dot2 { bottom: 20%; right: 25%; }
.dot3 { top: 50%; right: 10%; }

@keyframes floatGifDot {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-20px); }
}

.about-gif-shadow {
    position: absolute;
    bottom: 40px;
    width: 200px;
    height: 30px;
    background: radial-gradient(ellipse, rgba(0,0,0,0.15), transparent);
    border-radius: 50%;
    z-index: 1;
}

.about-gif img {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 380px;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}



.about-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    background: rgba(255,255,255,0.45);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 22px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.06);
    max-height: 650px;
    overflow-y: auto;
}

.about-content::-webkit-scrollbar {
    width: 0;
    display: none;
}

.about-content {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.about-content::after {
    content: "";
    position: absolute;
    left: -20px;
    top: 25px;
    width: 3px;
    height: 75%;
    background: linear-gradient(to bottom, #2c7be5, #1bb3a9);
    border-radius: 2px;
}

.about-content::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(44,123,229,0.10), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(242,140,56,0.10), transparent 40%);
    animation: shimmer 8s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes shimmer {
    0% { transform: translate(0px, 0px); }
    100% { transform: translate(15px, -15px); }
}

.about-content p {
    font-size: 19px;
    line-height: 1.9;
    margin-bottom: 24px;
    color: #2c3e50;
    text-align: justify;
    text-justify: inter-word;
}

.about-section-heading {
    font-size: 24px;
    font-weight: 700;
    margin-top: 30px;
    margin-bottom: 18px;
    color: #1f5fd1;
    position: relative;
    padding-bottom: 10px;
}

.about-section-heading:first-of-type {
    margin-top: 0;
}

.about-section-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #1f5fd1, #1bb3a9);
    border-radius: 2px;
}

.about-lead {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 25px;
}

.about-highlight {
    font-size: 20px;
    font-weight: 600;
    margin-top: 30px;
    padding: 20px;
    background: rgba(31, 95, 209, 0.05);
    border-left: 4px solid #1bb3a9;
    border-radius: 8px;
}

.accent {
    color: #2c7be5;
    font-weight: 600;
}

.about-tags {
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.about-tags span {
    padding: 7px 16px;
    background: rgba(44,123,229,0.08);
    border: 1px solid rgba(44,123,229,0.15);
    border-radius: 30px;
    font-size: 13px;
    color: #2c7be5;
    font-weight: 500;
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 85px;
}

@media (max-width: 992px) {
    .about-wrapper {
        flex-direction: column;
        text-align: left;
        gap: 45px;
    }

    .about-title {
        font-size: 40px;
        margin-bottom: 40px;
        text-align: center;
    }

    .about-content {
        padding: 30px;
        max-width: 100%;
        max-height: 550px;
    }

    .about-content::after {
        display: none;
    }

    .about-section-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
}


.domain-section {
    position: relative;
    padding: 90px 8%;
    background: transparent;
}



.section-title {
    font-size: 3.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 4rem;

    background: linear-gradient(90deg, #1f5fd1, #1a8ecf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.domain-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    padding: 60px 75px;
    margin-bottom: 70px;

    border-radius: 30px;
    background: #ffffff;

    overflow: hidden;
    transition: all 0.4s ease;
    z-index: 1;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



.domain-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.18);
}



.domain-content h3 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1f5fd1;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.domain-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4b5c78;
    font-weight: 500;
    letter-spacing: 0.3px;
    max-width: 580px;
    transition: all 0.4s ease;
}

.domain-content p::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    margin-top: 18px;
    border-radius: 3px;
    background: #1f5fd1;
    transition: all 0.4s ease;
}



.domain-gif img {
    max-width: 230px;
    border-radius: 20px;
    transition: transform 0.4s ease;
}

.domain-card:hover .domain-gif img {
    transform: scale(1.07);
}



.domain-card.reverse {
    flex-direction: row-reverse;
}



@media (max-width: 992px) {

    .domain-card,
    .domain-card.reverse {
        flex-direction: column;
        text-align: center;
        padding: 45px;
    }

    .domain-text p {
        max-width: 100%;
    }
}



.contact-section {
    padding: 100px 8% 120px;
    background: transparent;
}

.contact-container {
    max-width: 1200px;
    margin: auto;
}


.contact-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 70px;

    background: linear-gradient(90deg, #1f5fd1, #1a8ecf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact-wrapper {
    display: flex;
    gap: 70px;
    align-items: center;
    justify-content: center;
}



.contact-info-center {
    max-width: 700px;
    text-align: center;
    background: #ffffff;
    padding: 60px;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 60, 150, 0.08);
}

.contact-info-center h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1f5fd1;
}

.contact-info-center p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4b5c78;
    margin-bottom: 20px;
}



.contact-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.contact-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: rgba(31, 95, 209, 0.1);
    color: #1f5fd1;
    font-size: 1.4rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.contact-social a:hover {
    background: #1f5fd1;
    color: #ffffff;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(31, 95, 209, 0.3);
}


@media (max-width: 992px) {

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info-center {
        width: 100%;
        padding: 40px 30px;
    }
}



@media (max-width: 992px) {

    /* ================= CONTAINER ================= */
    .container {
        padding: 0 24px;
    }

    /* ================= NAVBAR ================= */
    body {
        padding-top: 80px;
    }

    .navbar {
        padding: 15px 0;
    }

    /* ===================================== */
    /* HERO SECTION */
    /* ===================================== */

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-title-inline {
        font-size: 44px;
        white-space: normal;
    }

    .hero-content {
        max-width: 100%;
    }

    .particle-zone {
        width: 340px;
        height: 340px;
    }

    .hero-image img {
        width: 280px;
    }

    .particle {
        display: block;
        width: 5px;
        height: 5px;
        box-shadow: 0 0 10px rgba(27, 179, 169, 0.8);
    }

    @keyframes floatParticle {
        0% {
            transform: translate(0, 0) scale(0.9);
            opacity: 0.5;
        }
        50% {
            transform: translate(10px, -18px) scale(1.15);
            opacity: 1;
        }
        100% {
            transform: translate(0, 0) scale(0.9);
            opacity: 0.5;
        }
    }

    /* ===================================== */
    /* ABOUT SECTION */
    /* ===================================== */

    .about-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-title {
        font-size: 38px;
    }
    .about-gif {
        flex: none;
        width: 260px;
    }

    .about-gif img {
        max-width: 260px;
        animation: float 5s ease-in-out infinite;
    }

    .about-gif::before {
        width: 300px;
        height: 300px;
    }

    .about-gif::after {
        width: 250px;
        height: 250px;
    }

    .orbit-ring {
        width: 320px;
        height: 320px;
    }

    .about-content {
        padding: 25px;
    }

    /* ===================================== */
    /* DOMAIN SECTION */
    /* ===================================== */

    .domain-card,
    .domain-card.reverse {
        flex-direction: column;
        text-align: center;
        padding: 35px 25px;
    }

    .domain-text h3 {
        font-size: 1.6rem;
    }

    .domain-text p {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .domain-gif {
        width: 100%;
        margin-top: 25px;
        display: flex;
        justify-content: center;
    }

    .domain-gif img {
        width: 160px;
        margin: 0 auto;
        display: block;
    }

    /* ===================================== */
    /* CONTACT SECTION */
    /* ===================================== */

    .contact-wrapper {
        flex-direction: column;
        gap: 30px;
    }

    .contact-form {
        padding: 30px;
    }

    /* ===================================== */
    /* FOOTER */
    /* ===================================== */

    .simple-footer {
        padding: 50px 20px 30px;
    }
}


/* ========================================= */
/* BACKGROUND FIX FOR MOBILE */
/* ========================================= */

@media (max-width: 768px) {

    .container {
        padding: 0 20px;
    }

    .live-bg {
        background-size: cover !important;
        background-position: center !important;
        background-attachment: scroll;
        animation: none; 
    }

    /* Mobile Navbar - Full Width */
    .navbar {
        padding: 20px 0 !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        transform: none !important;
        width: 100% !important;
        border-radius: 0 !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        max-width: none !important;
        min-width: auto !important;
    }

    .brand {
        font-size: 0.9rem;
        gap: 8px;
    }

    .brand img {
        width: 28px;
    }

    .nav-link {
        margin-left: 16px;
        font-size: 0.95rem;
    }

    body {
        padding-top: 90px;
    }

}
@media (max-width: 992px) {

    .container {
        padding: 0 40px;
    }

    .domain-card {
        padding: 40px 30px;   
        gap: 15px;            
    }

    .domain-gif {
        margin-top: 10px;     
    }

    .domain-text p {
        margin-bottom: 10px;
    }
    .about-container {
        max-width: 100% !important;
        padding: 0 40px;
    }

    .about-content {
        max-width: 100% !important;
        width: 100%;
        padding: 28px 24px;
        max-height: 500px;
    }
    .hero{
        padding-top: 25px;
    }

    .navbar {
        max-width: 85%;
        min-width: auto;
        padding: 12px 25px;
    }
   
}
