* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: black;
    overflow-x: hidden;

}

html {
    scroll-behavior: smooth;
}

/* =========================
   PRELOADER FULL SCREEN
   ========================= */
#preloader {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #ffffff;
    top: 0;
    left: 0;
    z-index: 9999;

    display: flex;
    justify-content: center;
    align-items: center;

    transition: opacity 0.6s ease, visibility 0.6s;
}

/* LOGO STYLE */
#preloader img {
    width: 140px;
    animation: logoZoom 1.5s ease-in-out infinite;
}

/* LOGO ANIMATION */
@keyframes logoZoom {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.1);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.7;
    }
}

/* HIDE PRELOADER */
#preloader.hide {
    opacity: 0;
    visibility: hidden;
}


/* =========================
   Nav Bar
   ========================= */
.navbar {
    position: fixed;
    /* Make it fixed so it stays on top */
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 145px;
    z-index: 1000;
    background: #fff;
    filter: drop-shadow(0px 10px 6px #DDA0DD);
}

.logo img {
    width: 160px;
    height: 50px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #320f36;
    font-size: 14px;
    text-decoration: none;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #d800d8;
}

.search-icon {
    color: white;
    font-size: 15px;
    cursor: pointer;
}

.search-icon:hover {
    color: #d800d8;
}

/* Hamburger icon */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    cursor: pointer;
}

/* Navigation-End */


/* =========================
   Hero-Section
   ========================= */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}


.hero-image {
    width: 100%;
    height: 100%;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    top: 51%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
    width: 90%;

}

.hero-text h1 {
    position: relative;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 0 0 #800080, 0 2px 0 #800080, -2px 0 0 #800080, 0 -2px 0 #800080;
}

.hero-text p {
    margin-top: 6px;
    font-size: 20px;
    color: #fff;
    line-height: 1.2;
    position: relative;
    font-weight: 600;
    display: inline-block;
    text-shadow: 1px 0 0 #320f36, 0 1px 0 #320f36, -1px 0 0 #320f36, 0 -1px 0 #320f36;
}

.hero-text h1,
.hero-text p {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 2s ease forwards;
}

.hero-text h1 {
    animation-delay: 0.5s;
}

.hero-text p {
    animation-delay: 0.9s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   About-Section
   ========================= */

.title{
    justify-items: center;
        padding: 0px 130px;
}

.title h1::after{
content: "";
    display: block;
    height: 4px;
    background: linear-gradient(to right, transparent, #FFB1FF, transparent); /* light purple */
    margin-top: -4px;
}

.title h1{
    font-size: 24px;
}

.title p{
    font-size: 14px;
    font-weight: 500;
    text-align: justify;
    margin-top: 10px;
}

/* =========================
   Service-Section
   ========================= */

.service-pills {
    display: flex;
    flex-wrap: wrap;            /* allows wrapping */
    justify-content: center;    /* center align */
    gap: 15px;
    margin-top: 10px;
    font-family: Poppins;
}

/* SERVICE PILLS */
.service-pill {
    padding: 2px 10px;
    border-radius: 25px;

    background: rgba(128, 0, 128, 0.2);
    border: 1.5px solid #800080;

    font-size: 12px;
    font-weight: 600;
    color: #800080;

    text-align: center;
    white-space: nowrap;

    transition: 0.3s ease;
}

/* HOVER EFFECT */
.service-pill:hover {
    box-shadow: 0px 0 10px rgba(128, 0, 128, 0.9);
    transform: scale(1.05);
}

/* MAIN BOX */
.service-box {
    display: flex;
    gap: 100px;
    justify-content: center;
    padding: 20px;
    border-radius: 20px;
}

/* IMAGE */
.service-image img {
    width: 400px;
    height: 300px;
    border-radius: 20px;
    box-shadow: 0px 0 10px rgba(128, 0, 128, 0.9);
}

/* CONTENT */
.service-content {
    max-width: 700px;
}

.service-content h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    text-align: justify;
}

/* LIST */
.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin-top: 15px;
    gap: 10px;
}

/* ITEM */
.list-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.list-item img {
    width: 16px;
}

/* =========================
   Tools-Section
   ========================= */
.tools-section{
    width: 100%; 
    background-color: rgba(221, 160, 221, 0.2);
}

.tools-container{
    padding: 10px 0px;
    position: relative;
    width: 1000px;
    text-align: center;
    margin: auto;
}

