/* CSS Reset */

@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: rgba(0, 128, 128, 1);
    --dark-primary-color: #005151;
    --secondary-color: rgba(255, 99, 3, 1);
    --light-color: rgb(214, 230, 230);
    --dark-color: #343a40;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

body {
font-family: Arial, Helvetica, sans-serif;
overflow-x: hidden;
}

p {
    font-size: 1rem;
    line-height: 1.5;
    
   
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
   
}

/* General Header Styles */
header {
background-color: #f8f9fa;
padding: 1rem 0;
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}

/* Navbar Styles */
.navbar-nav {
flex-direction: column;
}
.navbar-nav .nav-item {
margin: 0.5rem 0;
}

/* Navbar Collapse */
.navbar-collapse {
background-color: #f8f9fa;
}
.navbar-collapse .nav-link {
color: black;
transition: color 0.3s ease-in-out;
text-wrap: nowrap !important;
white-space: nowrap !important;
}
.navbar-collapse .nav-link:hover,
.navbar-collapse .nav-link.active,
.navbar-collapse .nav-link:focus {
color: var(--primary-color);
font-weight: bold;
}





/* Remove default focus styles */
.navbar-collapse .nav-link:focus,
.navbar-collapse .nav-link:focus-visible,
.dropdown-menu .dropdown-item:focus,
.dropdown-menu .dropdown-item:focus-visible {
outline: none;
box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}
.navbar-collapse .nav-link:focus:not(:focus-visible),
.dropdown-menu .dropdown-item:focus:not(:focus-visible),
.navbar-collapse .nav-link:focus-visible:not(:focus),
.dropdown-menu .dropdown-item:focus-visible:not(:focus) {
box-shadow: none;
}

/* Dropdown Menu */
.dropdown-menu {
min-width: 100px !important;
}
.dropdown-menu .dropdown-item {
display: flex;
align-items: center;
transition: background-color 0.3s ease-in-out;
}
.dropdown-menu .dropdown-item img {
width: 20px;
height: 20px;
margin-right: 8px;
}
.dropdown-menu .dropdown-item:hover {
background-color: #f8f9fa;
}

/* Navbar Toggler */
.navbar-toggler {
border: none;
background: none;
padding: 10px;
cursor: pointer;
}

/* Hamburger Icon */
.toggler-icon {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 24px;
width: 30px;
position: relative;
}

/* Individual Bars */
.toggler-icon span {
background-color: black;
height: 4px;
width: 100%;
border-radius: 2px;
position: absolute;
transition: transform 0.4s ease-in-out, opacity 0.2s ease-in-out;
}

/* Bar Positions */
.toggler-icon span:nth-child(1) {
top: 0;
}
.toggler-icon span:nth-child(2) {
top: 50%;
transform: translateY(-50%);
}
.toggler-icon span:nth-child(3) {
bottom: 0;
}

/* Transform bars into 'X' */
.navbar-toggler:not(.collapsed) .toggler-icon span:nth-child(1) {
transform: rotate(45deg);
top: 50%;
}
.navbar-toggler:not(.collapsed) .toggler-icon span:nth-child(2) {
opacity: 0;
}
.navbar-toggler:not(.collapsed) .toggler-icon span:nth-child(3) {
transform: rotate(-45deg);
bottom: 50%;
}

/* Remove default Bootstrap focus styles */
.navbar-toggler:focus,
.navbar-toggler:active {
outline: none;
box-shadow: none;
}

.toggler-icon span {
background-color: var(--primary-color) !important;
}


nav .lg-menu-item li {
display: flex;
gap: 1rem;
font-size: 1.2rem;
color: black;
padding: 0.5rem 1rem;
text-decoration: none;

transition: background-color 0.3s ease-in-out;
}

nav .lg-menu-item li:hover {
background-color: var(--primary-color);
color: white !important;

}

nav .lg-menu-item li:hover a {
color: white !important;
text-decoration: none;
}


.menu-link a {
text-wrap: nowrap !important;
white-space: nowrap !important;
}




.active-menu {
background-color: var(--primary-color) !important; /* Change to your primary color */
color: white !important;
}

.active-menu a {
color: white !important; 
text-decoration: none;
}




