@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    font-style: normal;

}

.btnbtn-warning {

    background-color: black;
}

body {
    -webkit-user-select: none;
    /* For Safari */
    -moz-user-select: none;
    /* For Firefox */
    -ms-user-select: none;
    /* For IE and Edge */
    user-select: none;
    /* Standard */
}


body {
    /* Ensure the body isn't clipping the content */



    height: 100vh;
    /* Full width of the viewport */
    overflow-x: hidden;

}

header {
    background: transparent;
    padding: 10px 20px;

    width: 100%;
    top: 0;
    z-index: 1000;


}

/* Navbar styling */
.navbar-light {
    background: transparent;
    position: fixed;
    width: 100%;
    margin-left: -19px;
}

.navbar-logo img {

    height: 30px;
    margin-right: 90%;
    width: 200px;
}

.navbar-light .navbar-nav .nav-link {
    color: #333;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 10px;

}

.navbar-light .navbar-nav .nav-link:hover {
    color: #ff9800;
    background-color: transparent;
}

.navbar-toggler {
    border: none;
    background: transparent;
}



/*packages*/

.grid-packages {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    /* Three equal columns */
    gap: 0px;
    /* Space between grid items */
    width: 100%;
    /* Expand to fill available width */
}

.packageul {
    list-style: none;
    padding-left: 0;
}

.grid-packages ul a {
    text-decoration: none;
    color: black;
    font-size: rem;
}

.grid-packages ul a:hover {
    color: orange;
}

.grid-packages h6 {
    color: orange;
    font-family: 1rem;
}

#ul-packages-1 li,
#ul-packages-2 li,
#ul-packages-3 li,
#ul-packages-4 li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

#ul-packages-1 li::before,
#ul-packages-2 li::before,
#ul-packages-3 li::before,
#ul-packages-4 li::before {
    content: url('INDEX IMAGES/ico.png');
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 10px;
    display: block;
}

/* international grid*/
.dropdown-menu {
    width: fit-content;
    height: fit-content;
}


.dropdown-menu .grid-dropdown {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-template-rows: 30% 30% 30%;
    width: 320px;
    top: 90px;
    left: -10rem;
    padding: 3px;

}

.dropdown-menu .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-template-rows: 30% 30% 30%;
    width: 320px;
    top: 90px;
    left: -10rem;
    padding: 3px;

}

.dropdown-menu .grid-item img {
    width: 100%;
    height: fit-content;
    object-fit: cover;
}

.dropdown-menu .subdropdown-button {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
}

.dropdown-menu .subdropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: fit-content;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-menu .subdropdown:hover .subdropdown-content {
    display: block;
}

/* time to visit grid */
/* time to visit grid */
.time .timeul li a {
    list-style-type: none;
    color: black;
    text-decoration: none;
}

.time-to-visit {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.timeul li a {
    list-style-type: none;
    text-decoration: none;

}

.timeul li a :hover {
    background-color: darkorange;

}



/* destinations grid */

/* Ordered List for Grid Headings */
.grid-packages {
    width: fit-content;
}

.grid-heading-packages {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* Ensure grid layout */
    grid-gap: 200px;
}

/* Individual Grid Items */
.grid-heading-packages li {
    width: fit-content;
    background-color: rgba(255, 255, 255, 0.244);

    text-align: center;
    padding: 10px;
    border: 1px solid #ddd;
    transition: background-color 0.3s ease;
}

/* Headings */
.grid-heading-packages li h3 {
    font-size: 1.2em;
    margin-bottom: 10px;
    color: #333;

}

/* Unordered List for Package Details */
.package-details-packages {
    list-style-type: none;
    /* Remove bullets for inner list */
    padding-left: 0;
    text-align: left;
    width: auto;
    height: auto;

}

.package-details-packages li {
    margin-bottom: 5px;
    font-size: 10px;
    color: #555;
}

/* Anchor Tag Styling */
.package-details-packages li a {
    text-decoration: none;
    color: #007bff;
    /* Link color */
}

.package-details-packages li a:hover {
    text-decoration: underline;
    /* Underline on hover */
}

/* Hover effect for grid item */
.grid-heading-packages li:hover {
    background-color: #f1f1f1;
}

/* Show dropdown on hover */
.nav-item.dropdown:hover .dropdown-menu {
    display: block;
}

.grid-dropdown-packages ol ul li a {
    text-decoration: none;
    list-style-type: none;
    color: #000000;
    font-size: 15px;
}


/* Dropdown menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    width: fit-content;
}

.dropdown-item:hover {

    background-color: #000000;
    color: #ff9800;
}

.dropdown-menu h6 {
    font-size: 1rem;
    font-weight: 600;
    color: #ff9800;
    padding: 10px 20px;
}

.dropdown-menu hr {
    margin: 5px 0;
    border: 0;
    border-top: 1px solid #ff9800;
}

.btn-warning {
    background-color: #ff9800;
    border: none;
    padding: 8px 5px;
    font-size: 0.7rem;
    text-size-adjust: 0.5rem;

}

.btn-warning a {
    color: white;
    text-decoration: none;

}

.btn-warning a:hover {
    color: #000000;
    text-decoration: none;
}


/* Ensure that the dropdown menu is hidden by default */
.months {
    display: none;
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1000;
}

/* Show the dropdown menu on hover */
ul:hover .months {
    display: block;
}

/* Style the individual items */
.months li {
    padding: 10px;
}

.months li a {
    text-decoration: none;
    color: black;
}

.months li a:hover {
    background-color: #f1f1f1;
}

.enquiry-link {
    color: inherit;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
}

/* Remove caret arrows from dropdowns */
.no-arrow .dropdown-toggle::after {
    display: none !important;
}




/* destination */
.grid-dropdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 3 columns */
    grid-template-rows: repeat(3, auto);
    /* 3 rows */

}

