
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    color: white;
    background-color: black;
}


/*  Navbar 2025 Modern Glass Design */
.navbar {
  background: rgba(10, 20, 30, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 5px 25px rgba(0, 198, 255, 0.15);
  transition: all 0.4s ease;
  padding: 10px 0;
  height: 10vh;
  z-index: 1000;
}

/* ЁЯФ╣ Scroll Effect */
.navbar.scrolled {
  background: rgba(10, 20, 30, 0.9);
  box-shadow: 0 3px 20px rgba(0, 198, 255, 0.25);
}

/* ЁЯМА Brand Logo */
.navbar-brand {
  font-size: 1.4rem;
  font-weight: 700;
  color: #00c6ff !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s;
}

.navbar-brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(145deg, #FFFBF5,#F7EFE5, #C3ACD0, #7743DB);
  box-shadow: 0 0 10px rgba(0,198,255,0.4);
  transition: 0.4s;
}

.navbar-brand:hover img {
  transform: rotate(10deg) scale(1.1);
}

/* ЁЯФ╕ Nav Links */
.nav-link {
  color: #e4e4e4 !important;
  font-weight: 500;
  font-size: 1rem;
  margin: 0 8px;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link i {
  font-size: 1.1rem;
  color: #00c6ff;
  margin-right: 6px;
}

/* Hover Glow Line */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #00c6ff, #00ffd5);
  transition: 0.4s;
  transform: translateX(-50%);
  border-radius: 2px;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: #00ffd5 !important;
  transform: translateY(-2px);
}

/* ЁЯФШ Navbar Toggler */
.navbar-toggler {
  border: none;
  outline: none;
  background: rgba(0,198,255,0.2);
  padding: 8px 10px;
  border-radius: 10px;
  transition: 0.3s;
}

.navbar-toggler:hover {
  background: rgba(0,198,255,0.4);
}

.navbar-toggler-icon {
  filter: drop-shadow(0 0 5px rgba(0,198,255,0.8));
}

/* Navber Responsive Styles */
@media (max-width: 992px) {
  .navbar {
    backdrop-filter: blur(15px);
  }

  .navbar-collapse {
    background: rgba(0, 10, 20, 0.9);
    border-radius: 15px;
    padding: 15px 0;
    margin-top: 10px;
  }

  .nav-link {
    display: block;
    text-align: center;
    margin: 12px 0;
    font-size: 1.1rem;
  }

  .nav-link::after {
    display: none;
  }

  .navbar-brand img {
    width: 35px;
    height: 35px;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.1rem;
  }

  .nav-link {
    font-size: 1rem;
  }
}

/* Dark mode styles */
body.dark-mode {
background-color: #121212;
/* color: #ddd; */
}
body.dark-mode .bg-light {
background-color: #1e1e1e !important;
}
body.dark-mode .card {
background-color: #2c2c2c;
color: #ddd;
}

body.dark-mode .navbar {
background-color: #1a1a1a !important;
}

/* Navbar sticky & custom */
.navbar {
position: sticky;
top: 0;
z-index: 1030;
}

/* Navbar brand logo */
.navbar-brand img {
height: 40px;
margin-right: 8px;
}

/*home*/

.home {
    position: relative;
    width: 100%;
    justify-content: space-between;
    min-height: 100vh;
    background-color: black;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 70px 10% 0;
    color: #FFFBF5;
}

.home-content {
    max-width: 600px;
}

.home-content h1 {
    letter-spacing: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: 1s;
    font-size: 64px;
    font-weight: 800;
    background: linear-gradient(90deg, #0ef, #00f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
}

.home-content h3 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideBottom 1s ease forwards;
    animation-delay: .7s;
}

.home-content h4 {
    font-size: 32px;
    font-weight: 700;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.home-content h4 span {
    color: #0ef;
    font-size: 32px;
    font-weight: 700;
}

.home-content h4:nth-of-type(2) {
    margin-bottom: 30px;

}

.home-sci a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    margin: 30px 15px 30px 0;
    opacity: 0;
    animation: slideTop 1s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.home-sci a:hover {
    background: #0ef;
    color: #000;
    box-shadow: 0 0 20px #0ef;
}

.home-sci  a:hover i img {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%);
}

.contact-icons  a:hover i img {
    transform: scale(1.2);
    filter: brightness(0) saturate(100%);
}

.btn-box {
    display: inline-block;
    padding: 12px 28px;
    background: #0ef;
    border-radius: 40px;
    font-size: 15px;
    text-align: center;
    color: #081b29;
    letter-spacing: 1px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    animation: slideTop .5s ease forwards;
    animation-delay: calc(.2s * var(--i));
}

.btn-box:hover {
    box-shadow: 0 0 5px cyan, 0 0 25px cyan, 0 0 50pc cyan, 0 0 100px cyan, 0 0 200px cyan;
}

.img {
    display: inline-block;
    left: 55%;
    bottom: 15%;
    margin-right: 5%;
    padding: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    opacity: 0;
    animation: slideUP 1s ease forwards;
    animation-delay: 1s;
}

.responsive {
    width: 100%;
    height: auto;
    border-top-left-radius: 251px;
    border-top-right-radius: 251px;
    border-bottom-left-radius: 251px;
    border-bottom-right-radius: 251px;
}

/*==========================about=============================*/

.about-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0f1c, #091a2f);
  color: #e4e4e4;
  overflow: hidden;
}