/* make language dropdown to be same width as parent */
.language-dropdown {
            width: 100%;
            text-align: end;
        }
        .language-dropdown .dropdown-toggle {
            width: 100%;
            text-align: end;
        }
        .language-dropdown .dropdown-menu {
            width: 100%;
            text-align: end;
        }

        .language-dropdown button:focus {
            border: 0 !important;
            outline: 0 !important;
        }
        .language-dropdown .dropdown-item {
            text-align: end;
        }
        .language-dropdown .dropdown-item img {
            width: 20px;
            height: 20px;
            margin-right: 8px;
        }
        .language-dropdown .dropdown-item:hover {
            background-color: #f8f9fa;
        }
        /* remove focus styles from dropdown items */
        .language-dropdown .dropdown-item:focus,
        .language-dropdown .dropdown-item:focus-visible {
            outline: none;
            box-shadow: none;
        }

       #selectedFlag, #selectedFlagMobile {
            width: 25px; height: 25px; border-radius: 50px;
        }

        .dropdown-menu {
            max-width: 70px !important;
        }

        .dropdown-menu li a img {
            width: 25px; height: 25px; border-radius: 50px;
        }
        


        @media (max-width: 768px) {
            
            .sm-laguage {
                display: block !important;
            }

            .lg-language {
                display: none !important;
            }
        }





        @media (max-width: 1050px) {
            .lg-menu-item {
                gap: 0.3rem !important
            }
        
            .lg-menu-item li {
                padding: 0.2rem 0.5rem !important;
            }
        }
        
        
        @media (max-width: 768px) {
        .menu-link {
        margin: 0 !important;
        }
        }

        


/* Hero section starts here */

.hero-section {
    margin-top: 9rem;
    height: max-content;
    min-height: 100vh; /* Full viewport height */
    background: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
                url('/assets/img/home-bg.jpg') center/cover no-repeat;
    background-position: top;
}



