/*Body*/
*{
    padding: 0;
    margin: 0px 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
    border: none;
    outline: none;
    
    
}
body{
    margin: 0;
    background-color:#ffffff; 
    color: #fff;
    
}


.company {
    color: white;
    text-align: center;
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 26px;
    margin-left: 50px;
    line-height: 10px;
}
@media (max-width:450px) {
    .company {
        font-size: 14px;
        margin-left: 0px;
        text-align: center;
    }
}
@media (max-width:1116px) {
    .company {
        display: none;
    }
}

/*Styling Header*/
header{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10000;
    padding: 35px 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #05091f,#0a0463);
    border-bottom-right-radius: 100px;
    border-bottom: 1px solid transparent;
    transition: all ease .50s;
    
}

/*Loading Icon*/
.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px; /* Adjust the size as needed */
    height: 100px; /* Adjust the size as needed */
    z-index: 9999;
}

.loader img {
    width: 100%;
    height: 100%;
    animation: rotate 6s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*Loading Icon*/


/*Styling Logo and making it spin*/


.logo{
    width: 80px;
    margin-bottom: 30px;
}
.logo img { 
    width: 70px;
    animation: rotate 6s linear infinite;
}
.logo::before {
    content: '';
    position: absolute;    
}
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/*Styling Navbar*/
.navlist{
    position: relative;
    display: flex;
}
/**styling text in navbar*/
.navlist a{
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin: 0 20px;
    transition: all ease .3s;
    
}
.navlist a:hover{
    color:aqua;   
    border-bottom: 2px solid;  
   /* transition: ; */
}
/*Styling menu Icon*/
#menu-icon{
    padding-right: 20px;
    padding-bottom: 20px ;
    font-size: 35px;
    color: #fff;
    z-index: 10001;
    cursor: pointer;
    display: none;
}
/*body*/

.dropdown-navlist{   
    display: none; 
    position: absolute;
    right:2rem;
    top:60px;
    height: 0;
    width:300px;
    background:rgba(228, 47, 138, 0.1);
    backdrop-filter: blur(25px);
    border-radius: 10px;
    overflow: hidden;
    transition: height .2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-navlist a {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    margin: 0 20px;
    transition: all ease .3s;
    
}
.dropdown-navlist ul li{
    padding: 0.7rem;
    display:flex;
    align-items: center;
    justify-content: center;
    color: #050708;
}

.dropdown-navlist.open{
    /*Change to make box bigger or smaller*/
    text-align: center;
    height: 320px;
}

/* Style the container */
.homeimage .container {
    width: 100%;
    max-width: 1200px; /* Maximum width for large screens */
    margin: 0 auto; /* Center the container */
    padding: 15px; /* Optional padding */
    box-sizing: border-box;
}

/* Make the image responsive */
.homeimage .container .responsive-img {
    width: 100%; /* Make the image take the full width of the container */
    height: auto; /* Maintain the aspect ratio */
    max-width: 100%; /* Ensure the image doesn't overflow the container */
    display: block; /* Remove any extra space below the image */
}

/* Additional media query for small screens */
@media (max-width: 600px) {
    .homeimage .container {
        padding: 10px; /* Adjust padding for smaller screens */
    }
}

/*First Image*/
/* General Styles */
section.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: left;
    overflow: hidden;
}