.soft-section{
    height: 135px;
}
/* SUB TITLE */
.sub-title {
    margin-top: 0px;
    font-size: 18px;
    color: #320f36;
    line-height: 1.6;
    text-align: center;
}

/* DESCRIPTION */
.sub-text {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* CONTAINER */
.soft-tools {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
}

/* TOOL BADGE */
.tool {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 115px;
    height: 30px;

    padding: 6px 5px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid rgba(128, 0, 128, 0.6);

    font-size: 13px;
    font-weight: 500;
    color: #2d0b2f;

    transition: 0.3s ease;
}

/* ICON */
.tool img {
    width: 20px;
    height: 20px;
}

.tool span {
    font-size: 13px;
    font-weight: 500; /* medium */
    color: #2d0b2f;
}



/* =========================
   contact-Section
   ========================= */
.contact-section {
    padding: 60px 0px;
}

/* CONTAINER */
.contact-container {
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

/* LEFT */
.contact-left {
    max-width: 500px;
}

.contact-left h4 {
    color: #800080;
    font-weight: 600;
}

.contact-left h1 {
    font-size: 36px;
    margin: 10px 0;
}

.contact-left p {
    font-size: 15px;
    line-height: 1.6;
}

/* INFO BOXES */
.contact-info {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.info-box {
    background: #fff;
    width: 160px;
    padding: 3px;
    border-radius: 10px;
    box-shadow: -6px 0 1px rgba(128, 0, 128, 0.6);
}

.info-box h5 {
    font-size: 12px;
    color: #800080;
}

.info-box span {
    font-size: 12px;
}

/* SOCIAL */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    justify-content: center;
}

/* ICON BOX */
.icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #800080;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    transition: 0.3s ease;
}

/* ICON IMAGE */
.icon img {
    width: 18px;
    height: 18px;
}

/* HOVER EFFECT */
.icon:hover {
    box-shadow: 0px 0 10px rgba(128, 0, 128, 0.9);
    transform: scale(1.1);
}

/* RIGHT FORM */
.contact-right {
    width: 400px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #800080;
    background: rgba(221, 160, 221, 0.2);
}

textarea {
    height: 80px;
}

/* BUTTON */
.btn {
    width: 100%;
    padding: 10px;
    background: #800080;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
}

.form-message {
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

/* GREEN SUCCESS */
.form-message.success {
    color: #008000;
}

/* RED ERROR */
.form-message.error {
    color: #cc0000;
}



/* =========================
   Footer-Section
   ========================= */
.footer {
    margin-top: 10px;
    background-color: rgb(128, 0, 128, 0.2);
    padding: 5px 0;
    text-align: center;
}

.footer-text {
    font-weight: 600;
    font-size: 12px;
    color: #800080;
}

/* Footer-End*/








/* =========================
   TABLET (max-width: 1024px)
   ========================= */
@media (max-width: 1024px) {

    .navbar {
        padding: 0 40px;
        height: 70px;
    }

    .logo img {
        width: 150px;
        height: auto;
    }

    .nav-menu {
        gap: 25px;
    }

    .hero-text h1 {
        font-size: 38px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .title {
        padding: 0px 60px;
    }

    .title h1 {
        font-size: 22px;
    }

    .title p {
        font-size: 13px;
        line-height: 1.6;
    }

    .service-pill {
        font-size: 10px;
        padding: 3px 10px;
    }

    .service-box {
        display: flex;
        flex-direction: row; /* keep same as desktop */
        gap: 30px;
        align-items: center;
    }

    .service-image img {
        width: 300px; /* slightly smaller for tablet */
    }

    .service-content {
        max-width: 100%;
    }

    .service-content p{
        font-size: 13px;
    }

    .service-list {
        grid-template-columns: repeat(2, 1fr); /* same as desktop */
    }

    .service-list span{
        font-size: 12px;
        
    }

    .tools-container {
        max-width: 90%;
    }
    .soft-section{
        height: 160px;
    }

    .sub-title {
        font-size: 17px;
    }

    .sub-text {
        font-size: 14px;
        padding: 0 10px;
    }

    .tool {
        width: auto;
        padding: 6px 5px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contact-left {
        max-width: 100%;
        text-align: center;
    }

    .contact-left h1 {
        font-size: 32px;
    }

    .contact-info {
        justify-content: center;
        flex-wrap: wrap;
    }

    .contact-right {
        width: 100%;
        max-width: 500px;
    }

    .social-icons {
        justify-content: center;
    }



    .footer {
        padding: 5px 0;
    }

    .footer-text {
        font-size: 11.5px;
    }
}


/* =========================
   MOBILE (max-width: 768px)
   ========================= */
@media (max-width: 768px) {

    /* NAVBAR */
    .navbar {
        padding: 0 20px;
        height: 65px;
    }

    .hamburger {
        display: block;
        color: #320f36;
    }

    .nav-menu {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #fff;

        flex-direction: column;
        align-items: center;
        gap: 20px;

        /* ANIMATION SETUP */
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.9s ease;
    }

    .nav-menu.active {
        max-height: 300px; /* enough height to show items */
        opacity: 1;
        padding: 20px 0;
    }

    /* HERO TEXT */
    .hero-text {
        width: 95%;
        top: 52%;
    }

    .hero-text h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-text p {
        font-size: 16px;
        line-height: 1.5;
    }

    .title {
        padding: 0px 30px;
    }

    .title h1 {
        font-size: 20px;
        text-align: center;
    }

    .title h1::after {
        margin: 0px auto 0;
    }

    .title p {
        font-size: 13px;
        line-height: 1.7;
        text-align: justify;
    }

    .service-box{
        display: flex;
        flex-direction: column;
    }

    .service-pills {
        gap: 10px;
    }

    .service-pill {
        font-size: 12px;
        padding: 6px 12px;
    }

    .service-content h2 {
        font-size: 20px;
    }

    .service-content p {
        font-size: 14px;
    }

    .tools-section {
        padding: 30px 0;
    }

    .tools-container {
        padding: 0 15px;
    }

    .soft-section {
        height: auto;
        margin-bottom: 25px;
    }

    .sub-title {
        font-size: 16px;
    }

    .sub-text {
        font-size: 14px;
        line-height: 1.7;
    }

    .soft-tools {
        gap: 10px;
    }

    .tool {
        width: auto;
        height: auto;
        padding: 6px 10px;
    }

    .tool img {
        width: 18px;
        height: 18px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-left h1 {
        font-size: 26px;
    }

    .contact-left p {
        font-size: 14px;
    }

    .contact-info {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .info-box {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .contact-right {
        width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 14px;
    }

    .footer {
        padding: 5px 0px;
    }

    .footer-text {
        font-size: 11px;
        line-height: 1.5;
    }
}


/* =========================
   SMALL MOBILE (max-width: 480px)
   ========================= */
@media (max-width: 480px) {

    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 14px;
    }

    .logo img {
        width: 130px;
    }

     .title {
        padding: 0px 20px;
    }

    .title h1 {
        font-size: 18px;
    }

    .title h1::after {
        width: 70%;
    }

    .title p {
        font-size: 12px;
        line-height: 1.8;
    }

    .service-box{
        display: flex;
        flex-direction: column;
    }

    .service-pill {
        font-size: 10px;
        padding: 2px 5px;
    }

    .service-image img{
        width: 300px;
        height: 250px;
    }

    .service-content p {
        font-size: 13px;
    }

    .list-item span{
        font-size: 10px;
        font-weight: 600;
    }

    .tools-section{
        padding: 10px 0px;
    }

    .tools-container {
        padding: 0 10px;
    }

    .sub-title {
        font-size: 15px;
    }

    .sub-text {
        font-size: 13px;
    }

    .tool {
        padding: 5px 8px;
        gap: 6px;
    }

    .tool img {
        width: 16px;
        height: 16px;
    }

    .tool span{
        font-size: 10px;
    }

    .contact-left h1 {
        font-size: 22px;
    }

    .contact-left h4 {
        font-size: 14px;
    }

    .contact-left p {
        font-size: 13px;
    }

    .info-box h5 {
        font-size: 11px;
    }

    .info-box span {
        font-size: 11px;
    }

    .icon {
        width: 35px;
        height: 35px;
    }

    .icon img {
        width: 16px;
        height: 16px;
    }

    .btn {
        font-size: 14px;
        padding: 8px;
    }

    .footer {
        padding: 5px 0px;
    }

    .footer-text {
        font-size: 10px;
        line-height: 1.6;
    }
}