
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-color:#3a4be3;
    --primary-color-dark:#515fbd;
    --text-dark: black;
    --text-light:rgb(154, 157, 230);
    --white:rgb(254, 250, 254);
    --max-width: 2560px;
}
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.section{
    min-height: 100vh;
    padding: 10rem 9% 2rem;

}
.section_container{
    max-width: var(--max-width);
    margin: auto;
    padding: 5rem 1rem;
}
.section_subheader{
    margin-bottom: 0.5rem;
    position: relative;
    font-weight: 500;
    letter-spacing: 2px;
    color: var(--text-dark);
}
.section_subheader::after{
    position: absolute;
    content: "";
    top: 50%;
    transform: translate(1rem, -50%);
    height: 2px;
    width: 4rem;
    background: var(--primary-color);
}
.section_header{
    max-width: 600px;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 3rem;
    color: var(--text-dark);
}
.section_description{
    max-width: 600px;
    margin-bottom: 1rem;
    color:var(--text-light)
}
.btn{
    padding: .75rem 1.5rem;
    border: none;
    outline: none;
    color: #020145;
    font-weight: 300;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
}
.btn::after{
   content: "";
   z-index: -1;
   position: absolute;
   width: 100%; 
   height: 100%;
background: linear-gradient(
     45deg,
     rgb(75, 75, 211), rgb(148, 148, 239), rgb(166, 166, 239));
   left: 0;
   top: 0;
   border-radius: 10px;
}
.btn::before{
    content: "";
    background: linear-gradient(
     45deg,
     rgb(75, 75, 211), rgb(148, 148, 239), rgb(148,148,239));
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(8px);
    animation: glowing 20s linear infinite;
    transition: opacity .3s ease-in-out;
    border-radius: 10px;
    opacity: 1;
}
.btn:hover::before{
    opacity: 1;
}
.btn:active::after{
    background: transparent;
}
.btn:active{
    color: #050000;
    font-weight: 900;
}
    
@keyframes glowing{
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
a{
    text-decoration: none;
}
.logo img{
    background: transparent;
    max-width: 40px;
    position: relative;
    font-size: 1.5rem;
    font-weight: 600;
}
html,
body{
    scroll-behavior: smooth;
}
body{
    font-family: 'Roboto-Condensed',sans-serif;
    background-color: var(--text-dark);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.header{
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.9)),url('../img/ab.webp');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
nav{
    position: fixed;
    isolation: isolate;
    top: 0;
    width: 100%;
    max-width: var(--max-width);
    margin: auto;
    z-index: 10;
}
.nav_bar{
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background-color: transparent;
    background: rgba(14, 0, 0, 0.651); 
    -webkit-backdrop-filter: blur(10px); 
    backdrop-filter: blur(10px);
}
.nav_menu_btn{
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
}
.nav_links{
    list-style: none;
    position: absolute;
    width: 100%;
    padding: 2rem;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 2rem;
    background-color: transparent;
    transform: translateY(-120%);
    transition: 0.8s;
    z-index: -1;
    background: rgba(10, 1, 1, 0.743); 
    -webkit-backdrop-filter: blur(10px);
}
.nav_links.open{
    transform: translateY(0);
}
.nav_links a{
    position: relative;
    isolation: isolate;
    padding-bottom: 8px;
    color: var(--white);
    transition: 0.3s;
    text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.9);

}
.nav_links a:hover{
    color: var(--primary-color);
}
.btn{
    display: none;
}
.header_socials{
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-top: 20px;
    gap: 0.5rem;
    list-style-type: none;
}
.header_socials a{
    display: inline-block;
    padding: 8px 10px;
    color: #00ccff;
    font-size: 2rem;
    border: 2px solid #00ccff;
    border-radius: 50px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.1);
    list-style-type: none;
}
.header_socials li a{
    color: var(--primary-color);
    background: #0000006c;
    list-style-type: none;
}
.header_socials a:hover{
    color: var(--white);
    background: rgba(0, 0, 255, 0.307);
}

.header_container{
    padding-block: 10rem 15rem;
}
.header_container p{
    font-weight: lighter;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: rgba(190, 241, 255, 0.943);
    text-align: center;
    opacity: 0.8;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}