/* Hero Image */
.hero-image img {
    margin-top: 80px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Hero Content */
.hero-content {
    font-weight: 100;
    color: #000000;
    text-align: left;
    max-width: 56%;
    padding: 20px;
    
    background-color: rgba(206, 206, 206, 0.5); /* Semi-transparent background for readability */
    border-radius: 10px;
}

.hero-content h1 {
    font-size: 2rem;
    margin: 0;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.hero-content h2 span {
    color: #0f077a;
}

.hero-content p {
    font-weight: 100;
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-content .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #000653;
    text-decoration: none;
    border-radius: 5px;
}

/**Responsive Styles*/
@media (max-width:450px) {
    
    .hero-content {
        margin-bottom:0px;
    }

    .hero-content h1 {
        display:none;
        font-size: 2rem;
        margin: 0;
    }

    .hero-content .btn {
        display: inline-block;
        padding: 5px 10px;
        font-size: 1rem;
        color: #fff;
        background-color: #000653;
        text-decoration: none;
        border-radius: 3px;
    }



    }

/*End of First Image*/


/* Second Image */
.hero2 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: left;
    overflow: hidden;
}

/* Hero Image */
.hero-image2 img {
    max-width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

/* Hero Content */
.hero-content2 {
    color: #000000;
    text-align: left;
    max-width: 50%;
    padding: 0px 0px;
    border-radius: 10px;
}

.hero-content2 h1 {
    font-size: 2rem;
    margin: 0;
}

.hero-content2 h2 {
    font-size: 2.5rem;
    margin: 10px 0;
}

.hero-content2 h2 span {
    color: #0f077a;
}

.hero-content2 p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.hero-content2 .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #000653;
    text-decoration: none;
    border-radius: 5px;
}

/* Responsive Styles */
@media (max-width: 430px) {
    .hero-content2 {
        text-align: center;
        padding: 0px 0px;
    }
}    
@media (max-width: 768px) {
    section .hero-content2 {
        text-align: center;
        padding: 0px 0px;
    }

    .hero-content2 h1,
    .hero-content2 h2 {
        font-size: 1.5rem;
    }

    .hero-content2 h2 {
        font-size: 2rem;
    }

    .hero-content2 p {
        font-size: 1rem;
    }

    .hero-content2 .btn {
        font-size: 0.9rem;
        padding: 8px 16px;
    }

    .hero-image2 img {
        height: auto;
        max-width:100% ;
    }
}

/*Second Image*/

.purchase-order-financing {
    position: relative;
    color: white;
}

.image-full {
    position: relative;
    width: 100%;
}

.image-full img {
    width: 100%;
    height: auto;
}

.purchase-order-financing-text {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Optional: Adds background to the text for readability */
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 0 10px 10px 0; /* Optional: Adds rounded corners to the text background */
}

.purchase-order-financing-text h1 {
    font-size: 2em;
    margin: 0;
}

.purchase-order-financing-text h2 {
    font-size: 1.5em;
    color: #000653;
    margin: 10px 0;
}

.purchase-order-financing-text h2 span {
    color: #000653;
}

.purchase-order-financing-text p {
    font-size: 1em;
    color: white;
    margin: 10px 0;
}

.purchase-order-financing-text button {
    background-color: #000653;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1em;
    align-self: flex-end; /* Optional: Aligns button to the left */
}
/* Responsive styling for screens smaller than 450px */
@media screen and (max-width: 450px) {
    .purchase-order-financing-text {
        justify-content:center;
        align-items:flex-end ;
        width: 50%;
        height: auto;
        border-radius: 0; /* Removes the rounded corners for small screens */
        padding: 10px;
    }

    .purchase-order-financing-text h1 {
        font-size: 1.5em;
    }

    .purchase-order-financing-text h2 {
        font-size: 1.2em;
    }

    .purchase-order-financing-text p {
        font-size: 0.9em;
    }

    .purchase-order-financing-text button {
        padding: 8px 16px;
        justify-content:center;
        font-size: 0.9em;
    }
}



/*Sections*/
/* About Section */
.about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); /* Responsive grid layout */
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    margin-bottom: 50px;
    padding: 40px; /* Add padding for a more comfortable layout */
    
}

/* Text Styles in About Section */
.about-text {
    width: 100%;
    text-align: center;
    padding: 0 20px; /* Add padding to the left and right of the text */
}

.about-text h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
    /* Uncomment the line below and specify your desired font family */
    /* font-family: 'Your Font Name', sans-serif; */
}

.about-text h5 {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 1.4;
}

span {
    color: aqua;
}

/* Paragraph Styling */
.about-text p {
    text-align: left;
    line-height: 30px;
    margin-bottom: 1rem;
    padding: 0 100px; /* Add padding to the left and right of the text */
}

/* Vision Paragraph Centering for larger screens */
@media (min-width: 715px) {
    .vision p {
        text-align: center;
        padding: 0; /* Remove padding for centered text */
    }
}

