
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*::selection {
    background-color: transparent;
}

*::-moz-selection {
    background: transparent;
}

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

* {
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;

}

:root {
    font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    cursor: default;
    --color-white: #fff;
    --color-black: #000;
    --color-dark-mode: #0c0c21;
    --color-light-mode: #ece7e1;
    --color-ddd-color: #ddd;
    --color-gray: #c4c4c4;
    --color-purple: #8000ff;
    --color-light-purple: #cf59e6;
    --color-light-blue: #6bc5f8;
    --color-navbarBorder-dark: #20222e10;
    --color-shadowDark: rgba(0, 0, 0, 0.137);
    --static-heading-gradient-blue: #b0f3f1;
    --static-heading-gradient-pink: #ffcfdf;
    --tech-stack-box-first-color: #4c4c55;
    --tech-stack-box-second-color: rgba(0, 0, 0, 0.492);
    --tech-stack-box-border-color: #292929;
    --optionDefaultColours: #ED5565, #FC6E51, #FFCE54, #2ECC71, #5D9CEC, #AC92EC;
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #0a0a10;
}

::-webkit-scrollbar-thumb {
    background-color: #8000ff;
    /* border-radius: 20px; */

}

body {
    background-color: var(--color-dark-mode);
    overflow-x: hidden;
}


.cursor {
    z-index: 999999999;
    position: absolute;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.outer {
    border: 1px solid #8BA1F2;
}

.cursor.hover {
    transform: translate(-50%, -50%) scale(2);
    transition: transform 250ms ease-in-out;
}


/* for light mode */
.light-mode {
    --color-dark-mode: #ece7e1;
    --color-black: #fff;
    --color-white: #000;
    --color-ddd-color: rgb(31, 31, 31);
    --color-navbarBorder-dark: #d1d6eb;
    --static-heading-gradient-blue: #0f7878;
    --static-heading-gradient-pink: #f09bb9;
    --color-shadowDark: #e2ddd7;
    --tech-stack-box-first-color: #e7e2db;
    --tech-stack-box-second-color: #ece7e100;
    --tech-stack-box-border-color: #dad5cf;
}

.setting-container {
    width: 60px;
    height: 50px;
    margin-left: 50px;
    display: flex;
    align-items: center;
    transform-origin: left;
    transition-duration: .5s;
    gap: 30px;
    padding: 20px 0px;

}

#labelforsetting {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px 20px;
    background-image: url(src/svg/settings-svgrepo-com.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    transition-duration: .5s;
    cursor: pointer;
}

.invertsettinglabel {
    filter: invert(1);
}

.settingactivate {
    transform-origin: left;
    width: 200px;
    transition-duration: .5s;

}

.visualmodetogglebuttoncontainer {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50px)scale(0);
    transition-duration: .3s;
}

.visualmodeshow {
    transition-duration: .3s;
    transform: translate(0px)scale(1);
}

#switchforsetting {
    display: none;
}

#switchforsetting:checked+#labelforsetting {
    transform: rotate(180deg);
    transition-duration: .5s;

}

#labelforvisualmode {
    position: relative;
    width: 40px;
    height: 40px;
    background-image: url(src/png/crescent-moon\ \(1\).png);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;
    transition-duration: .5s;
    cursor: pointer;
}

#switchforvisualmode {
    display: none;
}

#switchforvisualmode:checked+#labelforvisualmode {
    transform: rotate(360deg);
    transition-duration: .5s;
    background-image: url(src/png/sun.png);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;

}

/* for sound */
.soundtogglebuttoncontainer {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-130px)scale(0);
    transition-duration: .3s;
}

.soundmodeshow {
    transition-delay: .1s;
    transition-duration: .5s;
    display: inline-block;
    transform: translate(0px)scale(1);

}

#labelforsound {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-image: url(src/svg/Mute_Icon.svg);
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    transition-duration: .5s;
}

.invertapplied {
    filter: invert(1);
}

#switchforsound {
    display: none;
}

#switchforsound:checked+#labelforsound {
    transition-duration: .5s;
    background-image: url(src/svg/Speaker_Icon.svg);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: center;

}

header {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#preloader {
    background-color: white;
    height: 100%;
    width: 100%;
    position: fixed;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-y: hidden;
    background-image: url(src/svg/Pulse-0.4s-200px.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 10%;
    filter: invert(1);

}

noscript {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-dark-mode);
    font-size: 4rem;
    color: white;
    z-index: 999999;
}

.fakenavbar {
    height: 0px;
    width: 0%;
    background-color: transparent;
}

.navbar {
    background-color: rgba(255, 255, 255, 0.079);
    backdrop-filter: blur(10px);
    height: 80px;
    width: 80%;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    justify-content: space-between;
    position: fixed;
    z-index: 999;
    border: 1px solid var(--color-navbarBorder-dark);
    border-radius: 50px;
    overflow: hidden;
}

.navbar-tabs {
    display: flex;
    height: 100%;
    width: 80%;
    align-items: center;
}

.navbar-tabs-ul {
    height: 100%;
    width: 100%;
    display: flex;
    list-style: none;
    align-items: center;
    justify-content: flex-end;
    gap: 80px;
    color: var(--color-white);
}

.navbar-tabs-ul li {
    width: fit-content;
    height: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    font-family: fira code;
}

.navbar-tabs-ul li:hover:before {
    content: "";
    background-color: var(--color-white);
    position: absolute;
    height: 10px;
    width: 10px;
    border-radius: 5px;
    left: -20px;
    z-index: -1;
}

.navbar-tabs-ul a {
    text-decoration: none;
    color: var(--color-white);
    font-weight: 100;
}

.logo {
    position: relative;
    width: 10%;
    height: 100%;
    transition-duration: 1s;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;

}

.hey {
    color: white;
    position: absolute;
    font-size: 2.5rem;
    font-weight: 300;
    background-color: #20222e;
    padding: 5px 10px;
    border-radius: 20px;
    left: 120px;
    bottom: 80px;
    opacity: 0;
}

.popup {
    animation: pop-up 3s linear;
}

@keyframes pop-up {
    from {
        bottom: -50px;
        left: 50px;
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.logo-top {
    margin-bottom: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: headshake 15s linear infinite;
    transform-origin: bottom;
    position: relative;
}

@keyframes headshake {
    0% {
        transform: rotate(-8deg);
    }

    25% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(8deg);
    }

    75% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-8deg);
    }

}
@keyframes rotation {
    0% {
        transform: rotate(-20deg);
    }

    25% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(20deg);
    }

    75% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-20deg);
    }

}
.logo-top img {
    height: 100%;
    z-index: 2;

}

.face {
    content: "";
    position: absolute;
    width: 100%;
    height: 60%;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    z-index: 1;
}

.eye {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: flex;
    margin-bottom: 20px;
    align-items: center;
    justify-content: center;
    background-color: white;
    overflow: hidden;


}

.pupil {
    width: 4px;
    height: 4px;
    background: rgb(36, 16, 16);
    border-radius: 50%;
}