.header_container h1 span{
    color: var(--primary-color);
    text-shadow: 10px #060000;
    text-shadow: 
       0 1px 0 #2637cc,
       0 2px 0 #2232c3,
       0 3px 0 #19269f,
       0 4px 0 #0f1977,
       0 5px 0 #0d1878,
       0 6px 1px rgba(0, 0, 0, 0.1),
       0 0px 5px rgba(0, 0, 0, 0.1),
       0 1px 3px rgba(0, 0, 0, 0.3),
       0 3px 5px rgba(0, 0, 0, 0.2),
       0 5px 10px rgba(0, 0, 0, 0.25),
       0 10px 10px rgba(0, 0, 0, 0.2),
       0 20px 20px rgba(0, 0, 0, 0.15);
}
.header_container h1{
    font-size: 4rem;
    font-weight: 600;
    line-height: 4.5rem;
    color: rgb(231, 230, 230);
    width: 100%;
    text-align: center;
    text-shadow: 
       0 1px 0 #959494,
       0 2px 0 #919191,
       0 3px 0 #5d5d5d,
       0 4px 0 #4c4c4c,
       0 5px 0 #393939,
       0 6px 1px rgba(0, 0, 0, 0.1),
       0 0px 5px rgba(0, 0, 0, 0.1),
       0 1px 3px rgba(0, 0, 0, 0.3),
       0 3px 5px rgba(0, 0, 0, 0.2),
       0 5px 10px rgba(0, 0, 0, 0.25),
       0 10px 10px rgba(0, 0, 0, 0.2),
       0 20px 20px rgba(0, 0, 0, 0.15);
}

.booking_container{
    padding-block: 0;
}
.booking_form{
    padding: 2rem;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--white);
    border-radius: 10px;
    transform: translateY(-50%);
    box-shadow: 5px 5px 20px rgba(0,0,0,0.1);
}
.input_group{
    flex: 1 1 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}
