body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #111827;
    background: #F3F4F6;
    position: relative;
}

h1, h2, h3 {
    font-family: 'Garamond', serif;
    color: #1E3A8A;
}

/* Navbar */
.navbar {
    background: #1E3A8A;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.navbar-brand .logo{
    height: 110px;
    background-color: #FFFFFF !important;
    transition: color 0.3s ease, transform 0.3s ease;
    border-radius: 50%;
}
.navbar-brand:hover {
    color: #FBBF24 !important;
    transform: scale(1.05);
}
.nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}
.nav-link:hover {
    color: #FBBF24 !important;
    background: rgba(255,255,255,0.1);
    border-radius: 5px;
    transform: translateY(-2px);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Slider */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.slider-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}


.slide-content {
    position: relative;
    z-index: 1;
    padding: 650px 0;
    color: #FFFFFF;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.slide-content h1 {
    font-size: 50px;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.slide-content p {
    font-size: 22px;
    margin-bottom: 30px;
}
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: none;
    color: #FFFFFF;
    font-size: 24px;
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 2;
}
.slider-btn.prev {
    left: 20px;
}
.slider-btn.next {
    right: 20px;
}
.slider-btn:hover {
    background: rgba(255,255,255,0.4);
}

/* Page Scroller */
.page-scroller {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 1000;
}
.scroller-dot {
    display: block;
    width: 12px;
    height: 12px;
    background: #D1D5DB;
    border-radius: 50%;
    transition: background 0.3s ease, transform 0.3s ease;
}
.scroller-dot.active {
    background: #FBBF24;
    transform: scale(1.3);
}
.scroller-dot:hover {
    background: #60A5FA;
    transform: scale(1.2);
}

/* Buttons */
.cta-btn {
    background: #FBBF24;
    color: #1E3A8A;
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    font-weight: 600;
    transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    margin: 10px;
}
.cta-btn:hover {
    background: #D97706;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}
.cta-btn.secondary {
    background: transparent;
    border: 2px solid #FBBF24;
    color: #FBBF24;
}
.cta-btn.secondary:hover {
    background: #FBBF24;
    color: #1E3A8A;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Services */
.services {
    background: #FFFFFF;
    padding: 60px 0;
}
.services h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.section-subtitle {
    font-size: 18px;
    color: #60A5FA;
    margin-bottom: 40px;
}
.service-card {
    border: 1px solid #E5E7EB;
    border-radius: 15px;
    background: #F9FAFB;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: #E5E7EB;
}
.service-card img {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}
.service-card:hover img {
    transform: scale(1.1);
    filter: brightness(1.1);
}
.service-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}
.service-card:hover h3 {
    color: #60A5FA;
}
.btn-link {
    color: #60A5FA;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease, transform 0.3s ease;
}
.btn-link:hover {
    color: #1E3A8A;
    transform: translateX(5px);
}

/* Special Offers */
.offers {
    background: #1E3A8A;
    color: #FFFFFF;
    padding: 60px 0;
}
.offers h2 {
    font-size: 40px;
    margin-bottom: 30px;
    color: #FFFFFF;
}
.offer-box {
    background: #60A5FA;
    padding: 30px;
    border-radius: 15px;
    max-width: 600px;
    margin: 0 auto;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.offer-box:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    background: #3B82F6;
}

/* About */
.about {
    background: #E5E7EB;
    padding: 60px 0;
}
.about h2 {
    font-size: 40px;
    margin-bottom: 20px;
}
.about img {
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.about img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Why Choose Us */
.why-choose {
    background: #FFFFFF;
    padding: 60px 0;
}
.why-choose h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.why-card {
    border: 1px solid #D1D5DB;
    border-radius: 15px;
    background: #F9FAFB;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}
.why-card:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: #E5E7EB;
}
.why-card i {
    color: #60A5FA;
    transition: transform 0.4s ease, color 0.4s ease;
}
.why-card:hover i {
    transform: scale(1.3) rotate(10deg);
    color: #1E3A8A;
}

/* FAQ */
.faq {
    background: #E5E7EB;
    padding: 60px 0;
}
.faq h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.accordion-button {
    font-family: 'Garamond', serif;
    color: #1E3A8A;
    background: #FFFFFF;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.accordion-button:hover {
    transform: translateX(5px);
}
.accordion-button:not(.collapsed) {
    background: #60A5FA;
    color: #FFFFFF;
}
.accordion-item {
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
    transition: box-shadow 0.3s ease;
}
.accordion-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Testimonials */
.testimonials {
    background: #FFFFFF;
    padding: 60px 0;
}

.testimonials h2 {
    font-size: 40px;
    margin-bottom: 40px;
}

.testimonial-card {
    border: 1px solid #D1D5DB;
    border-radius: 15px;
    background: #F9FAFB;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    opacity: 0;
    animation: fadeInUp 0.6s forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    background: #E5E7EB;
}

.testimonial-header {
    display: flex;
    align-items: center;
}

.testimonial-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
}

.testimonial-name {
    font-size: 18px;
    font-weight: 600;
}

.testimonial-location {
    font-size: 14px;
    color: #6c757d;
}

.testimonial-rating i {
    color: #FFC107;
    font-size: 16px;
}

.testimonial-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

/* Animation for Fade In */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 767px) {
    .testimonial-card {
        margin-bottom: 20px;
    }
}

