/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "aileron", sans-serif;
      font-weight: 300;
  font-style: normal;
    margin: 0;
    padding: 80px 0 0; /* Adjust for fixed header */
    overflow-x: hidden;
    background-color: #000;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Header Section */
header {
    width: 100%;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 1); /* Black header background */
    color: rgb(255, 255, 255); /* White text */
    font-family:  "Anton", serif;
    font-size: 24px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
}

/* Logo */
.logo img {
    height: 80px;
}

/* Navigation Menu */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #ff652f;
}

.contact-btn {
    background-color: #ff652f;
    padding: 8px 12px;
    border-radius: 5px;
    color: white;
    font-weight: bold;
}

/* About Us Section */
.about {
    background-color: black;
    color: white;
    overflow: hidden;
    padding: 20px;
}

.about-us-img {
    width: 100%;
}

.about-us-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.heading h1 {
    color: #ee4a26 !important; /* Ensure the color is applied */
    font-size: 55px !important; /* Force the font size */
    text-align: center;
    margin-top: 35px;
    font-family:  "Anton", serif;
}

/* Container Content */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90%;
    margin:65px auto;
}

.container-content {
    flex: 1;
    margin: 20px auto;
    padding: 20px;
    max-width: 800px;
    line-height: 1.6;
    text-align: center;
    color: #ddd;
}

.container-image img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}
.affiliations {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Individual affiliation card */
.affiliation {
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Logo styles */
.logos img {
    max-width: 100px;
    margin-bottom: 15px;
}

/* Text styles */
.affiliation p {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.wrapper .card_container{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.card_container .card{
    position: relative;
    height: 300px;
    width: 300px;
    margin: 50px;
    overflow: hidden;
    box-shadow: 0 30px 30px -20px rgba(0, 0, 0, 1),
                inset 0 0 0 1000px rgba(67, 52, 109, .6);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.card .imbBx, .imbBx img{
    width: 100%;
    height: 100%;
}

.card .content{
    position: absolute;
    bottom: -160px;
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    backdrop-filter: blur(15px);
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    transition: bottom 0.5s;
    transition-delay: 0.65s;
}

.card:hover .content{
    bottom: 0;
    transition-delay: 0s;
}

.content .contentBx h3{
    text-transform: uppercase;
    color: #000000;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    margin: 20px 0 15px;
    line-height: 1.1em;
    transition: 0.5s;
    transition-delay: 0.6s;
    opacity: 0;
    transform: translateY(-20px);
}

.card:hover .content .contentBx h3{
    opacity: 1;
    transform: translateY(0);
}

.content .contentBx h3 span{
    font-size: 14px;
    font-weight: 500;
    text-transform: initial;
}

.content {
    flex: 1; /* Ensures the footer is pushed to the bottom of the page */
}

.our_team {
    width: 100%;
}

.our_team img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.footer {
    background-color: #000;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.social-icons {
    margin-bottom: 15px;
}

.social-link img {
    width: 100px;
    height: 100px;
    margin: 0 10px;
}

.contact-details p {
    margin: 5px 0;
}

.contact-details a {
    color: #fff;
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.htlogo img {
    margin-top: 30px;
    width: 400px; /* Adjust as needed */
}


/* Responsive Design */

/* Mobile Screens (max-width: 600px) */
@media (max-width: 600px) {
    header {
        flex-direction: column;
        text-align: center;
    }

    .logo img {
        height: 50px;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .heading h1 {
        font-size: 40px;
    }

    .container-content {
        padding: 10px;
    }
}

/* Tablet Screens (max-width: 1024px) */
@media (max-width: 1024px) {
    .logo img {
        height: 60px;
    }

    nav ul {
        gap: 15px;
    }

    nav ul li a {
        font-size: 15px;
    }

    .heading h1 {
        font-size: 45px;
    }

    .container-content {
        padding: 15px;
    }
}