.input_group span{
    font-size: 1.75rem;
    color: var(--primary-color);
}
.input_group label{
    font-weight: 500;
    color: var(--text-dark);
}
.input_group input{
    display: block;
    width: 100%;
    max-width: 150px;
    padding-block: 5px;
    color: var(--text-dark);
    font-size: .9rem;
    outline: none;
    border: none;
}
.input_group input::placeholder{
    color: var(--text-light);
}
.heading{
    background-color: var(--text-dark);
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    margin: 20px auto;
}
.heading h2{
    background-color: var(--text-dark);
    font-size: 50px;
    font-weight: 700;
    background: linear-gradient(to right, rgb(151, 72, 230), rgb(124, 70, 212), rgb(122, 112, 230), rgb(50, 159, 222), rgb(33, 177, 179), rgb(104, 199, 220));
    -webkit-background-clip: text;
    color: transparent;
    margin-bottom: 25px;
    position: relative;

}
.heading h2::after{
    background-color: rgb(72, 72, 210);
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    display: block;
    margin: 0 auto;
    background-color: blue;
}
.heading h3{
    background-color: var(--text-dark);
    font-size: 28px;
    color: #4309e1;
    margin-bottom: 35px;
    font-weight: 700;

}
.container{
    background-color: black;
    width: 90%;
    margin: 0 auto;
    padding: 10px 20px;
}
.about{
    background-color: var(--text-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 0rem 6rem;
}
.about-image{
    background-color: var(--text-dark);
    flex: 1;
    margin-right: 40px;
    overflow: hidden;
    border: 5px solid rgba(1, 179, 199, 0.881);
    border-radius: 20px; /* Optional: rounds the corners of the image */
    box-shadow: 0 0 30px rgba(1,179,199,0.984); /* Adjust color and intensity */
    transition: box-shadow 0.3s ease-in-out; /* Smooth transition */

}

.about-image img{
    max-width: 100%;
    height: auto;
    display: block;
    transition: 0.5s ease;
}
.about-image:hover img{
    transform: scale(1.2);
}
.about-content{
    flex: 1;
}
.about-content h2{
    font-size: 23px;
    margin-bottom: 15px;
    margin-left: 1rem ;
    color: rgb(92, 80, 225);
    font-weight: 800;
}
.about-content p{
    margin-left: 1rem;
    font-size: 18px;
    line-height: 1.5;
    color: var(--white);
    font-weight: 500;
}
.about-content.butn{
    margin-top: 10px;
    padding: .75rem 1.5rem;
    border: none;
    outline: none;
    color: #f3e4e4;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 12px;
    background-color: transparent;
    background: rgba(14, 0, 0, 0.651); /* Slightly transparent background */
    -webkit-backdrop-filter: blur(10px); /* Blurs the content behind the navbar */
    backdrop-filter: blur(10px);
}

.butn::after{
   content: "";
   z-index: -1;
   position: absolute;
   width: 100%; 
   height: 100%;
   background-color: #0a0a0a;
   left: 0;
   top: 0;
   border-radius: 10px;
}
.butn::before{
    content: "";
     background:  linear-gradient(
        90deg,
        #FF0000,#FF7300,#FFFB00,#48F000,
        #210387,#e106e1,#c3e409,#04b0ff
    );  
    position: absolute;
    top: -2px;
    left: -2px;
    background-size: 600%;
    z-index: -1;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    filter: blur(2px);
    animation: glowing 20s linear infinite;
    transition: opacity .9s ease-in-out;
    border-radius: 20px;
    opacity: 1;
    background-image: conic-gradient(#00ccff,#00ccff,#1d04c1,#00ccff,transparent,transparent);
}
.butn:hover::before{
    opacity: 1;
}
.butn:active::after{
    background: transparent;
}
.butn:active{
    color: #010101;
    font-weight: bold;
}
    
@keyframes glowing{
    0% {
        background-position: 0 0;
    }
    50% {
        background-position: 400% 0;
    }
    100% {
        background-position: 0 0;
    }
}
.description{
    color: var(--white);
    line-height: 1.5;
    
}
.description h3{
    color: #08b9cd;
    font-size: 25px;
    margin-top: 50px;
    font-weight: 800;
}

@media screen and (max-width: 768px) {
    .nav_menu_btn{
        margin-right: 0.5rem;
    }
    .header_container h1{
        line-height: 6rem;
        font-size: 3rem;
        font-weight: 500;
        text-align: center;
        justify-content: center;
    }
    .heading{
        padding: 0px 20px;
    }
    .heading h1{
        font-size: 36px;
        font-weight: 800;
    }
    .heading p{
        font-size: 17px;
        margin-bottom: 0px;
    }
    .container{
        padding: 0px;
    }
    .about{
        padding: 20px;
        flex-direction: column;
    }
    .about-image{
        margin-right: 0px;
        margin-bottom: 20px;
    }
    .about-content p{
        padding: 0px;
        font-size: 16px;
    }
    .image-data h2{
        font-size: 35px;
    }
    .header_socials a{
        font-size: 1.5rem;
    }
}
.main{
    background-color: var(--text-dark);
    position: relative;
    height: 100vh;
    width: 100%;
}
.wrapper,
.slide{
    width: 100%;
    height: 100%;
}
.slide{
    overflow: hidden;
}
.slide::before{
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 10;
}
.slide .image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.slide .image-data{
     position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
    text-align: center;
    width: 100%;
    z-index: 100;
}
.image-data span.text{
    font-size: 14px;
    font-weight: 500;
    color: var(--white);
}
.image-data h2{
    font-size: 45px;
    font-weight: 600;
    color: var(--white);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.9);
}
a.button{
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 600;
    color: #050505;
    background: linear-gradient(rgb(54, 54, 224),rgb(98, 113, 231), rgba(129, 218, 231, 0.99));
    text-decoration: none;
    margin-top: 25px;
    transition: all 0.5s ease;
}
a.button:hover{
    color: rgb(3, 3, 3);
    font-weight:700;
    background-color: var(--primary-color);
}
.nav-btn{
    height: 50px;
    width: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    visibility: hidden;
}
.nav-btn:hover{
    background-color: rgba(10, 10, 10, 0.5);
}
.section-heading.services h4{
    color: var(--white);
}
.swiper-button-next{
    right: 50px;
}

.swiper-button-prev{
    left: 50px;
}
.nav-btn::before,
.nav-btn::after{
    font-size: 25px;
    color: var(--white);
}
.swiper-pagination-bullet{
    opacity: 1;
    height: 12px;
    width: 12px;
    background-color: rgb(61, 189, 224);
    visibility: visible;
}
.swiper-pagination-bullet-active{
    border: 2px solid #12aef1;
    background-color: #2308d0;

}
.section-booking{
    background-color: var(--text-dark);
}

.card-container {
    background-color: var(--text-dark);
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 100px;
    perspective: 1000px; /* Add 3D perspective */
}

.card-container {
    background-color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 50px;
    gap: 30px;
}

.card {
    position: relative;
    width: 350px;
    background: #1f1f1f;
    /* border: 5px solid rgba(1, 179, 199, 0.881); */
    border-radius: 50px; 
    box-shadow: 0 0 30px rgba(1,179,199,0.984);
    border-radius: 20px;
    overflow: hidden;
    /* box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6); */
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.card:hover {
    transform: scale(1.05) translateY(-10px);
}

.card:before, 
.card:after {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(235deg, rgba(255, 20, 147, 0.3), rgba(0, 255, 255, 0.3));
    z-index: -1;
    transform: rotate(45deg);
    transition: opacity 0.6s ease-in-out;
    opacity: 0;
}

.card:hover:before, 
.card:hover:after {
    opacity: 1;
    filter: blur(30px);
}

.card img {
    width: 100%;
    border-bottom: 2px solid #e91e63;
    transition: transform 0.4s ease;
}

.card:hover img {
    transform: scale(1.1);
    border-color: #00e676;
}

.card-content {
    padding: 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 20px 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.card-content h3 {
    font-size: 26px;
    color: #fff;
    margin-bottom: 12px;
    background: linear-gradient(90deg, #ff6ec4, #7873f5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: background 0.6s ease;
}

.card-content p {
    font-size: 16px;
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 20px;
}

.card-content .btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 700;
    color: #1f1f1f;
    background: #00e676;
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(0, 230, 118, 0.5);
    transition: background 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
    text-transform: uppercase;
}

.card-content .btn:hover {
    background: #ff6ec4;
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 105, 180, 0.5);
}
.feature{
    background-color: var(--text-dark);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("../img/gear-192875_1280.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.feature_container{
    padding-block: 0;
    display: grid;

    grid-template-columns: repeat(2, 1fr);
}
.feature_content{
    grid-column: 1/3;
    padding: 2rem 4rem;
    background-color: transparent;
    background: linear-gradient(145deg, #000000, #012831, #030303,#00001a);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    border-image: linear-gradient(135deg, #00ccff, #00ccff) 1;
    box-shadow: 0 0 20px #00ccff, 0 0 40px rgba(255, 0, 127, 0.6);

}

.feature_content p{
    color: rgb(0, 191, 255);
}
.feature_content h2{
    color: var(--primary-color);
}
.feature_list{
    list-style: none;
    margin-top: 2rem;
    display: grid;
    gap: 2rem;
}
.feature_list li{
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: #efeded;
}
.feature_list span{
    padding: 5px 12px;
    font-size: 1.75rem;
    color: #000;
    background-color: var(--text-light);
    border-radius: 100%;
}
.feature_list li:nth-child(1) span{
    color: #0bf56c;
    background-color: #03030300;
}
.feature_list li:nth-child(2) span{
    color: #ee0707;
    background-color: #02034f00;
}
.feature_list li:nth-child(3) span{
    color: #5cb4ef;
    background-color: #02034f00;
}
.feature_list li:nth-child(4) span{
    color: yellow;
    background-color: #02034f00;
}
.feature_list li:nth-child(4) span:hover{
    color: white;
    background-color: #4d024f;
}
.feature_list li:nth-child(3) span:hover{
    color: white;
    background-color: #4d024f;
}
.feature_list li:nth-child(2) span:hover{
    color: white;
    background-color: #4d024f;
}
.feature_list li:nth-child(1) span:hover{
    color: white;
    background-color: #4d024f;
}

.banner_content {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    /* border-radius: 5px; */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.banner_content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #00ccff, #00ccff);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: -1;
}

.banner_content:hover::before {
    opacity: 1;
}

.banner_card {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(26, 26, 26, 0.7));
    text-align: center;
    flex: 1 1 180px;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid transparent;
    background-clip: padding-box;
    border-image: linear-gradient(145deg, #00ccff, #00ccff) 1 ;
    transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
    box-shadow: 0 4px 15px #00ccff, 0 8px 30px #00ccff;
    position: relative;
    overflow: hidden;
}

.banner_card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px #00ccff, 0 16px 60px #00cc;
}

.banner_card h4 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #6769e8;
    background: linear-gradient(145deg, #eea6ca, #49bee9);
    -webkit-background-clip: text;
    color: transparent;
}

.banner_card p {
    color: #6fc4f2;
    font-size: 1.2rem;
    margin-top: 1rem;
    letter-spacing: 0.5px;
}

.banner_card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.15), rgba(255, 140, 0, 0.05));
    transition: all 0.6s ease-in-out;
    z-index: -1;
}

