
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #000;
    color: #fff;
    overflow-x: hidden;
}

/* --- Navigation --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    height: 80px;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

/* --- Navigation Updated for Image Logo --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%; /* Increased padding for better breathability */
    height: 90px; /* Slightly taller for better logo visibility */
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(15px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
    margin-top: 30px;
    /* background-color: white ; */
}

.logo img {
 max-height: 75px; /* Adjust this to fit your logo size */
    width: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: drop-shadow(0px 0px 5px rgba(212, 175, 55, 0.3)); /* Subtle gold glow */
    /* background-color: white; */
}

.logo img:hover {
    transform: scale(1.05); /* Dashy hover effect */
}

/* Ensure Nav Links stay aligned */
.nav-links a {
    text-decoration: none;
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: 0.3s ease;
}

/* Mobile Adjustments for Logo */
@media screen and (max-width: 768px) {
    .navbar {
        padding: 0 20px;
        height: 75px;
    }
    .logo img {
        max-height: 45px; /* Smaller logo for mobile screens */
    }
    .logo p{
        font-size: 20px;
    }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li { margin-left: 40px; }

.nav-links a {
    text-decoration: none;
    color: #ccc;
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active { color: #D4AF37; }

/* --- Burger Menu Button (Mobile Only) --- */
.burger {
    display: none; /* Desktop par hidden */
    cursor: pointer;
    z-index: 1001;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #D4AF37; /* Golden color lines */
    margin: 5px;
    transition: all 0.3s ease;
}

/* --- Carousel Styling --- */
.carousel {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active { opacity: 1; }

.content {
    text-align: center;
    z-index: 10;
    padding: 20px;
}

.content h1 { font-size: 3.5rem; color: #fff; margin-bottom: 10px; }
.content p { color: #D4AF37; font-size: 1.2rem; }

.controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: gold;
    border: 1px solid gold;
    padding: 15px;
    cursor: pointer;
    z-index: 100;
}

#next { right: 20px; }
#prev { left: 20px; }

/* --- Responsive Media Query --- */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: #111;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
        box-shadow: -10px 0 20px rgba(0,0,0,0.5);
    }

    .nav-links li { margin: 25px 0; }

    .burger { display: block; } /* Mobile par dikhega */

    /* Animation for Menu Toggle */
    .nav-active { transform: translateX(0%); }

    /* Burger to 'X' animation */
    .toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
    .toggle .line2 { opacity: 0; }
    .toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }
}


/* header ended */











/* whatsapp section */

/* WhatsApp Widget Styles */
.wa-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-family: 'Montserrat', sans-serif;
}

/* Floating Button */
.wa-float-button {
    width: 65px;
    height: 65px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    position: relative;
    animation: pulse-wa 2s infinite;
}

.wa-float-button img {
    width: 35px;
    height: 35px;
}

.wa-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    background: #ff0000;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #fff;
}

/* Popup Box */
.wa-popup {
    position: absolute;
    bottom: 85px;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    overflow: hidden;
    display: none; /* Initially Hidden */
    transform-origin: bottom right;
    animation: popup-anim 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wa-popup.active {
    display: block;
}

.wa-header {
    background: #0a192f; /* Navy to match Al-Meezan theme */
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 3px solid #d4af37; /* Gold Line */
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.wa-header-info img {
    width: 35px;
    border-radius: 50%;
}

.wa-text-meta {
    display: flex;
    flex-direction: column;
}

.wa-name {
    color: #d4af37;
    font-weight: 600;
    font-size: 14px;
}

.wa-status {
    color: #fff;
    font-size: 11px;
    opacity: 0.8;
}

.wa-close {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.wa-body {
    padding: 20px;
    background: #f0f2f5;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
}

.wa-footer {
    padding: 10px 15px;
    background: #fff;
    text-align: center;
}

.wa-btn-send {
    display: block;
    background: #25d366;
    color: white;
    text-decoration: none;
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
    transition: 0.3s;
}

.wa-btn-send:hover {
    background: #128c7e;
    transform: scale(1.03);
}

/* Animations */
@keyframes pulse-wa {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes popup-anim {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive */
@media (max-width: 480px) {
    .wa-popup { width: 280px; right: -10px; }
}









/* footer section */

body {
  background: #000;
  color: #fff;
}

.footer {
  padding: 80px 10%;
  background: #000;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-col h4 {
  margin-bottom: 20px;
  font-size: 18px;
}

.logo {
  font-size: 24px;
  margin-bottom: 15px;
}

.footer-col p {
  color: #9ca3af;
  line-height: 1.6;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #fff;
}

.social {
  margin: 20px 0;
}

.social a {
  margin-right: 12px;
  color: #9ca3af;
  font-size: 18px;
  transition: color 0.3s;
}

.social a:hover {
  color: #ff4d79;
}

.contact-btn {
  padding: 12px 28px;
  background: #ff4d79;
  border: none;
  border-radius: 30px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,77,121,0.4);
}

.divider {
  height: 1px;
  background: #1f2933;
  margin: 60px 0 20px;
}

copyright {
  text-align: center;
  color: #9ca3af;
}

/* Animations */
.fade-up {
  opacity: 0;
  /* transform: translateY(40px); */
  transition: all 0.8s ease;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

.footer-col  img{

    width: 250px;
    height: 350px;
    margin-top: -100px;

}