@import "https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600&display=swap";

* {
    margin: 0;
    padding: 0;
}

:root {
    --bg-clr: #222327;
    --font-clr: #fff;
    --font-muted: #bbb;
    --shadow: 0 0 1rem #0006;
    --shadow-lg: 0 0 4rem #0006;
    --scrollbar-clr: #fff5;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Prevent horizontal scroll */
    scroll-behavior: smooth; /* Smooth scrolling */
    height: 100%; /* Ensure body takes full height */
}


html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-clr) transparent;
}

html::-webkit-scrollbar {
    width: 6px;
}

html::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-clr);
}

body {
    color: var(--font-clr);
    background: linear-gradient(to bottom, #004e7a, #00111f);
    background-color: var(--bg-clr);
    font-family: Montserrat, sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}
.sea-waves {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: linear-gradient(to bottom, #00aaff, #004d99); /* Gradient colors for sea effect */
    z-index: 0; /* Ensure this is behind the content */
}

/* First wave layer */
.sea-waves::before {
    content: "";
    position: absolute;
    top: -50px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 150px; /* Adjust the height of the wave effect */
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave-animation 10s linear infinite;
    transform: scaleX(1.5);
    opacity: 0.7; /* Adjust opacity */
}

/* Second wave layer */
.sea-waves::after {
    content: "";
    position: absolute;
    top: -30px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 180px; /* Adjust the height of the wave effect */
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: wave-animation 12s linear infinite;
    transform: scaleX(1.8);
    opacity: 0.5; /* Adjust opacity */
}

/* Additional wave layers */
.sea-waves .wave-layer-1 {
    position: absolute;
    top: -90px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 120px; /* Adjust the height of the wave effect */
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: wave-animation 8s linear infinite;
    transform: scaleX(1.2);
    opacity: 0.4; /* Adjust opacity */
    z-index: 1;
}

.sea-waves .wave-layer-2 {
    position: absolute;
    top: -110px; /* Adjust as needed */
    left: 0;
    width: 100%;
    height: 140px; /* Adjust the height of the wave effect */
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave-animation 15s linear infinite;
    transform: scaleX(2);
    opacity: 0.6; /* Adjust opacity */
    z-index: 2;
}


/* Keyframes for wave animation */
@keyframes wave-animation {
    0% {
        transform: translateX(-100%) scaleX(1);
    }
    100% {
        transform: translateX(100%) scaleX(1);
    }
}



svg {
    display: block;
}

ul {
    list-style: circle;
    list-style-position: inside;
}

li {
    margin-bottom: .3em;
}

strong {
    font-weight: 500;
}

.heading {
    letter-spacing: .05em;
    font-size: 2em;
    font-weight: 500;
    margin: .25rem 0;
}

.heading--lg {
    font-size: 2.45em;
    font-weight: 600;
    letter-spacing: .05em;
}

.heading--md {
    font-size: 1.4em;
    font-weight: 500;
    letter-spacing: .05em;
}

.heading--sm {
    font-size: .8em;
}

.txt--center {
    text-align: center;
}

.txt--dynamic {
    font-size: clamp(1rem, 2vw, 1.3rem);
}

.txt--dynamic-lg {
    font-size: clamp(1.3rem, 5vw, 2.5rem);
}

.note {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 1rem;
    margin: 1rem;
    text-transform: uppercase;
}

@media screen and (min-width: 576px) {
    .note {
        margin: 2rem;
    }
}

.link--underlined {
    color: #008fc7;
}

.link--underlined:hover {
    text-decoration: underline;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translate(-100%);
    }
}

@keyframes slide-in-right {
    0% {
        opacity: 0;
        transform: translate(100%);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0);
    }
}

@keyframes grow-along-x {
    0% {
        width: 0;
    }
}

@keyframes move-up-scale {
    0% {
        transform: translateY(100px) scale(.8);
    }
    70% {
        transform: translateY(0) scale(1.1);
    }
    to {
        transform: translateY(0) scale(1);
    }
}

@keyframes move-up {
    0% {
        opacity: 0;
        transform: translateY(100%);
    }
}

@keyframes fade-out {
    0% {
        opacity: 1;
        transform: translate(0);
    }
    to {
        opacity: 0;
        transform: translate(-100%);
    }
}

.animate {
    opacity: 0;
}

.slide-in {
    animation: slide-in 1s;
}

.slide-in-right {
    animation: slide-in-right 1s;
}

.zoom-in {
    animation: zoom-in 1s;
}

