* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #0a0a0a;
    color: white;
    font-family: system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}

/* Layout Sections */
.header,
.hero,
.projects,
.skills,
.interests,
.contact,
.footer {
    max-width: 1024px;
    margin: 0 auto;
    padding: 1rem;
}

/* Sticky Header/Navbar */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #0a0a0a;
    padding: 10px 30px;
    margin: 0 auto;
    border: 1px solid #FFD700; /* Gold color */
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    z-index: 1000;
    max-width: 92%;
    margin-top: 20px;
}

/* Navbar Flex Layout */
.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
}

.brand-info {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.brand-info h3 {
    margin: 0;
    color: #8a8a8a;
    font-size: 1.0em;
    font-weight: 600;
}

.brand-info p {
    margin: 0;
    color: #bbb;
    font-size: 0.9em;
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 25px;
}

.menu-items a {
    text-decoration: none;
    color: #8a8a8a;
    font-size: 1em;
    padding: 6px 10px;
    transition: color 0.3s, background-color 0.3s;
    border-radius: 5px;
}

.menu-items a:hover {
    color: #d81b60;
    background-color: rgba(216, 27, 96, 0.1);
}

/* Action Button with Animated Border */
.action-button {
    position: relative;
    background-color: #d81b60;
    border-radius: 5px;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    z-index: 1;
    overflow: hidden;
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        #8a2be2,
        #ba55d3,
        #c71585,
        #ba55d3,
        #8a2be2
    );
    animation: rotate-border 0.8s linear infinite;
    z-index: -1;
    border-radius: 5px;
    filter: blur(10px);
}

.animated-border::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: #1a1a1a;
    border-radius: 5px;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #8a8a8a;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 12rem;
    padding-bottom: 9rem;
    text-align: left;
    margin-left: 10%;
}

.hero h1,
.hero h2 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 0rem;
}

