/* Reset */
@import url(https://db.onlinewebfonts.com/c/19580604133dfd68ae370ddc889aedab?family=Futura+Lt+BT);
@import url(https://db.onlinewebfonts.com/c/e55e9079ee863276569c8a68d776ef04?family=Futura+Md+BT+Medium);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: "Futura Md BT Medium";
    src: url("https://db.onlinewebfonts.com/t/e55e9079ee863276569c8a68d776ef04.eot");
    src: url("https://db.onlinewebfonts.com/t/e55e9079ee863276569c8a68d776ef04.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/e55e9079ee863276569c8a68d776ef04.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/e55e9079ee863276569c8a68d776ef04.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/e55e9079ee863276569c8a68d776ef04.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/e55e9079ee863276569c8a68d776ef04.svg#Futura Md BT Medium")format("svg");
}


@font-face {
    font-family: "Futura Lt BT";
    src: url("https://db.onlinewebfonts.com/t/19580604133dfd68ae370ddc889aedab.eot");
    src: url("https://db.onlinewebfonts.com/t/19580604133dfd68ae370ddc889aedab.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/19580604133dfd68ae370ddc889aedab.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/19580604133dfd68ae370ddc889aedab.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/19580604133dfd68ae370ddc889aedab.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/19580604133dfd68ae370ddc889aedab.svg#Futura Lt BT Light")format("svg");
}



body {
    font-family: "Futura Md BT Medium";
    font-size: 16px; /* Font size */
    line-height: 1.5; /* Line spacing */
    color: #333; /* Text color */
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

p{
    font-family: "Futura Lt BT";
}








/* Header Styling */
/* General Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    z-index: 3;
    width: 100%;
    background-color: white;
}

header.scrolled {
    background-color: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Logo Styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-width: 60px;
    margin-right: 10px;
    cursor: pointer;
}

h3 {
    margin: 0;
    font-size: 1.3rem;
    color: #d32f2f;
}

/* Default Navigation Links */
nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: #333;
    font-size: 1rem;
    text-decoration: none;
    padding: 8px 10px;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #d32f2f;
}

/* Enquiry Button */
header nav ul li button {
    background-color: #d32f2f;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 0.9rem;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

header nav ul li button:hover {
    background-color: #f57c00;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 10px 15px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #f1f1f1;
}

.dropdown-arrow {
    display: none;
    font-size: 0.8rem;
    margin-left: 5px;
}

.menu li:hover .dropdown-content {
    display: block;
}

/* Mobile Menu Toggle Icon */
.menu-toggle {
    display: none;
}

.menu-toggle i {
    font-size: 1.8rem;
    color: #333;
}

/* Media Query for screens between 300px and 1250px */
@media screen and (min-width: 300px) and (max-width: 1250px) {

    h3{
        font-size: 0.9rem;
    }
    /* Show the mobile menu toggle icon */
    .menu-toggle {
        display: block;
        cursor: pointer;
    }

    /* Hide the navigation links by default */
    nav ul {
        display: none; /* Nav list is hidden by default */
    }

    /* Dropdown Menu Styling for Mobile */
    nav ul.active {
        display: flex !important; /* Ensures menu shows in active state */
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 60px;
        right: 10px;
        padding: 10px 0;
        border-radius: 8px;
        width: 150px;
        z-index: 2;
        height: auto; /* Adjusted to auto for dynamic height */
    }

    /* Navigation Links for Dropdown */
    nav ul.active li {
        margin: 0;
        width: 100%;
        text-align: center;
    }

    nav ul.active li a {
        color: black;
        font-weight: bold;
        font-size: 1rem;
        text-decoration: none;
        padding: 10px;
        display: block;
        width: 100%;
    }

    nav ul.active li a:hover {
        color: #f57c00; /* Highlight color on hover */
    }
    
    .dropdown-arrow {
        display: inline-block;
        cursor: pointer;
    }

    .dropdown-content {
        display: none;
        position: static;
        box-shadow: none;
        background-color: transparent;
        min-width: auto;
    }

    .dropdown-content a {
        background-color: white;
        border-bottom: 1px solid #ddd;
        text-align: center;
    }

    .dropdown-content a:hover {
        background-color: #f1f1f1;
    }

    .login-dropdown.active .dropdown-content {
        display: block;
    }
    
    .menu li:hover .dropdown-content {
        display: block;
    }
}



/* this is for all pages except index page */

.heading {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/3.jpeg');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    text-align: center;
}

.heading h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: slideInLeft 1s ease-in-out;
}

.heading p {
    font-size: 1.2rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeUp 1s ease forwards;
}

/* bottom button */

.bottom-button {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.bottom-button a {
    display: inline-block;
    padding: 15px 30px;
    background-color: #eda800;
    color: #fff;
    font-weight: 900;
    font-size: 1.6em;
    word-spacing: 5px;
    width: 70%;
    text-align: center;
    text-decoration: none;
    border-radius: 25px; /* Rounded corners */
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

.bottom-button a:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}


.contest {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.contest a {
    display: inline-block;
    padding: 15px 30px;
    font-size: 3.6em;
    word-spacing: 5px;
    width: 70%;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    font-family: "Roboto Slab", serif;
    font-weight: 800; /* Fixed the line: font-weight: weight; → not valid */
    font-style: normal;
    color: #000; /* optional: ensure color is set */
}

.contest a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* optional for nice effect */
}



/* whatsapp chat */
.whatsapp-button {
    position: fixed;
    bottom: 100px;
    right: 50px;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: 0.3s ease;
    animation: zoomInOut 0.8s infinite; /* Faster animation */
}

/* Text inside the button */
.whatsapp-button img {
    margin: 0;
}

/* Hover effect for the button */


/* Keyframes for the zoom in and out animation */
@keyframes zoomInOut {
    0%, 100% {
        transform: scale(1); /* Original size */
    }
    50% {
        transform: scale(1.1); /* Zoom in */
    }
}




        /* Style for the Chatbot Button */
        .chatbot-button {
            position: fixed;
            bottom: 5px;
            right: 90px;
            z-index: 19;
            box-shadow: #d32f2f 2px;
        }

        .chatbot-button img {
            width: 100px;
            height: auto;
        }


        /* Media Queries for WhatsApp and Live Chat Buttons */

/* 1000px */
@media (max-width: 1000px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 900px */
@media (max-width: 900px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 800px */
@media (max-width: 800px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 700px */
@media (max-width: 700px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 600px */
@media (max-width: 600px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 500px */
@media (max-width: 500px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
        width: 20px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
        width: 20px;
    }
}

/* 400px */
@media (max-width: 400px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 300px */
@media (max-width: 300px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 200px */
@media (max-width: 200px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}

/* 100px */
@media (max-width: 100px) {
    .whatsapp-button {
        bottom: 100px;
        right: 50px;
    }
    .chatbot-button {
        bottom: 5px;
        right: 90px;
    }
}



        /* Normal footer styles */
.footer {
    background-color: #5a7585;
    color: white;
    padding: 40px 0; /* Increase padding to improve spacing */
}

.footer-content {
    display: flex;
    justify-content: space-between; /* Spread out the columns */
    align-items: flex-start;
    max-width: 1200px;
    margin: auto;
    padding: 0 20px;
    gap: 20px; /* Add space between columns */
}


/* Company Info Section */
.company-info {
    flex: 1;
    display: flex;
    align-items: center; /* Align logo and text vertically */
    gap: 15px; /* Space between logo and text */
}

.company-info .logo {
    width: 50px;
    margin-top: -22%;
}

.company-info h2 {
    font-size: 1.2em;
    margin: 0;
    color: white;
}

.company-info p {
    font-size: 0.9em;
    line-height: 1.5;
    color: whitesmoke;
    margin-top: 10px; /* More spacing between elements */
}

/* Footer Links Section */
.footer-links {
    text-align: center;
    flex: 1;
    border-left: 2px dotted white; /* Vertical dotted line between sections */
    padding-left: 20px; /* Space between the line and content */
}

.footer-links a {
    display: block;
    color: white;
    text-decoration: none;
    margin: 8px 0; /* Adjust spacing between links */
    font-size: 0.9em;
}

/* Contact Info Section */
.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    color: white;
    margin-top: 10px;
    margin-left: 30px;
    border-left: 2px dotted white; /* Vertical dotted line between sections */
    padding-left: 40px; /* Space between the line and content */
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-icon {
    width: 28px; /* Adjust icon size */
    height: 28px;
    margin-right: 10px;
    margin-top: 0px;
}

.contact-info p {
    font-size: 1em;
    color: white;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons img {
    width: 44px; /* Size of social icons */
    height: 44px;
    transition: transform 0.3s; /* Smooth hover effect */
}

.social-icons img:hover {
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* Footer Bottom */
.footer-bottom {
    background-color: #c9d8e1;
    color: black;
    display: grid;
    place-items: center;
    height: 50px;
}

.footer-bottom p {
    margin: 0;
    padding: 0;
    font-size: 1.2em;
    text-align: center;
}

/* Responsive adjustments */

/* 700px and below - Center all footer sections and adjust font sizes */
@media (max-width: 700px) {
    .footer-content {
        flex-direction: column; /* Stack sections vertically */
        align-items: center; /* Center-align the sections */
        text-align: center;
    }

    .company-info, .footer-links, .contact-info {
        flex: none;
        width: 100%; /* Each section takes full width */
        margin-bottom: 20px; /* Add spacing for each section */
        border-left: none; /* Remove border on small screens */
        padding-left: 0; /* Remove padding on small screens */
    }

    .company-info h2 {
        font-size: 1.1em; /* Slightly smaller font for smaller screens */
    }

    .company-info p {
        font-size: 0.85em; /* Adjust font size for readability */
    }

    .footer-links a {
        font-size: 0.9em; /* Adjust font size for links */
    }

    .contact-info p {
        font-size: 0.9em; /* Adjust font size for contact info */
    }
}

/* 600px and below */
@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info, .footer-links, .contact-info {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
        border-left: none;
        padding-left: 0;
    }

    .company-info h2 {
        font-size: 1em;
    }

    .footer-links a {
        font-size: 0.85em;
    }

    .contact-info p {
        font-size: 0.85em;
    }
}

/* 500px and below */
@media (max-width: 500px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info, .footer-links, .contact-info {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
        border-left: none;
        padding-left: 0;
    }

    .company-info h2 {
        font-size: 0.95em;
    }

    .footer-links a {
        font-size: 0.85em;
    }

    .contact-info p {
        font-size: 0.85em;
    }
}

/* 400px and below */
@media (max-width: 400px) {
    .footer-bottom{
        height: 80px;
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info, .footer-links, .contact-info {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
        border-left: none;
        padding-left: 0;
    }

    .company-info h2 {
        font-size: 0.9em;
    }

    .footer-links a {
        font-size: 0.8em;
    }

    .contact-info p {
        font-size: 0.8em;
    }
}

/* 300px and below */
@media (max-width: 300px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .company-info, .footer-links, .contact-info {
        flex: none;
        width: 100%;
        margin-bottom: 20px;
        border-left: none;
        padding-left: 0;
    }

    .company-info h2 {
        font-size: 0.85em;
    }

    .footer-links a {
        font-size: 0.75em;
    }

    .contact-info p {
        font-size: 0.75em;
    }
}