/* .eye:after { 
    position: absolute;
    width: 4px;
    height: 4px;
    left: .7px;
    top: 0;
    background: #000;
    border-radius: 50%;
    content: " ";
  } */
.logo-bottom {
    width: 100%;
    height: 16%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-bottom img {
    height: 100%;
}

.logo:hover {
    transform: translateY(200px);
    transition-duration: 1s;
}


.activeThistab {
    color: var(--color-white);
}

.activeThistab:before {
    content: "";
    background-color: var(--color-white);
    position: absolute;
    height: 10px;
    width: 10px;
    left: -20px;
    border-radius: 50%;
    z-index: -1;

}

/* navbar code ends here */

/* landing page code starts from here */
.main {
    width: 100%;
    height: fit-content;

}

.landing-page-container {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 95vh;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    /* background-image: linear-gradient(192deg, rgb(73, 160, 30) 0%, rgb(73, 160, 30) 6%,rgb(88, 141, 55) 6%, rgb(88, 141, 55) 11%,rgb(103, 122, 81) 11%, rgb(103, 122, 81) 55%,rgb(118, 103, 106) 55%, rgb(118, 103, 106) 81%,rgb(132, 84, 131) 81%, rgb(132, 84, 131) 83%,rgb(147, 65, 156) 83%, rgb(147, 65, 156) 92%,rgb(162, 46, 182) 92%, rgb(162, 46, 182) 95%,rgb(177, 27, 207) 95%, rgb(177, 27, 207) 100%),linear-gradient(112.5deg, rgb(73, 160, 30) 0%, rgb(73, 160, 30) 6%,rgb(88, 141, 55) 6%, rgb(88, 141, 55) 11%,rgb(103, 122, 81) 11%, rgb(103, 122, 81) 55%,rgb(118, 103, 106) 55%, rgb(118, 103, 106) 81%,rgb(132, 84, 131) 81%, rgb(132, 84, 131) 83%,rgb(147, 65, 156) 83%, rgb(147, 65, 156) 92%,rgb(162, 46, 182) 92%, rgb(162, 46, 182) 95%,rgb(177, 27, 207) 95%, rgb(177, 27, 207) 100%),linear-gradient(67.5deg, rgb(73, 160, 30) 0%, rgb(73, 160, 30) 6%,rgb(88, 141, 55) 6%, rgb(88, 141, 55) 11%,rgb(103, 122, 81) 11%, rgb(103, 122, 81) 55%,rgb(118, 103, 106) 55%, rgb(118, 103, 106) 81%,rgb(132, 84, 131) 81%, rgb(132, 84, 131) 83%,rgb(147, 65, 156) 83%, rgb(147, 65, 156) 92%,rgb(162, 46, 182) 92%, rgb(162, 46, 182) 95%,rgb(177, 27, 207) 95%, rgb(177, 27, 207) 100%),linear-gradient(237deg, rgb(24, 15, 143),rgb(40,1,133)); background-blend-mode:overlay,overlay,overlay,normal; */
}

.text-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 300px;
}

#hello-friend {
    font-size: 3.5rem;
    font-weight: 600;
    width: fit-content;
    height: 100px;
    display: flex;
    align-items: flex-end;
    color: var(--color-white);
    font-family: fira code;
}

@-webkit-keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

@keyframes vibrate-1 {
    0% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }

    20% {
        -webkit-transform: translate(-2px, 2px);
        transform: translate(-2px, 2px);
    }

    40% {
        -webkit-transform: translate(-2px, -2px);
        transform: translate(-2px, -2px);
    }

    60% {
        -webkit-transform: translate(2px, 2px);
        transform: translate(2px, 2px);
    }

    80% {
        -webkit-transform: translate(2px, -2px);
        transform: translate(2px, -2px);
    }

    100% {
        -webkit-transform: translate(0);
        transform: translate(0);
    }
}

/* #name:hover{
    -webkit-animation: vibrate-1 0.3s linear both;
    animation: vibrate-1 0.3s linear both;
}
   */