.about-content {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.gradient-title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #00f3ff;
  margin-bottom: 20px;
}

.gradient-title span {
  background: linear-gradient(90deg, #00f3ff, #00ffd5, #00c6ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 30px;
}

/* Modern Neon Button */
.btn-modern {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 10px;
  background: linear-gradient(90deg, #00c6ff, #00ffd5);
  color: #0a0a0a;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: 0.3s;
  box-shadow: 0 0 12px rgba(0, 255, 213, 0.4);
}

.btn-modern:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
}

/* Video Wrapper Responsive */
.video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 0 25px rgba(0, 255, 255, 0.2);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 20px;
  object-fit: cover;
}

/* Responsive Design */
@media (max-width: 992px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-text {
    margin-top: 30px;
  }

  .gradient-title {
    font-size: 2.2rem;
  }

  .video-wrapper {
    padding-top: 60%;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 70px 0;
  }

  .gradient-title {
    font-size: 1.8rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}


/* 🔹 Fix video cut issue on small screen */
.about-video {
  width: 100%;
}
.about-video:hover {
  transform: translateY(-3px);
    box-shadow: linear-gradient(90deg, #00c6ff, #00ffd5);
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; 
  border-radius: 15px;
  overflow: hidden;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* 🔹 Extra responsive tuning for small devices */
@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-video {
    order: -1; 
  }

  .video-wrapper {
    aspect-ratio: 16 / 9;
    border-radius: 10px;
  }

  .about-text {
    text-align: center;
    padding: 0 10px;
  }

  .about-text p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}


/*========================== Skills=============================*/
#Skills{
    background-color: #000;
    color: white;
}
.subtitle {
    text-align: center;
    font-size: 60px;
    padding-bottom: 10px;
    padding-top: 70px;
    
}

.subtitle span {
    color: #0ef;
}

.sec {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 0px;
}

.container1 {
    width: 600px;
    max-height: 500px;
    padding: 10px;
    margin-left: 100px;
}
.container2 {
    width: 600px;
    max-height: 500px;
    padding: 10px;
    margin-left: 100px;
}

.heading1 {
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 5px;
    margin-bottom: 0px;
}

.bar {
    font-size: 23px;
}

.Technical-bars .bar {
    margin-top: 40px 0;
    padding: 5px;
}

.Technical-bars .bar:first-child {
    margin-top: 0;
}

.Technical-bars .bar:last-child {
    margin-bottom: 0;
}

.Technical-bars .bar .info {
    margin-bottom: 5px;
}

.Technical-bars .bar .info span {
    font-size: 17px;
    font-weight: 500;
    animation: showText 0.5s 1s linear forwards;
    opacity: 0;
}

.Technical-bars .bar .progress-line {
    position: relative;
    border-radius: 10px;
    width: 100%;
    height: 5px;
    background-color: #000;
    animation: animate 1s cubic-bezier(1, 0, 0.5, 1) forwards;
    transform: scaleX(0);
    transform-origin: left;
}

.Technical-bars .bar .progress-line span {
    height: 100%;
    background-color: #0ef;
    position: absolute;
    border-radius: 10px;
    animation: animate 1s 1s cubic-bezier(1, 0, 0.5, 1) forwards;
    transform: scaleX(0);
    transform-origin: left;
}
.progress-line.java span {
    width: 90%;
}
.progress-line.flutter span {
    width: 90%;
}
.progress-line.python span {
    width: 88%;
}

.progress-line.html span {
    width: 90%;
}

.progress-line.css span {
    width: 80%;
}




.progress-line.javascript span {
    width: 70%;
}

.progress-line span::after {
    position: absolute;
    padding: 1px 8px;
    background-color: #000;
    color: #fff;
    font-size: 12px;
    border-radius: 3px;
    top: -28px;
    right: -20px;
    animation: showText 0.5s 1.5s linear forwards;
    opacity: 0;
}

.progress-line.java span::after {
    content: "90%";
}
.progress-line.flutter span::after {
    content: "90%";
}
.progress-line.html span::after {
    content: "90%";
}

.progress-line.css span::after {
    content: "80%";
}

.progress-line.python span::after {
    content: "88%";
}



.progress-line.javascript span::after {
    content: "70%";
}

.progress-line span::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-bottom-width: 0px;
    border-right-width: 0px;
    border-top-color: #000;
    top: -10px;
    right: 0;
    animation: showText 0.5s 1.5s linear forwards;
    opacity: 0;
}

