/* Base & Reset */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Variables */
    --bg-primary: #050914;
    --bg-secondary: #0a0a1b;
    --text-primary: #ffffff;
    --text-secondary: #b3b3cc;
    --accent-cyan: #00eeff;
    --accent-pink: #ff2a6d;
    --accent-green: #01c38d;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.36);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-primary);
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(0, 238, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(255, 42, 109, 0.05) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    margin-bottom: 1rem;
    line-height: 1.2;
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color var(--transition-normal);
}

a:hover {
    color: var(--accent-cyan);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    display: block;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    margin: 0.5rem auto 0;
    border-radius: 2px;
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(5, 9, 20, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem var(--spacing-md);
    max-width: 1200px;
    margin: 0 auto;
}

.logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-shadow: 0 0 5px var(--accent-cyan), 0 0 10px rgba(0, 238, 255, 0.5);
}

.nav-links {
    display: flex;
    gap: var(--spacing-md);
}

.nav-link {
    position: relative;
    padding: 0.5rem;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-pink), var(--accent-cyan));
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 2px;
    margin: 5px 0;
    background-color: var(--text-primary);
    transition: var(--transition-normal);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-content {
    padding-top: 200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-text {
    width: 60%;
}

.hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(90deg, var(--text-primary), var(--accent-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.subtitle {
    font-size: 2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-bottom: var(--spacing-md);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-pink), var(--accent-cyan));
    color: white;
    position: relative;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s;
}

.glow-btn:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 42, 109, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 238, 255, 0.3);
}

.hero-visual {
    width: 40%;
    position: relative;
}

.circle-container {
    position: relative;
    width: 100%;
    height: 300px;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
    filter: blur(20px);
    animation: float 6s infinite ease-in-out;
}

.circle-1 {
    width: 200px;
    height: 200px;
    background: var(--accent-cyan);
    top: 0;
    right: 0;
    animation-delay: 0s;
}

.circle-2 {
    width: 150px;
    height: 150px;
    background: var(--accent-pink);
    bottom: 0;
    right: 100px;
    animation-delay: -2s;
}

.circle-3 {
    width: 100px;
    height: 100px;
    background: var(--accent-green);
    top: 100px;
    right: 50px;
    animation-delay: -4s;
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.7;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-secondary);
    border-radius: 15px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
}

.about-text {
    padding: var(--spacing-md);
    line-height: 1.8;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
}

.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(8px);
    border-radius: 10px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--card-shadow);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.tech-stack {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.tech-category h3 {
    margin-bottom: var(--spacing-sm);
    color: var(--accent-cyan);
    text-align: center;
}

.tech-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.tech-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-sm);
    border-radius: 10px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    width: 80px;
    height: 80px;
    justify-content: center;
    transition: all var(--transition-normal);
}

.tech-icon i {
    font-size: 2rem;
    margin-bottom: 5px;
    transition: all var(--transition-normal);
}

.tech-icon span {
    font-size: 0.8rem;
    text-align: center;
}

.tech-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.tech-icon:hover i {
    color: var(--accent-cyan);
}

/* Skills Section */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.skill-card {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.skill-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    margin-bottom: var(--spacing-sm);
}

.skill-bar-container {
    width: 100%;
    display: flex;
    align-items: center;
    margin-top: var(--spacing-sm);
    gap: 10px;
}

