html {
    scroll-behavior: smooth;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}
.head {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0px;
    text-align: center;
    font-size: 18px;
    z-index: 1000;
}

body {
    background-color: #f8f9fa;
    color: #fdfdfd;
    padding-top: 30px; /* Add padding to prevent content from being hidden behind the fixed header */
}

.header-top {
    background-color: #d63384; 
    color: white;
    text-align: right;
    padding: 10px 0; 
    font-size: 14px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(58, 58, 58, 0.266);
}

.header-container {
    position: fixed;
    width: 100%;
    margin-top: 20px; /* Adjust for the height of the header-top */
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 15px 5%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.logo {
    display: flex;
    align-items: center;
    top: 12px;
    bottom: 0px;
    position: relative;
}

.logo img {
    width: 180px;
    height: 80px;
    margin-right: 10px;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    padding-top: 20px;
    margin-left: 20px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #d63384;
}

.header-top p {
    position: relative;
    right: 10px;
    color: #ffffff;
}
/* Responsive Styles */
@media (max-width: 768px) {
    .header-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 20px 5%;
    }

    .logo img {

        width: 140px;
        height: auto;
    }

    nav {
        border-left: 4px solid#d63384 ;
        position: absolute;
        top: 100%;
        right: 0;
        width: 60%; /* adjust as needed */
        background-color: rgb(255, 255, 255);
        display: none;
        flex-direction: column;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    nav.show {
        display: flex;
    }

    nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    nav ul li {
        margin: 10px 0;
        padding: 0 15px;
    }

    .menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        position: absolute;
        right: 20px;
        padding-top: 20px;
        top: 30px;
        z-index: 1001;
    }

}


@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
}



.banner {
    position: relative;
    background: #1f4b66; /* Dark Blue */
    color: white;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    padding: 30px 0;
    margin-top: 100px;
}

.ribbon-left, .ribbon-right {
    position: absolute;
    top: 50%;
    width: 80px;
    height: 30px;
    background: linear-gradient(to right, #ff66b2, #ff3385);
    transform: translateY(-50%);
}

.ribbon-left {
    width: 50px;
    left: -30px;
    clip-path: polygon(0% 0%, 80% 0%, 100% 50%, 80% 100%, 0% 100%);
}

.ribbon-right {
    width: 50px;
    right: 0px;
    clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 20% 100%, 0% 50%);
}

/* Responsive Styles */
@media screen and (max-width: 768px) {
    .banner {
        font-size: 20px;
        padding: 20px 0;
        margin-top: 100px;
    }

    .ribbon-left, .ribbon-right {
        width: 60px;
        height: 20px;
    }

    .ribbon-left {
        width: 40px;
        left: -20px;
    }

    .ribbon-right {
        width: 40px;
        right: -20px;
    }
}

@media screen and (max-width: 480px) {
    .banner {
        font-size: 18px;
        padding: 45px 0;
        margin-top: 60px;
    }

    .ribbon-left, .ribbon-right {
        width: 50px;
        height: 15px;
    }

    .ribbon-left {
        width: 30px;
        left: -15px;
    }

    .ribbon-right {
        width: 30px;
        right: -15px;
    }
}

/*tiles*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 20px;
    justify-items: center;
}

/* Tile Styles */
.tile {
    width: 400px; /* Reduced width from 450px */
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    position: relative;
    border: 3px solid transparent;
    display: flex;
    flex-direction: column; /* Ensures image and caption stack vertically */
}

.tile:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    border-color: #64b5f6;
}

.tile-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.tile img {
    width: 100%;
    height: 250px; /* Reduced height from 300px */
    object-fit: cover;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
}

.caption {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffffff, #e3f2fd);
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}

.caption h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 8px;
}

.caption p {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
    }

    .tile {
        width: 90%; /* Responsive width */
    }

    .tile img {
        height: 200px; /* Smaller image height on mobile */
    }

    .caption h3 {
        font-size: 18px;
    }

    .caption p {
        font-size: 13px;
    }
}
/*footer*/
.top-bar {
    background: black;
    color: white;
    padding: 20px 0;
    position: relative;
    width: 100%;
}

/* Container for Footer Layout */
.top-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    gap: 40px;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding: 0 20px;
}

/* Logo Styling */
.brand-logo img {
    width: 180px;
    height: auto;
    margin-right: 20px; /* Push content slightly right */
    margin-left: -20px;  /* Pull logo slightly left */
}

/* Navigation Menu */
.navigation {
    display: flex;
    flex: 1;
    justify-content: flex-end;
    gap: 60px; /* More gap between columns */
}

/* Columns Inside Navigation */
.footer-column {
    min-width: 200px;
    gap: 20px;
}

/* Column Header Styling */
.footer-column h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: white;
}

/* List Style for Footer Menu */
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
    font-size: 16px;
    color: #ccc;
}

/* Links in Footer */
.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #ed2876;
}

/* Contact Section Styling */
.contact-number {
    font-size: 16px;
    font-weight: bold;
    color: #fff;
}

.email-link {
    color: #ed2876;
    text-decoration: none;
    font-size: 16px;
}

.email-link:hover {
    text-decoration: underline;
}

/* Bottom Wave Effect */
.bottom-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to right, rgb(208, 0, 139), #ed2876);
    clip-path: ellipse(60% 100% at 50% 100%);
}

/* Responsive Design */
@media (max-width: 768px) {
    .top-container {
        flex-wrap: wrap;
        gap: 30px;
        padding: 0 15px;
    }

    .brand-logo {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .brand-logo img {
        width: 140px;
        height: auto;
        margin: 0 auto;
    }

    .navigation {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 30px;
        width: 100%;
    }

    .footer-column {
        min-width: 160px;
        text-align: center;
    }

    .footer-column h4 {
        font-size: 18px;
    }

    .footer-column ul li {
        font-size: 14px;
    }
}


