body {
    margin: 0;
    padding: 0;
}

.container{
    background-color: black;
    max-width: 60%;
    border-radius: 10px;
    margin-top: 100px;
}

.line-creation{
    height:1px;
    background-color: black;
    margin-top: 20px;
}
/* .headingsPrivacy {
    margin-top: 5px;
    text-align: center;
    background-color:#f2f2f2;
    border-radius: 5px;
} */

.headingsPrivacy {
    margin-top: 5px;               
    text-align: center;           
    background-color: #f2f2f2;     
    border-radius: 5px;         
    
    
    display: flex;
    justify-content: center;       
    align-items: center;       
    height: 160px;                  
}

.heading {
    margin-top: 5px;
    text-align: center;
    background-color:#f2f2f2;
    border-radius: 5px;
}
.image-fixing img {
    width: 200px;
    height: auto;
    margin-left: 35%;
    margin-bottom: 30px;
}

.local-section {
    font-family:  "Jost", sans-serif;
    color: aliceblue;
}
.local-section h5 {
    margin-left: 20px;
    margin-bottom: 50px;
}
.local-section p {
    margin-bottom: 50PX;
    text-align: justify;
}
.shoping-section{
    font-family:  "Jost", sans-serif;
    color: aliceblue;
}
.shoping-section h5 {
    margin-left: 20px;
    margin-bottom: 50px;

}
.shoping-section p{
    margin-bottom: 50px;
    text-align: justify; 
}
.community-section {
    font-family:  "Jost", sans-serif;
    color: aliceblue;
}
.community-section h5 {
    margin-left: 20px;
    margin-bottom: 50px;
}
.community-section p {
    margin-bottom: 30px;
    padding-bottom: 30px;
    text-align:justify;
 
}
.navbar {
    background-color:#111222 !important;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    position: fixed; 
    top: 0; 
    left: 0; 
    width: 100%; 
    z-index: 1000; 
    padding: 10px;

}

.col-lg-7 {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: auto;
}

.navbar a {
    color: #f2f2f2;
    text-align: center;
    padding: 8px 20px;
    text-decoration: none;
}

.navbar a:hover {
    color: aqua;
}

.navbar .brand {
    font-size: 1.5em;
    font-weight: bold;
}

.navbar .links {
    display: flex;
}

.navbar .links a {
    margin-left: 10px;
}

/* Remove or adjust styles related to the toggle button if needed */
.navbar .menu-toggle {
    display: none;
    font-size: 1.5em;
    cursor: pointer;
}



/*tablets view */
@media (max-width: 768px) {
    .heading {
        font-size: 1.5rem; 
        margin-top: 15px; 
    }
}



@media (max-width: 768px) {
    .image-fixing {
        padding: 0 15px; 
        margin-top: 15px;
        align-items: center;
        margin-left: 5%;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 100%; 

    }
}


@media (max-width : 768px ) {
    html,body{
        width: 100%;
        height: 100%;
        margin:0;
        padding: 0;
        overflow-x: hidden;
    }
}




/* mobile view */


@media (max-width: 480px) {
    .heading {
        font-size: 1.2rem; 
        margin-top: 10px; 
        padding: 0 5px; 
    }
}

@media (max-width: 480px) {
    .image-fixing {
        padding: 0 20px; 
        margin-top: 10px; 
        margin-right: 200px;
    }
}


@media (max-width: 480px) {
    .container {
        max-width: 100%; 
   
    }
}
@media ( max-width : 480px) {
    
    html,body{
        width: 100%;
        height: 100%;
        margin:0;
        padding: 0;
        overflow-x: hidden;
    }
}


.slide-in-right-heading {
    opacity: 0;
    transform: translateX(100%);
    /* Positioning */
    position: relative;
    
}

/* Keyframes for slide-in-right animation */
@keyframes slideInRight {
    0% {
        opacity: 1;
        transform: translateX(3000%);
    }
    25% {
        opacity: 1;
        transform: translateX(0);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%); 
    }
    75% {
        opacity: 1;
        transform: translateX(50%); 
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}


/* Animation class */
.animate-slide-in-right {
    animation: slideInRight 1s ease-out forwards;
}
.icon-link{
    margin-left: 20px;
    color: #fff;
}
@media (max-width: 480px) {
    .icon-slide {
        font-size: 1rem;
        margin-left:0px;
    }
}
/* Basic reset and body styling */


/* Footer styling */
footer {
    background-color:#111222; 
    padding: 10px;
    text-align: center; 
    max-width: 100%;
}

/* Container for social icons */
.social-icons {
    display: flex; 
    justify-content: center;
    gap: 55px;  
}

/* Styling for each social icon */
.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px; 
    background-color: #555; 
    color: #fff; 
    border-radius: 50%; 
    text-decoration: none; 
    font-size: 20px; 
    transition: background-color 0.3s, transform 0.3s;
}

/* Hover effect for social icons */
.social-icon:hover {
    background-color: #777; 
    transform: scale(1.1); 
}


@keyframes slideInLeft {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Apply slide-in-left animation */
.slide-in-left {
    animation: slideInLeft 1s ease-out;
}


/* Responsive design for tablets */
@media (max-width: 768px) {
    .social-icon {
        width: 30px; 
        height: 30px; 
        font-size: 16px; 
    }
}

/* Responsive design for mobile phones */
@media (max-width: 480px) {
    .social-icon {
        width: 25px; 
        height: 25px; 
        font-size: 14px; 
    }
}

.privacy-us {
    display: flex;
    justify-content: space-around;
    background-color:#111222;
    color: #f2f2f2;
}

.privacy-us-text {
    flex: 1;
    margin: 20px;
}

.privacy-us-text  h2{
    font-weight: 500;
}

/* Media Queries for Tablets and Mobile */
@media (max-width: 768px) {

    .privacy-us {
        flex-direction:row;
      
    }
     

    .privacy-us-text {
        margin-bottom: 10px;
        text-align: center;
    }

    
    .privacy-us-text p {
        font-size:  13px;
    }

    .privacy-us-text  h2{
        font-weight: 500;
        font-size: 15px;
     
    }
}

@media (max-width: 576px) {

    .privacy-us-text {
        flex: 1 1 48%; 
        text-align: center;
       
    }
    .privacy-us-text p{
        font-size: 12px;
    }
    .privacy-us-text  h2{
        font-weight: 500;
        font-size: 15px;
    }


    /* h3 {
        font-size: 16px;
    }
    
    p {
        font-size: 12px;
    } */
}


.reserved-section{
    text-align: center;
    background-color: #111222;
    color: #f2f2f2;
}

@media (max-width: 768px) {
    .reserved-section {
        font-size: 0.9rem;  /* Slightly smaller font on small screens */
    }
}

@media   (max-width:568px) {
    .reserved-section {
        font-size:0.6rem;  /* Larger font on medium screens */
    }
}
