* {
    color: white;
    font-family: 'Inter', sans-serif;
}

/* Default state - showing the menu */
.main-header nav ul {
    display: flex;
    list-style: none;
}

.main-header nav ul li {
    margin: 0 15px;
}

.hamburger {
    display: none; /* Hide the hamburger by default */
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    padding: 5px;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 5px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger:hover span {
    background-color: #00ff7f;
    box-shadow: 0 0 8px rgba(0, 255, 127, 0.5);
}

body {
    background: linear-gradient(135deg, rgba(8, 21, 40, 0.92), rgba(18, 10, 46, 0.92), rgba(5, 5, 8, 0.92)), url('./images/background.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundShift {
    0% {
        transform: rotate(45deg) translateY(-50%);
    }
    100% {
        transform: rotate(45deg) translateY(50%);
    }
}

.main-header, .logo-container, .hero-statements-container, .learn-more-get-in-touch-button-container {
    position: relative;
    z-index: 1;
}

.learn-more-get-in-touch-button-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 100px;
}

#learn-more-button, #get-in-touch-button {
    position: relative;
    display: flex;
    background-color: #00ff7f;
    color: black;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    font-weight: bold;
    font-size: 24px;
    margin-top: 150px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 6px rgba(0, 255, 127, 0.2);
    transform-style: preserve-3d;
    perspective: 1000px;
    opacity: 0;
}

#learn-more-button {
    animation: buttonEntranceLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}

#get-in-touch-button {
    animation: buttonEntranceRight 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.5s;
}


@keyframes buttonEntranceLeft {
    from {
        opacity: 0;
        transform: translate(-100px, 100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

@keyframes buttonEntranceRight {
    from {
        opacity: 0;
        transform: translate(100px, 100px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translate(0, 0) scale(1);
    }
}

#learn-more-button:hover, #get-in-touch-button:hover, .newsletter-button:hover{
    background-color: #00ff55;
    transform: scale(1.1) translateZ(20px);
    box-shadow: 0 8px 25px rgba(0, 255, 127, 0.4);
    color: #fe0e0e; /* Add this line to change the text color */
}

#learn-more-button:active, #get-in-touch-button:active {
    transform: scale(1.05) translateZ(10px);
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.3);
}

#about-us-title {
    font-size: 40px;
    font-weight: 800;
    color: #00ff7f;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
    text-align: left;
    margin-top: 0;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

@keyframes fadeInAbout {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

#learn-more-content {
    margin: 0;
    padding: 0;
    max-width: 800px;
    font-size: 20px;
    text-align: left;
}

#learn-more-content p {
    text-align: left;
    line-height: 1.8;
    margin-bottom: 20px;
}

.main-header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 20px 40px; /* Restore horizontal padding for larger screens */
    z-index: 1000;
    background: #202e3b;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: flex-end; /* Align content to the right */
}

.main-header nav {
    max-width: 1400px;
    margin: 0;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Align nav content to the right */
}

.main-header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
    cursor: pointer;
    justify-content: flex-end;
}

.main-header nav a {
    color: white;
    text-decoration: none;
    font-size: 20px;
    letter-spacing: 1px;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}



.main-header nav a:hover {
    color: #00ff7f;
    opacity: 1;
}

#email-id {
    color: white;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.5px;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

#email-id:hover{
    color: #00ff7f;
    opacity: 1;
}

#home-link {
    position: absolute;
    left: -30px;
    margin: 0;
    display: flex;
    align-items: center;
    height: 100%;
}

#home-link img {
    width: 47px;
    height: 47px;
    transition: transform 0.3s ease;
    object-fit: cover;
    margin-top: 0;
    border-radius: 50%;
}

#home-link:hover img {
    transform: scale(1.08);
    box-shadow:
    0 0 6px #00ff7f,     /* Bright core */
    0 0 10px #00ff7f88,   /* Slightly faded mid-glow */
    0 0 14px #00ff7f44;  /* Soft outer glow */
}

html {
    scroll-behavior: smooth;
}

#get-started-container {
    display: none;
    position: fixed;
}

#hero-statements-container {
    position: relative;
    top: 180px;
    z-index: 1;
}

.logo-container {
    position: relative;
    z-index: 1;
}

.learn-more-get-in-touch-button-container {
    position: relative;
    z-index: 1;
}