.grid-dropdown :hover {
    background-color: orange;
    color: white;

}

.grid-dropdown a {
    list-style-type: none;
    text-decoration: none;
    color: #000000;
    padding: 3px;
}

.grid-item {
    padding: 10px;


    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    text-align: center;
}

.grid-item img {
    width: 100px;
    /* Remove the extra space between '70' and 'px' */
    height: 0px;
}



/* subdropdown */

.dropdown-container {
    display: flex;
    flex-direction: column;
    width: 150px;
    margin: 20px auto;
}

.subdropdown {
    position: relative;
    display: block;
    margin-bottom: 10px;
}

.subdropdown-button {
    background-color: darkorange;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    width: 100%;
    text-align: left;
}

.subdropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    border-radius: 5px;
}

.subdropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;

}

.subdropdown-content a:hover {
    background-color: #ff9800;
    /* Highlight with orange color */
    color: white;
    /* Change text color for better contrast */
}

.subdropdown:hover .subdropdown-content {
    display: block;
}

.subdropdown:hover .subdropdown-button {
    background-color: #ffffff;
}

.custom-dropdown-menu {

    background-color: rgba(0, 0, 0, 0);
}




/* Media Queries for Responsiveness */
@media (max-width: 768px) {
    .dropdown-menu {
        width: 100%;
        /* Full width on small screens */
        padding: 10px;
    }

    .subdropdown-button {
        font-size: 14px;
        padding: 10px;
        width: 100%;
    }

    .subdropdown-content {
        width: 100%;
        /* Full width for subdropdown content */
    }

    h5 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .subdropdown-button {
        font-size: 12px;
        padding: 8px;
    }

    h5 {
        font-size: 16px;
    }
}





.social-links a {
    font-size: 1.2rem;
    /* Slightly reduce size for better balance */
}

/*search bar section*/
.search-container-search {
    position: relative;
    width: 600px;
    display: flex;
    margin-left: 400px;
    margin-bottom: 50px;
    margin-top: -70px;
    align-items: center;

    justify-content: center;
    /* Center horizontally */
    align-items: center;
    /* Center vertically */
}

/* Search bar */
.search-bar-search {
    border-color: orange;
    width: 80%;
    padding: 10px;
    font-size: 16px;
    border-radius: 20px;
    background-color: white(255, 225, 0, 0.182);
}

/* Button styling */
.search-button-search {
    border-color: orange;
    width: 20%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    color: rgb(255, 255, 255);
    border-radius: 20px;
    background-color: orange;
}

/* Hidden list by default */
.search-list-search {
    display: none;
    position: absolute;
    top: 45px;
    width: 100%;
    background-color: rgb(255, 255, 255);
    border: 1px solid #1d0606;
    max-height: 100px;
    overflow-y: auto;
}

/* List items */
.search-item-search {
    padding: 10px;
    cursor: pointer;
}

.search-item-search a {
    text-decoration: none;
    list-style-type: none;
    color: black;
}

.search-item-search:hover {
    background-color: #ffffff;
}

/* Show list when input is focused or hovered */
.search-bar-search:focus+.search-list-search,
.search-list-search:hover {
    display: block;
}

/* Links styling */

@media (max-width: 768px) {
    .search-container-search {
        margin-left: 12%;
        width: 300px;
    }
}

@media (max-width: 540px) {
    .search-container-search {
        margin-left: 12%;
        width: 300px;
    }
}

