﻿/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar Base */
.navbar-custom {
    background-color: transparent;
    padding: 1.5rem 1rem;
    transition: background-color 0.4s ease, padding 0.3s ease;
    z-index: 1000;
}
/* Initial logo style */
.navbar-brand img {
    transition: all 0.3s ease;
    height: 60px; /* default height */
}

/* Smaller logo on scroll */
.navbar.scrolled .navbar-brand img {
    height: 70px; /* smaller height */
    width:80px;
}
.navbar.scrolled {
    padding: 10px 0;
    background-color: rgba(255,255,255,0.95);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}


    /* Navbar when scrolled */
    .navbar-custom.scrolled {
        background-color: white;
        padding: 0.5rem 1rem;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

/* Nav Links and Brand */
.navbar .nav-link,
.navbar .navbar-brand {
    color: white;
    transition: color 0.3s ease;
}

.navbar-custom.scrolled .nav-link,
.navbar-custom.scrolled .navbar-brand {
    color: black;
}


/* Optional hover effect */
.navbar .nav-link:hover {
    color: #f08f8f; /* adjust as needed */
}

/* Brand Logo */
.navbar-brand img {
    height: 123px;
    width: 160px;
}
@media (max-width: 768px) {
    .nave {
        background-color: #000000b3;
    }
}
.nave-toglee {
    background-color: aliceblue;
}
/* Nav items spacing */
.nave {
    gap: 29px;
    font-size: large;

    align-items: center;
    border-radius: 41px;
    padding: 12px;
}

/* Utility class */
.arc {
    margin-top: -13px;
}

/* Optional: Responsive logo */
@media (max-width: 768px) {
    .navbar-brand img {
        height: 80px;
        width: 110px;
    }
}

.attractive-button {
    background: linear-gradient(116deg, orange, #04aab6);
    color: #000000;
  font-weight:bold;
    padding: 15px 30px;
    font-size: 16px;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);

    transition: all 0.3s ease;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    letter-spacing: 1px;
}

    .attractive-button:hover {
    
        transform: translateY(-3px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
    }

    .attractive-button:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
/*footer*/
body {
    font-family: 'Inter', sans-serif;
}

.footer-container {
    position: relative;
    background-color: #000000eb;
    padding: 48px 16px 24px;
    color: #ffffff;
    overflow: hidden;
}

.footer-background-overlay {
    position: absolute;
    inset: 0; /* equivalent to top:0; right:0; bottom:0; left:0; */
    background-image: url('/images/4873.jpg'); /* Placeholder image */
    background-size: cover;
    background-position: bottom;
    opacity: 0.2;
    z-index: 0;
}

.footer-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1280px; /* max-w-7xl */
    margin: 0 auto; /* mx-auto */
    display: grid;
    grid-template-columns: 1fr; /* Default to single column for small screens */
    gap: 32px; /* gap-8 */
}

@media (min-width: 768px) { /* md: breakpoint */
    .footer-content-wrapper {
        grid-template-columns: repeat(4, 1fr); /* md:grid-cols-4 */
    }
}

.footer-section h3 {
    font-size: 1.125rem; /* text-lg */
    font-weight: 600; /* font-semibold */
    color: white; /* text-gray-800 */
    margin-bottom: 16px; /* mb-4 */
}

.footer-section p {
    font-size: 0.875rem; /* text-sm */
    line-height: 1.625; /* leading-relaxed */
    margin-bottom: 24px; /* mb-6 */
}

.social-links {
    display: flex;
    gap: 12px; /* space-x-3 */
}
.footer-section h3 {
    color: white;
}

.social-link-item {
    width: 32px; /* w-8 */
    height: 32px; /* h-8 */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f97316; /* bg-orange-500 */
    color: white; /* text-white */
    border-radius: 9999px; /* rounded-full */
    transition: background-color 0.3s ease; /* transition-colors */
}

    .social-link-item:hover {
        background-color: #ea580c; /* hover:bg-orange-600 */
    }

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul.space-y-2 > li:not(:last-child) {
        margin-bottom: 8px; /* space-y-2 */
    }

    .footer-section ul.space-y-4 > li:not(:last-child) {
        margin-bottom: 16px; /* space-y-4 */
    }

    .footer-section ul li a {
        font-size: 0.875rem; /* text-sm */
        color: white; /* text-gray-700 */
        text-decoration: none;
        transition: color 0.3s ease; /* transition-colors */
    }

        .footer-section ul li a:hover {
            color: #f97316; /* hover:text-orange-500 */
        }

.contact-item {
    display: flex;
    align-items: flex-start; /* For address to wrap correctly */
}

    .contact-item svg {
        height: 20px; /* h-5 */
        width: 20px; /* w-5 */
        color: #f97316; /* text-orange-500 */
        margin-right: 12px; /* mr-3 */
        margin-top: 4px; /* mt-1 for address icon */
    }

    .contact-item:nth-child(2) svg,
    .contact-item:nth-child(3) svg {
        margin-top: 0; /* Reset margin-top for phone and email icons */
    }

.copyright-section {
    position: relative;
    z-index: 10;
    text-align: center;
    font-size: 0.75rem; /* text-xs */
    margin-top: 48px; /* mt-12 */
    padding-top: 32px; /* pt-8 */
    border-top: 1px solid #d1d5db; /* border-t border-gray-300 */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 640px) { /* sm: equivalent */
    .footer-container {
        padding: 32px 16px; /* Adjust padding for smaller screens */
    }

    .footer-content-wrapper {
        gap: 24px; /* Smaller gap on small screens */
    }
}