.projects-section {
    margin: 0 auto;
    padding: 0 40px;
    max-width: 1400px;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 100px auto 0;
    padding: 0 40px;
    max-width: 1400px;
}

.hero-statement {
    font-size: 30px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 20px;
    max-width: 800px;
    padding: 0 20px;
    letter-spacing: 0.5px;
    position: relative;
    transition: transform 0.3s ease;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-statement:hover {
    transform: scale(1.02);
}

.hero-statement:first-of-type {
    margin-top: 4rem;
    animation: fadeInUp 1s ease-out forwards;
}

.hero-statement.highlight-statement {
    color: #00ff7f;
    font-weight: 700;
    font-size: 46px;
    margin: 25px auto;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
    background: linear-gradient(45deg, #00ff7f, #00ffaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
}

.hero-statement{
  font-family: 'Orbitron', sans-serif; /* Apply the Orbitron font */
}

button, 
.learn-more-get-in-touch-button-container button {
  font-family: 'Orbitron', sans-serif;
}

.projects-title, .proj-title, .social-title, #about-us-title, .foot-title{
    font-family: 'Orbitron', sans-serif;
}

.hero-statement:last-of-type {
    animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(0) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.-section {
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-title {
    font-size: 32px;
    font-weight: 700;
    color: #00ff7f;
    margin: 0 0 25px 0;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.3);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 20px;
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(0, 255, 127, 0.1);
    transform: translateX(5px);
}

.social-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

@media (min-width: 1200px) {
    .content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 120px;
        padding: 0 40px;
    }

    #learn-more-content {
        flex: 1;
        margin: 0;
    }

    .social-section {
        width: 300px;
        position: sticky;
        top: 100px;
        margin: 0;
        padding: 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
}

@media (max-width: 1199px) {
    .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
    }

    #learn-more-content {
        width: 100%;
        max-width: 800px;
        box-sizing: border-box;
    }

    .social-section {
        width: 100%;
        max-width: 800px;
        padding: 30px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
    }
}

.projects-title {
    font-size: 40px;
    font-weight: 800;
    color: #00ff7f;
    text-shadow: 0 0 15px rgba(0, 255, 127, 0.5);
    text-align: center;
    margin-bottom: 50px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.project-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 20px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.project-item.animate {
    opacity: 1;
    transform: scale(1);
}

.project-item:nth-child(1),
.project-item:nth-child(2),
.project-item:nth-child(3) {
    transition-delay: 0s;
}

.project-image {
    width: 100%;
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.project-item:hover .project-image img {
    transform: scale(1.05);
}

.project-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #00ff7f;
}

.project-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

.project-item a {
    color: #00ff7f;
    text-decoration: none;
    position: relative;
    display: inline-block;
}

.project-item a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #00ff7f;
    transform: scaleX(0);
    transform-origin: bottom right;
    transition: transform 0.3s ease-out;
}

.project-item:hover a::after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

@media (min-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .projects-grid {
        grid-template-columns: 1fr;
    }
}

.main-footer {
    margin-top: 100px;
    padding: 60px 0 20px;
    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(25px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 40px;
    box-sizing: border-box;
}

.footer-section {
    flex: 1;
    text-align: center;
}

.footer-section h3 {
    color: #00ff7f;
    margin-bottom: 20px;
    font-size: 24px;
    text-align: center;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-align: center;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-section ul li {
    margin-bottom: 10px;
    text-align: center;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.footer-section ul li a:hover {
    color: #00ff7f;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 850px) {
    #round-small-icon {
        display: none;
        margin: 0;
        padding: 0;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 5px;
        padding: 0 20px;
        margin: 0 auto 40px;
    }

    .footer-section {
        margin-bottom: 5px;
        text-align: center;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .newsletter-form {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 0;
    }

    .footer-section h3 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 14px;
        line-height: 1.4;
    }

    .footer-section ul li {
        margin-bottom: 8px;
        font-size: 14px;
    }

    #learn-more-button, #get-in-touch-button {
        width: 160px;
        height: 40px;
        font-size: 18px;
        padding: 8px 16px;
    }

    .hero-statement {
        font-size: 24px;
        line-height: 1.3;
        padding: 0 15px;
    }

    .hero-statement.highlight-statement {
        font-size: 36px;
        margin: 20px auto;
    }

    .projects-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .project-item h3 {
        font-size: 20px;
    }

    .project-item p {
        font-size: 14px;
        line-height: 1.4;
    }

    .social-title {
        font-size: 28px;
        margin: 0 0 20px 0;
    }

    .social-link {
        font-size: 16px;
        padding: 10px 16px;
    }

    .social-icon {
        width: 22px;
        height: 22px;
    }
}

.newsletter-form {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 300px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
}

.newsletter-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
    text-align: center;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
    text-align: center;
}

