 :root {
     --primary: #5e17eb;
     --light: #fefefe;
     --accent: #f2ea2b;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background: var(--light);
     color: #333;
     line-height: 1.7;
 }

 h1,
 h2,
 h3,
 h4,
 h5 {
     font-family: 'Playfair Display', serif;
     color: var(--primary);
 }

 /* Navbar */
 .navbar {
     background: rgba(94, 23, 235, 0.98) !important;
     backdrop-filter: blur(15px);
     box-shadow: 0 8px 32px rgba(94, 23, 235, 0.3);
     padding: 1.2rem 0;
     transition: all 0.4s ease;
     z-index: 9999;
 }

 .navbar.scrolled {
     padding: 0.7rem 0;
     background: rgba(94, 23, 235, 1) !important;
 }

 .navbar-brand {
     font-weight: 700;
     font-size: 1rem;
     color: var(--accent) !important;
 }

 .navbar-brand img {
     height: 55px;
     margin-right: 12px;
     border-radius: 8px;
 }

 .nav-link {
     color: white !important;
     font-weight: 500;
     margin: 0 18px;
     position: relative;
     transition: 0.3s;
 }

 .nav-link:hover,
 .nav-link.active {
     color: var(--accent) !important;
 }

 .nav-link::after {
     content: '';
     position: absolute;
     width: 0;
     height: 3px;
     bottom: -8px;
     left: 50%;
     background: var(--accent);
     transition: 0.4s;
     transform: translateX(-50%);
     border-radius: 2px;
 }

 .nav-link:hover::after {
     width: 80%;
 }

 /* Hero */
 .hero {
     height: 100vh;
     background: linear-gradient(rgba(94, 23, 235, 0.88), rgba(94, 23, 235, 0.95)),
         url('https://images.unsplash.com/photo-1600334129128-685c5582fd35?auto=format&fit=crop&q=80&w=2000') center/cover no-repeat fixed;
     display: flex;
     align-items: center;
     color: white;
     margin-top: 50px;
 }


 .hero h1 {
     font-size: 5.5rem;
     color: white;
     text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
 }

 .hero p {
     font-size: 1.35rem;
     max-width: 850px;
     margin: 25px auto;
 }

 .cta-btn {
     background: var(--accent);
     color: #333;
     padding: 18px 50px;
     border: none;
     border-radius: 50px;
     font-weight: 700;
     font-size: 1.3rem;
     transition: 0.4s;
     box-shadow: 0 10px 30px rgba(242, 234, 43, 0.4);
 }

 .cta-btn:hover {
     background: white;
     transform: translateY(-6px);
     box-shadow: 0 20px 40px rgba(255, 255, 255, 0.4);
 }

 /* Sections */
 section {
     padding: 130px 0;
 }

 .section-title {
     font-size: 3.5rem;
     text-align: center;
     margin-bottom: 80px;
     position: relative;
 }

 .section-title::after {
     content: '';
     width: 140px;
     height: 6px;
     background: var(--accent);
     position: absolute;
     bottom: -30px;
     left: 50%;
     transform: translateX(-50%);
     border-radius: 3px;
 }

 /* Service Cards */
 .service-card {
     background: white;
     border-radius: 28px;
     overflow: hidden;
     box-shadow: 0 15px 45px rgba(94, 23, 235, 0.12);
     transition: all 0.5s ease;
     height: 100%;
 }

 .service-card:hover {
     transform: translateY(-22px);
     box-shadow: 0 30px 70px rgba(94, 23, 235, 0.22);
 }

 .service-card img {
     height: 260px;
     object-fit: cover;
     transition: 0.6s;
 }

 .service-card:hover img {
     transform: scale(1.1);
 }

 .duration {
     background: #f2ea2b33;
     color: var(--primary);
     padding: 6px 14px;
     border-radius: 30px;
     font-size: 0.9rem;
     font-weight: 600;
     display: inline-block;
     margin-top: 10px;
 }

 /* Features */
 .features {
     background: linear-gradient(135deg, #5e17eb 0%, #8c4ef0 100%);
     color: white;
 }

 .feature i {
     font-size: 4rem;
     color: var(--accent);
     margin-bottom: 25px;
 }

 /* Gallery */
 .gallery-item img {
     height: 340px;
     object-fit: cover;
     transition: 0.6s;
 }

 .gallery-item:hover img {
     transform: scale(1.15);
 }

 /* Contact */
 .contact {
     background: #f8f5ff;
 }

 /* Footer */
 footer {
     background: linear-gradient(135deg, #5e17eb 0%, #3d0fb0 100%);
     color: white;
     padding: 120px 0 40px;
 }

 .footer-logo {
     font-size: 1.2rem;
     font-weight: 700;
     color: var(--accent);
     margin-bottom: 25px;
 }

 .footer-col h4 {
     color: white;
     font-size: 1.5rem;
     margin-bottom: 30px;
     position: relative;
     padding-bottom: 12px;
 }

 .footer-col h4::after {
     content: '';
     position: absolute;
     width: 60px;
     height: 4px;
     background: var(--accent);
     bottom: 0;
     left: 0;
 }

 .footer-links a {
     color: #e0d9ff;
     text-decoration: none;
     display: block;
     margin: 14px 0;
     transition: 0.3s;
 }

 .footer-links a:hover {
     color: var(--accent);
     padding-left: 12px;
 }

 .social-links a {
     display: inline-block;
     width: 55px;
     height: 55px;
     background: rgba(242, 234, 43, 0.25);
     color: var(--accent);
     text-align: center;
     line-height: 55px;
     border-radius: 50%;
     margin: 0 05px;
     font-size: 1rem;
     transition: 0.4s;
 }

 .social-links a:hover {
     background: var(--accent);
     color: #333;
     transform: translateY(-10px);
 }

 .footer-bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     margin-top: 80px;
     padding-top: 35px;
     font-size: 1rem;
 }






 /* Sticky Buttons Container */
 .sticky-buttons {
     position: fixed;
     bottom: 20px;
     left: 0;
     right: 0;
     display: flex;
     justify-content: space-between;
     padding: 0 20px;
     z-index: 9999;
 }

 /* Common Button Styles */
 .sticky-buttons .btn {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #fff;
     padding: 12px 18px;
     border-radius: 30px;
     text-decoration: none;
     font-weight: 600;
     font-size: 16px;
     transition: transform 0.2s ease, opacity 0.2s ease;
 }

 /* WhatsApp Button */
 .sticky-buttons .whatsapp {
     background-color: #25D366;
 }

 /* Call Button */
 .sticky-buttons .call {
     background-color: #007AFF;
 }

 /* Hover Effect */
 .sticky-buttons .btn:hover {
     transform: scale(1.05);
     opacity: 0.9;
 }

 /* Responsive (for small screens) */
 @media (max-width: 600px) {
     .sticky-buttons {
         display: flex;
         align-items: center;
         gap: 10px;
     }
 }