/* General Styles */

@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@media screen and (min-width: 1200px) {
    .about-image img {
        width: 100px;
        max-width: 9.5vw;
    }
}
@media screen and (min-width: 1024px) {

    /* General Container */
    .container {
        width: 85%;
        max-width: 1200px;
        margin: auto;
    }

    /* Header */
    .header {
        padding: 10px 5%;
        margin-left:20px;
    }

    /* Wrapper (Hamburger Menu) */
    .wrapper {
        width: 25%; /* Prevents full-width menu */
        right: -25%;
    }

    /* Home Section */
    .home-section {
        padding: 80px 8%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .profile-img {
        width: 180px;
        height: 180px;
    }

    .home-content {
        max-width: 45%;
    }

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

    .home-subtitle {
        font-size: 1.3rem;
    }

    /* About Section */
    .about-section {
        padding: 80px 8%;
        height:100px;
        width:auto;
    }

    .about-content {
        display: flex;
        align-items: center;
        gap: 50px;
    }
  

    .about-image img {
        width: 90px;
        max-width: 10vw;
        border-radius: 10px;
    }
    
    .about-text h2 {
        font-size: 2.5rem;
    }

    /* Skills Section */
    .skills-section {
        padding: 80px 8%;
    }

    .skills-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    /* Projects Section */
    .projects-section {
        padding: 80px 8%;
    }

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

    .project-card img {
        width: 100%;
        height: 220px; /* Limit image height */
        object-fit: cover;
        border-radius: 10px;
    }

    /* Contact Section */
    .contact-section {
        padding: 80px 8%;
    }

    .contact-form {
        max-width: 700px;
        margin: auto;
    }

    /* Footer */
    footer {
        padding: 20px 5%;
        font-size: 16px;
    }
}

/* Base styles for the round button */
.round-glass-button {
  position: relative;
    margin-top:-10%;
    margin-bottom: 15%;
    margin-left: 37%;
  width: 100px; /* Adjust size as needed */
  height: 100px; /* Make it round */
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  background: rgba(255, 255, 255, 0.1); /* Translucent background */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Light border */
  border-radius:30% 70% 70% 30% / 57% 61% 39% 43% ; /* Make it round */
  backdrop-filter: blur(10px); /* Frosted glass effect */
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1); /* Soft shadow */
  cursor: pointer;
  overflow: hidden;
  outline: none;
  transition: all 0.3s ease;
    animation:morphblob 3s linear infinite;
}

@keyframes morphblob{
  0%, 100% {
  border-radius: 47% 53% 23% 77% / 57% 31% 69% 43%;
  }
  34% {
    border-radius: 76% 24% 72% 28% / 58% 55% 45% 42%;
  }
  67% {
    border-radius: 76% 24% 41% 59% / 58% 25% 75% 42%;
  }
}

/* Hover effect */
.round-glass-button:hover {
  background: rgba(255, 255, 255, 0.2); /* Slightly more opaque on hover */
  box-shadow: 0 0 24px rgba(255, 255, 255, 0.5), 0 8px 32px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
  transform: scale(1.05); /* Slight scale-up */
}

/* Click effect */
.round-glass-button:active {
  transform: scale(0.95); /* Slight scale-down */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); /* Smaller shadow on click */
}

/* Animated background effect */
.round-glass-button-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)); /* Radial gradient */
  transform: translate(-50%, -50%) scale(0); /* Start small */
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
  pointer-events: none; /* Ensure it doesn't interfere with clicks */
}

/* Hover effect for the animated background */
.round-glass-button:hover .round-glass-button-effect {
  transform: translate(-50%, -50%) scale(1); /* Expand */
  opacity: 1; /* Fade in */
}

/* Project Counters Styling */
.project-counters {
  display: flex;
    align-items: center;
    height:50px ;
    gap: auto;
  margin-top: 20px;
}