.newsletter-input:focus {
    outline: none;
    border-color: #00ff7f;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-button {
    width: 100%;
    padding: 12px 15px;
    background: #00ff7f;
    border: none;
    border-radius: 8px;
    color: black;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.newsletter-button:hover {
    background: #00ff55;
    transform: translateY(-2px);
}

.newsletter-button:active {
    transform: translateY(0);
}

@media (min-width: 851px) {
    .newsletter-form {
        margin-left: 0;
        margin-right: auto;
    }
}

@media (max-width: 850px) {
    .newsletter-form {
        margin-left: auto;
        margin-right: auto;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 120px;
    overflow-y: auto; /* ✅ Enables vertical scroll if needed */
    box-sizing: border-box;
}

.modal-content {
    position: relative;
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    margin: 0 auto;
    border: 1px solid #00ff7f;
    border-radius: 20px;
    width: 90%;
    max-width: 450px;
    animation: modalFadeIn 0.3s ease-out;
    box-shadow: 0 0 30px rgba(0, 255, 127, 0.2);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;

    box-sizing: border-box;
    padding: 30px 25px 30px 30px;
    overflow-x: hidden;   /* Prevents horizontal scroll */
}




.modal-content h2 {
    margin-bottom: 15px;
    text-align: center;
    color: #00ff7f;
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.modal-content p {
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
    font-size: 14px;
    opacity: 0.8;
}

.get-started-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    color: #00ff7f;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.get-started-form input,
.get-started-form textarea {
    width: 90%;
    padding: 12px;
    border: 1px solid #333;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    color: white;
    font-size: 14px;
    transition: all 0.2s ease;
}

.get-started-form input:focus,
.get-started-form textarea:focus {
    outline: none;
    border-color: #00ff7f;
    background-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 10px rgba(0, 255, 127, 0.1);
}

.get-started-form textarea {
    min-height: 100px;
    resize: none;
}

.get-started-form .submit-button {
    background: linear-gradient(45deg, #00ff7f, #00ff55);
    color: #000;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: fit-content;
    align-self: center;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.get-started-form .submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 255, 127, 0.3);
    color: #ff4c4c;
}

.get-started-form .submit-button:active {
    transform: translateY(0);
}


@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes socialExpand {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.social-bounce {
    animation: socialExpand 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.social-section {
    transition: all 0.3s ease;
    border-radius: 15px;
}

.about-expand {
    transform-origin: left;
    animation: socialExpand 0.6s cubic-bezier(0.2, 0, 0.4, 1) forwards;

}

.notification {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.95), rgba(42, 42, 42, 0.95));
    color: #00ff7f;
    padding: 16px 32px;
    text-align: center;
    z-index: 9999;
    border: 1px solid #00ff7f;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 255, 127, 0.3);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    font-family: 'Orbitron', sans-serif;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.7px;
    max-width: 95%;
    width: fit-content;
}



.notification.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}


.notification p {
    margin: 0;
    font-size: 16px;
    letter-spacing: 0.5px;
}

#desc-counter {
    display: block;
    margin-top: 5px;
    font-size: 0.9rem;
    color: #6b7280; /* Cool gray */
    text-align: right;
    transition: color 0.3s ease;
  }
  
  #desc-counter.warning {
    color: #ef4444; /* Red for near limit */
  }
  
  .close-button {
    font-size: 35px;
    font-weight: bolder;
    color: white;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.3s ease;
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 1000;
}

.close-button:hover {
    color: #ff4c4c;
}

@keyframes glow {
    0% {
        text-shadow: 0 0 5px rgba(255, 0, 0, 0.5);
    }
    100% {
        text-shadow: 0 0 15px rgba(255, 0, 0, 1);
    }
}