.grow-along-x {
    animation: grow-along-x 1s;
}

.move-up-scale {
    animation: move-up-scale 1s;
}

.move-up {
    animation: move-up 1s;
}

.fade-out {
    animation: fade-out 1s;
}

.icon {
    color: var(--font-clr);
}

.icon--nav {
    position: fixed;
    cursor: pointer;
    z-index: 100;
    margin: 1rem;
    height: 2rem;
    width: 2rem;
    top: 0;
}

@media screen and (min-width: 576px) {
    .icon--nav {
        margin: 2rem;
    }
}

/* Coral reef background styling */
.coral-reef-bg {
    position: relative;
    width: 100%;
    /* height: 100%; */
    overflow: hidden;
    background: linear-gradient(to bottom, #00aaff, #004d99); /* Base gradient for sea effect */
    background-image: url('../images/4128685.jpg'); /* Replace with your coral reef image path */
    background-size: cover; /* Ensure the image covers the background */
    background-repeat: no-repeat; /* Prevent image repetition */
    background-position: center; /* Center the image */
    z-index: 0; /* Ensure this is behind the content */
}

/* Optional: Add animation to simulate underwater movement */
@keyframes coral-movement {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100% 100%;
    }
}



 .icon--hamburger {
    right: 0;
}

.icon--hamburger span {
    background: var(--font-clr);
    height: 2px;
    display: block;
    position: absolute;
    right: 0;
    transition: transform .4s, opacity .4s;
}

.icon--hamburger span:nth-of-type(1) {
    width: 22px;
    top: 5px;
    right: 5px;
}

.icon--hamburger span:nth-of-type(2) {
    width: 32px;
    top: 15px;
}

.icon--hamburger span:nth-of-type(3) {
    width: 22px;
    top: 25px;
    right: 5px;
}

.icon--hamburger--active span:nth-of-type(1) {
    transform: translateY(21px) rotate(45deg);
    width: 32px;
    transform-origin: right;
}

.icon--hamburger--active span:nth-of-type(2) {
    opacity: 0;
    transform: translate(2rem);
}

.icon--hamburger--active span:nth-of-type(3) {
    transform: translateY(-21px) rotate(-45deg);
    width: 32px;
    transform-origin: right;
} 
.icon--back {
    left: 0;
}

.icon--back:before {
    content: "";
    position: absolute;
    width: .8em;
    height: .8em;
    border: 2px solid var(--font-clr);
    border-bottom: none;
    border-right: none;
    transform-origin: 0 0;
    transform: translateY(15px) rotate(-45deg);
}

.icon--back:after {
    content: "";
    position: absolute;
    width: 1.5em;
    height: 2px;
    top: 14px;
    left: 2px;
    background-color: var(--font-clr);
    animation: test2 .3s ease-in .5s;
    transform-origin: left;
}

@media screen and (min-width: 576px) {
    .icon--back {
        font-size: 1.25rem;
    }
}

.icon--with-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
    margin-right: 2rem;
}

.icon--with-label svg {
    font-size: 3rem;
    border-radius: .5rem;
}

.icon--with-label p {
    font-size: .8rem !important;
    font-weight: 600;
    margin: 0 !important;
}

.icon--with-label:last-child {
    margin-right: 0;
}

.social-actions {
    font-size: 1.5rem;
    position: fixed;
    bottom: .5rem;
    left: .5rem;
    display: flex;
    flex-direction: column-reverse;
    animation: move-up .5s;
    z-index: 50;
}

.social-actions > * {
    padding: .5rem;
}

@media screen and (min-width: 576px) {
    .social-actions {
        bottom: 1.5rem;
        left: 1.5rem;
    }
}

.return {
    position: unset;
    flex-direction: row;
    animation: slide-in .5s;
}

.bio {
    display: block;
    flex-direction: column;
    align-items: flex-end;
}

.bio__content {
    flex: 1;
    margin: 2em 0;
}

.bio__text {
    line-height: 1.4;
}

.bio__text p {
    margin: .3em 0;
}

@media screen and (min-width: 768px) {
    .bio {
        flex-direction: row-reverse;
        align-items: center;
    }

    .bio__content {
        margin-right: 2em;
    }
}

.card {
    background-color: var(--bg-clr);
    box-shadow: var(--shadow);
    border-radius: 1rem;
    display: grid;
    color: inherit;
    overflow: hidden;
    position: relative;
}

.card--project {
    height: 250px;
    transition: .3s;
    transition-property: transform;
}

.card--project:hover {
    transform: scale(1.1);
}