.counter {
  text-align: center;
  padding: 10px;
    height: 90px;
    width:auto;
    margin-top: 5%;
    margin-left:5%;
  background: rgba(255, 255, 255, 0.1); /* Translucent background */
  border-radius: 20px;
  backdrop-filter: blur(10px); /* Frosted glass effect */
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.counter:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.counter-number {
  font-size: auto;
  font-weight: bold;
  color: #fff;
  display: block;
  margin-bottom: 5px;
}

.counter-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

/* Loading Screen */
#loading-screen {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(10px);/* Dark background */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Loader Animation */
/* HTML: <div class="loader"></div> */
.loader {
  width: fit-content;
  font-size: 40px;
  font-family: monospace;
  font-weight: bold;
  text-transform: uppercase;
  color: #0000;
  -webkit-text-stroke: 1px transparent;
  background: linear-gradient(90deg,#34c9eb 33%,#34cfeb 0 67%,#34a4eb 0) 100%/300% 100% no-repeat text;
  animation: l12 4s steps(14) infinite;
}
.loader:before {
  content: "Loading";
}
@keyframes l12 {
  to {background-position: 0}
}

/* Hide Loader After Page Loads */
.hidden {
  opacity: 0;
  visibility: hidden;
}



body {
   font-family: 'Urbanist', sans-serif;
    background: rgba(0, 150, 200, 0.4);
   /* background: rgb(31,31,39);
background: linear-gradient(90deg, rgba(31,31,39,1) 0%, rgba(26,26,33,1) 26%, rgba(41,49,50,1) 97%);*/
    color: #fff;
    line-height: 1.6;
    padding-top: 60px;
}
 

.header {
    position: fixed;
    margin-top: 9px;
    top: 0;
    height: 8% ;
    width: 90%;
    margin-left: 20px;
    box-shadow: 0px 11px 15px rgba(0, 0, 0, 0.3);
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-radius:20px;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 50px; /* Increase the width of the logo */
    height: autopx; /* Increase the height of the logo */
    border-radius: 50%;
    margin-right: 10px; /* Adjust spacing between logo and text */
    /*animation: logoFloat 3s ease-in-out infinite;*/
}

/*@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}*/

.logo-text {
    font-size: 1rem;
    font-weight: bold;
    background: linear-gradient(45deg, #00bcd4, #e100ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /*animation: textGlow 1.5s ease-in-out infinite;animation: textGlow 1.5s ease-in-out infinite;*/
}

/*@keyframes textGlow {
    0%, 100% { text-shadow: 0 0 5px #00bcd4, 0 0 10px #e100ff, 0 0 15px #e100ff; }
    50% { text-shadow: 0 0 10px #00bcd4, 0 0 20px #e100ff, 0 0 30px #e100ff; }
}*/
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.wrapper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 600px;
      
    background:rgba(245, 130, 145, 0.6); /* Adds transparency 
background: linear-gradient(90deg, rgba(31,31,39,1) 0%, rgba(26,26,33,1) 26%, rgba(41,49,50,1) 97%);*/
    opacity: 0;
    right: -100%;
    border-radius: 20px 20px 0px 0px;
    transition: right 0.4s ease-in-out, opacity 0.4s ease-in-out;
    z-index: 1000;
}


#active:checked ~ .wrapper {
    right: 0;
    opacity: 1;
}

.menu-btn {
    position: absolute;
    z-index: 1001;
    right: 20px;
    top: auto;
    height: 50px;
    width: 50px;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
   /*background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(50px);*/
    /*background: linear-gradient(-45deg, #e3eefe 0%, #efddfb 100%);*/
    transition: all 0.3s ease-in-out;
}

.menu-btn span,
.menu-btn:before,
.menu-btn:after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid #fff;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.menu-btn:before {
    transform: translateY(-8px);
}

.menu-btn:after {
    transform: translateY(8px);
}

.close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background 0.6s;
    position: fixed ;
}

/* Closing animation */
#active:checked + .menu-btn span {
    transform: scaleX(0);
}
#active:checked + .menu-btn:before {
    transform: rotate(45deg);
    border-color: #fff;
}
#active:checked + .menu-btn:after {
    transform: rotate(-45deg);
    border-color: #fff;
}

.wrapper ul {
    position: absolute;
    top: 60%;
    left: 50%;
    height: 90%;
    transform: translate(-50%, -50%);
    list-style: none;
    text-align: center;
    background: #fff;
}

.wrapper ul li {
    height: 10%;
    margin: 15px 0;
}

.wrapper ul li a {
    text-decoration: none;
    font-size: 30px;
    font-weight: 500;
    padding: 5px 30px;
    color: #fff;
    border-radius: 50px;
    position: absolute;
    line-height: 50px;
    margin: 5px 30px;
    opacity: 0;
    transition: all 0.3s ease;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.wrapper ul li a:after {
    position: absolute;
    content: "";
    /*background: linear-gradient(#14ffe9, #ffeb3b, #ff00e0);*/
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-radius: 50px;
    transform: scaleY(0);
    z-index: -1;
    transition: transform 0.3s ease;
}

.wrapper ul li a:hover:after {
    transform: scaleY(1);
}

.wrapper ul li a:hover {
    color: #1a73e8;
}

input[type="checkbox"] {
    display: none;
}

#active:checked ~ .wrapper ul li a {
    opacity: 1;
    transform: translateX(-100px);
    transition: all 0.5s ease-in-out;
    transition-delay: calc(0.1s * var(--i)); /* Creates a staggered effect */
}