/*Apply Button styling*/
.Apply-btn{
    display: inline-block;
    padding: 9px 24px;
    background: aqua;
    color: rgb(0, 0, 0);
    font-size: 15px;
    font-weight: 500;
    border: 2px solid aqua(0, 255, 55);
    border-radius: 2rem;
    letter-spacing: 1px;
    overflow: hidden;
    transition: all ease .50s;
    text-decoration: none;
    text-shadow: #000000;
    color: white;
}
.Apply-btn:hover{
    transform: scale(1.2);
    background: transparent ;
}
/*end of apply vutton/

/* Responsive Design for Smaller Screens */
@media screen and (max-width: 768px) {
    .about-text p {
      padding: 0 0px;
    }
}
@media screen and (max-width: 768px) {
    .about {
        grid-template-columns: 1fr; /* Adjust the number of columns for smaller screens */
        gap: 2rem; /* Adjust the gap for smaller screens */
    }
}

/* Add this media query to adjust spacing for screens above 985px */
@media screen and (min-width: 986px) {
    .about {
        margin-bottom: 50px; /* Adjust the value to your preference */
    }
}


/*images*/
/*picture*/
.media{
    height: 100%;
    width: 100%;
   
    margin-bottom: -5px;     
}
.media img {
    width: 100%; /* Adjust the width as needed */
    height: 100%;
    /*border-radius: /* Make the image round */
}



/**Styling Service Section*/
.service{
    margin-bottom: 100px;
    width: 100%;
    padding: 100px 10% 100px;
    background-color: #05111a;
    color: #fff;
}
.service-text{
    text-align: center;
}

.service-text h2{
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 10px;
}

.text-center h4{
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 15px;
}

/*Box*/
.service-item{
    display: flex; 
    justify-content: center;
    align-items: center;
    min-height: 600px;
    margin-bottom: 15px;
}

/*card*/

.service-box {
    flex: 1; /* Ensure all boxes take equal space */
    padding: 20px 35px; 
    background: #191919;
    border-radius: 20px;
    margin: 15px;
    text-align: center;
    opacity: 0.85;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all ease 0.50s;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
}

.service-box:hover {
    transform: scale(1.05);
    opacity: 1;
    border: 1px solid #4e5055;
}

/* Styling Icons */
.service-box i {
    font-size: 50px;
    color: aqua;
    margin-bottom: 10px;
}

/* Styling header in cards */
.service-box h3 {
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 12px;
}

/* Styling paragraph in cards */
.service-box p {
    
    font-size: 15px;
    line-height: 25px;
    margin-bottom: 1.5rem;
    text-align: left;
    flex-grow: 1;
}

/* Styling buttons in cards */
.service-btn {
    display: inline-block;
    width: 150px; /* Set the desired width */
    height: 30px; /* Set the desired height */
    background: aqua;
    color: rgb(172, 106, 106);
    font-size: 15px;
    font-weight: 500;
    border: 2px solid aqua;
    border-radius: 2rem;
    overflow: hidden;
    transition: all ease 0.50s;
    margin-top: auto; /* Ensure the button stays at the bottom */
    text-align: center; /* Center the text horizontally */
    line-height: 25px; /* Center the text vertically */
    box-sizing: border-box; /* Ensure padding and border are included in the element's total width and height */
}

.service-btn:hover {
    transform: scale(1.12);
}


/* Flex container for service items */
.service-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
}

/* Media query for smaller screens */
@media (max-width: 1038px) {
    .service-item {
        flex-direction: column;
        align-items: center;
    }

    .service-box {
        width: 100%;
        max-width: 100%;
        margin: 15px auto;
    }
}




/*end of service cards*/

/*calculator section*/
/* Calculator Section */

.loan-calculator-section {
    display: flex;
    justify-content: center;
    align-items: center; /* Vertically center the calculator */
    min-height: 100vh; /* Ensure the calculator is at least the height of the viewport */
}