.skill-bar {
    height: 8px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.skill-progress1 {
    height: 100%;
    width: 90%; /* set the desired fill percentage */
    background-color: rgba(17, 255, 247, 0.678); /* fill color */
    border-radius: 4px;
}

.skill-progress2 {
    height: 100%;
    width: 85%; /* set the desired fill percentage */
    background-color: rgba(17, 255, 247, 0.678); /* fill color */
    border-radius: 4px;
}

.skill-progress3 {
    height: 100%;
    width: 70%; /* set the desired fill percentage */
    background-color: rgba(17, 255, 247, 0.678); /* fill color */
    border-radius: 4px;
}

.skill-progress4 {
    height: 100%;
    width: 95%; /* set the desired fill percentage */
    background-color: rgba(17, 255, 247, 0.678); /* fill color */
    border-radius: 4px;
}

.skill-progress5 {
    height: 100%;
    width: 60%; /* set the desired fill percentage */
    background-color: rgba(17, 255, 247, 0.678); /* fill color */
    border-radius: 4px;
}

.skill-progress6 {
    height: 100%;
    width: 72%; /* set the desired fill percentage */
    background-color: rgba(17, 255, 247, 0.678); /* fill color */
    border-radius: 4px;
}


.skill-percent {
    min-width: 40px;
    text-align: right;
    font-size: 0.9rem;
}


/* Projects Section */
/* From Uiverse.io by Praashoo7 */ 
/* CodePen Card */

.card {
    width: 15em;
    height: 10em;
    background: linear-gradient(270deg, #ce68d9, #45c6db, #45db79);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 3s ease infinite;
    -moz-animation: AnimationName 3s ease infinite;
    animation: AnimationName 3s ease infinite;
    transition: .4s ease-in-out;
    border-radius: 7px;
    cursor: pointer;
  }
  
  .fl {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    opacity: 0;
    transition: .2s ease-in-out;
  }
  
  .fl:hover .fullscreen {
    scale: 1.2;
  }
  
  .fl:hover .fullscreen_svg {
    fill: white;
  }
  
  .fullscreen {
    width: 1.5em;
    height: 1.5em;
    border-radius: 5px;
    background-color: #727890;
    margin: 1em;
    margin-right: 0.5em;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .2s ease-in-out;
    box-shadow: 2px 2px 6px rgba(0,0,0,.4);
  }
  
  .fullscreen_svg {
    width: 15px;
    height: 15px;
    fill: rgb(177, 176, 176);
    transition: .2s ease-in-out;
  }
  
  .card_back {
    position: absolute;
    width: 15em;
    height: 13em;
    background-color: rgba(30, 31, 38, 0.575);
    border-radius: 7px;
    margin-top: -4.7em;
    margin-left: 0.7em;
    transition: .2s ease-in-out;
    z-index: -1;
  }
  
  .main:hover .card_back {
    margin-top: -5.9em;
    margin-left: 0em;
    scale: 1.1;
    height: 15.25em;
    cursor: pointer;
  }
  
  .main:hover .fl {
    opacity: 1;
    cursor: pointer;
    margin-right: 0.5em;
  }
  
  .data {
    display: flex;
    flex-direction: row;
    margin-top: 1em;
  }
  
  .img {
    width: 2.25em;
    height: 2.25em;
    background-color: #252525;
    border-radius: 5px;
    overflow: hidden;
  }
  
  .text {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-left: 0.5em;
    font-family: Montserrat;
    color: white;
  }
  
  .text_m {
    font-weight: bold;
    font-size: 0.9em;
  }
  
  .text_s {
    font-size: 0.7em;
  }
  
  .btns {
    display: flex;
    gap: 0.5em;
    transition: .2s ease-in-out;
  }
  
  .likes {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 1.4em;
    border-radius: 4px;
    margin-top: -0.5em;
    opacity: 0;
    background-color: #444857;
    transition: .2s ease-in-out;
  }
  
  .likes_text {
    font-family: Montserrat;
    font-size: 0.8em;
    margin-left: 0.25em;
    color: white;
  }
  
  .likes_svg {
    width: 12px;
    height: 12px;
    fill: white;
  }
  
  .likes:hover {
    background-color: #5A5F73;
    cursor: pointer;
  }
  
  .comments {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5em;
    height: 1.4em;
    border-radius: 4px;
    margin-top: -0.5em;
    opacity: 0;
    background-color: #444857;
    transition: .24s ease-in-out;
  }
  
  .comments_text {
    font-family: Montserrat;
    font-size: 0.8em;
    margin-left: 0.25em;
    color: white;
  }
  
  .comments_svg {
    width: 12px;
    height: 12px;
    fill: white;
  }
  
  .comments:hover {
    background-color: #5A5F73;
    cursor: pointer;
  }
  
  .views {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    height: 1.4em;
    border-radius: 4px;
    margin-top: -0.5em;
    opacity: 0;
    background-color: #444857;
    transition: .28s ease-in-out;
  }
  
  .views_text {
    font-family: Montserrat;
    font-size: 0.8em;
    margin-left: 0.25em;
    color: white;
  }
  
  .views_svg {
    width: 12px;
    height: 12px;
    fill: white;
  }
  
  .views:hover {
    background-color: #5A5F73;
    cursor: pointer;
  }
  
  .main:hover .likes {
    margin-top: 0.5em;
    opacity: 1;
  }
  
  .main:hover .comments {
    margin-top: 0.5em;
    opacity: 1;
  }
  
  .main:hover .views {
    margin-top: 0.5em;
    opacity: 1;
  }
  
  
  
  /* The Main Switch */
  
  .card_content {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  button {
    padding: 0.8em;
    width: 14em;
    border-radius: 10px;
    font-family: Montserrat;
    font-size: 0.8em;
    align-self: center;
    outline: none;
    font-weight: bold;
    border: 1px solid white;
    background-color: transparent;
    color: white;
    transition: .4s ease-in-out;
  }
  
  button::after {
    content: "(Hold Me)";
    opacity: 0;
    position: absolute;
  }
  
  button::before {
    content: "∞";
    font-size: 3.5em;
    position: absolute;
    opacity: 0;
    left: 1.6em;
    top: -0.36em;
    transition: .4s ease-in-out;
  }
  
  button:hover {
    cursor: pointer;
    color: black;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
  }
  
  button:hover::after {
    position: relative;
    opacity: 1;
    font-size: 0.7em;
  }
  
  @keyframes AnimationName {
    0% {
      background-position: 0% 50%
    }
  
    50% {
      background-position: 100% 50%
    }
  
    100% {
      background-position: 0% 50%
    }
  }
  
  button:active {
    scale: 1.1;
    opacity: 1;
    color: transparent;
    background: linear-gradient(90deg, #ce68d9, #45c6db, #45db79, #9f45b0, #e54ed0, #ffe4f2);
    background-size: 800% 800%;
    -webkit-animation: AnimationName 1s ease infinite;
    -moz-animation: AnimationName 1s ease infinite;
    animation: AnimationName 1s ease infinite;
  }
  
  button:active::before {
    color: white;
    opacity: 1;
  }


/* Journey Section */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-pink), var(--accent-cyan));
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item:nth-child(odd) {
    left: 0;
}

.timeline-item:nth-child(even) {
    left: 50%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--accent-cyan);
    position: absolute;
    top: 25px;
    right: -8px;
    box-shadow: 0 0 10px var(--accent-cyan);
    z-index: 1;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    padding: var(--spacing-md);
    position: relative;
}

.timeline-content h3 {
    font-size: 1.2rem;
    color: var(--accent-cyan);
    margin-bottom: 5px;
}

.timeline-content .date {
    display: inline-block;
    color: var(--accent-pink);
    font-weight: 600;
    margin-bottom: 10px;
}

/* Resume Section */
.resume-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.download-cv {
    margin-bottom: var(--spacing-md);
}

.certifications h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--accent-cyan);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.cert-card {
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cert-icon {
    font-size: 2rem;
    color: var(--accent-pink);
}

.cert-info h4 {
    margin-bottom: 5px;
}

.cert-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: var(--spacing-md);
}

