/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

/* Global Styles */
* {
   
    /* Resetting default margin, padding, and box-sizing */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    /* Body Styles */
    background: rgba(246, 227, 216, 0.267);
    font-family: 'poppins', sans-serif;
    line-height: 1.5;
    min-height: 200vh;
}

/* Banner Styles */
.banner {
    /* Full-screen background image */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    background: #000000;
    z-index: -1;
    padding-bottom: 100%;
}

/* Header Styles */
header {
    /* Main header container */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.6s;
    padding: 20px 100px; /* Adjusted padding for the header */
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 1000; /* Adjusted z-index */
}

/* Sticky Header Styles */
header.sticky {
    /* Sticky header styles */
    padding: 10px 100px; /* Adjusted padding for sticky header */
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); /* Shadow effect, looks cool */
    backdrop-filter: blur(10px);  /* Used for creating a blur effect */
}

/* Logo Styles */
header .logo {
    /* Brand logo styles */
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.6s;
}

/* Header Navigation Styles */
header ul {
    /* Main navigation container */
    display: flex;
    align-items: center;
}

/* Header Navigation Items Styles */
header ul li {
    /* Main navigation item styles */
    position: relative;
    list-style: none;
}

/* Header Navigation Item Styles */
header ul li:hover ul {
    /* Sub-menu display on hover */
    display: block;
}

/* Header Navigation Item Link Styles */
header ul li a {
    /* Main navigation link styles */
    text-decoration: none;
    color: #fff;
    padding: 10px 15px; /* Adjusted padding for menu items */
    transition: 0.2s;
}

/* Hover Effect for Header Navigation Items */
header ul li a:hover {
    /* Hover effect for main navigation items */
    background: #9f9e9ecc;
    border-radius: 20px;
    color: #fff;
}

header.sticky .logo,
header.sticky ul li a {
    /* Styles for logo and navigation links when header is sticky */
    color: #000;
}

/* Dropdown Menu Styles */
header ul ul {
    /* Dropdown menu container */
    position: absolute;
    top: 150%;
    left: 0;
    background: #000;
    display: none;
    padding: 10px 0;
    z-index: 1000;
    border-top: 2px solid #7e7e7e; /* Optional: border for dropdown */
    width: 100%;
}

/* Dropdown Items Styles */
header ul ul li {
    /* Dropdown menu item styles */
    text-align: center;
}

/* Dropdown Item Styles */
header ul ul li a {
    /* Dropdown menu item link styles */
    display: block;
    padding: 10px 0; /* Adjusted padding for dropdown items */
    color: #fff;
    transition: 0.3s;
}

/* Hover Effect for Dropdown Items */
header ul ul li a:hover {
    /* Hover effect for dropdown items */
    background: #7e7e7e;
    border-radius: 20px;
    color: #000;
}

/* Display Dropdown on Hover */
header ul li:hover > ul {
    /* Display dropdown on parent item hover */
    display: block;
}

.carousel-item {
    /* Carousel item styles */
    height: 32rem;
    background-color: rgb(158, 158, 158);
    color: rgb(0, 0, 0);
    position: relative;
}

.container {
    /* Main container styles */
    bottom: 0;
    column-count: 2;
    left: 0;
    right: 0;
    padding-bottom: 50px;
}

.overlay-image {
    /* Overlay image styles */
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background-position: center;
    background-size: relative;
    opacity: 0.6;
}

/* Card Container Styles */
.card-container {
    /* Container for cards */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.card {
    /* Individual card styles */
    width: 325px;
    background-color: #000000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0px 2px rgba(110, 106, 106, 0.2) 0.2;
    margin: 10px;
    transition: transform 0.6s ease;
}

.card:hover {
    /* Hover effect for card */
    transform: translateY(-30px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card img {
    /* Image inside card */
    width: 100%;
    height: 400px;
}

.card-content {
    /* Content inside card */
    padding: 30px;
    color: #fff;
}

.card-content h2 {
    /* Heading inside card */
    font-size: 20px;
    margin-bottom: 5px;
}

.card-content p {
    /* Text content inside card */
    font-size: 10px;
    line-height: 1.8;
}

.card-container a {
    /* Action button inside card container */
    padding: 15px;
    background-color: #fff;
}

.card-container :hover a {
    /* Hover effect for action button */
    background-color: #ffbd86fd;
}

.card-content .btn {
    /* Button inside card content */
    display: inline-block;
    padding: 8px 8px;
    padding-top: 10px;
    background-color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 20px;
}
.row{
    display: flex;
    flex-wrap: wrap;
}
ul{
    list-style: none;
}
.footer{
    background-color: #000;
    padding: 50px 0;
    align-items: center;
    border-bottom: 2px;
}
.footer-col{
    width: 50%;
    padding: 0 5px;
}
.footer-col h5{
    font-size: 30px;
    color: #fff;
    text-transform: capitalize;
    padding: 3px;
    
    align-items: center;
    margin-bottom: 35px;
    font-weight: 300;
    position: relative;
}
.footer-col h5::before{
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    background-color: #fa7b20;
    box-sizing: border-box;
    width: 53px;
}
.footer-col ul li:not(:last-child){
    margin-bottom: 2px;
}
.footer-col ul li a{
    font-size: 30px;
    text-transform: capitalize;
    color: #ffffff;
    text-decoration: none;
    font-weight: 200;
    color: #adadadbd;
    display: block;
    transition: all 0.3s ease;
}
.footer-col ul li a:hover{
    color: #fa7b20;
}
.social-icons {
    /* Social icons container */
    display: flex;
    list-style-type: none;
    padding-left: 0;
}

.social-icons li {
    /* Individual social icon styles */
    margin-right: 10px;
}

.social-icons a {
    /* Social icon link styles */
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    /* Hover effect for social icons */
    color: #fa7b20;
}

.footer-links li a {
    /* Link in footer */
    color: #fff;
    text-decoration: none;
}

.footer-links li a:hover {
    /* Hover effect for links in footer */
    color: #aaa;
    text-decoration: underline;
}