.card--project:hover .card__heading {
    opacity: 0;
}

.card--project:hover .card__img {
    opacity: 1;
}

.card__heading {
    text-shadow: var(--shadow);
    position: absolute;
    text-align: center;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    transition: .3s opacity;
}

@media screen and (min-width: 576px) {
    .card__heading--project {
        padding: 2rem;
    }
}

.card__img {
    opacity: 0.3;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.card--skill {
    grid-template-columns: 3rem 1fr;
    padding: .5rem;
    column-gap: .5rem;
}

.card--skill__icon {
    font-size: 3rem;
    grid-row: span 2;
    border-radius: .5rem;
    overflow: hidden;
}

.card--skill__bar {
    background-color: #fff5;
    height: 6px;
    border-radius: 3px;
}

.card--skill__bar:after {
    content: "";
    background-image: linear-gradient(to right, var(--secondary-clr, #ffffff), var(--primary-clr, #0069d3));
    width: var(--level);
    height: 6px;
    border-radius: 3px;
    display: block;
}

.card--skill__heading {
    letter-spacing: .1rem;
    font-weight: 400;
    align-self: center;
    font-size: 1rem;
}

.slide-in .card--skill__bar:after {
    animation: grow-along-x 1s ease-in-out;
}

.content-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem;
    width: calc(100% - 6rem);
}

@media screen and (min-width: 576px) {
    .content-section {
        padding: 0 5rem;
        width: calc(100% - 10rem);
    }
}

@media screen and (min-width: calc(1200px + 5rem)) {
    .content-section {
        padding: 0;
        width: 100%;
    }
}

.pic-frame {
    overflow: hidden;
    height: 15rem;
    width: 15rem;
    border-radius: 50%;
    box-shadow: var(--shadow-lg);
    transition: .3s opacity;
    flex-shrink: 0;
}

.pic-frame img {
    width: 100%;
    object-fit: cover;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}

#project-title {
    opacity: 0;
}

.screen {
    padding: 3rem 0;
    min-height: calc(100% - 6rem);
    background-color: var(--bg-clr);
    position: relative;
    z-index: 1;
}

.screen__bg {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .3;
    min-width: 100%;
    min-height: 100%;
}

.screen__heading {
    position: relative;
}

.screen__heading:after {
    content: attr(data-heading);
    position: absolute;
    top: -2rem;
    left: -1.5rem;
    font-size: 2.2em;
    color: #fff1;
}

.screen__block {
    margin-bottom: 3rem;
}

@media screen and (min-width: 576px) {
    .screen__block {
        margin-bottom: 5rem;
    }
}

.screen__block p {
    line-height: 1.5;
    margin: .5em 0;
}

.screen__block__video {
    object-fit: cover;
    width: 100%;
    margin-top: 1rem;
}

.screen__content {
    display: grid;
    justify-content: center;
    align-content: center;
    min-height: calc(100vh - 6rem);
}

.screen__content--projects {
    text-align: center;
    column-gap: 2rem;
    row-gap: 2rem;
    grid-template-columns: 1fr;
}

@media screen and (min-width: 576px) {
    .screen__content--projects {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
}

.screen__content--fxd {
    top: 0;
    left: 0;
    right: 0;
    position: fixed;
    padding: 3rem;
}

@media screen and (min-width: 576px) {
    .screen__content--fxd {
        padding: 5rem;
        min-height: calc(100vh - 10rem);
    }
}

.screen--about {
    /* background-image: linear-gradient(35deg, rgba(185, 0, 102, .6980392157), rgba(0, 179, 202, .6980392157)); */
    box-shadow: var(--shadow);
    display: grid;
    align-items: center;
    z-index: 1;
    height: auto;
}

.screen--proj-desc {
    padding: 3rem 0;
    position: relative;
    background-color: var(--bg-clr);
    box-shadow: var(--shadow);
}

.grid {
    display: grid;
    margin: 1rem 0;
    grid-template-columns: 1fr;
}

.grid__heading {
    grid-column: 1/-1;
}

.grid--skills {
    row-gap: 1rem;
    column-gap: 1rem;
}

@media screen and (min-width: 576px) {
    .grid--skills {
        grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    }
}

.grid--projects {
    row-gap: 2rem;
    column-gap: 2rem;
}

@media screen and (min-width: 576px) {
    .grid--projects {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    }
}

.footer {
    padding-top: 1rem;
    padding-bottom: 2rem;
    /* background: linear-gradient(to bottom, #004e7a, #00111f); */
    /* background: linear-gradient(to bottom, #004e7a, #00111f); */
    color: var(--font-clr);
    position: relative;
    height: 10%;
}

.footer__heading {
    text-transform: uppercase;
    font-size: 1.6rem;
}

.footer__heading--sm {
    font-size: 1rem;
    font-weight: 600;
    color: var(--font-muted);
}

.footer__text {
    color: var(--font-muted);
    font-size: 5vw;
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
    .footer__text {
        font-size: 2.5rem;
    }
}

.nav__element {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: absolute;
    top: 0;
    transition: .5s transform;
    transform-style: preserve-3d;
    opacity: .95;
    border-radius: 2rem;
    cursor: pointer;
}

.nav__element--home {
    z-index: 4;
    transform: translate(15%) perspective(1000px) rotateY(20deg) scale(.5);
}

.nav__element--home:hover {
    transform: translate(15%) scale(.55);
}

.nav__element--about {
    z-index: 3;
    transform: translate(5%) perspective(1000px) rotateY(20deg) scale(.5);
}

.nav__element--about:hover {
    transform: translate(5%) scale(.55);
}

.nav__element--projects {
    z-index: 2;
    transform: translate(-5%) perspective(1000px) rotateY(20deg) scale(.5);
}

.nav__element--projects:hover {
    transform: translate(-5%) scale(.55);
}

.nav__element--contact {
    z-index: 1;
    transform: translate(-15%) perspective(1000px) rotateY(20deg) scale(.5);
}

.nav__element--contact:hover {
    transform: translate(-15%) scale(.55);
}

.nav__element:hover {
    z-index: 5;
}

.nav__element a {
    pointer-events: none;
}

.bubble-container {
    pointer-events: none;
    z-index: 9999;
}


/* Styles for the bubbles container */
.bubbles-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    overflow: hidden;
    z-index: 1;
    pointer-events: none; 
}

/* Styles for individual bubbles */
.bubble {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.762);
    border-radius: 50%;
    animation: float 5s ease-in infinite;
}