/* Animated Gradient Text */
.highlights {
    font-size: 2em;
    font-weight: bold;
    background: linear-gradient(270deg, #FF5733, #33FF57, #3357FF);
    background-size: 300% 300%;
    animation: gradientAnimation 5s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@keyframes gradientAnimation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Rotating Color Animation */
@keyframes rotateColors {
    0% {
        color: #FF5733;
    }
    25% {
        color: #33FF57;
    }
    50% {
        color: #3357FF;
    }
    75% {
        color: #FF33A1;
    }
    100% {
        color: #FF5733;
    }
}

/* Subtitle Style */
.subtitle {
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    margin-top: 70px;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #0a0a23; /* Dark blue border */
    padding: 10px 20px;
    display: inline-block;
    border-radius: 5px;
    background-color: #0f0f1f; /* Dark navy/black background */
    color: #d4d4f5; /* Light text */
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.subtitle:hover {
    background-color: #111133;
    border-color: #1a1a55;
    color: #ffffff;
}


.quoted-heading::before {
    content: "“";
    font-size: 1em;
    color: #dddddd;
    font-family: serif;
}

.hero-heading {
    color: white;
  }
  .hero-heading h1,
  .hero-heading h2 {
    color: white !important;
  }
    

.final-quoted-subheading::after {
    content: "”";
    font-family: serif;
    color: #dddddd;
    font-size: 1.3em;
}

/* Email Badge */
.email {
    margin-top: 68px;
    position: absolute;
    right: 0;
    margin-right: 133px;
    font-size: 1.3em;
    font-weight: bold;
    text-align: center;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 2px solid #0a0a23; /* Dark blue border */
    padding: 10px 20px;
    display: inline-block;
    border-radius: 8px;
    background-color: #0f0f1f; /* Dark navy/black background */
    color: #d4d4f5; /* Light subtle text */
    transition: background-color 0.3s, border-color 0.3s, color 0.3s;
}

.email:hover {
    background-color: #111133;
    border-color: #1a1a55;
    color: #ffffff;
}


.email a {
    text-decoration: none;
    color: inherit;
}

.invisible-link {
    animation: rotateColors 4s linear infinite;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
    width: 100%;
    height: 100%;
}

/* Projects Section */
.projects {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.projects h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.project-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.project-card img:hover {
    transform: scale(1.05);
}

/* Skills Section */
.skills {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

.skill-tag {
    background-color: #1a1a1a;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.skill-tag:hover {
    background-color: #2a2a2a;
}

/* Interests Section */
.interests {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.interest-card {
    padding: 1.5rem;
    border-radius: 1rem;
    transition: transform 0.3s;
}

.interest-card:hover {
    transform: translateY(-5px);
}

.dark {
    background-color: #1a1a1a;
}

.light-green {
    background-color: #e8f5e9;
    color: black;
}

.light-pink {
    background-color: #ffebee;
    color: black;
}

/* Contact Section */
.contact {
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.contact h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact p {
    color: #9ca3af;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    border-top: 1px solid #374151;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}




/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
        margin-left: 5%;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 2rem;
    }
    
    .menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background-color: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid #7a7a7a;
    }
    
    .menu-items.active {
        right: 0;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .site-header {
        max-width: 96%;
        margin-top: 10px;
    }
    
    .email {
        position: static;
        text-align: center;
        margin: 20px auto 0;
    }
    
    .main-nav {
        flex-wrap: wrap;
    }
    
    .subtitle {
        margin-top: 40px;
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .hero {
        padding-top: 6rem;
        text-align: center;
        margin-left: 0;
    }
    
    .hero h1,
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .menu-items {
        width: 80%;
    }
}




.animated-border {
    position: relative;
    border-radius: 5px;
    padding: 8px 20px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    z-index: 1;
    overflow: hidden;
    background-color: #d81b60; /* Solid background */
}

.animated-border::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        from 0deg,
        #8a2be2,
        #ba55d3,
        #c71585,
        #ba55d3,
        #8a2be2
    );
    animation: rotate-border 2s linear infinite;
    z-index: -1;
    border-radius: 5px;
    filter: blur(8px); /* Smooth glowing effect */
}

.animated-border::after {
    content: '';
    position: absolute;
    top: 1px;
    left: 1px;
    right: 1px;
    bottom: 1px;
    background-color: #1a1a1a; /* or match with your site’s background */
    border-radius: 5px;
    z-index: -1;
}

@keyframes rotate-border {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}
.outline-text {
    font-weight: 800;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px white;
    -webkit-text-stroke: 1px white; /* For Firefox (partial support) */
    letter-spacing: 1px;
  }
  
  @media (max-width: 768px) {
    .outline-text {
      font-size: 2rem;
      -webkit-text-stroke: 0.7px white;
    }
  }
  
  .skills {
    text-align: center;
    padding: 40px;
  }
  
  .skills-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
  }
  
  .skills-icons img {
    height: 40px;
  }
  
  .interests {
    padding: 60px 40px;
  }
  
  .interest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
  }
  
  .interest {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
    text-align: center;
  }
  
  .interest img {
    width: 100%;
    border-radius: 10px;
  }
  
  .pink {
    background-color: #ff66cc;
  }
  
  .green {
    background-color: #c6e8c4;
    color: #111;
  }
  
  .peach {
    background-color: #ffccd5;
    color: #111;
  }
  
  .lavender {
    background-color: #e6d6ff;
    color: #111;
  }
  
  .lightblue {
    background-color: #d4f1ff;
    color: #111;
  }
  
  .contact-section {
    background-color: #1a1a1a;
    text-align: center;
    padding: 60px 20px;
    margin-top: 60px;
    border-radius: 10px;
  }
  
  .contact-section h2 {
    font-size: 28px;
    margin-bottom: 10px;
  }
  
  .contact-btn-large {
    margin-top: 20px;
    display: inline-block;
    background: transparent;
    border: 2px solid #9c27b0;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
  }
  
  footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #999;
  }


  .tech-skills-section {
    padding: 4rem 2rem;
    text-align: center;
    background-color: #0a0a0a;
    color: #fff;
    overflow: hidden;
}

.tech-skills-heading {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.tech-icons-container {
    width: 100%;
    overflow: hidden;
    padding: 1.5rem 0;
    position: relative;
}

.tech-icons-track {
    display: flex;
    width: max-content;
    animation: scroll 17s linear infinite;
    gap: 2rem; /* Space between icons */
    align-items: center;
}



.tech-icon-item {
    flex: 0 0 auto;
    text-align: center;
    transition: all 0.3s ease;
    padding: 3.1rem;           /* Adds space around the icon block */
    margin: 0.5rem;          /* Adds space outside (around the edge) */
    border-radius: 1rem;     /* Optional: softens edges of item block */
    /* Optional: contrast bubble look */
}


.tech-icon-item:hover {
    transform: scale(1.15);
}

.tech-icon-wrapper {
    width: 100px;         /* was 80px */
    height: 100px;        /* was 80px */
    padding: 1.5rem;      /* slightly more space inside */
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .tech-icon-img {
    width: 70px;          /* was 50px */
    height: 70px;         /* was 50px */
    object-fit: contain;
  }
  

.tech-icon-item:hover .tech-icon-wrapper {
    background-color: #222;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}



.tech-icon-item:hover .tech-icon-img {
    transform: scale(1.1);
}

.tech-icon-name {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 400;
}

/* Keyframes for infinite horizontal scroll */
@keyframes scroll {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .tech-icon-wrapper {
        width: 70px;
        height: 70px;
        padding: 0.8rem;
    }
    .tech-icon-img {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 768px) {
    .tech-skills-section {
        padding: 3rem 1.5rem;
    }
    .tech-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    .tech-icon-img {
        width: 40px;
        height: 40px;
    }
    .tech-icon-name {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .tech-skills-heading {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .tech-icon-wrapper {
        width: 50px;
        height: 50px;
        padding: 0.6rem;
    }
    .tech-icon-img {
        width: 35px;
        height: 35px;
    }
}


.container {
    max-width: 1400px;
    margin: 0 auto;
  }
  
  .section-title {
    font-size: 24px;
    font-weight: 500;
    color: #999;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
  }
  
  .project-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .project-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 16/9;
    min-height: 380px;
  }
  
  .project-image-container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  @media (max-width: 768px) {
    .project-card:nth-child(1) img {
      content: url('Images/pl-1.2.png');
    }
  }
  
  
  
  .project-card img {
    width: 100%;
    height: 95%;
    object-fit: cover;
    transition: transform 0.3s ease;
    display: block;
  }
  
  .project-card:hover img {
    transform: scale(1.02);
  }
  
  .project-info {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 30px;
    z-index: 2;
  }
  
  .project-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 4px;
  }
  
  .project-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
  }
  
  /* Gradient overlay for text readability */
  .project-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
    z-index: 1;
  }
  
  /* View Project hover button */
  .view-project {
    position: absolute;
    bottom: 43px;
    right: 20px;
    padding: 8px 16px;
    background-color: transparent; /* Blue glow */
    color: white;
    font-weight: 600;
    font-size: 20px;
    text-decoration: none;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px) scale(1); /* Initial scale */
    transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 3;
}

.project-image-container:hover .view-project {
    opacity: 1;
    transform: translateY(0) scale(1.1); /* Scale up on hover */
    animation: glow 1.5s infinite alternate; /* Add glowing animation */
}



  
  /* Responsive Design */
  @media (max-width: 1100px) {
    .project-grid {
      grid-template-columns: 1fr;
    }
  
    .project-card {
      min-height: 300px;
    }
  
    .section-subtitle {
      font-size: 36px;
    }
  }
  
  @media (max-width: 600px) {
    .project-title {
      font-size: 24px;
    }
  
    .project-subtitle {
      font-size: 16px;
    }
  
    .section-subtitle {
      font-size: 28px;
    }
  
    .project-card {
      min-height: 250px;
    }
  }
  
  .arrow-link {
    text-decoration: none; /* Removes underline */
    color: inherit;       /* Inherits color from parent */
    font-size: 1.5em;     /* Increases the size of the arrow */
    margin-left: 5px;     /* Adds some space between the text and the arrow */
}



.contact-section {
    width: 100%;
    min-height: 60vh;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    flex-direction: column; /* Stack content on smaller screens */
}

.message-box {
    position: relative;
    background-color: #1a1a1a;
    border-radius: 30px;
    padding: 60px 80px;
    max-width: 900px;
    width: 100%;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: #fff;
    border: 1px solid #2e2e2e;
    overflow: hidden;
    z-index: 1;
}

.message-box h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.message-box p {
    font-size: 1.3rem;
    color: #ccc;
    margin-bottom: 40px;
}

.contact-btn-large {
    position: relative;
    z-index: 2;
    padding: 16px 40px;
    font-size: 1.4rem;
    font-weight: 600;
    color: #fff;
    background-color: #2e2e2e;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.3s ease;
}

.contact-btn-large:hover {
    background-color: #005bb5;
}

/* Two color background on hover */
.message-box::before,
.message-box::after {
    content: '';
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: -1;
    transition: transform 0.4s ease;
}

.message-box::before {
    left: 0;
    background: #6120b1; /* Left color (Dark Blue) */
    transform: translateX(-100%);
}

.message-box::after {
    right: 0;
    background:#948126; /* Right color (Gold) */
    transform: translateX(100%);
}

/* Hover trigger via button */
.contact-btn-large:hover ~ .message-box::before,
.contact-btn-large:hover ~ .message-box::after,
.message-box:hover::before,
.message-box:hover::after {
    transform: translateX(0);
}

/* Media Queries for responsiveness */
@media screen and (max-width: 1200px) {
    .message-box {
        padding: 40px 60px;
    }
    
    .contact-btn-large {
        padding: 14px 30px;
        font-size: 1.2rem;
    }
    
    .message-box h2 {
        font-size: 2.5rem;
    }

    .message-box p {
        font-size: 1.1rem;
    }
}

@media screen and (max-width: 768px) {
    .message-box {
        padding: 30px 40px;
    }

    .contact-btn-large {
        padding: 12px 25px;
        font-size: 1.1rem;
    }

    .message-box h2 {
        font-size: 2rem;
    }

    .message-box p {
        font-size: 1rem;
    }

    /* Stack the content vertically on smaller screens */
    .contact-section {
        flex-direction: column;
        padding: 40px 15px;
    }
    
    /* Adjust the button for mobile view */
    .contact-btn-large {
        font-size: 1.2rem;
        padding: 14px 25px;
    }
}

@media screen and (max-width: 480px) {
    .message-box {
        padding: 20px 30px;
    }

    .contact-btn-large {
        padding: 12px 20px;
        font-size: 1rem;
    }

    .message-box h2 {
        font-size: 1.8rem;
    }

    .message-box p {
        font-size: 0.9rem;
    }
}

/* Contact Section */

.connect-container {
    max-width: 1300px;
    margin: auto;
    padding: 30px 20px;
    margin-top: 7rem;
  }
  
  .heading-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #141414;
    padding: 25px;
    border-radius: 24px;
    margin-bottom: 20px;
  }
  
  .heading-row h1 {
    font-size: 36px;
    font-weight: bold;
  }
  
  .social-icons span {
    margin-left: 20px;
    font-size: 26px;
    color: #777;
    cursor: pointer;
  }
  
  .contact-row {
    display: flex;
    justify-content: space-between;
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 16px;
  }
  
  .contact-row .phone {
    color: #a0a0a0;
  }
  
  .message-header {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #141414;
    padding: 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-size: 18px;
    color: #d0d0d0;
  }
  
  .icon {
    color: #a020f0;
  }
  
  .contact-form {
    background-color: transparent;
    border-radius: 12px;
  }
  
  .form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 14px;
    background-color: #1a1a1a;
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
  }
  
  .contact-form textarea {
    height: 140px;
    resize: none;
    margin-bottom: 20px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(to right, #a020f0, #6a0dad);
    color: white;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .contact-form button:hover {
    opacity: 0.9;
  }
  
  /* Dropdown styles */
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 180px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 8px;
    padding: 10px 0;
  }
  
  .dropdown-content a {
    color: #878686;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    transition: background 0.3s ease;
  }
  
  .dropdown-content a:hover {
    background-color: #1a1a1a;
  }
  
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
 /* desgin page styling */

  .matte-black-theme {
    background-color: #0a0a0a;
    color: #f0f0f0;
    font-family: 'Inter', -apple-system, sans-serif;
    margin: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Enhanced geometric line patterns (more visible) */
.matte-black-theme::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background:
        /* Main grid - increased opacity */
        linear-gradient(rgba(255,255,255,0.06) 0.5px, transparent 0.5px),
        linear-gradient(90deg, rgba(255,255,255,0.06) 0.5px, transparent 0.5px),
        /* Diagonal accents - increased opacity */
        linear-gradient(45deg, rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 
        40px 40px,
        40px 40px,
        80px 80px,
        80px 80px;
    transform: translate(-25%, -25%) rotate(10deg);
    pointer-events: none;
    z-index: 0;
}

/* More visible corner elements */
.matte-black-theme::after {
    content: "";
    position: fixed;
    width: 300px;
    height: 300px;
    border: 1px solid rgba(255,255,255,0.06); /* Increased opacity */
    border-radius: 50%;
    pointer-events: none;
}
.matte-black-theme::after:first-of-type {
    top: -150px;
    left: -150px;
}
.matte-black-theme::after:last-of-type {
    bottom: -150px;
    right: -150px;
}


@media (max-width: 1200px) {
    .hero {
        margin-left: clamp(0%, 3vw, 5%);
    }

    .message-box {
        padding: clamp(20px, 6vw, 40px) clamp(30px, 8vw, 60px);
    }

    .contact-btn-large {
        padding: clamp(10px, 2.5vw, 14px) clamp(20px, 5vw, 30px);
        font-size: clamp(0.9rem, 2.2vw, 1.2rem);
    }

    .message-box h2 {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }

    .message-box p {
        font-size: clamp(0.8rem, 2.2vw, 1.1rem);
    }

    .connect-container {
        max-width: 95%;
    }

    .heading-row h1 {
        font-size: clamp(20px, 4.5vw, 30px);
    }

    .social-icons span {
        font-size: clamp(18px, 3.5vw, 22px);
    }

    .contact-row {
        font-size: clamp(11px, 2.2vw, 14px);
    }

    .message-header {
        font-size: clamp(12px, 2.5vw, 16px);
    }
}

@media (max-width: 992px) {
    .project-grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: clamp(200px, 35vw, 300px);
    }

    .section-subtitle {
        font-size: clamp(24px, 5vw, 36px);
    }

    .tech-icon-wrapper {
        width: clamp(50px, 8vw, 70px);
        height: clamp(50px, 8vw, 70px);
        padding: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    .tech-icon-img {
        width: clamp(35px, 6vw, 45px);
        height: clamp(35px, 6vw, 45px);
    }

    .form-row {
        flex-direction: column;
        gap: clamp(10px, 2vw, 15px);
    }

    .contact-form input,
    .contact-form textarea {
        font-size: clamp(11px, 2.2vw, 13px);
    }

    .contact-form button {
        font-size: clamp(12px, 2.2vw, 14px);
    }

    .outline-text {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        -webkit-text-stroke: clamp(0.6px, 0.15vw, 0.8px) white;
        -webkit-text-stroke: clamp(0.6px, 0.15vw, 0.8px) white;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: clamp(5rem, 12vw, 8rem);
        text-align: center;
        margin-left: 0;
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(1.6rem, 6vw, 2.5rem);
    }

    .menu-items {
        position: fixed;
        top: 0;
        right: -100%;
        width: clamp(70%, 80vw, 80%);
        height: 100vh;
        background-color: #0a0a0a;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: clamp(20px, 5vw, 30px);
        transition: right 0.3s ease;
        z-index: 1000;
        border-left: 1px solid #7a7a7a;
    }

    .menu-items.active {
        right: 0;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .site-header {
        max-width: 96%;
        margin-top: clamp(5px, 1.5vw, 10px);
        padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 15px);
    }

    .email {
        position: static;
        margin: clamp(15px, 4vw, 20px) auto 0;
        padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 15px);
    }

    .main-nav {
        flex-wrap: wrap;
    }

    .subtitle {
        margin-top: clamp(20px, 5vw, 40px);
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
        padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 15px);
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .interests-grid {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: clamp(20px, 6vw, 40px) clamp(10px, 2vw, 15px);
    }

    .message-box {
        padding: clamp(15px, 5vw, 30px) clamp(20px, 6vw, 40px);
    }

    .contact-btn-large {
        padding: clamp(8px, 2vw, 12px) clamp(15px, 4vw, 25px);
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .message-box h2 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }

    .message-box p {
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .tech-skills-section {
        padding: clamp(1.5rem, 5vw, 3rem) clamp(0.8rem, 2vw, 1.5rem);
    }

    .tech-icon-wrapper {
        width: clamp(50px, 8vw, 60px);
        height: clamp(50px, 8vw, 60px);
    }

    .tech-icon-img {
        width: clamp(30px, 6vw, 40px);
        height: clamp(30px, 6vw, 40px);
    }

    .tech-icon-name {
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }

    .contact-row {
        flex-direction: column;
        gap: clamp(10px, 2vw, 15px);
    }

    .heading-row {
        flex-direction: column;
        gap: clamp(10px, 2vw, 15px);
        text-align: center;
    }

    .social-icons span {
        margin-left: clamp(8px, 2vw, 10px);
    }

    .footer {
        flex-direction: column;
        gap: clamp(0.8rem, 2vw, 1rem);
    }

    .matte-black-theme::before {
        background-size: 
            clamp(20px, 4vw, 30px) clamp(20px, 4vw, 30px),
            clamp(20px, 4vw, 30px) clamp(20px, 4vw, 30px),
            clamp(40px, 8vw, 60px) clamp(40px, 8vw, 60px),
            clamp(40px, 8vw, 60px) clamp(40px, 8vw, 60px);
    }
}

@media (max-width: 600px) {
    .project-title {
        font-size: clamp(18px, 4vw, 24px);
    }

    .project-subtitle {
        font-size: clamp(12px, 2.5vw, 16px);
    }

    .section-subtitle {
        font-size: clamp(20px, 5vw, 28px);
    }

    .project-card {
        min-height: clamp(180px, 30vw, 250px);
    }

    .project-card img {
        height: clamp(160px, 28vw, 200px);
    }

    .project-info {
        padding: clamp(10px, 2.5vw, 15px);
    }

    .view-project {
        font-size: clamp(12px, 2vw, 16px);
        padding: clamp(5px, 1vw, 6px) clamp(8px, 2vw, 10px);
    }

    .skills-icons {
        gap: clamp(8px, 2vw, 12px);
    }

    .skills-icons img {
        height: clamp(20px, 4vw, 30px);
    }

    .interest {
        padding: clamp(10px, 2.5vw, 15px);
    }

    .contact-section {
        min-height: clamp(30vh, 40vw, 50vh);
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: clamp(5px, 1.5vw, 6px) clamp(8px, 2vw, 10px);
        border-radius: clamp(15px, 3vw, 20px);
        margin-top: clamp(5px, 1vw, 8px);
    }

    .main-nav {
        padding: clamp(4px, 1vw, 5px);
    }

    .brand-info h3 {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .brand-info p {
        font-size: clamp(0.6rem, 1.8vw, 0.8rem);
    }

    .menu-items {
        width: clamp(80%, 90vw, 90%);
        gap: clamp(15px, 4vw, 20px);
    }

    .menu-items a {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
        padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 12px);
    }

    .menu-toggle span {
        width: clamp(18px, 4vw, 20px);
        height: clamp(1px, 0.3vw, 1.5px);
    }

    .hero {
        padding-top: clamp(6rem, 10vw, 6rem);
        padding-bottom: clamp(2rem, 6vw, 4rem);
    }

    .hero h1,
    .hero h2 {
        font-size: clamp(1.4rem, 5vw, 2rem);
    }

    .highlights {
        font-size: clamp(1rem, 3vw, 1.5rem);
    }

    .subtitle {
        font-size: clamp(0.8rem, 2vw, 1rem);
        margin-top: clamp(15px, 4vw, 30px);
        padding: clamp(5px, 1vw, 6px) clamp(8px, 2vw, 12px);
    }

    .email {
        margin: clamp(10px, 3vw, 15px) auto 0;
        font-size: clamp(0.8rem, 2vw, 1rem);
        padding: clamp(5px, 1vw, 6px) clamp(8px, 2vw, 12px);
    }

    .projects {
        padding: clamp(1.5rem, 4vw, 2rem) 0;
    }

    .projects h3 {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .projects-grid {
        gap: clamp(0.8rem, 2vw, 1rem);
    }

    .project-card img {
        height: clamp(140px, 25vw, 180px);
    }

    .skills {
        padding: clamp(1.5rem, 4vw, 2rem) 0;
    }

    .skills-grid {
        gap: clamp(0.6rem, 1.5vw, 0.8rem);
    }

    .skill-tag {
        padding: clamp(0.3rem, 0.8vw, 0.4rem) clamp(0.6rem, 1.5vw, 0.8rem);
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }

    .interests {
        padding: clamp(1.5rem, 4vw, 2rem) 0;
    }

    .interests-grid {
        gap: clamp(0.8rem, 2vw, 1rem);
    }

    .interest-card {
        padding: clamp(0.8rem, 2vw, 1rem);
    }

    .interest {
        padding: clamp(8px, 2vw, 12px);
        border-radius: 10px;
    }

    .contact {
        padding: clamp(1.5rem, 5vw, 3rem) 0;
    }

    .contact h2 {
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }

    .contact p {
        font-size: clamp(0.8rem, 2vw, 0.9rem);
    }

    .contact-section {
        padding: clamp(15px, 4vw, 25px) clamp(8px, 2vw, 10px);
    }

    .message-box {
        padding: clamp(12px, 4vw, 20px) clamp(15px, 4vw, 30px);
        border-radius: clamp(15px, 3vw, 20px);
    }

    .contact-btn-large {
        padding: clamp(8px, 2vw, 10px) clamp(12px, 3vw, 20px);
        font-size: clamp(0.8rem, 2vw, 1rem);
    }

    .message-box h2 {
        font-size: clamp(1.2rem, 3.5vw, 1.8rem);
    }

    .message-box p {
        font-size: clamp(0.7rem, 2vw, 0.9rem);
    }

    .tech-skills-section {
        padding: clamp(1rem, 3vw, 2rem) clamp(0.5rem, 1.5vw, 1rem);
    }

    .tech-skills-heading {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
        margin-bottom: clamp(1rem, 2.5vw, 2rem);
    }

    .tech-icon-wrapper {
        width: clamp(40px, 8vw, 50px);
        height: clamp(40px, 8vw, 50px);
        padding: clamp(0.5rem, 1vw, 0.6rem);
    }

    .tech-icon-img {
        width: clamp(30px, 6vw, 35px);
        height: clamp(30px, 6vw, 35px);
    }

    .tech-icon-name {
        font-size: clamp(0.6rem, 1.5vw, 0.7rem);
    }

    .project-grid {
        gap: clamp(8px, 2vw, 12px);
    }

    .project-card {
        min-height: clamp(160px, 28vw, 220px);
        border-radius: clamp(10px, 2vw, 16px);
    }

    .project-title {
        font-size: clamp(16px, 3.5vw, 22px);
    }

    .project-subtitle {
        font-size: clamp(10px, 2vw, 14px);
    }

    .project-card::after {
        height: clamp(80px, 15vw, 120px);
    }

    .view-project {
        bottom: clamp(20px, 4vw, 30px);
        right: clamp(8px, 2vw, 12px);
        font-size: clamp(10px, 2vw, 14px);
        padding: clamp(4px, 1vw, 5px) clamp(6px, 1.5vw, 8px);
    }

    .connect-container {
        padding: clamp(5rem, 3vw, 20px) clamp(8px, 2vw, 10px);
        margin-top: clamp(2rem, 6vw, 4rem);
    }

    .heading-row {
        padding: clamp(10px, 2.5vw, 15px);
    }

    .heading-row h1 {
        font-size: clamp(18px, 4vw, 24px);
    }

    .social-icons span {
        font-size: clamp(16px, 3vw, 20px);
        margin-left: clamp(6px, 1.5vw, 8px);
    }

    .contact-row {
        padding: clamp(10px, 2.5vw, 15px);
        font-size: clamp(10px, 2vw, 12px);
    }

    .message-header {
        padding: clamp(8px, 2vw, 12px);
        font-size: clamp(10px, 2vw, 14px);
    }

    .form-row {
        gap: clamp(8px, 2vw, 12px);
    }

    .contact-form input,
    .contact-form textarea {
        padding: clamp(6px, 1.5vw, 10px);
        font-size: clamp(10px, 2vw, 12px);
    }

    .contact-form textarea {
        height: clamp(80px, 15vw, 100px);
    }

    .contact-form button {
        padding: clamp(8px, 2vw, 12px);
        font-size: clamp(11px, 2vw, 13px);
    }

    .dropdown-content {
        min-width: clamp(120px, 25vw, 140px);
    }

    .dropdown-content a {
        padding: clamp(6px, 1.5vw, 8px) clamp(10px, 2vw, 12px);
        font-size: clamp(0.7rem, 1.8vw, 0.8rem);
    }

    .outline-text {
        font-size: clamp(1.5rem, 4vw, 2rem);
        -webkit-text-stroke: clamp(0.5px, 0.1vw, 0.7px) white;
        -webkit-text-stroke: clamp(0.5px, 0.1vw, 0.7px) white;
    }

    .arrow-link {
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }

    .matte-black-theme::before {
        background-size: 
            clamp(15px, 3vw, 20px) clamp(15px, 3vw, 20px),
            clamp(15px, 3vw, 20px) clamp(15px, 3vw, 20px),
            clamp(30px, 6vw, 40px) clamp(30px, 6vw, 40px),
            clamp(30px, 6vw, 40px) clamp(30px, 6vw, 40px);
    }

    .matte-black-theme::after {
        width: clamp(100px, 20vw, 150px);
        height: clamp(100px, 20vw, 150px);
    }
}



/*desgin page */

/* Centered title inside heross section */
.heross {
    padding: 101px 0;
    text-align: center;
  }
  
  .centered {
    font-size: 36px;
    margin: 0;
  }
  
  /* Left-aligned Plaw Saviour */
  .project-title-section {
    padding: 30px 60px;
    background-color: #121212; /* matte black or match your theme */
  }
  
  .section-sub {
    font-size: 28px;
    margin-left: 12rem;
    text-align: left;
    
  }

  .glowing-title {
    color: #ffffff;
    font-size: 30px;
    text-shadow: 0 0 10px #0c0c0c, 0 0 20px #000000, 0 0 30px #090909;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 30px; /* Added left margin */
  }
  
  

  .red-ship {
    color: #ff4d4d;
  }


  .wonder-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 14px 28px;
    background-color: #1e1e2f;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 2rem;
}

.btn-symbol {
    display: inline-block;
    transition: all 0.3s ease;
    font-weight: bold;
}

.wonder-button:hover .btn-symbol {
    content: "→";
    transform: rotate(-15deg) scale(1.2);
    opacity: 1;
}

/* Optional flair on hover */
.wonder-button:hover {
    background-color: #3e3e55;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.wonder-button::after {
    content: " →";
    position: absolute;
    right: 24px;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
    font-size: 20px;
}

.wonder-button:hover {
    padding-right: 48px; /* Expand space for the arrow */
    background-color: #3e3e55;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
}

.wonder-button:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive styling */
@media (max-width: 768px) {
    .wonder-button {
        padding: 12px 24px; /* Smaller padding on mobile */
        font-size: 16px; /* Smaller font size */
    }

    .wonder-button::after {
        right: 18px; /* Adjust position of the arrow for smaller screens */
        font-size: 18px; /* Smaller arrow on mobile */
    }
}

@media (max-width: 480px) {
    .wonder-button {
        padding: 10px 20px; /* Even smaller padding */
        font-size: 14px; /* Even smaller font size */
    }

    .wonder-button::after {
        right: 12px; /* Adjust further for tiny screens */
        font-size: 16px; /* Adjust arrow size for very small screens */
    }
}
.wonder-button,
.wonder-button:hover,
.wonder-button:focus,
.wonder-button:active {
  text-decoration: none;
}


  /* Play icon - animated green */
  .play-icon {
    color: #3cff72;
    animation: wiggle 1s infinite ease-in-out;
  }
  
  .music-bounce {
    animation: bounce 1.2s infinite ease-in-out;
    color: #212121; /* Spotify-style green */
  }
  
  /* Bounce animation */
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }
  

  
  @media (max-width: 768px) {
    .section-sub {
      margin-left: 4rem;
      font-size: 24px;
    }
  }
  
  /* Responsive adjustment for mobile devices */
  @media (max-width: 480px) {
    .section-sub {
      margin-left: 1.5rem;
      font-size: 20px;
      margin-top: 0rem;
    }
  }

.main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.top-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.brand-name {
    font-size: 36px;
    font-weight: 700;
    margin-right: 15px;
}

.brand-logo {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
}

/* Hero Image */
.featured-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

.featured-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px; /* Curved corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover effect */
.featured-image img:hover {
    transform: scale(1.03); /* Slight zoom */
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5); /* Soft glow/shadow */
}


/* Content Section */
.content-block {
    margin-bottom: 30px;
}

.block-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ccc;
}