/* Contact */
.contact {
    background: #E5E7EB;
    padding: 60px 0;
}
.contact h2 {
    font-size: 40px;
    margin-bottom: 40px;
}
.contact-info i {
    color: #60A5FA;
    margin-right: 10px;
    transition: transform 0.3s ease, color 0.3s ease;
}
.contact-info p:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #1E3A8A;
}
.form-control {
    border-radius: 10px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.form-control:focus {
    border-color: #60A5FA;
    box-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
    transform: scale(1.02);
}

/* === Sleek Footer Styling === */
.elegant-footer {
    background: #1E3A8A;
    color: #E5E7EB;
    font-size: 14px;
}

.elegant-footer h3, .elegant-footer h4 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 15px;
}

.elegant-footer p,
.elegant-footer ul li a {
    color: #D1D5DB;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.elegant-footer ul {
    padding: 0;
    list-style: none;
}

.elegant-footer a {
    color: #FBBF24;
    text-decoration: none;
}

.elegant-footer a:hover {
    color: #60A5FA;
    text-decoration: underline;
}

.social-icons a {
    font-size: 18px;
    margin-right: 15px;
    display: inline-block;
    color: #ffffff;
    transition: transform 0.3s ease, color 0.3s ease;
}

.social-icons a:hover {
    color: #FBBF24;
    transform: scale(1.2) rotate(5deg);
}

.elegant-footer .form-control {
    border-radius: 6px;
    padding: 10px;
    border: none;
    max-width: 220px;
}

.elegant-footer .btn-warning {
    background-color: #FBBF24;
    color: #1E3A8A;
    font-weight: 500;
    border: none;
    transition: background 0.3s ease;
}

.elegant-footer .btn-warning:hover {
    background-color: #F59E0B;
    color: #ffffff;
}

.footer-bottom {
    color: #9CA3AF;
    font-size: 13px;
}

@media (max-width: 767px) {
    .elegant-footer .d-flex {
        flex-direction: column;
    }
    .elegant-footer .form-control, 
    .elegant-footer .btn-warning {
        width: 100%;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: 60vh;
    }
    .slide{   
        margin-top: 150px;
        height: 50vh ;
        width: 100% ;
        background-size: cover;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: 0;
        transition: opacity 0.5s ease;
        z-index: 1;
    }
    .page-scroller {
        display: none; /* Hide scroller on mobile */
    }
}
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #FBBF24;
    color: #1E3A8A;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: scale(1.1);
    background: #D97706;
}