/* Keyframes for bubble animation */
@keyframes float {
    0% {
        transform: translateY(100vh);
        opacity: 1;
    }
    100% {
        transform: translateY(-500px); 
        opacity: 0;
    }
}/* Home Scene Container */
.home-scene {
    position: relative;
    background-color: #87CEEB; /* Sky blue */
    overflow: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 50px; /* Ensure text is visible above the waves */
}

/* Sun Animation */
.sun {
    width: 80px;
    height: 80px;
    background-color: #FFD700; /* Gold */
    border-radius: 50%;
    position: absolute;
    bottom: 50%; /* Start the sun from the center, behind the sea */
    left: 50%;
    transform: translateX(-50%) translateY(100%); /* Initially hidden below the sea */
    box-shadow: 0 0 20px #FFD700;
    animation: sunrise 2s forwards;
    opacity: 0; /* Start with sun invisible */
    z-index: 1;
}

/* Sea and Wave Styles */
.sea {
    width: 100%;
    height: 40%;
    background-color: #597adc; /* Royal blue */
    position: absolute;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.wave {
    position: absolute;
    width: 200%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15); /* Lighter wave effect */
    border-radius: 50%;
    animation: wave 10s infinite linear;
}

.wave:nth-child(2) {
    animation-delay: -5s;
    opacity: 0.3;
}

.wave:nth-child(3) {
    animation-delay: -3s;
    opacity: 0.2;
}

/* Keyframes for Sunrise */
@keyframes sunrise {
    0% { 
        transform: translateX(-50%) translateY(150%); /* Sun hidden below sea */
        opacity: 0;
    }
    50% { 
        opacity: 1; /* Sun fully visible */
    }
    100% { 
        transform: translateX(-50%) translateY(-80%);
        opacity: 1; /* Sun rises to its final position */
    }
}

