/* ===== 1. General ===== */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
:root {
    /* background color */
    --primary-color: rgb(7, 4, 25);
    --bg-prussian-blue: hsla(216, 33%, 20%, 1);
    --bg-orange: #FF6B00;
    --bg-white: #fff;
    --bg-oxford-blue: linear-gradient(0deg, #020015, transparent);
    --gradient-color: linear-gradient(-224deg, var(--primary-color) 0, #337DFF 100%);
    --bg-oxford-blue2: hsla(222, 44%, 13%, 1);
    /* Text Color */
    --primary-font:'Poppins', sans-serif;
    --text-white: #fff;
    --text-gray: #c6c9d8bf;
    --text-orange: #FF6B00;
    --text-glossy-blue:#29D3F8;
    --text-blue:#00D1FF;
    /* Border */
    --border:.1rem solid rgba(251, 249, 252, 0.3);
    /*===== Font Weight =====*/
    --fw-400: 400;
    --fw-500: 500;
    --fw-600: 600;
}
body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-color);
    margin:0;
    padding:0;
    overflow-x:hidden;
}
html{
    overflow-x:hidden;
    scroll-behavior: smooth;
}
/* ===== 2. Custom CSS ===== */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-oxford-blue);
}
::-webkit-scrollbar-thumb {
    background: var(--text-glossy-blue);
}
a {
    text-decoration: none;
    list-style: none;
}
section {
    padding: 130px 0 100px 0;
}
h1{
    font-family: var(--primary-font);
    font-weight: 700;
    font-size: 64.5455px;
    line-height: 78px;
    text-align: center;
    color: var(--text-white);
}
h2 {
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 50px;
    line-height: 61px;
    color: var(--text-orange);
}
span{
    font-family: var(--primary-font);
    font-weight: 800;
    font-size: 30px;
    line-height: 61px;
    color: var(--text-orange);
}
h3 {
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    color: var(--text-black);
    font-family: var(--primary-font);
}
p {
    font-family: var(--primary-font);
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    color: var(--text-glossy-blue);
    padding-top: 10px;
}
.middle-img{
    margin-top: -200px;
}
.logo-img{
    width: 200px;
}
.form-card {
    background-color: transparent;
    border: 1px solid var(--bg-orange);
}
.grid-list {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
    list-style-type: none;
}
input:hover,
input:focus,
textarea:focus,
textarea:hover,
button{
    box-shadow: none !important;
}
.typed-cursor{
    display: none;
}
/* Animation Scroll */
[data-reveal] {
    opacity: 0;
    transition: 0.7s ease-in;
}  
[data-reveal].revealed { opacity: 1; }
[data-reveal="bottom"] { transform: translateY(100px); }
[data-reveal="bottom"].revealed { transform: translateY(0); }
[data-reveal="left"] { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px); }
[data-reveal="left"].revealed,
[data-reveal="right"].revealed { transform: translateX(0); }
/*Bounce Animation */
.bounce2 {
    animation: bounce 0.5s;
    animation-direction: alternate;
    animation-timing-function: cubic-bezier(.5, 0.05, 1, .5);
    animation-iteration-count: infinite;
}
@keyframes bounce {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(0, 20px, 0);
    }
}
.bounce2 {
    -webkit-animation-name: bounce;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-direction: alternate;
    -webkit-animation-timing-function: cubic-bezier(
    .5, 0.05, 1, .5);
    -webkit-animation-iteration-count: infinite;
}  
@-webkit-keyframes bounce {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 100px, 0);
        transform: translate3d(0, 100px, 0);
    }
}
/* ===== 3. SideMenu ===== */
.hamburger{
    position: relative;
    display: block;
    width: 35px;
    cursor: pointer;
    appearance: none;
    background: none;
    outline: none;
    border: none;
}
.hamburger .bar, .hamburger:after, .hamburger:before{
    content: '';
    display: block;
    width: 100%;
    height: 5px;
    background-color: var(--bg-orange);
    margin: 6px 0px;
    transition: 0.4s;
}
.hamburger.is-active:before{
    transform: rotate(-45deg) translate(-8px, 6px);
}
.hamburger.is-active:after{
    transform: rotate(45deg) translate(-9px, -8px);
}
.hamburger.is-active .bar{
    opacity: 0;
}
.mobile-nav{
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    min-height: 100vh;
    display: block;
    z-index: 98;
    background: linear-gradient(179.59deg, #191257 0.36%, #00031a 140.51%);
    padding-top: 115px;
    transition: all 500ms ease-in;
}
.mobile-nav.is-active{
    left: 0;
    transition: all 500ms ease-in;
}
.mobile-nav .nav-link{
    display: block;
    text-align: center;
    margin: 0 0 12px -100px;
    padding: 12px 16px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 20px;
    font-family: var(--primary-font);
    font-weight: var(--fw-600);
}
.mobile-nav .nav-link.active{
    color: var(--text-orange);
    font-size: 18px;
    text-decoration: underline;
}
.mobile-nav .nav-link:hover{
    color: var(--text-orange);
    text-decoration: underline;
    transition: all 500ms ease-in;
}
.profile-heading{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}
.profile-heading h3{
    font-family: var(--primary-font);
    font-size: 20px;
    font-weight: var(--fw-600);
    color: var(--text-white);
    text-align: center;
}
.profile-heading span{
    color: var(--text-glossy-blue);
    font-size: 16px;
}
.mobile-nav-container{
    position: absolute;
    width: 100px;
    height: 620px;
    right: 0;
    top: 220px;
    background: #16027b;
    border-radius: 50px 0px 0px 0px;
}
.mobile-nav-container h3{
    width: 450px;
    height: 0px;
    margin-left: -155px;
    margin-top: 250px;
    position: absolute;
    font-size: 30px;    
    color: var(--text-white);
    text-align: center;
    transform: matrix(0, 1, -1, 0, 0, 0);
}
/* ===== 4. Header ===== */
.header_wrapper .navbar{
    padding:15px 0;
    -webkit-transition: all .2s linear;
    -o-transition: all .2s linear;
    transition: all .2s linear;
}
.header_wrapper .navbar-brand img{
    max-width: 80px;
    height: auto;
}
.header_wrapper .nav-item{
    margin: 0 10px;
}
.header_wrapper .nav-item .nav-link{
    font-family: var(--primary-font);
    font-weight: var(--fw-600);
    font-size: 20px;
    color: var(--text-white);
    display:inline-block;
    position: relative;
    left: -30px;
}
.header_wrapper .nav-item .nav-link::after{
    position: absolute;
    content: '';
    left: 0;
    width: 0;
    height:2px;
    background:var(--text-orange);
    transition: 0.2s;
    bottom: 0;
}
.header_wrapper .nav-item .nav-link.active::after,
.header_wrapper .nav-item .nav-link:hover::after{
    width:100%;
}
.header_wrapper .nav-item .nav-link.active,
.header_wrapper .nav-item .nav-link:hover{
    color: var(--text-orange);
}
/* === HEADER SCROLLED ==== */
.header-scrolled{
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(179.59deg, #191257 0.36%, #00031a 140.51%);
    width: 100%;
    -webkit-box-shadow: 0 4px 6px 0 rgba(12,0,46,.05);
    box-shadow: 0 4px 6px 0 rgba(12,0,46,.05);
}
.header-scrolled .nav-item .nav-link.active,
.header-scrolled .nav-item .nav-link:hover{
    color: var(--text-orange);
    transition: all 500ms ease-in;
}
/* === HEADER SIDEBAR ==== */
.sidebar{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    margin-top: -8rem;
    right: 5%;
}
.header_wrapper .sidebar-container{
    position: absolute;
    width: 50px;
    height: 135px;
    top: -10px;
    background: #154264;
}
.header_wrapper .social-links img{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 10px;
    top: 18px;
}
.header_wrapper .social-links:hover{
    transform: translateX(-5px);
    transition: all 500ms ease-in;
}
.header_wrapper .social-links-2 img{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 10px;
    top: 53px;
}
.header_wrapper .social-links-2:hover{
    transform: translateX(-5px);
    transition: all 500ms ease-in;
}
.header_wrapper .social-links-3 img{
    position: absolute;
    width: 30px;
    height: 30px;
    left: 10px;
    top: 90px;
}
.header_wrapper .social-links-3:hover{
    transform: translateX(-5px);
    transition: all 500ms ease-in;
}
.header_wrapper .hireme-container{
    position: absolute;
    width: 30px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 115px;
    background: var(--bg-orange);
    clip-path: polygon(50% 0%, 100% 0, 100% 75%, 50% 100%, 0% 75%, 0 0);
}
.header_wrapper .hireme-container:hover{
    transform: translateY(5px);
    transition: all 500ms ease-in;
}
.header_wrapper .hireme-container h6{
    position: absolute;
    width: 111.3px;
    height: 30.79px;
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 15px;
    color: #0F0000;
    transform: matrix(0, 1, -1, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
}
/* ===== 5. Banner ===== */
.banner_wrapper{
    padding-top: 100px;
    background: url('../images/hero-bg.webp') no-repeat;
    width: 100%;
    background-size: cover;
}
.intern-btn{
    display: flex;
    justify-content: center;
    align-items: center;
}
.banner_wrapper .main-btn-certificate{
    position: absolute;
    width: 250px;
    height: 50px;
    border: 3px solid var(--text-white);
    border-radius: 50px;
    font-size: 25px;
    line-height: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    text-align: center;
}
.banner_wrapper .main-btn-certificate:hover{
    background: radial-gradient(212.5% 1579.78% at 5.74% 0%, #4f5598 0%, rgba(62, 5, 119, 0) 100%) ;
}
.internship-banner{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    -webkit-animation-name:movebounce;
    animation-name:movebounce;
    -webkit-animation-delay: 200ms;
    animation-delay: 200ms;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-duration: 2.5s;
    animation-duration: 2.5s;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}
@keyframes movebounce{
    0%{
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
    50%{
        -webkit-transform:translateY(1.25rem);
        transform:translateY(1.25rem);
    }
    100%{
        -webkit-transform:translateY(0);
        transform:translateY(0);
    }
}
.dot-right{
    margin-right: -7rem;
    margin-top: -8rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.dot-right2{
    margin-left: 9rem;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.hero-bg-1{
    margin: -40rem 0 0 -7.5rem;
}
.hero-bg-2{
    position: absolute;
    margin-top: -20rem;
    right: 0;
}
.hero-banner { 
    position: relative; 
}
.hero-banner .w-100 {
    max-width: max-content;
    margin-inline: auto;
}
.banner_wrapper .shape {
    position: absolute;
    z-index: -1;
    animation: heroDecoAnim 3s linear infinite alternate;
}
@keyframes heroDecoAnim {
    0% { transform: translateY(40px) rotate(0); }
    100% { transform: translateY(0) rotate(0.4turn); }
}
.banner_wrapper .shape-1 {
    top: -400px;
    right: 100px;
}
.banner_wrapper .shape-2 {
    bottom: 20px;
    left: 24px;
}
/* ===== 6. Internship ===== */
.internship_wrapper{
    background:  linear-gradient(219.5deg, #001331 -11.04%, rgba(0, 67, 105, 0) 150.47%);
    cursor: pointer;
}
.heading{
    display: flex;
    justify-content: center;
    align-items: center;
}
.heading span{
    font-size: 50px;
}
.dot-left{
    margin-left: -7rem;
}
.internship-container{
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: auto;
}
.card-heading h2{
    font-family: var(--primary-font);
    font-weight: 40;
    font-size: 38.8788px;
    line-height: 43px;
    color: var(--text-white);;
    margin: auto;
    text-align: center;
}
.card-heading p{
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: 400;
    font-size: 23.3273px;
    line-height: 39px;
    text-align: right;
    color: var(--text-orange);
}
.internship__card{
    width: 700px;
    height:auto;
    min-height: 700px;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.08);
}
.card-body1{
    position: relative;
}
.internship__img{
    position: relative;
    display: block;
    margin: auto;
    width: 306.12px;
    height: 233.27px;
    border: 20px solid #000315;
    align-items: flex-start;
}
.card-body1 h3{
    position: absolute;
    width: 250px;
    height: 130px;
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 23.3273px;
    line-height: 26px;
    color: var(--text-white);
    background-color: rgba(217, 217, 217, 0.19);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 340px;
    top: 50px;
}
.card-body2{
    position: relative;
}
.internship__img2{
    position: relative;
    display: block;
    margin: auto;
    width: 306.12px;
    height: 233.27px;
    border: 20px solid #000315;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 240px;
}
.card-body2 h3{
    position: absolute;
    width: 250px;
    height: 130px;
    font-family: var(--primary-font);
    font-weight: 400;
    font-size: 23.3273px;
    line-height: 26px;
    color: var(--text-white);
    background-color: rgba(217, 217, 217, 0.19);
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    left: 50px;
    top: 50px;
}
/* ===== 7. Contact ===== */
.contact_wrapper{
    background: url('../images/footer-bg.webp') top right no-repeat var(--bg-oxford-blue);
    background-size: contain;
}
.contact_wrapper .container{
    max-width: 1200px;
}
.contact_wrapper h1{
    border-bottom: 3px solid var(--bg-orange);
    display: inline;
}
.contact-content{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10rem;
}
.contact-heading h2{
    width: 380px;
    text-align: left;
    color: var(--text-white);
    font-size: 30px;
    font-family: Poppins;
    font-weight: var(--fw-600);
    line-height: 50px;
}
.contact-heading span{
    color: var(--text-orange);
}
.socail-icon{
    display: flex;
    flex-direction: row;
    justify-content: start;
    align-items: start;
    gap:1rem;
    cursor: pointer;
    margin-top: 2rem;
}
.socail-icon i{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    transition:.3s ease all ;
    color: var(--bg-white);
    border: 2px solid var(--bg-orange);
    display: flex;
    justify-content: center;
    align-items:center;
    font-size: 20px;
    cursor: pointer;
}
.socail-icon h3{
    font-size: 25px;
    color: var(--text-glossy-blue);
    font-weight: var(--fw-500);
    padding-top: 10px;
} 
.socail-icon h3:hover{
    color: var(--text-white);
    transition: all 500ms ease-in;
}
.socail-icon i:hover{
    background-color: var(--bg-orange);
    color:var(--text-white);
    transition: all 500ms ease-in;
}
.form-card {
    background-color: transparent;
    border: 1px solid var(--bg-orange);
}
.contact_wrapper .contact-form{
    position: relative;
    background: var(--bg-white);
    border-radius: 25.0206px;
    width: 550px;
    margin-top: 100px;
}
.contact_wrapper .contact-form .contact-form-heading h6{
    font-size: 20px;
    color: hsla(217, 24%, 59%, 1);
    font-weight: bold;
    font-family: var(--primary-font);
    display: flex;
    justify-content: center;
    align-items: center;
}
.select {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(135px, 1fr));
    cursor: pointer;
    place-items: center;
    gap: 1rem;
    margin: 1.5rem;
}
.select__item {
    width: 150px;
    text-align: center;
    padding: 18px;
    border-radius: 16px;
    color: hsla(216, 33%, 20%, 1);
    font-size: 10px;
    font-weight: var(--fw-600);
    border: 1px solid var(--bg-orange);
}
.select__item--selected {
  background: var(--bg-orange);
  color: var(--text-white);
}
input[type="text"],
input[type="number"],
input[type="email"] {
    border: 0;
    border-bottom: 3.12757px solid rgba(46, 2, 73, 0.3);
    outline: 0;
    border-radius: 0;
}
input[type="text"]:hover{
    border-bottom:3.12757px solid #C17FAD;
}
input[type="number"]:hover{
    border-bottom:3.12757px solid #C17FAD;
}
input[type="email"]:hover{
    border-bottom:3.12757px solid #C17FAD;
}
.contact_wrapper textarea{
    border-color: rgba(46, 2, 73, 0.3);
}
.contact_wrapper .form-control:hover,
.contact_wrapper textarea:hover,
.contact_wrapper .form-control:focus,
.contact_wrapper textarea:focus{
    border-color: #C17FAD;
    color: #4b1039;
}
.contact-form-btn{
    display: flex;
    justify-content: space-between;
    align-items: start;
    text-align: center;
    margin-left: 2rem;
}
.vector-btn{
    border-radius: 10.855px;
    background-color: var(--bg-orange);
    border: none;
    outline: none;
    padding: 10px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: var(--fw-600);
}
.vector-btn:hover{
    transition: all 400ms ease-in;
    transform: translateY(-2px);
    background-color: var(--bg-oxford-blue2);
}
.contact-form-btn img{
    width: 15px;
}
.contact_wrapper .bg-img img{
    width: 100%;
    margin-bottom: -200px;
    height: 250px;
    margin-top: -230px;
}
.contact_wrapper .form-row label{
    color: var(--text-orange);
    font-weight: 500;
}
.hireme-btn{
    display: flex;
    justify-content: start;
    align-items: start;
}
.hireme-btn a{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    background: radial-gradient(648.33% 133.55% at 50.00% 22.00%, #29D3F8 0%, rgba(41, 211, 248, 0.31) 100%);
    font-family: var(--primary-font);
    font-size: 25px;
    font-weight: var(--fw-600);
    color: var(--text-white);
}
.hireme-btn a:hover{
    background:var(--bg-orange);
    transition: all 500ms ease-in;
}
.hireme-line{
    width: 60px;
    height: 7px;
    margin: 25px 0 0 -10px;
}
/* ===== 8. Footer ===== */
.footer_wrapper{
    background: linear-gradient(277.51deg, #03265C 33.72%, rgba(3, 38, 92, 0) 104.65%);
    padding: 40px 0 0 0;
}
.footer_wrapper .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer_wrapper .logo img{
    width: 120px;
}
.footer-navlinks{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 30px;
    flex-wrap: wrap;
}
.footer-navlinks a{
    font-family: var(--primary-font);
    font-size: 25px;
    font-weight: var(--fw-500);
    color: var(--bg-white);
}
.footer-navlinks a:hover{
    color: var(--bg-orange);
    transition: all 300ms ease-in;
}
.footer-socials{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}
.footer-socials i{
    width: 3rem;
    height: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid var(--bg-orange);
    background: transparent;
    color: var(--bg-white);
    cursor: pointer;
    font-size: 1.2rem;
    border-radius: 50%;
}
.footer-socials i:hover{
    background: rgba(255, 106, 0, 0.684);
    transition: all 500ms ease-in;
}
.footer-content{
    display: flex;
    justify-content: center;
    align-items: center;
}
.footer-content h2{
    font-family: var(--primary-font);
    font-size: 25px;
    font-weight: var(--fw-400);
    color: var(--text-gray);
}
.footer-content span{
    color: var(--text-orange);
}
/* ===== 9. Preloader ===== */
#preloader{
    background: #001D30;
    height: 100vh;
    width: 100%;
    position: fixed;
    z-index: 100;
    display: flex;
    justify-content: center;
    align-items: center;
}
#preloader figure{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.preloader-logo{
    width: 120px;
    height: auto;
}
.preloader-loading{
    width: 100px;
}
main{
    display: none;
}
/* ===== 10. Back to Top ===== */
.back-top-btn {
  position: fixed;
  bottom: 30px;
  right: -70px;
  width: 70px;
  height: 70px;
  border: 1px dashed currentColor;
  color: var(--text-glossy-blue);
  font-size: 1.2rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  visibility: hidden;
  transition: 0.5s ease;
  z-index: 3;
}
.back-top-btn.show {
  transform: translateX(-100px);
  visibility: visible;
}
.back-top-btn:hover { color: var(--text-white); }

/* ===== 10. Responsive Screens ===== */
@media (max-width: 1200px){
    /* Contact */
    .contact-content{
        display: grid;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
    .contact_wrapper .contact-form{
        margin-top: 50px;
        width: 100%;
    }
}
@media (min-width:991px){
    .mobile-nav{
        display: none;
    }
    .hamburger{
        display: none;
    }
}
@media (max-width:991px) {
    /* Custom css */
    h1{
        font-size: 44.5455px;
    }
    h2{
        font-size: 44.5455px;
    }
    .heading span{
        font-size: 44.5455;
    }
    .middle-img{
        width: 120px;
        margin-top: -150px;
    }
    .sidebar{
        display: none;
    }
    .header_wrapper .navbar-brand img {
        max-width: 60px;
        height: auto;
    }
    /* Internship */
    .heading h2{
        font-size: 30px;
    }
}
@media (max-width: 767px) {
    /* Banner */
    .banner_wrapper .main-btn-certificate{
        text-align: center !important;
    }
    /* Internship */
    .internship__img{
        width: 250px;
        height: 200px;
        border: 20px solid #000315;
        left: -20px;
    }
    .card-body1 h3{
        width: 200px;
        height: 100px;
        font-size: 20px;
        line-height: 26px;
        left: 260px;
    }
    .internship__img2{
        width: 250px;
        height: 200px;
        border: 20px solid #000315;
        left: 160px;
    }
    .card-body2 h3{
        width: 200px;
        height: 100px;
        font-size: 20px;
        left:30px;
    }
    /* Footer */
    .footer_wrapper .logo img{
        width: 100px;
    }
    .footer-navlinks a{
        font-size: 15px;
    }
    .footer-socials i{
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    .footer-content h2{
        font-size: 18px;
    }
}
@media (max-width: 576px) {
    /* Banner */
    .profile-heading{
        margin-bottom: 5rem;
    }
    .profile-img{
        width: 70px;
        margin: -1rem 0 0 1rem;
    }
    .profile-heading h3{
        font-size: 15px;
        margin: 1rem 0 0 0rem;
    }
    .middle-img{
        width: 80px;
        margin-top: -180px;
    }
    .banner_wrapper .main-btn-certificate{
        text-align: center !important;
    }
    .dot-right{
        margin-right: -3rem;
    }
    .dot-right2{
        margin-left: 1rem;
    }
    .hero-bg-2{
        display: none;
    }
    /* Internship */
    .internship__card{
        width: 500px;
    }
    .dot-left{
        margin-left: -2rem;
    }
    /* Contact */
    .contact-socials{
        display: grid;
        justify-content: center;
        align-items: center;
    }
    .contact-heading h2{
        font-size: 20px;
        width: 100%;
        text-align: center;
    }
    .hireme-btn{
        align-items: center;
        justify-content: center;
    }
    .socail-icon h3{
        font-size: 20px;
    }
    .bg-img{
        display: none;
    }
    .tag-btn{
        width: 100%;
    }
    /* Footer */
    .footer_wrapper .logo img{
        width: 80px;
    }
    .footer-socials{
        gap: .50rem;
    }
    .footer-socials i{
        width: 1.7rem;
        height: 1.7rem;
        font-size: .75rem;
    }
    .footer-content h2{
        font-size: 10px;
    }
    .footer-content span{
        font-size: 10px;
    }
}
@media (max-width: 450px)   {
    /* Custom css */
    h1{
        font-size: 34px;
    }
    h2{
        font-size: 24px;
    }
    .heading span{
        font-size: 24px;
    }
    /* Banner */
    .banner_wrapper .main-btn-certificate{
        text-align: center !important;
        width: 250px;
        height: 50px;
        font-size: 20px;
    }
    .dot-right{
        display: none;
    }
    /* Internship */
    .internship__card{
        width: 350px;
    }
    .card-heading h2{
        font-size: 20px;
    }
    .internship__img{
        width: 200px;
        height: 150px;
        left: -50px;
    }
    .card-body1 h3{
        width: 130px;
        height: 80px;
        font-size: 13px;
        left: 190px;
    }
    .internship__img2{
        width: 200px;
        height: 150px;
        left: 70px;
    }
    .card-body2 h3{
        width: 130px;
        height: 80px;
        font-size: 13px;
        left:-3px;
    }
    /* Contact */
    .contact-heading h2{
        width: 100%;
    }
    .socail-icon i{
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .socail-icon h3{
        font-size: 16px;
        margin-top: -5px;
    }
    .contact_wrapper .contact-form .contact-form-heading h6{
        font-size: 20px;
    }
    .tag-btn a{
        font-size: 10px;
    }
    .footer-navlinks{
        gap: 1rem;
    }
}
@media (max-width: 350px){
    /* Banner */
    .banner_wrapper .main-btn-certificate{
        text-align: center !important;
    }
    /* Internship */
    .internship__card{
        width: 290px;
    }
    .card-heading h2{
        font-size: 15px;
    }
    .card-heading p{
        font-size: 15px;
    }
    .internship__img{
        width: 180px;
        height: 130px;
        border: 10px solid #000315;
        left: -55px;
    }
    .card-body1 h3{
        width: 100px;
        height: 50px;
        font-size: 10px;
        left: 160px;
    }
    .internship__img2{
        width: 180px;
        border: 10px solid #000315;
        height: 130px;
        left: 30px;
    }
    .card-body2 h3{
        width: 100px;
        height: 50px;
        font-size: 9.5px;
        left:-10px;
    }
}