.contact-form {
    padding: var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.glow-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Inter', sans-serif;
    transition: all var(--transition-normal);
}

.glow-input:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 238, 255, 0.3);
}

.contact-info {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.info-item i {
    font-size: 1.5rem;
    color: var(--accent-cyan);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--glass-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all var(--transition-normal);
    border: 1px solid var(--glass-border);
}

.social-icon:hover {
    transform: translateY(-3px);
    color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 238, 255, 0.3);
    border-color: var(--accent-cyan);
}

/* Footer */
.footer {
    background-color: rgba(5, 9, 20, 0.8);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: var(--spacing-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo a {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text, .hero-visual {
        width: 100%;
    }

    .hero-visual {
        margin-top: var(--spacing-lg);
    }

    .cta-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: center;
        padding: var(--spacing-md) 0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all var(--transition-normal);
        z-index: 99;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .timeline::before {
        left: 40px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 20px;
    }

    .timeline-item:nth-child(even) {
        left: 0;
    }

    .timeline-dot {
        left: 32px;
        right: auto;
    }

    .timeline-item:nth-child(even) .timeline-dot {
        left: 32px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cert-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .project-tabs {
        flex-wrap: wrap;
    }
}

/* Contact Form Container */
#contactForm {
  max-width: 600px;
  margin: auto;
  padding: 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* Form Groups */
.form-group {
  margin-bottom: 1.5rem;
}

/* Inputs and Textarea */
.glow-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  outline: none;
  font-size: 1rem;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}

.glow-input::placeholder {
  color: #ccc;
}

.glow-input:focus {
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

.cardgroup {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    box-sizing: border-box;
  }
  
  
  
