*{
    margin: 0;
    padding: 0;
}
body{
    background-color: #131622;
}

/* nav bar section start */
header{
    background-color: #131622;
    /* height: 100vh; */
    width: 100%;
}

nav{
    background-color: #12141f;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    width: 100%;
    z-index: 100;
}

nav .logo{
    color: #ffffff;
    font-family: 'Inter-Regular', sans-serif;
    font-size: 29px;
    font-weight: 400;
    margin: 8px 33px;
    padding: 8px;
}

nav ul{
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
    margin: 7px 30px;
    padding: 7px 20px;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 999;
    color: #fff; /* Adjust color as needed */
    /* Add background or other styles if necessary */
}

.close-btn {
    display: none; /* Initially hide the close button */
    font-size: 35px;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    z-index: 999;
    color: #fff;
}

.hover-class {
    border-radius: 31px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; 
    padding: 0px 15px;
}

.hover-class p {
    color: #ffffff;
    font-family: 'Inter-Regular', sans-serif;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.hover-class:hover{
    background-color: #32DEED;
}

/* nav bar section end */

/* nav bar section responsive start */
@media screen and (max-width: 900px) {
    nav .logo {
        font-size: 24px; /* Adjust logo size for smaller screens */
        margin: 8px 20px; /* Adjust margins */
        padding: 8px;
    }
    nav {
        flex-direction: row-reverse; /* Reverse the order for smaller screens */
        justify-content: flex-end; /* Align items to the right */
        padding-right: 20px; /* Adjust spacing */
    }

    .menu-toggle {
        display: block; /* Show the menu toggle button */
        font-size: 24px; /* Adjust size if needed */
        cursor: pointer;
        margin-right: 50px;
    }

    .nav-links {
        display: none; /* Hide the links by default on smaller screens */
        position: absolute;
        top: 50px;
        right: 0;
        background-color: #12141f;
        width: 200px; /* Adjust width as needed */
        padding: 10px;
        z-index: 99;
        filter: drop-shadow(6px 6px 11px #31DBEA);
    }

    .nav-links.active {
        display: block;
    }

    .close-btn {
        display: none; 
        font-size: 35px; 
        cursor: pointer;
        margin-right: 50px;
    }

    .nav-links li {
        padding: 10px 0;
        text-align: center;
    }
}
/* nav bar section responsive end */

/* hero section start */
.hero-section{
    display: flex;
    justify-content: space-between;
    padding-bottom: 30px;
}

.hero-left {
    margin-top: 164px;
    margin-left: 128px; /* Adjust the left margin according to the desired space */
    max-width: 50%; /* Limit the maximum width to occupy half of the screen */
}

.hero-left > div {
    margin-bottom: 20px; /* Add spacing between text sections */
}

.hero-left-first{
    color: #ffffff;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 30px;
    font-weight: 600;
}

.hero-left-second{
    color: #ffffff;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 30px;
    font-weight: 600;
    display: flex;
}
.hero-left-second p {
    margin-right: 10px; /* Adjust the value to add the desired amount of space */
}

.hero-left-second div{
    color: #32DEED;
}

.text-animation {
    font-family: Arial, sans-serif;
    border-right: 1px solid; /* Simulates the typing cursor */
    white-space: nowrap; /* Prevents the text from wrapping */
    overflow: hidden; /* Ensures the overflow is hidden */
    width: 0;
    animation: typing 4s steps(40, end) infinite, blink-caret 0.75s step-end infinite;
  }
  
  @keyframes typing {
    0% { width: 0; }
    100% { width: 50%; }
  }
  
  @keyframes blink-caret {
    from, to { border-color: transparent; }
    50% { border-color: black; }
  }


.hero-left-name{
    color: #ffffff;
    text-align: left;
    font-family: 'Inter-ExtraBold', sans-serif;
    font-size: 34px;
    font-weight: 800;    
}


.hero-left-desc{
    color: #ffffff;
    text-align: left;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 18px;
    font-weight: 600;
}

.hero-left-social-icon {
    display: flex;
    margin-top: 70px;
    margin-left: 190px;
}

.hero-left-social-icon-round {
    width: 30px; /* Adjust the width and height to fit your design */
    height: 30px;
    background: #131622;
    border: 1px solid #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Ensure the content doesn't overflow */
    margin-right: 50px;
}

.hero-left-social-icon-round img {
    width: 90%; /* Adjust the size of the icon inside the circle */
    height: auto;
    display: block;
    margin: auto; /* Center the icon horizontally and vertically */
}

.hero-left-social-icon-round:hover {
    background: #32DEED;
}

.download-container {
    position: relative;
    display: inline-block; 
    margin-top: 40px;
}

.download-btn {
    background: #32deed;
    border-radius: 73px;
    width: 190px;
    height: 67px;
    filter: blur(2px);
    transition: filter 0.3s ease; 
}

.download-cv {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; 
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 20px;
    font-weight: 600;
    width: 132px;
    height: 23px;
    color: #131622; 
    border-radius: 73px; 
    transition: color 0.3s ease, border-radius 0.3s ease; 
}

.download-cv a {
    text-decoration: none;
    color: inherit; 
}

.download-container:hover .download-btn {
    filter: blur(3px);
}

.download-container:hover .download-cv {
    filter: blur(2px); 
}

.hero-right{
    margin-top: 60px;
    margin-right: 80px;
    margin-left: 90px;
}
/* hero section end */

/* hero section responsive section start */
@media screen and (max-width: 1450px) {
    .hero-right img{
        margin-top: 50px;
        width: 450px;
    }

    .hero-left-first{
        font-size: 20px;
        font-weight: 600;
    }
    
    .hero-left-name{
        font-size: 26px;
        font-weight: 800; 
    }

    .hero-left-second{
        font-size: 20px;
        font-weight: 600;
        display: flex;
    }

    .hero-left-desc{
        text-align: left;
        font-size: 15px;
        font-weight: 600;
    }

    .download-btn {
        width: 170px;
        height: 55px;
    }

    .download-cv {
        font-size: 17px;
    }
}

@media screen and (max-width: 1210px) {
    .hero-right img{
        margin-top: 80px;
        width: 350px;
    }

    .hero-left-first{
        font-size: 17px;
    }
    
    .hero-left-name{
        font-size: 22px;
    }

    .hero-left-second{
        font-size: 17px;
        display: flex;
    }

    .hero-left-desc{
        text-align: left;
        font-size: 13px;
    }

    .hero-left-social-icon{
        margin-top: 30px;
        margin-left: 90px;
    }

    .hero-left-social-icon-round{
        margin-right: 30px;
        width: 20px;
    }

    .download-btn {
        width: 150px;
        height: 48px;
    }

    .download-cv {
        font-size: 15px;
    }

    .download-container{
        margin-top: 20px;
    }
}

@media screen and (max-width: 1050px) {
    .hero-left {
        margin-top: 110px;
        margin-left: 80px;
        max-width: 38%; 
    }

    .hero-right img{
        margin-top: 80px;
        width: 230px;
    }

    .hero-left-first{
        font-size: 15px;
    }
    
    .hero-left-name{
        font-size: 18px;
    }

    .hero-left-second{
        font-size: 15px;
        display: flex;
    }

    .hero-left-desc{
        text-align: left;
        font-size: 12px;
    }

    .hero-left-social-icon-round{
        margin-right: 20px;
        height: 20px;
    }    
    .download-btn {
        width: 135px;
        height: 42px;
    }

    .download-cv {
        font-size: 15px;
    }
}

@media screen and (max-width: 800px){
    .hero-left-social-icon{
        margin-top: 30px;
        margin-left: 20px;
    }

    .hero-left-social-icon-round{
        /* margin-right: 25px; */
        width: 20px;
    }
}

@media screen and (max-width: 600px) {
    .hero-section {
        flex-direction: column-reverse; 
        align-items: center;
        padding-bottom: 0; 
    }

    .hero-left {
        margin-top: 30px; 
        margin-left: 20px; /* Adjust the left margin as needed */
        width: calc(100% - 20px); /* Set the width and consider margin */
        max-width: none; /* Resetting max-width */
    }
    
      .hero-right {
        margin-top: 0; 
        margin-right: 0; 
        margin-left: 0;
      }
    
      .hero-left-social-icon {
        margin-left: 0;
        margin-top: 40px; 
      }

      .hero-left-desc{
        margin-right: 30px;
      }

      .hero-left-social-icon-round{
        margin-right: 20px;
      }

      .download-container{
        margin-left: 80px;
        margin-top: 20px;
      }

      .download-btn {
        width: 100px;
        height: 35px;
    }

    .download-cv {
        font-size: 12px;
    }
}
    /* hero section responsive end */

  
    /* Header Section End */

    /* Education Section Start */

.education-card {
    display: flex;
    flex-direction: column;
    align-items: center; 
    /* width: 100%; */
    /* height: 100vh; */
    background-color: #2F3646;
}

.education-section-heading {
    color: #ffffff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-top: 70px;
    margin-bottom: 30px;
    text-shadow: 9px 10px 2.7px rgba(0, 0, 0, 0.73);
}

.education-section-college-box{
    background: #131622;
    border-radius: 36px;
    height: 26%;
    width: 70%;
    margin: 50px auto;
    padding-bottom: 20px;
}

.education-section-college-box-main{
    display: flex;
}

.education-section-college-logo-box{
    margin-left: 20px;
    margin-top: auto;
}
.education-section-college-overall-content-box{
    margin-left: 40px;
}

.education-section-college-content-box-college-name{
    color: #ffffff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 25px;
    font-weight: 700;
    margin-top: 30px;    
    letter-spacing: 1px;
}

.education-section-college-content-box-dept-name{
    color: #ffffff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 22px;
    font-weight: 700;
    margin-top: 15px;
    letter-spacing: 1px;
}

.education-section-college-content-box-result{
    color: #ffffff;
    text-align: left;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-top: 15px;  
    letter-spacing: 1px;
}

.education-section-college-content-box-duration{
    color: #ffffff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-top: 15px;  
    letter-spacing: 1px;
}

.education-section-college-box:hover{
    filter: drop-shadow(6px 6px 11px #31DBEA);
}

/* For tablets */
@media screen and (max-width: 1240px) {
    .education-section-college-logo-box img{
        height: 150px;
    }

    .education-section-college-content-box-college-name{
        font-size: 18px;
    }
    .education-section-college-content-box-dept-name{
        font-size: 15px;
    }
    .education-section-college-content-box-result,
    .education-section-college-content-box-duration{
        font-size: 13px;
    }

    .education-section-heading{
        font-size: 30px;
    }
}

@media screen and (max-width: 900px) {
    .education-section-college-box {
      width: 80%;
      margin: 40px auto;
    }
    .education-section-college-content-box-college-name{
        font-size: 16px;
    }
    .education-section-college-content-box-dept-name{
        font-size: 13px;
    }
    .education-section-college-content-box-result,
    .education-section-college-content-box-duration{
        font-size: 12px;
    }
    .education-section-heading{
        font-size: 26px;
    }
}
  
  /* For mobile devices */
  @media screen and (max-width: 600px) {
    .education-section-college-box {
      width: 80%;
      margin: 20px auto;
    }
  
    .education-section-college-box-main {
      display: flex;
      flex-direction: column;
      align-items: center;
    }
  
    .education-section-college-logo-box {
      margin-bottom: 20px;
    }
    .education-section-college-content-box-college-name{
        margin-top: 0;
    }

    .education-section-college-overall-content-box {
        margin-left: 0px;
    }
  
    .education-section-college-content-box-college-name,
    .education-section-college-content-box-dept-name,
    .education-section-college-content-box-result,
    .education-section-college-content-box-duration {
      text-align: center;
      margin-bottom: 10px;
    }

      .education-section-college-content-box-college-name{
          font-size: 18px;
      }
      .education-section-college-content-box-dept-name{
          font-size: 15px;
      }
      .education-section-college-content-box-result,
      .education-section-college-content-box-duration{
          font-size: 13px;
      }

      .education-section-heading{
        font-size: 21px;
    }
  }

/* Education Section End */

/* Skills Section Start */

.skills-card {
    display: flex;
    flex-direction: column;
    align-items: center; 
    width: 100%;
    /* height: 100vh; */
    background-color: #131622;
}

.skills-section-heading{
    color: #ffffff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 36px;
    font-weight: 700;
    margin-top: 70px;
    margin-bottom: 70px;
    text-shadow: 9px 10px 4px rgba(255, 255, 255, 0.39);
}

.skill-section-box{
    display: flex;
    flex-wrap: wrap;
      justify-content: center;
    margin-left: 74px;
}

.skill-section-single-box{
    background: #2f3646;
    width: 200px;
    height: 215px;
    margin-right: 72px;
    margin-bottom: 78px;
    display: flex;
    flex-direction: column;
    align-items: center; 
    border-radius: 10px;
}

.skill-section-single-box-img{
    margin-top: 22px;
}

.skill-section-single-box-name{
    color: #ffffff;
    font-family: 'Inter-Bold', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-top: 35px;
}

.skill-section-single-box:hover{
    filter: drop-shadow(6px 6px 11px #31DBEA);
}


/* For tablets */
@media screen and (max-width: 768px) {
    .skill-section-box {
      flex-wrap: wrap;
      justify-content: center;
      margin-left: 0;
    }
  
    .skill-section-single-box {
      margin: 0 20px 40px 20px;
    }
  }
  
  /* For mobile devices */
/* Other existing styles... */

/* For mobile devices */
@media screen and (max-width: 480px) {
    .skills-section-heading {
        font-size: 28px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .skill-section-box {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0; /* Remove left margin for mobile */
    }

    .skill-section-single-box {
        width: 100px;
        height: 140px;
        margin: 0px 10px 40px 10px;
        border-radius: 20px;
    }

    .skill-section-single-box-img img{
        width: 50px;
    }

    .skill-section-single-box-name{
        font-size: 14px;
    }

}

  
/* Skills Section End */

/* Project Section Start */

.project-section-all-card{
    display: flex;
    flex-wrap: wrap;
      justify-content: center;
    align-items: center; 
    margin-left: 120px;
    margin-bottom: 50px;
    margin-top: 40px;
}

.project-section-single-card{
    background: #131622;
    width: 331px;
    height: 431px;
    margin-right: 123px;
    border-radius: 30px;
    transition: transform 0.3s ease;
}

.project-section-single-card:hover{
    transform: scale(1.1);
    filter: drop-shadow(6px 6px 11px #31DBEA);
}

.project-section-single-card img{
    margin-left: auto;
    margin-right: auto;
    transition: transform 0.3s ease;
}

.project-section-single-card img:hover{
    transform: scale(1.05);
}


.project-section-single-card-content h4{
    color: #e77070;
    text-align: center;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    margin-top: 17px;
    margin-bottom: 20px;
}

.project-section-single-card-content p{
    color: #ffffff;
    text-align: left;
    font-family: 'Inter-Regular', sans-serif;
    font-size: 14px;
    font-weight: 400;
    width: 275px;
    height: 92px;
    margin-left: 28px;
    margin-right: 28px;
}

.project-section-single-card-content a{
    background: #32deed;
    border-radius: 6px;
    width: 73px;
    height: 33.87px;
    position: absolute;
    text-decoration: none;
    margin-left: 128px;
    margin-top: 29px;
    transition: transform 0.3s ease;
}

.project-section-single-card-content a:hover{
    transform: scale(1.2);
}

.project-section-single-card-content a p{
    color: #000000;
    font-family: 'Inter-SemiBold', sans-serif;
    font-size: 12px;
    font-weight: 600;
    filter: blur(0px);
    margin: 9px 11px;
}

@media screen and (max-width: 1488px) {
    .project-section-single-card{
        margin-bottom: 100px;
    }

    .project-section-all-card {
        margin-bottom: 0;
        margin-top: 0;
    }
}

/* For tablets */
@media screen and (max-width: 768px) {  
    .project-section-all-card {
      flex-direction: column;
      align-items: center;
      margin-left: 0;
      margin-bottom: 20px;
      margin-top: 20px;
    }
  
    .project-section-single-card {
      width: 100%; /* Adjust width for better fit */
      margin-right: 0;
      margin-bottom: 50px;
    }
  }
  
  /* For mobile devices */
  @media screen and (max-width: 480px) {
    .education-card {
      padding: 0 10px; /* Adjust padding for smaller screens */
    }

    .education-section-heading{
        font-size: 28px;
    }
  
    .project-section-all-card {
      flex-direction: column;
      align-items: center;
      margin-left: 0;
    }
  
    .project-section-single-card {
      width: 70%; /* Adjust width for better fit */
      margin-right: 0;
      margin-bottom: 60px;
    }
  
    .project-section-single-card img {
      max-width: 100%; /* Ensure images fit within their containers */
    }
  
    .project-section-single-card-content p {
      width: 90%; /* Adjust text width */
      margin-left: 5%; /* Center-align text */
      margin-right: 5%;
    }
  }
  

/* project Section end */

/* Service Section Start */

.service-section-all-card {
    display: flex;
    flex-direction: column;
}

.service-section-row {
    display: flex;
    gap: 20%;
    margin-bottom: 110px;
}

.service-section-single-card {
    background: #2f3646;
    width: 50%;
    height: 40%;
    position: relative;
    overflow: hidden;
}

.service-section-single-card img {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.service-section-single-card h3 {
    color: #ffffff;
    text-align: center;
    font-family: 'JejuMyeongjo-Regular', sans-serif;
    font-size: 20px;
    font-weight: 400;
    position: relative;
    margin-top: 30px;
    z-index: 1;
    cursor: pointer;
    text-transform: capitalize;
}

.service-section-single-card-layer {
    background: linear-gradient(rgba(0, 0, 0, 0.6), #32deed);
    border-radius: 10px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.service-section-single-card-layer p{
    text-align: center;
    margin-right: 30px;
}

.service-section-single-card .service-section-single-card-initial {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-section-single-card img {
    width: 100%;
    transition: transform 0.5s;
}

.service-section-single-card h3 {
    color: #f51717;
    text-align: center;
    font-family: 'JejuMyeongjo-Regular', sans-serif;
    font-size: 22px;
    font-weight: 1000;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    cursor: pointer;
    text-transform: capitalize;
}

.service-section-single-card-layer {
    display: none;
    background: linear-gradient(rgba(0, 0, 0, 0.6), #32deed);
    border-radius: 10px;
    padding: 0 40px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 20px;
    color: rgb(255, 255, 255);
}

.service-section-single-card:hover img {
    transform: scale(1.1);
}

.service-section-single-card:hover h3 {
    opacity: 0;
}

.service-section-single-card:hover .service-section-single-card-layer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

@media screen and (max-width: 910px) {
    .service-section-single-card {
        width: 35%;
    }
    .service-section-all-card {
        margin-left: 10%;
    }
}


/* For tablets */
@media screen and (max-width: 768px) {
    .skills-section-heading{
        font-size: 30px;
        margin-bottom: 60px;
    }
    .service-section-all-card {
        margin-left: 0;
    }

    .service-section-row {
      flex-direction: column;
      gap: 20px; /* Adjust spacing */
      margin-bottom: 40px; /* Adjust margin */
    }
  
    .service-section-single-card {
      width: 80%; /* Adjust width for better fit */
      margin: 0 auto; /* Center align cards */
      height: auto; /* Adjust height */
    }
  
    .service-section-single-card h3 {
      margin-top: 15px; /* Adjust margin */
      font-size: 18px; /* Adjust font size */
    }
  
    .service-section-single-card-layer p {
      font-size: 14px; /* Adjust font size */
    }
  }
  
  /* For mobile devices */
  @media screen and (max-width: 480px) {
    .skills-section-heading{
        font-size: 28px;
        margin-bottom: 60px;
    }

    .service-section-all-card {
        margin-left: 0;
    }
    .service-section-single-card {
      width: 85%; /* Adjust width for better fit */;
    }
  
    .service-section-single-card h3 {
      font-size: 16px; /* Adjust font size */
    }
  
    .service-section-single-card-layer p {
      font-size: 12px; /* Adjust font size */
    }
  }
  
/* Service Section End */


/* Contact us Section Start */

.contact-us-form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    margin-bottom: 40px;
}

.contact-us-input-group {
    flex: 1;
    margin-right: 10px;
}

.contact-us-input-group label {
    display: block;
    margin-bottom: 5px;
}

.contact-us-input-group input{
    width: 390px;
    height: 30px;
    padding: 8px;
    border: 1px solid #131622;
    border-radius: 5px;
    background-color: #131622;
    color: white;
    margin-left: 40px;
}

.contact-us-input-group textarea{
    width: 850px;
    padding: 8px;
    border: 1px solid #131622;
    border-radius: 5px;
    background-color: #131622;
    color: white;
    margin-left: 40px; 
    resize: vertical; /* Allow vertical resizing */
    overflow-y: auto; 
}


.contact-us-submit-btn{
    margin-top: 30px;
    margin-bottom: 50px;
    text-align: center;
}
.contact-us-submit-btn input[type="submit"] {
    background: #131622;
    border: none;
    color: #ffffff;
    border-radius: 32px;
    width: 143px;
    height: 51px;
    font-size: 16px;
    cursor: pointer;
}

.contact-us-submit-btn:hover{
    filter: drop-shadow(6px 6px 11px #31DBEA);
}

.contact-us-input-group input:focus,
.contact-us-input-group textarea:focus {
    border: 2px solid #131622; /* Change the border color or style */
    outline: none; /* Remove default outline */
    box-shadow: 0 0 5px rgba(19, 22, 34, 0.5); /* Add a shadow for emphasis */
    filter: drop-shadow(6px 6px 11px #31DBEA);
}

@media screen and (max-width: 920px) {
    .contact-us-input-group input{
        width: 100%;
        height: 70%;
        padding: 8px;
        margin-right: 30px;
    }

    .contact-us-input-group{
        margin-right: 60px;
    }

    .contact-us-input-group textarea{
        width: 100%;
        padding: 8px;
    }
}

  /* For mobile devices */
  @media screen and (max-width: 480px) {
    .contact-us-form-row{
        flex-direction: column;
        margin-bottom: 0;
    }

    .contact-us-input-group input{
        margin-left: 10%;
        margin-bottom: 10px;
        width: 100%;
    }

    .contact-us-input-group{
        margin-bottom: 30px;
    }

    .contact-us-input-group textarea{
        margin-left: 10%;
        width: 100%;
    }
}
  


footer{
    background-color: #131622;
    height: 70px;
    text-align: center;
    color: white;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center;
    font-size: 18px;
}

footer p a{
    text-decoration: none;
    color: white;
}

footer p a:hover{
    color: #31DBEA;
    font-size: 20px;
}


/* For tablets */
@media screen and (max-width: 768px) {
    footer {
        height: auto; /* Adjust height to fit content */
        padding: 20px; /* Add padding for better spacing */
    }

    footer p {
        margin-bottom: 10px; /* Adjust margin for better spacing */
        font-size: 16px; /* Adjust font size */
    }
}

/* For mobile devices */
@media screen and (max-width: 480px) {
    footer {
        padding: 10px; /* Adjust padding for better spacing */
    }

    footer p {
        margin-bottom: 5px; /* Adjust margin for better spacing */
        font-size: 14px; /* Adjust font size */
    }
}

/* @media screen and (max-width: 620px) {
    body {
      overflow-x: hidden;
    }
  }
   */


/* Contact Us Section End */
/* Your existing CSS styles */

/* Your existing CSS styles */

/* Alert box container */
.alert-container {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 300px;
    z-index: 100;
    display: none; /* Initially hide the alert */
}

/* Alert box */
.alert {
    padding: 20px;
    background-color: #4CAF50;
    color: white;
    border-radius: 5px;
    border: 1px solid #ddd;
    position: relative;
}

/* Close button */
.closebtn {
    margin-left: 15px;
    color: white;
    font-weight: bold;
    float: right;
    font-size: 22px;
    line-height: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.closebtn:hover {
    color: black;
}