#name {
    font-size: 8rem;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: flex-start;
    background: -webkit-linear-gradient(135deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background: linear-gradient(-45deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    -webkit-animation: gradient 3s ease infinite;
    animation: gradient 3s ease infinite;

}

#foundername {
    font-size: 3rem;
    font-weight: 500;
    height: fit-content;
    width: fit-content;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: -webkit-linear-gradient(135deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background: linear-gradient(-45deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 400% 400%;
    -webkit-animation: gradient 3s ease infinite;
    animation: gradient 3s ease infinite;
}

@keyframes gradient {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

#work {
    font-size: 8rem;
    font-weight: 700;
    width: fit-content;
    display: flex;
    align-items: flex-start;
    color: var(--color-white);
    flex-wrap: wrap;

}

#work div {
    display: flex;
    margin: 0px 12px 0px 0px;
}

.jello:hover {
    background-clip: text;
    -webkit-background-clip: tetextxt;
    -webkit-text-fill-color: transparent;
    background-color: #03e6ff;
    -webkit-animation: jello-vertical 0.9s both;
    animation: jello-vertical 0.9s both;
}

@-webkit-keyframes jello-vertical {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        -webkit-transform: scale3d(0.85, 1.15, 1);
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes jello-vertical {
    0% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    40% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    50% {
        -webkit-transform: scale3d(0.85, 1.15, 1);
        transform: scale3d(0.85, 1.15, 1);
    }

    65% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    75% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    100% {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

#info-para {
    width: 50%;
    font-size: 2rem;
    font-weight: 400;
    padding-top: 30px;
    color: var(--color-ddd-color);
    line-height: 20px;
}


.letsTalkBtn {
    position: relative;
    background-color: transparent;
    border: none;
    width: 180px;
    height: 40px;
    border-radius: 0px;
    cursor: pointer;
    z-index: 997;
}

.letsTalkBtn-text {
    width: 100%;
    height: 100%;
    background-color: rgba(230, 230, 230, 0.466);
    border: none;
    border-radius: 7px;
    backdrop-filter: blur(5px);
    color: rgb(0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.8px;
    font-weight: 700;
}

.letsTalkBtn-BG {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(150deg, #71cbff, #8000ff);
    z-index: -1;
    left: 6px;
    top: 6px;
    border-radius: 7px;
    pointer-events: none;
    transition: all .3s;
}

.letsTalkBtn:hover {
    transform: translateY(-2px) translateX(-2px);
}

.letsTalkBtn:hover .letsTalkBtn-BG {
    transform: translateY(2px) translateX(2px);
}

.letsTalkBtn:active {
    transform: translateY(7px) translateX(7px);
}

.letsTalkBtn:active .letsTalkBtn-BG {
    transform: translateY(-7px) translateX(-7px);
}

.resume-btn {
    position: fixed;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    bottom: 10px;
    left: 5px;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background: linear-gradient(82.3deg,
            rgba(150, 93, 233, 1) 10.8%,
            rgba(99, 88, 238, 1) 94.3%);

}
.setting-btn {
    position: fixed;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 45px;
    height: 45px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    bottom: 10px;
    right: 5px;
    overflow: hidden;
    transition-duration: .3s;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
    background: linear-gradient(82.3deg,
            rgba(150, 93, 233, 1) 10.8%,
            rgba(99, 88, 238, 1) 94.3%);
}

/* button click effect*/
.setting-btn:active {
    transform: translate(2px, 2px);
}
/* plus sign */
.sign {
    width: 100%;
    transition-duration: .3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign svg {
    width: 17px;
}

.sign svg path {
    fill: white;
}
.voice {
    position: absolute;
    right: 5px;
    top: 5px;
    
  }
  .voice img{
    position: relative;
    right: 7px;
    top: 7px;
  }
/* text */
.text {
    position: absolute;
    right: 0%;
    width: 0%;
    opacity: 0;
    color: white;
    font-size: 1em;
    font-weight: 600;
    transition-duration: .3s;
}

/* hover effect on button width */
.resume-btn:hover {
    width: 130px;
    border-radius: 40px;
    transition-duration: .3s;
}

.resume-btn:hover .sign {
    width: 30%;
    transition-duration: .3s;
    padding-left: 20px;
}

/* hover effect button's text */
.resume-btn:hover .text {
    opacity: 1;
    width: 70%;
    transition-duration: .3s;
    padding-right: 10px;
}

/* button click effect*/
.resume-btn:active {
    transform: translate(2px, 2px);
}

/* landing page code ends here */

/* about section starts from here */
.about-section-container {
    margin-top: -10px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.about-section {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-heading-article {
    font-size: 3rem;
    font-family: fira code;
    font-weight: 500;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}
.service-heading-article {
    font-size: 1.5rem;
    font-family: fira code;
    font-weight: 500;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
@keyframes shake {
    0% {
      transform: translateY(-2px);
    }
    50% {
      transform: translateY(2px);
    }
    100% {
      transform: translateY(-2px);
    }
  }
.sectionHeadingP {
    width: 300px;
    height: 1px;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
}

.info-dp-section {
    width: 100%;
    display: flex;
    margin-top: 30px;

}

.about-info {
    width: 60%;
    display: flex;
    flex-direction: column;
}

.about-info p {
    font-size: 2rem;
    font-weight: 400;
    line-height: 25px;
    color: var(--color-white);
}
.dp {
    margin-top: 60px;
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition-duration: .5s;
    
    
}

.dp img {
    width: 300px;
}

.dp::before {
    content: "";
    background-color: transparent;
    height: 300px;
    width: 300px;
    position: absolute;
    z-index: -2;
    box-shadow: 2px 2px 0px inset #161616,
        -2px -2px 0px inset transparent;
    transition-duration: .5s;

}

.dp::after {
    content: "";
    background-color: transparent;
    height: 300px;
    width: 300px;
    position: absolute;
    z-index: -2;
    box-shadow: 2px 2px 0px inset transparent,
        -2px -2px 0px inset #121212;
    transition-duration: .5s;

}

/* hover effect on dp */
.dp:hover::after {
    transform: translate(20px, 20px);
    transition-duration: .5s;
}

.dp:hover::before {
    transform: translate(-20px, -20px);
    transition-duration: .5s;
}

/* about section ends
 */
/* skills section starts */
.skills-section-container {
    margin-top: 80px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
 
}
.methodallagy-section-container {
    margin-top: 80px;
    width: 100%;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;

}
.methodallagy-section {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.methodallagy-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
    
}

.methodallagy-heading-article {
    font-size: 3rem;
    font-family: fira code;
    font-weight: 500;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.methodallagyHeadingP {
    width: 300px;
    height: 1px;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));

}
.skills-section {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.skills-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.skills-heading-article {
    font-size: 3rem;
    font-family: fira code;
    font-weight: 500;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.skillsHeadingP {
    width: 300px;
    height: 1px;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));

}

.language-speak {
    width: 100%;
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: center;
}

.language-speak article {
    font-size: 2rem;
    font-weight: 600;
    font-family: fira code;
    color: var(--color-white);
}

.frontend-dev-section {
    width: 100%;
    margin-top: 50px;
}

.frontend-dev-heading {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 900;
    height: 100px;
    letter-spacing: 5px;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tech-stack-wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
    
}
.addicons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
    margin-top: 50px;
    
}
.icons_box {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background-image: linear-gradient(to bottom right, var(--tech-stack-box-first-color), var(--tech-stack-box-second-color));
    border: 2px solid var(--tech-stack-box-border-color);
}
.icon_image
{
    height: 80%;
    width: 80%;
}
.tech-stack-box {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 25px;
    background-image: linear-gradient(to bottom right, var(--tech-stack-box-first-color), var(--tech-stack-box-second-color));
    border: 2px solid var(--tech-stack-box-border-color);
    animation: floatShake 3s ease-in-out infinite;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.tech-stack-box:hover {
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 0 50px 20px rgba(255, 255, 255, 0.2),
                0 0 100px 40px rgba(0, 255, 255, 0.2),
                0 0 150px 60px rgba(255, 0, 255, 0.2);
}

.tech-stack-box img {
    width: 96%;
    transition: transform 0.5s ease-in-out;
}

.tech-stack-box:hover img {
    transform: rotate(-5deg) scale(1.1);
}

/* Floating + shake animation */
@keyframes floatShake {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-10px) rotate(2deg);
    }
    50% {
        transform: translateY(0px) rotate(-2deg);
    }
    75% {
        transform: translateY(10px) rotate(2deg);
    }
    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.tech-stack-logo
{
    border-radius: 20px;    
}

/* skills section ends */
/* ######################################################## */
/* projects section starts */
.projects-section-container {
    margin: 80px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;

}

.projects-section-div {
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.projects-heading {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.projects-heading-article {
    font-size: 3rem;
    font-family: fira code;
    font-weight: 500;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.projectsHeadingP {
    width: 300px;
    height: 1px;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
}

.project-boxes-div {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 50px;
}

.project-boxes-div a {
    text-decoration: none;
    width: 100%;
}

.project-box {
    /* background-color: rgba(255, 255, 255, 0.005); */
    background-image: linear-gradient(to bottom right, var(--tech-stack-box-first-color), var(--tech-stack-box-second-color));
    width: 100%;
    height: 400px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition-duration: .3s;
    position: relative;
    /* box-shadow: 0px 10px 20px var(--color-shadowDark); */
    border-radius: 30px;
    border: 1px solid var(--tech-stack-box-border-color);
    overflow: hidden;
}

.info-div {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    padding: 0 40px;
}

.faviconforProject {
    width: 100px;
    border-radius: 50%;
}

.faviconforProjectAquaregia {
    width: 20px;
}

.image-div {
    width: 50%;
    height: 100%;
    overflow: hidden;
    padding-top: 70px;
    padding-left: 10px;

}

.image-div img {
    height: 100%;
    border-top-left-radius: 30px;
}

.ProjectHeading {
    color: var(--color-white);
    font-size: 3.4rem;
    font-weight: 700;
}

.ProjectDescription {
    color: gray;
    font-size: 1.7rem;
    font-weight: 400;
}

/* Project visit button */
.cta {
    position: relative;
    padding: 12px 18px;
    transition: all 0.2s ease;
    border: none;
    background: none;
    cursor: pointer;
}

.cta:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-radius: 50px;
    background: #2b2f4e;
    /* background-color: var(--color-navbarBorder-dark); */
    width: 45px;
    height: 45px;
    transition: all 0.3s ease;
}

.cta span {
    position: relative;
    /* font-family: "Ubuntu", sans-serif; */
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    /* color: #234567; */
    color: var(--color-light-blue);
}

.cta svg {
    position: relative;
    top: 0;
    margin-left: 10px;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    /* stroke: #234567; */
    stroke: var(--color-light-blue);
    stroke-width: 2;
    transform: translateX(-5px);
    transition: all 0.3s ease;
}

.cta:hover:before {
    width: 100%;
    /* background: #b1dae7; */
}

.cta:hover span {
    color: white;
}

.cta:hover svg {
    stroke: white;
}

.cta:hover svg {
    transform: translateX(0);
}

.cta:active {
    transform: scale(0.95);
}

/* Project visit button */

/* projects ends */



#backtotopbutton {

    position: fixed;
    right: 10px;
    bottom: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    width: 3rem;
    height: 15rem;
    z-index: 101;
    text-align: center;
    transition: all .4s;
    background-color: transparent;
    display: none;
}

#backtotopbutton article {

    font-size: 1.5rem;
    color: var(--color-white);
    font-weight: 400;
    /* width: 200px; */
    /* transform: rotate(90deg); */

    writing-mode: vertical-rl;
    font-family: Whitney, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
    mix-blend-mode: difference;
}


#backtotopbutton:hover {
    transform: translate(0px, -20px);
}

/* footer starts */
.footercontainer {
    background-color: rgb(0, 0, 0);
    width: 100%;
}

.two-words {
    color: rgb(179, 179, 179);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.two-words article {
    font-size: 3rem;
    font-family: fira code;
}

.social-media-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;

}

.social-media-container a {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 10px;
    border-radius: 50%;
    border: 2px solid rgb(226, 222, 222);
    transition-duration: .3s;
    position: relative;
    box-shadow: 0px 0px 0px #8000ff inset;
    transition-duration: .3s;
}

.getintouch-heading {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.message-heading {
    margin-bottom: 100px;
    width: 100%;
    height: 10px;
    display: flex;
    align-items: center;
    justify-content: center;

}
.message-heading article {
    font-size: 2.6rem;
    background: -webkit-linear-gradient(135deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background: linear-gradient(-45deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-family: fira code;
}
.getintouch-heading article {
    font-size: 2.6rem;
    background: -webkit-linear-gradient(135deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background: linear-gradient(-45deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-family: fira code;
}

.logos {
    display: flex;
    width: 100%;
    gap: 30px;
    justify-content: center;
    align-items: center;
    height: 80px;
}

.SocialHandle {
    fill: white;
    width: 60%;
}

#GmailLogo {
    height: 70%;
    fill: white;
}

.social-media-container a:hover {
    box-shadow: 0px 0px 50px 100px #8000ff inset;
    transition-duration: 1s;

    border: none;
}

.social-media-container a::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    left: 0;
    border-radius: 50%;
    transform: scale(0);
    background-color: #8000ff;
    background-color: transparent;
    transition-duration: .3s;
    z-index: -1;
}

.social-media-container a:hover::before {
    transform: scale(1);
    transition-duration: .3s;
}

.footer-bottom {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    text-align: center;
}
.footer-bottom article {
    color: rgb(176, 176, 176);
    font-size: 1.5rem;
    font-family: fira code;
}
.popfooter-bottom article {
    color: rgb(176, 176, 176);
    font-size: 1.5rem;
    font-family: fira code;
}
.popfooter-bottom {
    top: 20px;
    position:relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-align: center;
}
.popfooter-bottom article {
    color: rgb(176, 176, 176);
    font-size: 1.5rem;
    font-family: fira code;
}
.foundername-bottom {
    top: 2px;
    position:relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    text-align: center;
}
.foundername-bottom article {
    color: rgb(176, 176, 176);
    font-size: 1.5rem;
    font-family: fira code;
}
.fa-copyright {
    font-size: 1.5rem;
    color: rgb(176, 176, 176);
}

.mobiletogglemenu {
    display: none;
}

.hamburger {
    display: none;
}

.tonechange {
    color: black;
}

/* responsive code below*/
@media screen and (min-width:1000px) {
    .letsTalkBtn
    {
      top: 50px;  
    }
}
@media screen and (max-width:1920px) {
    html {
        font-size: 60%;
    }
    
}

@media screen and (max-width:1400px) {
    html {
        font-size: 60%;
    }

    .text-content {
        padding-left: 200px;
    }

}

@media screen and (max-width:1300px) {}

@media screen and (max-width:1200px) {
    html {
        font-size: 60%;
    }

    .text-content {
        padding-left: 100px;
    }

    .about-section {
        width: 80%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .logo:hover {
        transform: translateY(200px);
        transition-duration: 1s;
    }

    .skills-section {
        width: 80%;
    }
    .methodallagy-section {
        width: 80%;
    }
    .projects-section-div {
        width: 80%;
    }

}

@media screen and (max-width:1150px) {
    html {
        font-size: 60%;
    }


}

@media screen and (max-width:998px) {
    html {
        font-size: 55%;
    }

    .cursor {
        display: none;
    }

    .navbar-tabs-ul {
        display: none;
    }

    .stopscrolling {
        overflow: hidden;
    }

    .hamburger {
        /* display: block; */
        position: fixed;
        top: 0px;
        /* right: 0; */
        width: 100vw;
        height: 170px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9998;
        background-color: transparent;
    }

    .hamburgerbase {
        width: 80%;
        height: 80px;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        padding: 20px;
    }

    #hamburger-button {
        font-size: 3rem;
        font-weight: 800;
        width: 4.5rem;
        height: 3.5rem;
        background-color: transparent;
        border: none;
        display: flex;
        flex-direction: column;
        /* align-items: center; */
        justify-content: space-between;
    }

    #burger-bar1 {
        width: 60%;
        height: 3px;
        border-radius: 0px;
        transition-duration: .3s;
    }

    #burger-bar2 {
        width: 100%;
        height: 3px;
        border-radius: 0px;
        transition-duration: .3s;

    }

    #burger-bar3 {
        width: 60%;
        height: 3px;
        border-radius: 0px;
        transition-duration: .3s;

    }
    

    .burger-bar {
        background-color: var(--color-white);
    }

    .hamburger-animation1 {
        transform: rotate(45deg) scaleX(1.7);
        transition-duration: .3s;
        transform-origin: left;
        background-color: var(--color-white);

    }

    .hamburger-animation2 {
        transform: scaleX(0);
        background-color: var(--color-white);


    }

    .hamburger-animation3 {
        transform: rotateZ(-45deg) scaleX(1.7);
        transform-origin: left;
        transition-duration: .3s;
        background-color: var(--color-white);


    }

    .mobiletogglemenu {
        background-color: transparent;
        z-index: 998;
        height: 100%;
        width: 200px;
        position: fixed;
        top: 0;
        right: 0;
        text-decoration: none;
        list-style: none;
        font-size: 2rem;
        cursor: pointer;
        /* display: none; */
        display: flex;
        transform: translate(1000px);
        transition-duration: 1s; 
    }

    .show-toggle-menu {
        transform: translate(0);
        transition-duration: .6s;
    }

    .mobile-navbar-tabs-ul {
        /* animation: dropdownlist .3s linear; */
        background-color: var(--color-dark-mode);
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: last baseline;
        gap: 70px;
        box-shadow: -0px 0px 30px rgba(0, 0, 0, 0.176);
    }

    .mobile-navbar-tabs-ul a {
        text-decoration: none;
    }

    .mobile-navbar-tabs-li {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        width: fit-content;
        font-size: 2.3 rem;
        background: -webkit-linear-gradient(135deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
        background: linear-gradient(-45deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        font-family: fira code;
    }
    .navbar-tabs-li {
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        cursor: pointer;
        width: fit-content;
        font-size: 2.3 rem;
        background: -webkit-linear-gradient(135deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
        background: linear-gradient(-45deg, var(--color-light-blue), var(--color-light-purple), var(--color-light-blue), var(--color-light-purple));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 700;
        font-family: fira code;
    }

    .info-dp-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin-top: 30px;
        gap: 30px;
    }

    .about-info {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .dp {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: rotation 20s linear infinite;
    }

    .activeThismobiletab {
        color: var(--color-white);

    }

    .activeThismobiletab:before {
        content: "";
        background-color: var(--color-white);
        position: absolute;
        height: 10px;
        width: 10px;
        left: -20px;
        border-radius: 50%;

    }

    .projects-section-div {
        width: 80%;
    }

    .project-box {

        flex-direction: column;
        height: 800px;
    }

    .info-div {
        width: 100%;
        height: 50%;

    }

    .image-div {
        padding: 0;
        width: 100%;
        height: 50%;
        padding-left: 80px;
    }
}

@media screen and (max-width:768px) {
    html {
        font-size: 50%;
    }

    .text-content {
        padding-left: 0px;
        width: 80%;
    }

    #hello-friend {
        height: 100px;
        font-size: 3.5rem;
    }

    #name,
    #work {
        font-size: 5.5rem;
    }

    #info-para {
        width: 100%;
    }

    .contact-btn-div {
        position: relative;
        height: 50px;
        display: flex;
        flex-direction: column-reverse;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px;
    }

    .setting-container {
        margin-left: 0px;
    }

    .dp::before {
        display: none;
    }

    .dp::after {
        display: none;
    }

    .logo {
        width: 18%;
    }

    .logo:hover {
        transform: translateY(200px);
        transition-duration: 1s;
    }

    .language-name {
        width: 100%;
    }

    .projects-section-div {
        width: 80%;
    }

    .project-boxes-div {
        padding: 40px 0;
    }
}

@media screen and (max-width:500px) {
    html {
        font-size: 45%;
    }

    .navbar {
        height: 70px;
    }

    #hamburger {
        margin-right: 20px;
        height: 150px;
        
    }

    .hamburgerbase {
        height: 70px;
    }

    .two-words article {
        font-size: 2.5rem;
    }

    .hey {
        left: 70px;
    }

    .logo:hover {
        transform: translateY(200px);
        transition-duration: 1s;
    }

    #hello-friend {
        font-size: 2.5rem;
    }

    .landing-page-container {
        height: 85vh;
    }

    .project-box {
        height: 550px;

    }

    .info-div {
        height: 60%;
    }

    .image-div {
        height: 40%;
        padding-left: 50px;
    }

    .image-div img {
        border-top-left-radius: 10px;
    }

    .tech-stack-wrapper {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .tech-stack-box {
        width: 100%;
        height: calc(76vw/2);

    }


}

@media screen and (max-width:430px) {
    html {
        font-size: 45%;
    }

    .skills-section,
    .about-section,
    .methodallagy-section,
    .projects-section-div {
        width: 80%;
    }

    .info-div {
        padding: 0 30px;
    }

    .two-words article {
        font-size: 2.2rem;
    }
}

@media screen and (max-width:375px) {
    html {
        font-size: 42%;
    }

    .dp img {
        width: 200px;
    }

    .two-words {
        height: 50px;
    }

    .two-words article {
        font-size: 2rem;
    }

    .footer-bottom article {
        font-size: 1.3rem;
    }

    .logos {
        gap: 20px;
    }

}

@media screen and (max-width:300px) {
    html {
        font-size: 42%;
    }

    .language-name article {
        text-align: center;

    }

    .two-words {
        align-items: flex-end;
        height: 50px;
    }

    .two-words article {
        font-size: 1.5rem;
    }

    .footer-bottom article {
        font-size: 1rem;
    }

    .social-media-container a {
        width: 50px;
        height: 50px;
    }

    .logos {
        gap: 20px;
    }
}




/* For popup screen */

#contactButton {
    background-color: #4caf50;
    color: #fff;
    border: none;
    padding: 10px;
    cursor: pointer;
    }
    

    
  
        
          
         
        .input {
            
            border: 3px solid rgba(35, 29, 113, 0.781);
            border-radius: 20px;
            background-image: linear-gradient(120deg,#141414,#0e0e0f);
            color: rgb(246, 246, 248);
            cursor: pointer;
            padding: 7px 12px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 17px;
            transition: all 1s;
            width: 90%;
           }
           
           .input:focus {
            outline-color: rgb(255, 254, 255);
           }
           .input-group {
            display: list-item;
            position: relative;
            grid-area: auto;
            margin-bottom: 30px;
            text-align: center;
          }
          .inputMSG {
            
            border: 3px solid rgba(35, 29, 113, 0.781);
            border-radius: 20px;
            background-image: linear-gradient(120deg,#141414,#0e0e0f);
            color: rgb(246, 246, 248);
            cursor: pointer;
            padding: 7px 12px;
            font-family: Arial, Helvetica, sans-serif;
            font-size: 17px;
            transition: all 1s;
            width: 90%;
            height: 80px;
           }
           
           .inputMSG:focus {
            outline-color: rgb(255, 254, 255);
           }
           .inputMSG-group {
            position: relative;
            margin-bottom: 10%; 
            text-align: center;
          }
    .sendBtn {
        --glow-color: rgb(138, 138, 255);
        --glow-spread-color: rgba(30, 30, 112, 0.781);
        --enhanced-glow-color: rgb(255, 255, 255);
        --btn-color: rgb(0, 0, 0);
        border: .25em solid var(--glow-color);
        padding: 1em 3em;
        color: var(--enhanced-glow-color);
        font-size: 15px;
        font-weight: bold;
        background-color:  rgba(0, 0, 0, 0.418);
        border-radius: 1em;
        outline: none;
        box-shadow: 0 0 1em .25em var(--glow-color),
               inset 0 0 .75em .25em var(--glow-color);
        text-shadow: 0 0 .5em var(--glow-color);
        position: relative;
        transition: all 0.3s;
       }
       
       .sendBtn::after {
        pointer-events: none;
        content: "";
        position: absolute;
        top: 120%;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: var(--glow-spread-color);
        filter: blur(50em);
        opacity: .1;
        transform: perspective(1.5em) rotateX(35deg) scale(1, .6);
       }
       
       .sendBtn:hover {
        color: var(--btn-color);
        background-color: var(--glow-color);
        box-shadow: 0 0 1em .25em var(--glow-color),
               0 0 4em 2em var(--glow-spread-color),
               inset 0 0 .75em .25em var(--glow-color);
       }
       
       .sendBtn:active {
        box-shadow: 0 0 0.6em .25em var(--glow-color),
               0 0 2.5em 2em var(--glow-spread-color),
               inset 0 0 .5em .25em var(--glow-color);
       }
    .components {
        display: grid;
        position: relative;
        align-items: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%; /* Adjust the width as needed */
        text-align: center;
      }

      .cancelBtn {
        position: absolute;
        top: 2px;
        right: 10px;
        background-color:transparent;
        color: #acabab;
        border: none;
        border-radius: 10px;
        border-color: #ffffff;
        cursor: pointer;
      }
      .space {
        height: 20px; /* Adjust the height for the desired space */
      }

    
      @media only screen and (min-width: 768px) {
        
    
        .input-group {
            margin-bottom: 10%; 
        }
    }

    @media screen and (max-width: 468px)
    {
        .logo-top  {
            margin-top: 30%;
        }
    #hamburger-button 
        
        {
            margin-top: 8%;
        }
        .frontend-dev-heading
        {
            height: 150px;
        }
    }



/* responsive code above */

.wrapper {
    --background-color: transparent;
    --text-color: hsl(0, 0%, 100%);
    display: grid;
    place-content: center;
    background-color: var(--background-color);
    min-height: 5vh;
    font-family: "Oswald", sans-serif;
    font-size: clamp(1.5rem, 1rem + 18vw, 5rem);
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-color);
    
  }
  
  .wrapper > div {
    grid-area: 1/1/-1/-1;
  }
  .top {
    clip-path: polygon(0% 0%, 100% 0%, 100% 48%, 0% 58%);
  }
  .bottom {
    clip-path: polygon(0% 60%, 100% 50%, 100% 100%, 0% 100%);
    color: transparent;
    background: -webkit-linear-gradient(177deg, rgb(242, 242, 242) 53%, var(--text-color) 65%);
    background: linear-gradient(177deg, rgb(232, 231, 231) 53%, var(--text-color) 65%);
    background-clip: text;
    -webkit-background-clip: text;
    transform: translateX(-0.02em);
  }
  img {
    /*  To contain the image to the confines of the div  */
    max-width: 100%;
  }
  .img-gradient  img{
   width: 300px;
     border-radius: 500px; /* Make it round */

  }
  .img-gradient {
    width: 300px;
    margin: auto;
    margin: auto;
    border-radius: 500px; /* Make it round */
    box-shadow: 0 0 20px 10px rgba(125, 4, 230, 0.5); /* Apply glow effect */
    background-color: lightblue; /* Set light blue background color */
  }
  .counter {
    font-size: 7em;
    font-weight: bold;
    background-image: -webkit-linear-gradient(linear, left top, right top, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: -webkit-linear-gradient(left, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-image: linear-gradient(90deg, var(--static-heading-gradient-blue), var(--static-heading-gradient-pink));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Animation */
@keyframes count-up {
    from {
        opacity: 0;
        transform: translateY(1em);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.count {
    display: inline-block;
    animation: count-up 1s ease-in-out;
}


  .scrollable-container{
    display: flex; /* Use flexbox */
    flex-wrap: nowrap; /* Prevent wrapping of flex items */
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Hide vertical scrollbar */
    width: 100%; /* Adjust width as needed */
  }
  
  .project-boxes-div {
    flex: 0 0 auto; /* Allow flex items to shrink and grow */
    margin-right: 20px; /* Add spacing between boxes */
  }
  /* Adjust the width of the scrollbar */
.scrollable-container::-webkit-scrollbar {
    height: 6px;
    border-radius: 50%;
  }
  
.imagesandname
{
    display: grid;
    gap: 10px;
   
}
@media only screen and (min-width: 1000px) {
    .imagesandname
    {
        margin-top: -30px;
        margin-left: 50px;
    }
}

@keyframes move {
    100% {
        transform: translate3d(0, 0, 1px) rotate(360deg);
    }
}

.background {
    z-index: -100;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background: #0a0a0a;
    overflow: hidden;
}

.background span {
    width: 4vmin;
    height: 4vmin;
    border-radius: 4vmin;
    backface-visibility: hidden;
    position: absolute;
    animation: move;
    animation-duration: 49;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}


.background span:nth-child(0) {
    color: #6ffd7f;
    top: 100%;
    left: 74%;
    animation-duration: 8s;
    animation-delay: -3s;
    transform-origin: -14vw -7vh;
    box-shadow: 8vmin 0 1.8851017410849904vmin currentColor;
}
.background span:nth-child(1) {
    color: #FFACAC;
    top: 88%;
    left: 32%;
    animation-duration: 7s;
    animation-delay: -9s;
    transform-origin: -9vw 11vh;
    box-shadow: -8vmin 0 1.5191237195282858vmin currentColor;
}
.background span:nth-child(2) {
    color: #FFACAC;
    top: 23%;
    left: 64%;
    animation-duration: 8s;
    animation-delay: -4s;
    transform-origin: 10vw 16vh;
    box-shadow: 8vmin 0 1.864073245465268vmin currentColor;
}
.background span:nth-child(3) {
    color: #FFACAC;
    top: 34%;
    left: 36%;
    animation-duration: 12s;
    animation-delay: -2s;
    transform-origin: 12vw 9vh;
    box-shadow: -8vmin 0 1.6995310368566519vmin currentColor;
}
.background span:nth-child(4) {
    color: #2a9252;
    top: 96%;
    left: 76%;
    animation-duration: 6s;
    animation-delay: -3s;
    transform-origin: -6vw -2vh;
    box-shadow: -8vmin 0 1.5695876742664787vmin currentColor;
}
.background span:nth-child(5) {
    color: #3c0782;
    top: 51%;
    left: 97%;
    animation-duration: 9s;
    animation-delay: -6s;
    transform-origin: -13vw -9vh;
    box-shadow: 8vmin 0 1.3917412826371658vmin currentColor;
}
.background span:nth-child(6) {
    color: #d71637;
    top: 14%;
    left: 47%;
    animation-duration: 7s;
    animation-delay: -7s;
    transform-origin: 17vw 14vh;
    box-shadow: -8vmin 0 1.3329645697620232vmin currentColor;
}
.background span:nth-child(7) {
    color: #E45A84;
    top: 3%;
    left: 12%;
    animation-duration: 10s;
    animation-delay: -3s;
    transform-origin: 3vw -21vh;
    box-shadow: -8vmin 0 1.0548979721363898vmin currentColor;
}
.background span:nth-child(8) {
    color: #3c0782;
    top: 75%;
    left: 19%;
    animation-duration: 6s;
    animation-delay: -4s;
    transform-origin: 0vw -24vh;
    box-shadow: 8vmin 0 1.4896060251647054vmin currentColor;
}
.background span:nth-child(9) {
    color: #2a9252;
    top: 99%;
    left: 53%;
    animation-duration: 8s;
    animation-delay: -10s;
    transform-origin: 25vw 6vh;
    box-shadow: 8vmin 0 1.8744150085220435vmin currentColor;
}
.background span:nth-child(10) {
    color: #583C87;
    top: 61%;
    left: 85%;
    animation-duration: 9s;
    animation-delay: -7s;
    transform-origin: 6vw -4vh;
    box-shadow: -8vmin 0 1.0667368044306558vmin currentColor;
}
.background span:nth-child(11) {
    color: #583C87;
    top: 71%;
    left: 8%;
    animation-duration: 15s;
    animation-delay: -6s;
    transform-origin: -14vw 25vh;
    box-shadow: -8vmin 0 1.9688694704322116vmin currentColor;
}
.background span:nth-child(12) {
    color: #6ffd7f;
    top: 21%;
    left: 18%;
    animation-duration: 9s;
    animation-delay: -1s;
    transform-origin: 5vw 16vh;
    box-shadow: -8vmin 0 1.236245688125606vmin currentColor;
}
.background span:nth-child(13) {
    color: #583C87;
    top: 58%;
    left: 34%;
    animation-duration: 11s;
    animation-delay: -6s;
    transform-origin: -12vw 21vh;
    box-shadow: -8vmin 0 1.2827496388284907vmin currentColor;
}
.background span:nth-child(14) {
    color: #3c0782;
    top: 58%;
    left: 32%;
    animation-duration: 9s;
    animation-delay: -3s;
    transform-origin: -18vw -10vh;
    box-shadow: 8vmin 0 1.0086156618263802vmin currentColor;
}
.background span:nth-child(15) {
    color: #2a9252;
    top: 4%;
    left: 10%;
    animation-duration: 7s;
    animation-delay: -4s;
    transform-origin: -7vw -20vh;
    box-shadow: -8vmin 0 1.3237345310322643vmin currentColor;
}
.background span:nth-child(16) {
    color: #FFACAC;
    top: 39%;
    left: 84%;
    animation-duration: 9s;
    animation-delay: -1s;
    transform-origin: 20vw 3vh;
    box-shadow: -8vmin 0 1.9421858313770533vmin currentColor;
}
.background span:nth-child(17) {
    color: #2a9252;
    top: 67%;
    left: 65%;
    animation-duration: 15s;
    animation-delay: -4s;
    transform-origin: -8vw -22vh;
    box-shadow: 8vmin 0 1.7122118384618092vmin currentColor;
}
.background span:nth-child(18) {
    color: #583C87;
    top: 5%;
    left: 1%;
    animation-duration: 12s;
    animation-delay: -7s;
    transform-origin: 20vw -18vh;
    box-shadow: 8vmin 0 1.9433585728027118vmin currentColor;
}
.background span:nth-child(19) {
    color: #6ffd7f;
    top: 76%;
    left: 84%;
    animation-duration: 9s;
    animation-delay: -3s;
    transform-origin: -19vw 0vh;
    box-shadow: 8vmin 0 1.7427900868308972vmin currentColor;
}
.background span:nth-child(20) {
    color: #d71637;
    top: 12%;
    left: 71%;
    animation-duration: 7s;
    animation-delay: -6s;
    transform-origin: -3vw -18vh;
    box-shadow: -8vmin 0 1.1352056782970286vmin currentColor;
}
.background span:nth-child(21) {
    color: #E45A84;
    top: 5%;
    left: 70%;
    animation-duration: 10s;
    animation-delay: -10s;
    transform-origin: 18vw 9vh;
    box-shadow: 8vmin 0 1.2865819005800454vmin currentColor;
}
.background span:nth-child(22) {
    color: #b38049;
    top: 71%;
    left: 41%;
    animation-duration: 6s;
    animation-delay: -2s;
    transform-origin: -6vw -8vh;
    box-shadow: -8vmin 0 1.5264888473675289vmin currentColor;
}
.background span:nth-child(23) {
    color: #d71637;
    top: 43%;
    left: 84%;
    animation-duration: 14s;
    animation-delay: -7s;
    transform-origin: 2vw -20vh;
    box-shadow: -8vmin 0 1.8087960920157797vmin currentColor;
}
.background span:nth-child(24) {
    color: #b38049;
    top: 22%;
    left: 100%;
    animation-duration: 8s;
    animation-delay: -8s;
    transform-origin: 24vw 4vh;
    box-shadow: -8vmin 0 1.2279127024373375vmin currentColor;
}
.background span:nth-child(25) {
    color: #2a9252;
    top: 23%;
    left: 13%;
    animation-duration: 6s;
    animation-delay: -8s;
    transform-origin: 24vw -11vh;
    box-shadow: -8vmin 0 1.954305746970116vmin currentColor;
}
.background span:nth-child(26) {
    color: #3c0782;
    top: 67%;
    left: 46%;
    animation-duration: 15s;
    animation-delay: -8s;
    transform-origin: 22vw -3vh;
    box-shadow: -8vmin 0 1.9628618259798973vmin currentColor;
}
.background span:nth-child(27) {
    color: #3c0782;
    top: 1%;
    left: 15%;
    animation-duration: 9s;
    animation-delay: -8s;
    transform-origin: -23vw 7vh;
    box-shadow: -8vmin 0 1.0172185465292722vmin currentColor;
}
.background span:nth-child(28) {
    color: #d71637;
    top: 53%;
    left: 60%;
    animation-duration: 14s;
    animation-delay: -10s;
    transform-origin: -19vw 3vh;
    box-shadow: 8vmin 0 1.4389742476716676vmin currentColor;
}
.background span:nth-child(29) {
    color: #E45A84;
    top: 3%;
    left: 70%;
    animation-duration: 7s;
    animation-delay: -8s;
    transform-origin: -9vw 15vh;
    box-shadow: -8vmin 0 1.8073769008525327vmin currentColor;
}
.background span:nth-child(30) {
    color: #583C87;
    top: 66%;
    left: 66%;
    animation-duration: 6s;
    animation-delay: -7s;
    transform-origin: -15vw -7vh;
    box-shadow: -8vmin 0 1.8631878765678682vmin currentColor;
}
.background span:nth-child(31) {
    color: #3c0782;
    top: 58%;
    left: 57%;
    animation-duration: 9s;
    animation-delay: -10s;
    transform-origin: 20vw 24vh;
    box-shadow: 8vmin 0 1.331191098051947vmin currentColor;
}
.background span:nth-child(32) {
    color: #d71637;
    top: 100%;
    left: 69%;
    animation-duration: 10s;
    animation-delay: -1s;
    transform-origin: -16vw 0vh;
    box-shadow: -8vmin 0 1.5882636042615104vmin currentColor;
}
.background span:nth-child(33) {
    color: #3c0782;
    top: 27%;
    left: 57%;
    animation-duration: 9s;
    animation-delay: -4s;
    transform-origin: 4vw -13vh;
    box-shadow: 8vmin 0 1.3010027293362343vmin currentColor;
}
.background span:nth-child(34) {
    color: #3c0782;
    top: 85%;
    left: 36%;
    animation-duration: 15s;
    animation-delay: -9s;
    transform-origin: 21vw 11vh;
    box-shadow: -8vmin 0 1.4722347435852214vmin currentColor;
}
.background span:nth-child(35) {
    color: #FFACAC;
    top: 5%;
    left: 84%;
    animation-duration: 10s;
    animation-delay: -4s;
    transform-origin: 8vw 15vh;
    box-shadow: -8vmin 0 1.1463010662459026vmin currentColor;
}
.background span:nth-child(36) {
    color: #FFACAC;
    top: 58%;
    left: 92%;
    animation-duration: 15s;
    animation-delay: -5s;
    transform-origin: 10vw 23vh;
    box-shadow: -8vmin 0 1.6574746315062594vmin currentColor;
}
.background span:nth-child(37) {
    color: #FFACAC;
    top: 6%;
    left: 41%;
    animation-duration: 11s;
    animation-delay: -9s;
    transform-origin: 0vw -16vh;
    box-shadow: -8vmin 0 1.869686430817606vmin currentColor;
}
.background span:nth-child(38) {
    color: #b38049;
    top: 24%;
    left: 80%;
    animation-duration: 13s;
    animation-delay: -9s;
    transform-origin: -2vw 0vh;
    box-shadow: 8vmin 0 1.1539669239959927vmin currentColor;
}
.background span:nth-child(39) {
    color: #b38049;
    top: 76%;
    left: 50%;
    animation-duration: 8s;
    animation-delay: -3s;
    transform-origin: 21vw 22vh;
    box-shadow: -8vmin 0 1.1182776805847685vmin currentColor;
}
.background span:nth-child(40) {
    color: #d71637;
    top: 73%;
    left: 72%;
    animation-duration: 7s;
    animation-delay: -4s;
    transform-origin: 21vw 6vh;
    box-shadow: -8vmin 0 1.4120172348576618vmin currentColor;
}
.background span:nth-child(41) {
    color: #FFACAC;
    top: 4%;
    left: 3%;
    animation-duration: 10s;
    animation-delay: -9s;
    transform-origin: -21vw -9vh;
    box-shadow: -8vmin 0 1.1060570895237845vmin currentColor;
}
.background span:nth-child(42) {
    color: #3c0782;
    top: 11%;
    left: 87%;
    animation-duration: 15s;
    animation-delay: -4s;
    transform-origin: -5vw 21vh;
    box-shadow: 8vmin 0 1.5320893558818347vmin currentColor;
}
.background span:nth-child(43) {
    color: #FFACAC;
    top: 22%;
    left: 65%;
    animation-duration: 11s;
    animation-delay: -9s;
    transform-origin: 14vw 24vh;
    box-shadow: 8vmin 0 1.2091407828607261vmin currentColor;
}
.background span:nth-child(44) {
    color: #b38049;
    top: 69%;
    left: 70%;
    animation-duration: 15s;
    animation-delay: -6s;
    transform-origin: -24vw 11vh;
    box-shadow: -8vmin 0 1.7694600167524743vmin currentColor;
}
.background span:nth-child(45) {
    color: #583C87;
    top: 39%;
    left: 17%;
    animation-duration: 6s;
    animation-delay: -9s;
    transform-origin: -2vw 0vh;
    box-shadow: -8vmin 0 1.8561171080750678vmin currentColor;
}
.background span:nth-child(46) {
    color: #3c0782;
    top: 67%;
    left: 95%;
    animation-duration: 14s;
    animation-delay: -1s;
    transform-origin: 19vw -12vh;
    box-shadow: -8vmin 0 1.0973525910593827vmin currentColor;
}
.background span:nth-child(47) {
    color: #583C87;
    top: 17%;
    left: 29%;
    animation-duration: 8s;
    animation-delay: -1s;
    transform-origin: -13vw -13vh;
    box-shadow: 8vmin 0 1.692819203709012vmin currentColor;
}
.background span:nth-child(48) {
    color: #FFACAC;
    top: 67%;
    left: 93%;
    animation-duration: 15s;
    animation-delay: -1s;
    transform-origin: 24vw 14vh;
    box-shadow: 8vmin 0 1.3495951195921332vmin currentColor;
}


/* CSS for Contact Popup */

/* Popup Wrapper */
#contactPopupWrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.92);
  padding: 30px 25px 25px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
  max-width: 90%;
  width: 400px;
  display: none;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  z-index: 9999;
  position: fixed;
}

/* Cancel Button (Top Right Corner) */
.cancelBtn {
  position: absolute;
  top: 12px;
  right: 15px;
  background: transparent;
  border: none;
  color: #ff4d4d;
  font-size: 1.3rem; /* 🔹 Larger font */
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.3s ease;
}

.cancelBtn:hover {
  color: #ff6666;
  transform: scale(1.15);
}

/* Input Fields */
.input,
.inputMSG {
  width: 100%;
  padding: 12px 14px;
  margin-bottom: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: #fdfdfd;
  color: #000;
  box-sizing: border-box;
}

.input:focus,
.inputMSG:focus {
  outline: none;
  border-color: #007bff;
  box-shadow: 0 0 5px #007bff55;
}

/* Message Input */
.inputMSG {
  height: 120px;
  resize: none;
}

/* Send Button */
.sendBtn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  margin-top: 10px;
  background-color: #007bff;
  color: white;
  transition: background 0.3s ease;
}
.sendBtn:hover {
  background-color: #0056b3;
}

/* Info Text */
.popupmessages {
  margin-top: 15px;
  color: #cfcfcf;
  font-size: 1rem;
  line-height: 1.4;
}

/* 🔹 Responsive Design */

/* Small Mobile Screens */
@media (max-width: 480px) {
  #contactPopupWrapper {
    width: 92%;
    padding: 25px 18px 20px;
  }

  .cancelBtn {
    font-size: 1.5rem; /* 🔹 Slightly bigger on phones */
    top: 8px;
    right: 10px;
  }

  .popupmessages {
    font-size: 0.95rem;
  }

  .sendBtn {
    font-size: 0.9rem;
    padding: 10px;
  }
}

/* Tablets */
@media (min-width: 481px) and (max-width: 1024px) {
  #contactPopupWrapper {
    width: 70%;
    padding: 28px 20px 22px;
  }

  .cancelBtn {
    font-size: 1.4rem;
  }
}

/* Large Desktops */
@media (min-width: 1025px) {
  #contactPopupWrapper {
    width: 400px;
  }
}



