* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    overflow-x: hidden;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: #fafafa;
}

/* Header with Glassmorphism Effect */
.header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.header-top {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 13px;
    padding: 0px 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-top-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.contact-info {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-1px);
    color: white;
}

.nav-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.nav-links a:hover {
    color: white;
    transform: translateY(-1px);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: #ff6b35;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Enhanced Main Navigation */
.main-nav {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 20px;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 15px;
    border-radius: 25px;
}

.nav-menu a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-2px);
}

.dropdown::after {
    content: '▼';
    font-size: 10px;
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.dropdown:hover::after {
    transform: rotate(180deg);
}

/* Revolutionary Hero Section */
/* .hero {
    height: 50vh;
     margin-top: -200px; 
    flex: 1;
    background: linear-gradient(135deg, 
        rgba(102, 126, 234, 0.9) 0%, 
        rgba(118, 75, 162, 0.9) 50%,
        rgba(255, 107, 53, 0.8) 100%
    ), 
    radial-gradient(circle at 20% 50%, rgba(120, 119, 198, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 80%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    background-size: 100% 100%, 800px 800px, 600px 600px, 400px 400px;
    background-position: center, 0% 50%, 100% 20%, 40% 80%;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="grad1"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1)"/><stop offset="100%" style="stop-color:transparent"/></radialGradient></defs><circle cx="100" cy="100" r="80" fill="url(%23grad1)"/><circle cx="900" cy="300" r="120" fill="url(%23grad1)"/><circle cx="300" cy="800" r="100" fill="url(%23grad1)"/><circle cx="700" cy="700" r="90" fill="url(%23grad1)"/></svg>');
    opacity: 0.7;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(1deg); }
    66% { transform: translateY(10px) rotate(-1deg); }
}

.hero-content {
    max-width: 900px;
    padding: 40px;
    animation: heroSlideUp 1.2s ease-out;
    position: relative;
    z-index: 10;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-top: 2vh;
    margin-bottom: 25px;
    font-weight: 800;
    text-shadow: 2px 2px 20px rgba(0,0,0,0.3);
    letter-spacing: -1px;
    background: linear-gradient(45deg, #ffffff 30%, #f0f0f0 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-button {
    background: linear-gradient(135deg, #25D366 0%, #20b358 100%);
    color: white;
    padding: 18px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    margin-top: 30px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.6);
} */

/* Modern Breadcrumb */
.breadcrumb {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 15px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.breadcrumb-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 15px;
}

.breadcrumb a:hover {
    background: rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

/* Enhanced Content Section */
.content-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f2f5 100%);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 50px;
    align-items: start;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.main-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.main-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.main-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.main-content p {
    margin-bottom: 20px;
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

@media screen and (max-width: 480px) {
    .main-content p {
        font-size: 14px;
    }
}

/* Modern Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: sticky;
    top: 180px;
}

.contact-box {
    background: linear-gradient(135deg, #25D366 0%, #20b358 100%);
    color: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 15px 0;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item:hover {
    transform: translateX(5px);
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    padding-left: 15px;
}

.contact-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.timing-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.timing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
}

.timing-box h3 {
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
    font-size: 18px;
}

/* Mobile Menu Enhancement */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
    transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: scale(1.1);
    color: #667eea;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%);
    backdrop-filter: blur(20px);
    z-index: 2000;
    padding: 20px;
}

.mobile-nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: slideInMobile 0.4s ease-out;
}

@keyframes slideInMobile {
    from { opacity: 0; transform: translateY(-100px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-nav a {
    color: white;
    font-size: 24px;
    margin: 20px 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border-radius: 25px;
}

.mobile-nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateX(10px);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: white;
    font-size: 35px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
}

/* Enhanced Animations */
@keyframes heroSlideUp {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design Improvements */
@media (max-width: 768px) {
    .header-top-content {
        display: none;
    }

    .contact-info {
        justify-content: center;
        gap: 20px;
    }

    .nav-content {
        justify-content: space-between;
    }

    .nav-menu {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        background-attachment: scroll;
        padding: 40px 0;
    }

    .hero-content {
        padding: 20px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .main-content {
        order: 1;
        padding: 25px;
    }
    
    .sidebar {
        position: static;
        order: 2;
    }

    .cta-button {
        padding: 15px 30px;
        font-size: 15px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-content {
        padding: 15px;
    }

    .contact-info {
        flex-direction: column;
        gap: 10px;
    }

    .nav-links {
        justify-content: center;
        gap: 18px;
    }

    .content-section {
        padding: 40px 0;
    }

    .main-content {
        padding: 20px;
    }

    .sidebar .contact-box,
    .sidebar .timing-box {
        padding: 20px;
    }
}

/* Performance Optimizations */
.hero {
    will-change: transform;
}

.main-content, .contact-box, .timing-box {
    will-change: transform;
}

/* Icon Styles */
.whatsapp-icon::before {
    content: "📱";
    margin-right: 8px;
    font-size: 1.1em;
}
.whatsapp-bicon::before {
    content: "📱";
    margin-right: 8px;
    font-size: 1.1em;
}

.phone-icon::before {
    content: "📞";
    margin-right: 8px;
}

.email-icon::before {
    content: "✉️";
    margin-right: 8px;
}

.clock-icon::before {
    content: "🕐";
    margin-right: 8px;
}
/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: max(10px, 2vw); /* keeps it within screen */
  background-color: #25d366;
  border-radius: 50%;
  padding: 12px;
  z-index: 999;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: block;
}
.whatsapp-bicon {
  width: 148px;
  height: 28px;
  display: block;
}

/* Mobile Responsiveness and Prevent Overflow */
@media (max-width: 768px) {
  body {
    overflow-x: hidden; /* hide horizontal scroll */
  }

  .whatsapp-float {
    bottom: 65px;
    right: max(8px, 2vw);
    padding: 10px;
  }

}
.whatsapp-bicon {
  width: 144px;
  height: 24px;
}