/* Home Section */
.home-section {
    text-align: center;
    padding: 80px 0;
}


.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  overflow: hidden;
  animation: morph 3s linear infinite;
    object-fit: fill;
    box-shadow: 15px 15px 15px rgba(0, 0, 0, 0.4);
    /*border: 2px solid rgba(0, 0, 255, 0.4);*/
    margin-bottom: 20px;
}


/* Apply Animations to Hero Image and Text */

@keyframes morph{
  0%, 100% {
  border-radius: 40% 60% 70% 30% / 40% 40% 60% 50%;
  }
  34% {
    border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
  }
  67% {
    border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
  }
}

/* @keyframes blob {
    0%,100%{ border-radius: 35% 58% 22% 94% / 97% 90% 30% 40; }
    50% {border-radius: 50px 100px;}
 }*/
.home-title {
    font-size: 1.8rem;
    background: #e6fbff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleFloat 3s ease-in-out infinite;
    margin-bottom: 1rem;
}

@keyframes titleFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.home-subtitle {
    font-size: 1.2rem;
    color: #f1f1f1;
    position: relative;
}

.typing-text {
    display: inline-block;
    position: relative;
    color:#fc6ff5;
    font-size: 1.4rem;
}

.typing-text::after {
    content: '';
    position: absolute;
    right: -5px;
    width: 2px;
    height: 100%;
    background: #d76ffc;
    /*background: linear-gradient(180deg, #00bcd4, #e100ff);*/
    animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: #00bcd4; }
}

/* Hire Me Button */
.hire-button {
    text-decoration: none; /* Removes any underline */
    display: inline-block;
    padding: 12px 24px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #f4f4f4;
    background: #d4a4eb;
    backdrop-filter: blur(50px);
    /*background: #f3efef;
    /*background: linear-gradient(45deg, #00bcd4, #e100ff);*/
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.8);
    margin-top: 20px;
    
}

.hire-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.5s ease;
    background: linear-gradient(45deg, #00bcd4, #e100ff);
    transform: scaleX(0);
    opacity: 0;
}

.hire-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 6px 20px rgba(225, 0, 255, 0.4);
}

.hire-button:hover::after {
    opacity: 1;
    top: -50%;
    left: -50%;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: rgba(225, 0, 255, 0.4);
    border-radius: 29% 71% 42% 58% / 45% 93% 7% 55%;
    /*animation:blob2 3s ease-in-out infinite ;*/
    box-shadow: 0 6px 20px rgba(225, 0, 255, 0.4);
    animation: morph2 7s linear infinite;
}


@keyframes morph2{
  0%, 100% {
  border-radius: 2% 98% 61% 39% / 45% 74% 26% 55%;
  }
  34% {
    border-radius: 66% 34% 43% 57% / 65% 48% 52% 35%;
  }
  67% {
    border-radius: 53% 47% 44% 56% / 1% 16% 84% 99%;
  }
}

/*@keyframes blob2 {
    0%,100%{ border-radius: 300px 0px 0px 0px ; }
    50% {border-radius: 0px 300px 0px 0px;}
 }*/

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

.about-image {
    position: relative;
    /*animation: blob 7s ease-in-out infinite ;*/
    border-radius: 25% 75% 17% 83% / 66% 55% 45% 34%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*@keyframes blob {
    0%,100%{ border-radius: 80px 20px; }
    50% {border-radius: 10px 80px;}
 }*/

.about-image img {
    width: 300px; /* Set a smaller default size */
    max-width: 35vw; /* Scales based on viewport width */
    height: auto;
    border-radius: 20px;
    transition: transform 0.3s ease;
     filter: grayscale(100%);
}

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

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0, 188, 212, 0.3), rgba(225, 0, 255, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-image:hover::before {
    opacity: 1;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    position: relative;
    margin-right: 50px;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #00bcd4;
}

/* Skills Section */
.skills-section {
    box-shadow: 0 6px 20px rgba(0, 100, 155, 0.4);
    padding: 80px 0;
    border-radius: 33% 67% 35% 65% / 52% 16% 84% 48%;
    background: rgba(0, 150, 200, 0.4);
    animation: morph3 9s linear infinite;
}

@keyframes morph3{
  0%, 100% {
      border-radius: 63% 37% 86% 14% / 37% 56% 44% 63%;
          }
  34% {
    border-radius: 95% 5% 75% 25% / 45% 93% 7% 55%;
  }
  67% {
      border-radius: 55% 45% 45% 55% / 99% 60% 40% 1%;
      }
}


.skills-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin-left:20px;
}