.radial-bars {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: flex-start;
}

.radial-bars .radial-bar {
    width: 50%;
    height: 170px;
    margin-bottom: 10px;
    position: relative;
}

.radial-bars .radial-bar svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    width: 120px;
    height: 160px;
}

.radial-bars .radial-bar .progress-bar {
    stroke-width: 10;
    stop-color: black;
    fill: transparent;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    stroke-linecap: round;
    animation: animate-bar 1s linear forwards;
}

.path {
    stroke-width: 10;
    stroke: #0ef;
    fill: transparent;
    stroke-dasharray: 502;
    stroke-dashoffset: 502;
    stroke-linecap: round;
}

.path.path-1 {
    animation: animate-path1 1s 1s linear forwards;
}

.path.path-2 {
    animation: animate-path2 1s 1s linear forwards;
}

.path.path-3 {
    animation: animate-path3 1s 1s linear forwards;
}

.path.path-4 {
    animation: animate-path4 1s 1s linear forwards;
}

.radial-bar .percentage {
    position: absolute;
    align-items: center;
    top: 50%;
    left: 45%;
    transform: translate(-50%, -50%);
    font-size: 17px;
    font-weight: 500;
    animation: showText 0.5s 1s linear forwards;
    opacity: 0;
}

.radial-bar .text {
    width: 100%;
    position: absolute;
    text-align: center;
    left: 15%;
    bottom: 5px;
    transform: translateX(-50px);
    font-size: 17px;
    font-weight: 500;
    animation: showText 0.5s 1s linear forwards;
    opacity: 0;
}







/*==========================  Service Section  =============================*/
.services-section {
  background: radial-gradient(circle at top, #030b1a, #000);
  padding: 80px 10%;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #fff;
}

.section-title span {
  color: #00eeff;
  text-shadow: 0 0 10px #00eeff;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 238, 255, 0.1);
  border-radius: 16px;
  padding: 30px 25px;
  transition: all 0.4s ease;
  box-shadow: 0 0 15px rgba(0, 238, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #00eeff;
  box-shadow: 0 0 25px rgba(0, 238, 255, 0.3);
}

.service-card i {
  font-size: 3rem;
  color: #00eeff;
  margin-bottom: 15px;
  transition: 0.4s;
}

.service-card:hover i {
  transform: scale(1.1);
  text-shadow: 0 0 15px #00eeff;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #bbb;
}

.result {
  display: block;
  margin-top: 15px;
  color: #00eeff;
  font-weight: 600;
  font-size: 0.9rem;
}

/* 🔹 Responsive */
@media (max-width: 768px) {
  .services-section {
    padding: 60px 6%;
  }

  .section-title {
    font-size: 2rem;
  }

  .service-card {
    padding: 25px 20px;
  }

  .service-card i {
    font-size: 2.5rem;
  }
}










/*==========================  projects Section  =============================*/

#Projects{
    background-color: #000;
}
.main-text {
    padding-top: 50px;
    /* margin-top: 10px; */
    padding-bottom: 130px;
}

.main-text h2 {
    font-size: 60px;
    line-height: 1;
    text-align: center;
    padding: 50px;
    padding-bottom: 110px;
}

.main-text h2 span {
    color: #0ef;
}

.serv-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(259px, auto));
    align-items: center;
    justify-content: space-around;
}