.banner_card:hover::before {
    transform: rotate(45deg);
    opacity: 1;
}

.explore{
    background-color: var(--text-dark);
}
.explore :is(.section_subheader, .section_header){
    background-color: var(--text-dark);
    text-align: center;
    margin-inline: auto ;
}
.explore_bg{
    background-color: var(--text-dark);
    margin-top: 4rem;
    padding-block: 3rem;
    display: grid;
    grid-template-columns: 
     minmax(1rem, 1fr)
     minmax(0, var(--max-width))
     minmax(1rem, 1fr);
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url("../img/gears-1236578_1280.jpg");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.explore_content{
    grid-column: 2/3;
    max-width: 400px;
    padding: 2rem;
    background-color: var(--text-dark);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.3);
    border: 5px solid rgba(1, 179, 199, 0.881);
    border-radius: 50px; 
    box-shadow: 0 0 20px rgba(1,179,199,0.984);
    animation: upDown 4s ease-in-out infinite;
}
.explore_content p{
    margin-bottom: 0.5rem;
}
.explore_content h4{
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5rem;
    color: rgb(150, 195, 244);
}
.explore_content .btn{
    color: rgb(144, 235, 18);
    background-color: var(--white);
    border: 1px solid yellow;
}
.explore_content .btn:hover{
    color: var(--white);
    background-color: var(--primary-color-dark);
}