.hero-section .btn-home {
    background-color: var(--primary-color);
    color: white;
    padding: 0.6rem 2.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px;
    border: solid 1px white;
    text-wrap: nowrap;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

}
.hero-section .btn-home:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.hero-section .btn-home2 {
    background-color: white;
    color: var(--primary-color);
    padding: 0.6rem 2.5rem;
    font-size: 1.25rem;
    font-weight: bold;
    border-radius: 50px;
    border: solid 1px white;
    text-wrap: nowrap;
    transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;

}
.hero-section .btn-home2:hover {
    background-color: var(--secondary-color);
    color: white;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh !important;
        padding: 2rem 1rem;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .hero-section h2 {
        font-size: 1.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
    .btn-lg {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}



/* Welcome Section starts here */
/* General Section Styling */
.welcome-section {
padding: 60px 10px;
text-align: center;
max-width: 1200px;
margin: auto;
}

/* Title Styling */
.welcome-title1 {
text-align: left;
font-size: 40px;
margin-bottom: 5px;
position: relative;
line-height: 50px;
display: flex;
align-items: center;
}

.circle {
width: 55px;
height: 55px;
background-color: var(--light-color, #ddd);
border-radius: 50%;
display: inline-block;
position: absolute;
left: -15px;
top: 5px;
transform: translateY(-50%);
z-index: -1;
}



.welcome-title2 {
font-size: 60px;
font-weight: bold;
color: black;
margin-bottom: 20px;
position: relative;
}

.welcome-title2::after {
content: '';
display: block;
width: 50px;
height: 3px;
background-color: black;
margin: 20px 0 40px;

}

/* Content Layout */
.welcome-content {
display: flex;
gap: 30px;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
max-width: 1100px;
margin: 0 auto;
text-align: left;
}

/* Text Column */
.welcome-text {
flex: 1;
max-width: 50%;
padding-right: 20px;

}

.welcome-text p {
font-size: 18px;
color: black;
line-height: 2;

}

/* Button */
.about-btn {
display: inline-block;
margin-top: 15px;
padding: 12px 40px;
background-color: var(--dark-primary-color, #333);
color: #fff;
text-decoration: none;
transition: 0.3s;
font-weight: bold;
text-wrap: nowrap;

}

.about-btn:hover {
background-color: var(--secondary-color, #555);
color: white;
}

/* Image Column */
.welcome-image {
flex: 1;
max-width: 50%;
text-align: right;
}

.welcome-image img {
max-width: 100%;
height: auto;
border-radius: 8px;
}




/* Vertical Line Section */
.vertical-line-section {
position: relative;
height: 22vh; /* Full viewport height */

}
.vertical-line-left {
position: absolute;
top: 0;
left: 30%;
width: 1px; /* Width of the vertical line */
height: 100%;
background-color: black;

}

.vertical-line-right {
position: absolute;
top: 0;
left: 70%;
width: 1px; /* Width of the vertical line */
height: 100%;
background-color: black;

}

.sm-btn {
    display: none;
}



/* Responsive Design */
@media (max-width: 991px) {
.welcome-title1 {
    font-size: 35px;
}
.welcome-title2 {
    font-size: 40px;
}
.welcome-content {
    flex-direction: column;
    text-align: left;
}
.welcome-text {
    max-width: 100%;
    padding: 0 !important;
}
.welcome-image {
    max-width: 100%;
    text-align: center;
    margin-top: 20px;
}

/* reverse column order on mobile */
.mobile-reverse {
    flex-direction: column-reverse;
}

.vertical-line-section {
    height: 18vh; /* Adjust height for mobile */
}



.lg-btn {
    display: none;
}
.sm-btn {
    display: block;
}
/* footer media queries */
footer {
    padding: 1rem 0;
}

footer .footer-first {
    flex-direction: column;
    align-items: center;
}

footer .my-footer-buttons {
    width: 100%;
    margin-top: 1rem;
    padding: 0.5rem 0;
    border: none !important;
}
footer .my-footer-buttons a {
    width: 100% !important;
    text-align: center;
    padding: 0.5rem 0;  
    margin: 0.5rem 0;
    text-wrap: nowrap;
}


/* // footer icons media queries */
footer .footer-icons {
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

footer .footer-icons .logo-div {
    margin-right: 0 !important;
    padding-right: 0 !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    text-align: center;
    margin-top: 1rem;

}

footer .logo-div img {
    margin-right: 0 !important;
    padding-right: 0 !important;
}
}


/* footer styles */


footer {
    background-color: var(--dark-primary-color);
    color: white;
    padding: 2rem 0;
    overflow-x: hidden;
}
footer h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white !important;
}

footer h1::after {
    background-color: white !important;
}
footer p {
    font-size: 1.25rem;
    line-height: 1.5;
    width: 80%;
}

footer .footer-icons a, footer .footer-first a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}
footer a:hover {
    color: var(--light-color);
}
footer .my-footer-buttons a {
    margin-top: 1rem;
    padding: 0.75rem 2rem;
    /* background-color: var(--secondary-color); */
    color: white;
    text-decoration: none;
    /* border-radius: 50px; */
    transition: background-color 0.3s ease-in-out;
    min-width: fit-content;
}
footer .my-footer-buttons a:hover {
    background-color: var(--secondary-color)
    /* color: var(--primary-color); */
}

footer .social {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    height: fit-content;
    
}

/* footer .social .icons {
    display: flex;
    gap: 1rem;
    background-color: white;
    
} */

.icons,
.empty-space {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: auto; /* Adjusts to content */
    height: 100%; /* Makes sure both divs are of equal height */
    background-color: white;
    padding: 4px 20px;
    min-height: 50px;
}

.empty-space {
background-color: var(--secondary-color);
width: 30vw; /* Makes it 30% of the viewport width */
max-width: 300px; /* Ensures it does not exceed 300px */
min-width: 100px; /* Ensures a reasonable minimum width */
}


footer .social .icons a {
    font-size: 1.5rem;
    color: white;
    background-color: black;
    padding: 8px; /* Increased padding for a better circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;  /* Ensures perfect circle */
    height: 35px; /* Ensures perfect circle */
    transition: transform 0.3s ease-in-out, background-color 0.3s;
}

footer .social .icons a:hover {
    transform: scale(1.1);
    background-color: var(--secondary-color); /* Optional color change */
}

footer .social .icons a i {
    margin-right: 0; /* Removed unnecessary margin */
    font-size: 15px;
}

footer .policies {
    margin-top: 1rem;
}

footer .policies a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease-in-out;
    padding: 0 1rem;
    text-wrap: nowrap;
}

footer .policies a:hover,
footer .copyright a:hover {
    color: var(--secondary-color) !important;
}

.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright img {
    height: 30px;
}



/* Adjust for smaller screens */
@media (max-width: 768px) {
    .empty-space {
        width: 50vw; /* Increase width to 50% on smaller screens */
        max-width: 250px; /* Reduce max width slightly */
        display: none;
    }

    footer .social {
        flex-direction: column !important;
        width: 100vw !important;
    }
    footer .social .icons {
        width: 100% !important;
        justify-content: center;
        
    }

    footer .bottom-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }
    footer .policies a{
        padding: 0;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .empty-space {
        width: 80vw; /* Increase width to 80% for very small screens */
        max-width: 100px; /* Reduce max width further */
        display: none;
    }

    footer .my-footer-buttons {
        width: 80% !important;
    }
}





/*****************************************************************************************************************


ABOUT PAGE 



**********************************************************************************************************************/


    /* Vertical Sidebar */
.vertical-sidebar {
    position: fixed;
    left: 3%;
    top: 0;
    width: 5vw;
    height: 100vh;
    background-color: var(--dark-primary-color);
    z-index: -3;
}

/* Push main content to the right of the sidebar */
.content-wrapper-about {
   
    width: 80%;
    overflow-x: hidden;
    margin: auto;
    margin-left: 10%;
    margin-top: 2rem;
    padding: 20px;
}


/* Hero Section */
.hero-otherpages {
    background-image: url('/assets/img/about-bg.png');
    background-size: cover;
    background-position: center;
    height: 320px;
    margin-top: 8.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    position: relative;
    z-index: -2;
}




/* Button Navigation */
.scroll-btn {
    padding: 13px;
    /* margin: 5px; */
    border: none;
    cursor: pointer;
    background-color: var(--dark-primary-color);
    transition: background 0.3s ease;
    color: white;
    font-size: 15px;
    min-width: 200px;
    text-wrap: nowrap;
}

.scroll-btn.scroll-active {
    background-color: var(--secondary-color);
    color: black;
}

.navigation {
    justify-content: center !important;
}

@media (max-width: 768px) {
    .scroll-btn {
        min-width: 270px;
        text-align: left;
    }
}



/* Content Sections */
.about-content-section {
    height: min-content; /* Adjust based on content */
    
    /* border-bottom: 1px solid #ccc; */
}


.about-content-section .raw-heading {
    font-size: calc(2rem + 1vw);
    margin-bottom: 20px;
    font-weight: 700;
    margin-top: 2rem;
    padding-top: 4rem
}

.about-content-section .raw-heading::before {
    content: '';
    display: inline-block;
    width: 70px;
    height: 5px;
    background-color: black;
    margin-bottom: 15px;
    
    margin-right: 10px;
}


.about-content-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 8%;
}

.about-content-section .light-box {
    background-color: var(--light-color);
    
    margin: 20px 8%;
    padding: 10px;
    margin-bottom: 7rem;
}

 .small-title {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding: 1rem 2rem;
    font-weight: 700;
}

 .small-title::after {
    content: '';
    display: block;
    width: 70px;
    height: 3px;
    background-color: black;
    margin: 10px 0 20px;
    
}

.about-content-section .light-box p {
    
    padding: 0 2rem 2rem 2rem;
    margin-left: 0;
 
}

.about-content-section .parent-light-box {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 8%;
    
}

.about-content-section .parent-light-box .light-box {
    margin: 0;
    padding: 10px;
    margin-bottom: 0;
}


.bottom-light-box {
        background-color: var(--light-color);
        text-align: center;
    }

    .bottom-light-box p {
        font-size: 1.2rem;
    }

    .bottom-light-box p a {
        text-decoration: none;
        color: var(--primary-color);

    }

    @media (max-width: 868px) {
        .content-wrapper-about {
            width: 100%;
        }

        .raw-heading {
            font-size: 25px !important;
        }

        .about-content-section .raw-heading::before {
            content: '';
            display: inline-block;
            width: 40px;
            height: 5px;
            background-color: black;
            margin-bottom: 5px;
            
            margin-right: 10px;
        }

        .content-wrapper-about {
            width: 90%;  /* Reduce width slightly */
            
            margin-right: auto;
            padding: 20px;
            padding-right: 10px;
        }

        .parent-light-box .light-box {
            margin-right: 2rem !important;
        }
    }






    /* POLICIES */

        .privacy-policy p, li {
            font-size: 18px;
            line-height: 1.9;
            color: black;
        }

        .privacy-policy h2 {
            font-weight: bold;
            font-size: 30px;
            color: var(--dark-primary-color);
            margin-top: 3rem;
        }

        .privacy-policy a {
            text-decoration: none;
            color: var(--primary-color);
        }




        /* Toast Container */
#toast-container {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Toast Message */
.toast-message {
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    font-size: 16px;
    min-width: 250px;
    text-align: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    
    position: relative;
    bottom: -50px; /* Initially hidden below the viewport */
    opacity: 0;
    transition: bottom 0.5s ease-in-out, opacity 0.5s ease-in-out;
}

/* Show Animation */
.toast-message.show {
    bottom: 0px;
    opacity: 1;
}

/* Toast Types */
.toast-message.success {
    background-color: var(--dark-primary-color); /* Green */
}

.toast-message.danger {
    background-color: red; /* Red */
}

.toast-message.info {
    background-color: #007bff; /* Blue */
}

.toast-message.warning {
    background-color: #ffc107; /* Yellow */
}


label:after {
    content: "*";
    display: inline-block;
    margin-left: 3px;
    color: var(--secondary-color);

}




/* //FLOATING BUTTONS */

 /* Floating Button Container */
 .floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}

/* Common button styles */
.floating-buttons a,
.scroll-to-top {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #25D366; /* WhatsApp green */
    color: white;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.floating-buttons a:hover,
.scroll-to-top:hover {
    transform: scale(1.1);
}

/* WhatsApp button */
.whatsapp-btn {
    background-color: #25D366; /* WhatsApp green */
}

/* Scroll-to-top button */
.scroll-to-top {
    background-color: var(--primary-color); /* Blue */
    display: none; /* Initially hidden */
}