.row {
    position: relative;
    border-radius: 8px;
    cursor: pointer;
    padding: 0px;
    overflow: hidden;
}

.row img {
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    border-radius: 15px;
    display: block;
    transition: transform 0.5s;
    padding: 10px;
}

.layer {
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    height: 0;
    opacity: 0;
    background: linear-gradient(rgba(255, 255, 255, 0.5), #0ef);
    position: absolute;
    border-radius: 8px;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
    transition: height 0.5s;
}

.layer h5 {
    color: #000;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.layer p {
    color: black;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: justify;
}

.layer i {
    color: #0ef;
    margin-top: 20px;
    font-size: 20px;
    background: #000;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.row:hover img {
    transform: scale(1.01);
}

.row:hover .layer {
    height: 100%;
    opacity: 1;
}







/*==========================  Contacts Section  =============================*/

.contacts {
    display: grid;
    /*grid-template-columns: repeat (2, 1fr);*/
    align-items: center;
    gap: 3rem;
    padding: 40px;
    padding-top: 70px;
    justify-content: center;
    background-color: #000;
}

.contact-text {
    align-content: center;
}

.contact-text h2 {
    font-size: 60px;
    line-height: normal;
    text-align: center;

}

.contact-text h2 span {
    color: #0ef;
}

.contact-text h4 {
    margin: 15px 0;
    color: rgb(228, 228, 228);
    font-size: 20px;
    font-weight: 600;
}


.contact-list {
    margin-bottom: 3rem;
}

.contact-list li {
    margin-bottom: 10px;
    display: block;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-list i {
    display: inline-block;
    color: #0ef;
    font-size: 20px;
    font-weight: 600;
    transition: all .40s ease;
    padding: 10px;
}


.contact-icons i {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid #0ef;
    border-radius: 50%;
    font-size: 20px;
    color: #0ef;
    text-decoration: none;
    margin: 0px 15px 0px 0;
    opacity: 1;
}

.contact-icons i:hover {
    background: #0ef;
    color: #000;
    box-shadow: 0 0 20px #0ef;
}




.top{
    position: fixed;
    bottom: 2.1rem;
    left: 1rem;
    display: flex;
    opacity: 0;
    transition: all .4s;
}

.top.active{
    bottom: 32px;
    pointer-events: auto;
    opacity: 1;
}

.top i{
    color: black;
    background: #0ef;
    font-size: 20px;
    padding: 10px;
    border-radius: 0.5rem;
}

.top i:hover {
    box-shadow: 0 0 5px cyan,
    0 0 25px cyan, 0 0 50px cyan,0 0 200px cyan;
}



@keyframes animate-path1 {
    100% {
        stroke-dashoffset: 180;
    }
}

@keyframes animate-path2 {
    100% {
        stroke-dashoffset: 140;
    }
}

@keyframes animate-path3 {
    100% {
        stroke-dashoffset: 90;
    }
}

@keyframes animate-path4 {
    100% {
        stroke-dashoffset: 50;
    }
}

@keyframes animate-bar {
    100% {
        stroke-dashoffset: -1;
    }
}

@keyframes showText {
    100% {
        opacity: 1;
    }
}

@keyframes animate {

    100% {
        transform: scaleX(1);
    }
}

@keyframes slideRight {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideTop {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideBottom {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }

    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}

@keyframes slideUP {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0px);
        opacity: 1;
    }
}

@media (max-width: 900px) and (min-width: 700px) {
    .header{
        display:block;
    }
    .logo {
        position: relative;
        font-size: 30px;
        font-weight: 500;
        text-align: center;
    }
    .logo::after{
        content: "\a";
        white-space: pre;
    }
    .navbar a {
        font-size: 25px;
        font-weight: 200;
        margin-left: 0px;
        padding: 10px 10px 0 0;
    }
    .navbar a::after{
        content: "\a";
        white-space: pre;
    }
    
}

@media (max-width: 700px) and (min-width: 400px) {
    *{
        overflow-x: hidden;
        overflow-y: inherit;
    }
    /*navbar*/
    .header{
        display:block;
        
    }
    .logo {
        position: relative;
        font-size: 20px;
        font-weight: 500;
        text-align: center;
    }
    .logo::after{
        content: "\a";
        white-space: pre;
    }
    .navbar a {
        font-size: 15px;
        font-weight: 200;
        margin-left: 0px;
        padding: 10px 10px 0 0;
    }
    .navbar a::after{
        content: "\a";
        white-space: pre;
    }

    /*home*/
    .home{
        align-items: normal;
        padding-top: 40%;
        padding-bottom: 0;
    }
    .home-content h1 {
        font-size: 40px;
        font-weight: 600;
    }
    
    .home-content h3 {
        font-size: 30px;
        font-weight: 300;
    }
    
    .home-content h4 {
        font-size: 18px;
        font-weight: 200;
    }
    
    .home-content h4 span {
        font-size: 18px;
        font-weight: 200;
    }
    .img{
        max-width: 400px;
        position: relative;
        left: -10%;
        top: 2%;
        padding-bottom: 30px;
        padding-left: 0;
        margin-left: 0;
    }
    .btn-box:hover {
        box-shadow: 0 0 5px cyan, 0 0 10px cyan, 0 0 15pc cyan, 0 0 20px cyan, 0 0 25px cyan;
    }
    



    /*contact*/
    .contacts h2{
        font-size: 50px;
    }
    .contact-list i{
        font-size: 13px;
        padding: 5px 5px 0 0;
        color: white;
    }
    
    .top{
        position: fixed;
        bottom: 2rem;
        left: 1rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        opacity: 0;
        transition: all .4s;
    }
    .top i{
        color: #000;
    }
}






/*==========================  Contact Section  =============================*/
.contact-section {
  background: radial-gradient(circle at top, #030b1a, #000);
  color: #fff;
  padding: 100px 10%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-title {
  font-size: 2.8rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 700;
}

.contact-title span {
  color: #00eeff;
  text-shadow: 0 0 15px #00eeff;
}

.contact-subtitle {
  font-size: 1.2rem;
  color: #bbb;
  margin-bottom: 40px;
  letter-spacing: 1px;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid #00eeff;
  color: #00eeff;
  padding: 12px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  box-shadow: 0 0 8px rgba(0, 238, 255, 0.2);
}

.contact-btn:hover {
  background: #00eeff;
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 0 20px #00eeff, 0 0 40px #00eeff;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 2px solid #00eeff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00eeff;
  font-size: 1.4rem;
  transition: 0.4s;
}

.social-icons a img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  transition: 0.4s;
}

.social-icons a:hover {
  background: #00eeff;
  color: #000;
  transform: translateY(-4px);
  box-shadow: 0 0 20px #00eeff;
}

.social-icons a:hover img {
  filter: brightness(0);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-title {
    font-size: 2.2rem;
  }
  .contact-links {
    flex-direction: column;
    gap: 15px;
  }
  .contact-btn {
    width: 80%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 70px 6%;
  }
  .contact-title {
    font-size: 1.8rem;
  }
  .contact-subtitle {
    font-size: 1rem;
  }
}


/*==========================  Footer Section  =============================*/
 .footer {
  text-align: center;
  padding: 15px;
  background: #0a0a0a; /* Dark background */
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.6px;
  border-top: 1px solid #222;
}
.footer p {
  margin: 0;
}
.footer span {
  color: #00eeff; /* Highlight year with your brand color */
  font-weight: 600;
}