.text-content {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: #e0e0e0;
}


/*industry desgin project */

.bullet-points {
    max-width: 100%;
    padding: 0rem;
    box-sizing: border-box;
  }
  
  .bullet-points .text-content {
    position: relative;
    padding-left: 2em;
    margin-bottom: 1em;
    font-size: 1rem;
    line-height: 1.6;
    word-wrap: break-word;
  }
  
  .bullet-points .text-content::before {
    content: "➤";
    position: absolute;
    left: 0;
    top: 0.2em;
    color: #124e6c;
    font-size: 1.1em;
    line-height: 1;
  }
  
  /* Responsive typography scaling */
  @media screen and (max-width: 768px) {
    .bullet-points .text-content {
      font-size: 0.95rem;
      padding-left: 1.5em;
    }
  
    .bullet-points .text-content::before {
      font-size: 1em;
    }
  }
  
  @media screen and (max-width: 480px) {
    .bullet-points .text-content {
      font-size: 0.9rem;
      padding-left: 1.3em;
    }
  
    .bullet-points .text-content::before {
      font-size: 0.95em;
    }
  }
  
  
  .voep-heading {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(90deg, #ff6ec4, #7873f5); /* Pink to purple gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
    padding: 0 1rem;
    flex-wrap: wrap;
  }
  
  /* Tablet */
  @media (max-width: 768px) {
    .voep-heading {
      font-size: 2rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    .voep-heading {
      font-size: 1.5rem;
    }
  }
  

  .nom-heading {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00c853; /* Vibrant emerald green */
    text-align: center;
    word-break: break-word;
    padding: 0 1rem;
  }
  
  /* Tablet */
  @media (max-width: 768px) {
    .nom-heading {
      font-size: 2rem;
    }
  }
  
  /* Mobile */
  @media (max-width: 480px) {
    .nom-heading {
      font-size: 1.5rem;
    }
  }
  
  
  .boat-music-heading {
    font-size: 3rem;
    font-weight: bold;
    color: #bababa; /* Matte black for "BOAT" */
    text-align: center;
    word-break: break-word;
    padding: 0 1rem;
    
  }
  
  .boat-music-heading span {
    color: #e50914; /* Matte red for "MUSIC" */
  }
  
  /* Responsive font scaling */
  @media (max-width: 768px) {
    .boat-music-heading {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .boat-music-heading {
      font-size: 1.6rem;
    }
  }
  
  
  .plaw-saviour-heading {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
  }
  
  .plaw {
    color: #9e7a4f; /* Dog brown color */
  }
  
  .saviour {
    color: #d1a15c; /* Light beige, resembling a dog coat color */
  }
  

  /* From Uiverse.io by Juanes200122 */ 
  #loader-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: #0a0a0a; /* Optional: match your theme */
    z-index: 9999;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
  }
  
  .loading-text {
    margin-top: 20px;
    color: #d3a410;
    font-size: 1.5rem;
    font-family: 'Arial', sans-serif;
    animation: pulse 1.5s infinite;
  }
  
  @keyframes pulse {
    0% { opacity: 0.3; }
    50% { opacity: 1; }
    100% { opacity: 0.3; }
  }
  
  #main-content {
    display: none; /* Hide content initially */
  }
  
  
  @keyframes bounce {
    0%,
    100% {
      translate: 0px 36px;
    }
    50% {
      translate: 0px 46px;
    }
  }
  @keyframes bounce2 {
    0%,
    100% {
      translate: 0px 46px;
    }
    50% {
      translate: 0px 56px;
    }
  }
  
  @keyframes umbral {
    0% {
      stop-color: #d3a5102e;
    }
    50% {
      stop-color: rgba(211, 165, 16, 0.519);
    }
    100% {
      stop-color: #d3a5102e;
    }
  }
  @keyframes partciles {
    0%,
    100% {
      translate: 0px 16px;
    }
    50% {
      translate: 0px 6px;
    }
  }
  #particles {
    animation: partciles 4s ease-in-out infinite;
  }
  #animatedStop {
    animation: umbral 4s infinite;
  }
  #bounce {
    animation: bounce 4s ease-in-out infinite;
    translate: 0px 36px;
  }
  #bounce2 {
    animation: bounce2 4s ease-in-out infinite;
    translate: 0px 46px;
    animation-delay: 0.5s;
  }

 
  .toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #2ecc71; /* green */
    color: white;
    padding: 15px 25px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.4s ease, bottom 0.4s ease;
    z-index: 1000;
  }
  
  .toast.show {
    opacity: 1;
    bottom: 50px; /* slide up a bit */
  }
  
  .toast.hidden {
    opacity: 0;
  }
  .section-subh{
    font-size: 28px;
    margin-left: 12rem;
    text-align: left;
  }
  @media (max-width: 768px) {
    .section-subh {
      font-size: 4vw;
      margin-left: 5vw;
    }
  }
  
  @media (max-width: 480px) {
    .section-subh {
      font-size: 5vw;
      margin-left: 7vw;
    }
  }
  


  .voep-title {
    color: #ffffff;
    font-size: 2.5vw; /* responsive font size */
    text-shadow: 0 0 10px #0c0c0c, 0 0 20px #000000, 0 0 30px #090909;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 2vw; /* responsive margin */
    flex-wrap: nowrap; /* no wrapping */
    overflow-x: auto; /* allow scroll if too small */
  }
  
  .party-icon {
    color: #ff4d4d;
    font-size: 2.2vw; /* responsive */
    flex-shrink: 0; /* don't shrink */
  }
  
  .voep-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0; /* prevent shrink */
  }
  
  .voep-name {
    color: #ff00ff;
    font-weight: bold;
    font-size: 3vw;
    margin-left: 8px;
    animation: party-glow 1.5s infinite alternate;
    flex-shrink: 0; /* prevent shrinking */
  }
  .voep-party-heading {
    color: #ffffff;
    font-size: 2.5vw; /* responsive font size */
    text-shadow: 0 0 10px #0c0c0c, 0 0 20px #000000, 0 0 30px #090909;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 13vw; /* responsive margin */
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .party-title {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #f75a5a;
    font-size: clamp(1.2rem, 3vw, 2.5rem);
    text-shadow: 0 0 20px #9b0751;
    margin-left: -56rem;
    text-align: center;
  }
 
   
  .party-title-icon {
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #ff7700;
    animation: bounce 1.5s infinite;
  }
  
  .party-title-text {
    font-weight: bold;
    
    animation: glow 2s ease-in-out infinite alternate;
  }
  
  @keyframes bounce {
    0%, 100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-8px);
    }
  }

  @media (max-width: 768px) {
    .party-title {
      gap: 0.6rem;
      font-size: 2rem;
    }
  
    .party-title-icon {
      font-size: 1.8rem;
    }
  
    .party-title-text {
      font-size: 2.6rem;
    }
  }
  
  @media (max-width: 480px) {
    .party-title {
      font-size: 1.5rem;
      margin-left: -10rem;
    }
  
    .party-title-icon {
      font-size: 1.5rem;
    }
  
    .party-title-text {
      font-size: 2.3rem;
    }
  }
  

  .voep-party-icon {
    color: #ff4d4d;
    font-size: 2.2vw; /* responsive */
    flex-shrink: 0;
  }
  
  .voep-party-text {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
  }
  
  .voep-party-name {
    color: #ff00ff;
    font-weight: bold;
    font-size: 3vw;
    margin-left: 8px;
    animation: party-glow 1.5s infinite alternate;
    flex-shrink: 0;
  }
  
  @media (max-width: 480px) {
    .footernew {
      font-size: medium;
    }
  }
  
  /* Small screen tweaks */
  @media (max-width: 768px) {
    .voep-title {
      margin-left: 5vw;
      font-size: 4vw;
    }
    
    .party-icon {
      font-size: 4vw;
    }
    
    .voep-name {
      font-size: 5vw;
    }
  }
  
  @media (max-width: 480px) {
    .voep-title {
      margin-left: 7vw;
      margin-top: 1rem;
      font-size: 5vw;
    }
  
    .party-icon {
      font-size: 5vw;
    }
  
    .voep-name {
      font-size: 6vw;
    }
  }
  
  /* Animation for glowing effect */
  