/*paragraph section*/
.paragraph-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.paragraph-content {
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.paragraph-content.paragraph-expanded {
    max-height: 200px;
    /* Adjust this value based on content length */
}

.paragraph-content.paragraph-collapsed {
    max-height: 60px;
    /* Adjust this value based on initial content height */
}

.paragraph-button {
    display: inline-block;
    padding: 10px 15px;
    margin-top: 10px;
    background-color: orange;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.paragraph-button:hover {
    background-color: orange;

}

.paragraph-button.paragraph-show {
    display: block;
}

.paragraph-button.paragraph-hide {
    display: none;
}

/*Theme*/

.theme-flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 20px;
}

.theme-flex-item {
    text-align: center;
}

.theme-flex-item img {
    width: 150px;
    height: 150px;
    object-fit: cover;
}



/*card section*/
.card-img-top {
    height: 180px;
    object-fit: cover;
}

.card {
    margin-bottom: 1rem;

}

.card1 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card1 img {
    width: 100%;

    border-radius: 10px;
}

.card2 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card3 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card4 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card5 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card6 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card7 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card8 {
    width: auto;
    display: flex;
    justify-content: space-around;
}

.card9 {
    width: auto;
    display: flex;
    justify-content: space-around;
}



/* bymonth circle section*/
.unique-circle-anchor {
    text-decoration: none;
}

.unique-circle-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px; /* Increased gap for better spacing */
}

.unique-circle-anchor {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
}

.unique-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to right, rgb(255, 140, 0) 50%, rgb(255, 165, 0) 50%); /* Gradient Orange */
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    box-shadow: 0px 5px 20px rgba(255, 140, 0, 0.6); /* Orange Glow Shadow */
    z-index: 1;
}

.unique-circle::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(to right, rgb(255, 200, 0), rgb(255, 105, 180), rgb(255, 140, 0)); /* Yellow, Pink, Orange */
    filter: blur(10px);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
    z-index: 0;
}

.unique-circle:hover::before {
    opacity: 0.9;
    transform: translateY(0);
    filter: blur(0); /* Removes blur on hover */
}

.unique-circle:hover {
    background: linear-gradient(to right, rgb(255, 200, 0) 50%, rgb(255, 165, 0) 50%); /* Yellow to Orange Gradient */
    transform: scale(1.15); /* Slightly stronger scaling effect */
    box-shadow: 0px 15px 40px rgba(255, 165, 0, 0.8); /* Stronger Orange Glow Shadow */
}

.unique-circle-text {
    color: white;
    font-size: 16px;
    text-align: center;
    z-index: 1;
    transition: color 0.4s ease;
}



/* Responsive design */
@media (max-width: 768px) {
    .unique-circle {
        width: 80px;
        height: 80px;
    }

    .unique-circle-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .unique-circle {
        width: 60px;
        height: 60px;
    }

    .unique-circle-text {
        font-size: 10px;
    }
}



/* circle */

.cir {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    margin-left: 0;
    font-family: "Josefin Sans", sans-serif;
    font-style: normal;
    size: 90%;
}

@media (max-width: 600px) {
    .cir .circle {
        width: 150px;
        height: 150px;
    }

    .cir a {
        font-size: 10px;
    }
}

.cir a {
    list-style-type: none;
    text-decoration: none;
}

.circle {
    font-size: 1rem;
    transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.27, 1.55), background-color 0.3s ease;
    width: 200px;
    height: 200px;
    background-color: #3498db;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    cursor: pointer;
    text-align: center;
    border: 8px solid transparent;
    background-image: linear-gradient(white, white), conic-gradient(red, yellow, green, cyan, blue, magenta, red);
    background-origin: border-box;
    background-clip: content-box, border-box;
}

.circle .text {
    color: rgb(0, 0, 0);
    font-size: 20px;
    font-family: Arial, sans-serif;
    position: absolute;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(0);
}

.circle:hover {
    transform: scale(1.1) rotateX(15deg) rotateY(15deg);
    background-image: linear-gradient(white, white), conic-gradient(orange, yellow, limegreen, cyan, purple, magenta, orange);
}

.circle:hover .text {
    opacity: 0;
    transform: translateY(-20px);
}

.circle::before {
    content: attr(data-hover-text);
    position: absolute;
    color: #000000;
    font-size: 20px;
    font-family: Arial, sans-serif;
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
    white-space: nowrap;
    background-color: rgba(255, 255, 255, 0.5);
    padding: 5px 10px;
    border-radius: 5px;
}

.circle:hover::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
    top: 50%;
    left: 50%;
}

@keyframes rotateGradient {
    0% {
        background-image: linear-gradient(white, white), conic-gradient(red, yellow, green, cyan, blue, magenta, red);
    }
    100% {
        background-image: linear-gradient(white, white), conic-gradient(orange, yellow, limegreen, cyan, purple, magenta, orange);
    }
}

.circle:hover {
    animation: rotateGradient 1s ease infinite;
}
.testing{
    margin-top: 40px;
}
/*text image profile*/
.backgroundprofile-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