.close-button:hover {
    color: #ff4c4c;
    animation: glow 0.5s alternate infinite;
}

#get-in-touch-button2 {
    background-color: #00ff7f;
    color: black;
    border: none;
    padding: 5px 8px; /* more compact */
    border-radius: 8px; /* even squarer but still smooth */
    cursor: pointer;
    font-size: 15px; /* slightly smaller text */
    font-weight: 600;
    margin-top: 7px;
    margin-left: 5px; /* pushed left a bit more */
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 255, 127, 0.3);
    font-family: 'Orbitron', sans-serif;
    display: inline-block;
}

#get-in-touch-button2:hover {
    background-color: #00ff55;
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 255, 127, 0.4);
    color: #fe0e0e;
}

#get-in-touch-button2:active {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 255, 127, 0.3);
}


/*Animation For the Projescts Section*/

/* Initial hidden state */
.project-item {
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Active state when in view */
.project-item.animate {
    opacity: 1;
    transform: scale(1);
}

/* Remove the staggered delays */
.project-item:nth-child(1),
.project-item:nth-child(2),
.project-item:nth-child(3) {
    transition-delay: 0s;
}

  /* Text Animation */
.animated-text {
    opacity: 0;
    transform: translateY(30px); /* Start below the screen */
    transition: opacity 1s, transform 1s;
    animation: fadeUp 1s forwards; /* Apply the animation */
    animation-delay: 0s; /* Default to no delay */
  }
  
  /* Button Animation */
  .animated-button {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
    animation: fadeUp 1s forwards;
    animation-delay: 0s; /* Default to no delay */
  }
  
  /* Animation Keyframes */
  @keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }


  /* Initial state - hidden and offscreen */
.social-section {
    opacity: 0;
    transform: translateY(50px); /* Starts below the viewport */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

/* When the element becomes visible (with JS triggering a class) */
.social-section.visible {
    opacity: 1;
    transform: translateY(0);
}



#subscribe{
    letter-spacing: 3px;
    font-size: +14px;
    font-weight: bolder;
}

#round-small-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease, box-shadow 0.4s ease; /* Smooth scale + glow transition */
  }
  
  #round-small-icon:hover {
    transform: scale(1.2);
    box-shadow:
    0 0 6px #00ff7f,     /* Bright core */
    0 0 10px #00ff7f88,   /* Slightly faded mid-glow */
    0 0 14px #00ff7f44;  /* Soft outer glow */
}  
  
/* Mobile Navigation */
@media (max-width: 750px) {
    .main-header {
        padding: 20px 0; /* Remove horizontal padding only on mobile */
    }

    .main-header nav {
        display: flex;
        justify-content: flex-end;
        width: 100%;
        padding-right: 20px; /* Add padding only to the right */
    }

    .hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
        right: 0;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background: rgba(32, 46, 59, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: flex-start;
        transition: transform 0.3s ease;
        transform: translateX(100%);
        z-index: 999;
        border-radius: 10px;
        display: none;
        
    }

    .nav-links.active {
        transform: translateX(0);
        display: flex;
    }

    .nav-links li {
        margin: 15px 0;
        width: 100%;
    }

    .nav-links a {
        font-size: 18px;
        display: block;
        width: 100%;
    }

    #get-started-header {
        padding-bottom: 12px;
    }

    /* Hide FA icon in mobile dropdown */
    .nav-links #home-link {
        display: none;
    }

    /* Hide regular navigation on mobile */
    .main-header nav ul {
        display: none;
    }
}

/* Hamburger Animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(9.0px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9.0px) rotate(-45deg);
}

.hamburger span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: white;
    transition: all 0.3s ease;
    transform-origin: center;
}
  

/* Base styles for nav links */
.nav-links a {
    position: relative;
    display: inline-block;
    padding-bottom: 8px; /* Adjust to bring underline closer to text */
    text-decoration: none;
    color: white; /* Or your desired link color */
  }
  
  /* Underline effect on hover – all except #home-link */
  .nav-links a:not(#home-link)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    width: 100%;
    height: 2px; /* Adjust underline thickness */
    background-color: white;
    transition: transform 0.3s ease;
  }
  
  /* Animate the underline on hover */
  .nav-links a:not(#home-link):hover::after {
    transform: translateX(-50%) scaleX(1);
  }
  