@keyframes upDown {
    0%, 100% {
        transform: translateY(0); /* Start at initial position */
    }
    50% {
        transform: translateY(-10px); /* Move up by 10px */
    }
}



.section_containerbanner_container{
    background-color: var(--text-dark);
}
.footer {
    background-color: rgb(3, 0, 26);
    border-top: 5px solid rgb(19, 2, 129);
    border-radius: 40px; 
    box-shadow: 0 0 70px rgb(22, 1, 175);
}
.footer_container{
    display: grid;
    gap: 4rem 2rem;
}
.footer_col .section_description{
    margin-block: 2rem;
}
.footer_col h4{
    margin-bottom: 2rem;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--white);
}
.footer_links{
    list-style: none;
    display: grid;
    gap: 1rem;
}
.footer_links a:hover{
    color: var(--white);
}
.footer_links a{
    color: var(--text-light);
    transition: 0.3s;

}
.footer_socials{
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.footer_socials a{
    color: rgb(255, 217, 0);
    border: none;
    font-size: 1rem;
}
.footer_socials img{
    max-width: 40px;
    opacity: .8;
    transition: .3s;
}
.footer_socials img:hover{
    opacity: 1;
}
.footer_bar{
    padding: 1rem;
    font-size: .9rem;
    color: rgb(225, 255, 0);
    text-align: center;
}

.logo a{
    color: rgb(124, 103, 244);
    margin-bottom: 1rem;
}
@media (width > 576px){
    .footer_container{
        grid-template-columns: repeat(2, 1fr);
    }
}

 @media (width > 768px){
    nav{
        padding: 2rem 1rem;
        position: static;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    .header_container h1{
        font-size: 4rem;
    }
    .nav_bar{
        padding: 0;
        background: transparent;
    }
    .nav_menu_btn{
        display: none;
        
    }
    .nav_links{
        padding: 0;
        width: unset;
        position: static;
        transform: none;
        flex-direction: row;
        background: transparent;
    }
    .btn{
        display: block;

    }
    .nav_links a::after{
        position: absolute;
        content: "";
        left: 0;
        bottom: 0;
        height: 2px;
        width: 0;
        background-color: var(--primary-color);
        transition: .3s;
        transform-origin: left;
    }
    .nav_links a:hover::after{
        width: 0%;
    }
    .nav-btn{
        visibility: visible;
    }   
    .swiper-pagination-bullet{
        visibility: visible;
    }
    .feature_content{
        grid-column: 2/3;

    }
    .footer_container{
        grid-template-columns: repeat(4, 1fr);
    }

    
} 
@media (max-width: 480px) {
    .header_container h1{
        line-height: 4rem;
        font-size: 2.5rem;
        font-weight: 600;
        text-align: center;
        justify-content: center;
        padding-top: 30px;
    }
    .header_container p{
        font-size: 0.9rem;
    }
    .nav_menu_btn {
        font-size: 1.5rem;  /* Even smaller on mobile */
        padding: 0.5rem; 
        margin-right: 0.2rem;

    }
    .heading h2{
        font-size: 2.5rem;
    }
    .about-content h3{
        font-size: 2.2rem;
    }
    .about-img img{
        width: 70%;
        border-radius: 50%;
    }
    .about-img .circle-spin{
        border: nonesss;
        border-radius: none;
    }
    .logo{
        font-size: 1.5rem;
    }
    .image-data h2{
        font-size: 25px;
        margin-bottom: 60px;
    }
    .nav-btn::before,
    .nav-btn::after{
    font-size: 15px;
    color: var(--white);
    }

}