@media(max-width:700px) {
    .blurred-backgroundprofile {
        width: auto;
    }

    .imgprofile {
        width: 50px;
    }

    .profileh5 {
        font-size: 10px;

    }

}

.blurred-backgroundprofile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/rajnath.jpg');
    background-size: cover;
    background-position: center;
    filter: blur(0px);
    z-index: 1;
    /* Background layer */
}

.color-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* Ensure full coverage */
    height: 100%;
    /* Ensure full coverage */
    background-color: rgba(24, 21, 21, 0.8);
    /* Adjust opacity */
    z-index: 10;
    /* Ensure it's on top of the blurred background */
}

.contentprofile {
    position: relative;
    z-index: 11;
    /* Ensure it's on top of the overlay */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.image-text-container {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 100%;
}

.image-text-row1,
.image-text-row2 {
    display: flex;
    justify-content: space-around;
    width: 100%;
}

.image-text-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.imgprofile {
    max-width: 70px;
    margin-bottom: 10px;
}

.txtprofile {
    color: rgb(255, 255, 255);
    /* Ensure text is readable */
    font-size: 16px;
}

.profileh5 {
    color: #000000;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;

}

/* YOUTUBE Styling */
.youtube {
    display: flex;
    justify-content: space-around;
    margin-left: 3%;
}

@media (max-width :700px) {
    .youtube {
        display: block;
        margin-top: 10%;
    }

    .youtube-container-youtube {
        width: auto;
    }
}

.youtube-carousel {
    position: relative;
    width: 800px;
    max-width: 800px;

    border: 2px solid #ddd;
    overflow: hidden;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    min-height: 500px;
    height: fit-content;
}

@media(max-width:500px) {
    .youtube-carousel {
        width: auto;
        height: auto;
    }

    .youtube-container-youtube {
        display: none;
    }
}

.youtube-carousel-slide {
    display: none;
    text-align: center;
    padding: 20px;
}

.youtube-carousel-slide img {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
}

.youtube-carousel-slide p {
    font-size: 18px;
    color: #333;
}

.youtube-active {
    display: block;
}

.youtube-carousel-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    color: white;
    font-size: 24px;
    padding: 10px;
    cursor: pointer;
    border-radius: 50%;
}

.youtube-prev {
    left: 10px;
}

.youtube-next {
    right: 10px;
}



.youtube-container-youtube {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
}

.youtube-carousel-youtube {
    display: flex;
    align-items: center;
    width: 100%;
}

.youtube-track-youtube {
    display: flex;
    transition: transform 0.3s ease-in-out;
}

.youtube-item-youtube {
    min-width: 100%;
    text-align: center;
}

.youtube-item-youtube iframe {
    width: 80%;
    height: 450px;
}

.youtube-item-youtube p {
    margin-top: 10px;
    font-size: 1.1rem;
    color: #333;
}

.youtube-prev-youtube,
.youtube-next-youtube {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 24px;
    z-index: 1;
}

.youtube-prev-youtube {
    left: 10px;
}

.youtube-next-youtube {
    right: 10px;
}

.youtube-prev-youtube:hover,
.youtube-next-youtube:hover {
    background-color: rgba(0, 0, 0, 0.8);
}





/*upper footer styling*/
.ul a:hover {
    text-decoration: none;
    color: #ffa703;
}

.h {
    width: 100%;
    border-width: 0.4rem;
}

.ul {
    padding: 0;
    margin: 0;
}

.ul ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    /* Allows items to wrap to the next line on small screens */
    justify-content: center;
    /* Center items horizontally */
}

.ul li {
    margin: 10px;
    /* Add margin for spacing */
    list-style-type: none;

}

.ul li a {
    margin: 10px;
    /* Add margin for spacing */
    list-style-type: none;
    text-decoration: none;
    color: #000000;
    font-weight: bold;

}

@media (max-width: 768px) {
    .ul ul {
        flex-direction: column;
        /* Stack items vertically */
        align-items: center;
        /* Center items horizontally */
    }

    .ul li {
        width: 100%;
        /* Full width for each item */
        text-align: center;
        /* Center text */
        margin: 5px 0;
        /* Vertical margin for spacing */
    }

    .ul img {
        width: 30px;
        /* Adjust image size for smaller screens */
    }
}


/* Footer Styling */
footer {
    background-color: darkorange;

    color: white;

    width: 100%;
    /* or any other appropriate value */




}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
}

.footer-col {
    flex: 1;
    padding: 20px;
    min-width: 250px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 20px;
    text-transform: uppercase;
}

.footer-col ul {
    list-style-type: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: darkorange;
}

.social-links a {
    margin-right: 10px;
    text-decoration: none;
    color: white;
    font-size: 20px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: darkorange;
}

.footer-bottom {
    background-color: darkorange;
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
}