.skill {
    text-align: center;
}

.progress-circle {
    box-shadow: 0px 0px 15px rgba(1, 1, 1, 0.8);
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 50%;
    --progress: 0%;
   /* background: conic-gradient(#00bcd4 var(--progress), #333 var(--progress));*/
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 1s ease-in-out;
}

.progress-circle img {
    width: 50px;
    height: 50px;
    z-index: 1;
}

.progress-circle::before {
    content: '';
    position: absolute;
    width: 90%;
    height: 90%;
    border-radius: 50%;
    backdrop-filter: blur(50px);
    background: rgba(0, 150, 200, 0.4);
    /*background: rgba(41,49,50,0.8);*/
    background:;
}

.skill p {
    margin-top: 10px;
    font-size: 18px;
}

.skill:nth-child(even) {
  flex-direction: row-reverse; /* Zigzag layout */
}


/* Projects Section */
.projects-section {
    padding: 50px 0;
    box-shadow: 0 6px 20px rgba(225, 0, 105, 0.4);
    background: #e08dd3;
    animation: morph4 9s linear infinite;
    border-radius: 30% 70% 29% 71% / 77% 50% 50% 23%;
}

@keyframes morph4{
  0%, 100% {
      border-radius: 37% 63% 19% 81% / 97% 7% 93% 3%;        
  }
  34% {
    border-radius: 19% 81% 39% 61% / 72% 58% 42% 28%;
  }
  67% {
      border-radius: 70% 30% 73% 27% / 13% 70% 30% 87%;
  }
}

.projects-section h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

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

.project {
    /*background-color: #222;*/
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.4);
    padding: 10px;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(10px);
    border-radius: 20px 50px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.project:hover {
    transform: scale(1.05);
}

.project img {
    width: 100%;
    border-radius:20px 50px;
    margin-bottom: 15px;
    transition: opacity 0.3s;
}

.project img:hover {
    opacity: 0.9;
}

.project h3 {
    font-size: 24px;
    margin: 10px 0;
}

.project p {
    color: #f1f1f1;
}

/* Contact Section */
.contact-section {
    box-shadow: 0 6px 20px rgba(95, 0, 165, 0.7);
    padding: 80px 0;
    background: #b481cc;
    text-align: center;
    border-radius:200px 200px 0px 0px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(50px);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.2);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #444;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
    height: 150px;
}

.contact-form button {
    padding: 12px 24px;
    color: #fff;
    background: rgba(212, 164, 235, 0.8);
    backdrop-filter: blur(50px);
    box-shadow: 0 4px 15px rgba(0, 188, 212, 0.8);
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background: #0097a7;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0;
}

.social-links a {
    font-size: 1.8rem;
    color: #fff;
    transition: all 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #00bcd4;
    transform: translateY(-5px);
}

.social-links a::after {
    content: '';
    display: block;
    width: 100%;
    height: 2px;
    background: linear-gradient(45deg, #00bcd4, #e100ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.social-links a:hover::after {
    transform: scaleX(1);
}

/* General Styles */
.courses-section {
    position: relative;
    padding: 120px 50px 50px; /* Extra top padding to prevent clipping */
    text-align: center;
    background: linear-gradient(90deg, rgba(232,115,204,0.97) 26%, rgba(172,162,236,1) 50%, rgba(23,212,236,1) 94%);
    
}





.courses-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: #fff;
}

.courses-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.category {
  width: 100%;
  text-align: left;
}

.category h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #fff;
  border-bottom: 2px solid #007BFF;
  display: inline-block;
  padding-bottom: 5px;
}

.course-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 100%;
  max-width: 300px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

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

.course-card:hover .course-image img {
  transform: scale(1.1);
}

.course-card h4 {
  font-size: 1.5rem;
  margin: 10px 0;
  color: #333;
}

.course-card p {
  font-size: 1rem;
  color: #666;
  margin-bottom: 20px;
}

.enroll-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007BFF;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.enroll-btn:hover {
  background-color: #0056b3;
}

/* Footer */
footer {
    border-radius:20px;
    background: rgba(0, 0, 0, 0.0);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    color: #fff;
}