.loan-calculator {
    font-family: "Roboto", sans-serif;
    color: #ccc;
    width: 600px;
    background-color: #05111a;
    box-shadow: 0 12px 50px -11px rgb(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
}
.loan-calculator,
.loan-calculator * {
    box-sizing: border-box;
}
.loan-calculator .top {
    background: linear-gradient(to right, #3b0b0b, #0a0463);
    color: #fff;
    padding: 32px;
}
/* Styling calculator heading */
.loan-calculator .top h2 {
    margin-top: 0;
}
/* Styling calculator form */
.loan-calculator form {
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
/* Styling calculator Title */
.loan-calculator .title {
    margin: 16px; /* Corrected the class name to 'title' */
}
/* Styling calculator input Field */
.loan-calculator form input {
    font-size: 20px;
    padding: 8px 24px;
    width: 100%;
}
/* Styling calculator result Field */
.loan-calculator .result {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.loan-calculator .result .left {
    width: 100%;
    padding: 8px 32px;
}
.loan-calculator .left h3 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 8px;
    padding-top: 10px;
}
/* Styling calculator results */
.loan-calculator .result .value {
    font-size: 30px;
    font-weight: 900;
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(15, 17, 17);
}
/* Adding $ */
.loan-calculator .result .value::before {
    content: "P";
    margin-right: 5px;
    opacity: 0.4;
}
/* Styling calculate button */
.loan-calculator .calculate-btn {
    background: aqua;
    color: #fff;
    padding: 8px 32px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    margin: 24px 0;
}
/* Dealing with resizing of calculator */
@media (max-width: 768px) { /* Added a specific max-width value */
    .loan-calculator {
        width: 90%;
        max-width: 500px;
    }

    .loan-calculator form {
        flex-direction: column;
        gap: 20px;
    }

    .loan-calculator .result {
        flex-direction: column;
        text-align: center;
    }
}

/*End Dealing with resizing of calculator*/
/**End of calculator/


/*end of calculator*/

/**/
/*Testimonial Section*/
/*Testimonial Section*/
/*Testimonial Section*/
.testimonial {
    background: linear-gradient(to right, #a6a7ff,#2a1bf8);
    color: #1e035f;
    padding: 20px 50px;
    border-bottom-right-radius: 1px;
    margin-top: 100px;
    margin-bottom: 100px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}

.testimonial-content {
    text-align: center;
    margin-bottom: 20px;
}

.testimonial h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center; /* Centered headers */
}

.commitments {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.commitment h3 {
    font-size: 1.5rem;
    text-align: center; /* Centered headers */
}

.commitment p {
    text-align: left;
    font-size: 1rem;
    margin: 5px 0;
}

.testimonial-quote {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-quote img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 20px;
}

blockquote {
    text-align: left;
    font-size: 1rem;
    background-color: #100542; /* Light blue */
    color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
    max-width: 600px;
}

@media (min-width: 500px) {
    .commitments {
        flex-direction: column;
        justify-content: center;
    }

    .commitment p {
        text-align: left;
        font-size: 1rem;
        margin: 5px 0px;
    }
    .testimonial-quote {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        max-width: 1080px;
        margin: 0 auto;
    }

    .testimonial-quote img {
        margin-right: 20px;
    }
    blockquote {
        font-size: 1.1rem;
    }

    .testimonial-content {
        text-align: left; /* Centered headers */
        margin-bottom: 20px;
    }
}
/*End of Testimonial Section*/

/*End of Testimonial Section*/


/*End of Testimonial Section*/


/**/






/*Beginning of footer*/
.scroll-btn{
    position: fixed;
    right: 1px;
    bottom: 2.2rem;
    color: aqua;
    font-size: 40px;
    /*padding: 9px;*/
    border-radius: 0.8rem;
}
footer{
    width: 100%;
    position: relative; 
    bottom: 0;
    padding: 100px  30px;
    background: linear-gradient(to right, #3b0b0b,#0a0463); 
    color: white;
    border-top-right-radius:125px;
    font-size: 13px;
    line-height: 20px;
}
/*Styling the rows*/
.row{
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}
.col{
    flex-basis: 25%;
    padding: 10px;
}

.col:nth-child(2), .col:nth-child(3){
    flex-basis: 15%;
}

/*moviong logo down*/


/*Styling Office column section*/
.col h3{
width: fit-content;
margin-bottom: 40px;
position: relative;
}

/* Styling Email section */
.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0; /* Moves everything above and below email by 20 px */
}

/* Styling list items */
ul li {
    list-style: none;
    margin-bottom: 12px;
}

ul li a {
    text-decoration: none;
    color: #fff;
    transition: .3s;
}

ul li a:hover {
    color: aqua;
    border-bottom: 2px solid;
}

/* Styling mail area */
.newsletter {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ffffff;
    margin-bottom: 50px;
}

/* Styling mail area icon */
.ri-mail-line {
    font-size: 18px;
    margin-right: 10px;
}

/* Styling input area */
.newsletter .input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

/* Styling button area */
.newsletter button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

/* Styling arrow button */
button .ri-arrow-right-line {
    font-size: 14px;
    color: #ccc;
}


/*Styling Social Media-icons*/
.social-links a i{
    font-size: 30px;
    text-decoration: none;
    color: #fff;
   /* background: #000000; */
    border-radius: 15px;
    transition: all ease .50s;
    
}
/*Animating*/
.social-links i:hover{
    transform: translateY(-8px);
    color: rgb(0, 225, 255);
}

/**Adding line in the footer*/
hr{
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}
/*Styling copy right text*/
.icons i{
    font-size: 300px;

}
.copyright{
    text-align: center;
    
}
/*Styling the line under each section*/
.underline{
    width: 100%;
    height:5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 30px;
    left: 0;
    overflow: hidden;
}
/*Filling underline with load bar*/
.underline span{
    width: 15px;
    height:100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    top: 0px;
    left: 10px;
    animation: moving 2s linear infinite;
}
/*Animating */
@keyframes moving{
    0%{
        left: -20px
    }
    100%{
        left: 100px
    }
}

/**Dealing with resizing for footer*/  
@media (max-width: 700px){  
    .footer{
        
    bottom: unset;
    }
    .col{
    flex-basis: 100%;   
    }

    .col:nth-child(2), .col:nth-child(3){
    flex-basis: 100%;
    }    
    .about-text {
        text-align: left; /* Adjust to your default alignment */
    }
}  

/**Dealing with resizing for whole wesite*/
@media(max-width:985px){
    .navlist{
        padding: 35px 4%
    
    }
    section{
        padding: 100px 5% 80px;
    }
    .about-text {
        text-align: left; /* Adjust to your default alignment */
    }

   
}  
@media(max-width:481px) {
    .about-text {
        text-align: left; /* Adjust to your default alignment */
    }    
}

@media(max-width:1023px) {
    .about-text {
        text-align: left; /* Adjust to your default alignment */
    }    
}


@media(max-width: 701px) {
    section{
        word-spacing: 7px;
        padding: 90px 5% 70px;
    }
    .about-text {
        text-align: left; /* Adjust to your default alignment */
    }
}
/*Resising of navbar on Smaller Screens*/
@media(max-width: 1018px) {
    .navlist {
        position: absolute;
        top: -800;
        right: 0;
        left: 0;
        display: flex;
        text-align: right;        
        justify-content: flex-end;
        transition: all .50s ease;
    }
    .navlist a{
        display: block;
        font-size: 15px;
        padding: 5px;
    }
} 

@media(max-width: 860px) {
    .company{
        display: block;
    }
    #menu-icon{
        display: block;
        margin-right:5px ;
    }
    .navlist a{
        display: none;
    }
    .dropdown-navlist {
        display: block;
    }
}

/* Existing styles and other CSS rules */

/* Media query for small screens (mobile phones) */
@media (max-width: 480px) {
    /* Adjust styles for small screens */
    /* For example, you can reduce font sizes, adjust margins/paddings, etc. */
    /* Example: */
    body {
        font-size: 14px;
    }
    .logo img {
        width: 50px;
    }    
    .navlist {
        display: none;
        /* Additional styling for the hidden menu, e.g., background color, positioning, etc. */
    }
    
    /* Style for the menu icon */
    .menu-icon {
        cursor: pointer;
        /* Additional styling for the menu icon, e.g., positioning, color, etc. */
    }

    /* Style the navigation list when it's open */
    .navlist.open {
        display: block;
        /* Additional styling for the visible menu, e.g., background color, positioning, etc. */
    }
    .circle-icon {
        font-size: 30px;
        
      }
    .circle-title {
        font-weight: 800;
        margin: 0;
        font-size: 10px;
        letter-spacing: 2px; /* Adjust the value to your preference */
    
        
      }  
}


/* Media query for medium screens (tablets) */
@media (min-width: 481px) and (max-width: 1024px) {
    /* Adjust styles for medium screens */
    /* Example: */
    .navlist {
        padding: 20px 4%;
    }
    /*very import*/
    .about-text {
        text-align: center;
    }
}
/*Dropdown Navbar*/
@media(max-width: 576px) {
    .dropdown-navlist {
        left: 2rem;
        width: unset;
    }
}



