/*# sourceMappingURL=style.css.map */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 85px; /* Adjust according to your navbar height */
}

body {
    width: 100%;
    /* background: grey !important; */
    font-family: "Poppins", sans-serif;
}

/* Global Styles */
h1 {
    font-size: 50px;
    line-height: 64px;
    color: #222;
}

h2 {
    font-size: 46px;
    line-height: 54px;
    color: #222;
}

h4 {
    font-size: 20px;
    color: #222;
}

h6 {
    font-size: 12px;
    font-weight: 700;
}

p {
    font-size: 16px;
    color: #465b52;
    margin: 15px 0 20px 0;
}

.hash {
    color: #00b7ff;
}

/* ===============> Header Section <=============== */
#parent-header {
    position: sticky;
    top: 2px;
    left: 0;
    z-index: 999;
}

#header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 70px;
    background-image: linear-gradient(to top, #fdcbf1 0%, #fdcbf1 1%, #e6dee9 100%);
    /* color: #87ceeb; */
    /* background-image: linear-gradient(to left top, #a6e4fc 0%, white 100%);  */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.09);
    border: 1px solid #87ceeb;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 999;
    border-radius: 50px;
    width: 95%;
    /* margin-bottom: 20px; */
}

#header .nav-logo {
    font-size: 30px;
    font-weight: 500;
    text-decoration: none;
    color: black;
}

#navbar {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul#navbar {
    margin: 0;
}

#navbar li {
    list-style: none;
    padding: 0 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    transition: 0.3s ease;
}

#navbar li a:hover,
#navbar li a.active {
    color: #088178;
}

#navbar li a.active::after,
#navbar li a:hover::after {
    content: "";
    width: 30%;
    height: 2px;
    background: #088178;
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#mobile {
    display: none;
}

#close {
    display: none;
}

/* Button Design */
.gradient-border-btn {
    position: relative;
    display: inline-block;
    padding: 12px 24px;
    font-weight: bold;
    color: transparent;
    background-color: #000;
    border-radius: 50px;
    text-decoration: none;
    z-index: 1;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(90deg, #fcee09, #ff00ff, #fcee09);
    background-size: 300%;
    animation: border-gradient 3s linear infinite;
    border: 3px solid transparent;
}

.gradient-border-btn::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50px;
    background: linear-gradient(90deg, #fcee09, #ff00ff, #fcee09);
    background-size: 300%;
    z-index: -1;
    animation: border-gradient 3s linear infinite;

    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    padding: 3px;
    box-sizing: border-box;
}

@keyframes border-gradient {
    0% {
        background-position: 0% 50%;
    }

    100% {
        background-position: 300% 50%;
    }
}

/* Medium Screen Device or Like Tablet Devices */
@media (max-width:799px) {
    .section-p1 {
        padding: 40px 40px;
    }

    #navbar {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        position: fixed;
        top: 0;
        right: -300px;
        height: 100vh;
        width: 300px;
        background-image: linear-gradient(to top, #f8d6f0 0%, white 100%);
        box-shadow: 0 40px 60px rgba(0, 0, 0, 0.1);
        padding: 80px 0 0 10px;
        transition: 0.3s;
    }

    #navbar.active {
        right: 0px;
    }

    #close {
        display: initial;
        position: absolute;
        top: 30px;
        left: 30px;
        color: #222;
        font-size: 24px;
    }

    #lg-bag {
        display: none;
    }

    #navbar li {
        margin-bottom: 25px;
    }

    #mobile {
        display: flex;
        align-items: center;
    }

    #mobile i {
        cursor: pointer;
        color: #1a1a1a;
        font-size: 24px;
        padding-left: 20px;
    }
}

/* Small Screen devices or like Mobile Devices */
@media (max-width: 477px) {
    .section-p1 {
        padding: 20px;
    }

    /* Navbar */
    #header {
        padding: 10px 30px;
    }

    .gradient-border-btn {
        display: none;
    }
    
    .workProjects .col-md-4{
        text-align: center;
    }
}

/* Hero Section */
#hero {
    margin-top: -11.9vh;
    height: 80vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    /* background-image: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%); */
    color: #ffffff;
    background-image: linear-gradient(45deg, #874da2 0%, #c43a30 100%);
}

/* Whatsapp Icon */
.whatsapp-icon {
    position: absolute;
    bottom: 15px;
    right: 15px;
    position: fixed;
}