/* Keyframes for Wave Animation */
@keyframes wave {
    0% {
        transform: translateX(0) translateY(0) scaleY(1);
    }
    25% {
        transform: translateX(-25%) translateY(5px) scaleY(0.9);
    }
    50% {
        transform: translateX(-50%) translateY(0) scaleY(1);
    }
    75% {
        transform: translateX(-75%) translateY(-5px) scaleY(0.9);
    }
    100% {
        transform: translateX(-100%) translateY(0) scaleY(1);
    }
}
.project-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-bottom: 2rem;
    grid-column: 1 / -1;
  }

  .category-btn {
    background: rgba(3, 30, 50, 0.82);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.7rem 1.7rem;
    margin: 0;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: Montserrat, sans-serif;
    box-shadow: 0 3px 12px rgba(0, 20, 35, 0.35);
  }

  .category-btn:hover {
    background: rgba(3, 30, 50, 0.95);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
  }

  .category-btn.active {
    background: #ffffff;
    color: #05304d;
    border-color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 18px rgba(0, 20, 35, 0.45);
  }

  @media screen and (max-width: 480px) {
    .category-btn {
      padding: 0.6rem 1.15rem;
      font-size: 0.85rem;
    }
  }
  
  /* Project Category Container */
  .project-category-container {
    display: none;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 2rem;
    grid-column: 1 / -1;
  }
  
  .project-category-container.active {
    display: grid;
  }
  
  /* Tech Stack Styling */
  .tech-stack {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  
  .card--project:hover .tech-stack {
    opacity: 1;
  }
  
  .tech-stack span {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  /* Software Project Styling */
  .software-project {
    cursor: pointer;
  }
  
  .software-info {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 1rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
  }
  
  .software-project:hover .software-info {
    opacity: 1;
  }
  
  .software-info p {
    color: #ff9800;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  
  .software-contact {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .software-contact a {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    transition: background 0.3s ease;
  }
  
  .software-contact a:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  /* Sea Breeze Notification */
.sea-breeze-notification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s, visibility 0.5s;
    overflow: hidden;
  }
  
  .sea-breeze-notification.active {
    opacity: 1;
    visibility: visible;
  }
  
  .sea-breeze-wave {
    position: absolute;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom, rgba(0, 174, 239, 0.7), rgba(0, 87, 184, 0.4));
    border-radius: 43%;
    transform: translate(-50%, 0) rotate(0);
    animation: sea-breeze-wave 8s linear infinite;
    z-index: -1;
  }
  
  .sea-breeze-wave:nth-child(2) {
    background: linear-gradient(to bottom, rgba(0, 174, 239, 0.5), rgba(0, 87, 184, 0.3));
    animation-delay: -2s;
    animation-duration: 10s;
  }
  
  .sea-breeze-wave:nth-child(3) {
    background: linear-gradient(to bottom, rgba(0, 174, 239, 0.3), rgba(0, 87, 184, 0.2));
    animation-delay: -4s;
    animation-duration: 12s;
  }
  
  @keyframes sea-breeze-wave {
    0% {
      transform: translate(-50%, 0) rotate(0);
    }
    100% {
      transform: translate(-50%, 0) rotate(360deg);
    }
  }
  
  .notification-content {
    background: rgba(255, 255, 255, 0.9);
    padding: 2rem 4rem;
    border-radius: 10px;
    text-align: center;
    color: #004e7a;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    transform: translateY(50px);
    opacity: 0;
    transition: transform 0.8s, opacity 0.8s;
    z-index: 1;
  }
  
  .sea-breeze-notification.active .notification-content {
    transform: translateY(0);
    opacity: 1;
  }
  
  .notification-content i {
    font-size: 3rem;
    color: #00ae7c;
    margin-bottom: 1rem;
  }
  
  .notification-content p {
    font-size: 1.5rem;
    font-weight: 500;
  }
  

  
  .contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
  }
  
  @media screen and (min-width: 768px) {
    .contact-container {
      grid-template-columns: 1fr 1fr;
    }
  }
  
  .contact-form {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .form-group {
    margin-bottom: 1.5rem;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 5px;
    color: white;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
  }
  
  .form-group input:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
  }
  
  .submit-btn {
    background: rgba(0, 105, 211, 0.7);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    width: 100%;
  }
  
  .submit-btn:hover {
    background: rgba(0, 105, 211, 0.9);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .submit-btn:active {
    transform: translateY(0);
  }
  
  /* Contact Info Styling */
  .contact-info {
    background: rgba(0, 0, 0, 0.2);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
  }
  
  .contact-details {
    margin: 1.5rem 0;
  }
  
  .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
  }
  
  .contact-item i {
    margin-right: 1rem;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    width: 30px;
    text-align: center;
  }
  
  .social-links-container {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
  }
  
  .social-links-container .social-links {
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 1.5rem;
  }
  
  .social-links-container .social-links:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  }
  
  .footer__heading--lg {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    position: relative;
  }
  
  .footer__heading--lg:after {
    content: attr(data-heading);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2.2em;
    color: #fff1;
  }
  
  #get-in-touch {
    height: 6rem;
    margin-top: 2rem;
  }
