 @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;500;600;900&display=swap');

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Poppins', sans-serif;
 }

 /* --- TOP BAR --- */
 .top-bar {
     background-color: #000;
     color: #fff;
     display: flex;
     justify-content: space-between;
     padding: 10px 60px;
     font-size: 12px;
     letter-spacing: 1.5px;
     position: relative;
     z-index: 1001;
 }

 /* --- HEADER --- */
 .header-container {
     display: grid;
     grid-template-columns: 1fr auto 1fr;
     align-items: center;
     padding: 15px 60px;
     position: absolute;
     width: 100%;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.1);
     backdrop-filter: blur(8px);
     border-bottom: 1px solid rgba(255, 255, 255, 0.2);
 }

 #menu-toggle {
     display: none;
 }

 .hamburger {
     display: none;
     cursor: pointer;
     color: #fff;
     font-size: 24px;
 }

 /* LEFT: Nav Menu */
 .nav-menu {
     display: flex;
     gap: 30px;
     list-style: none;
 }

 .nav-menu li {
     position: relative;
     padding: 10px 0;
 }

 .nav-menu a {
     text-decoration: none;
     color: #fff;
     font-weight: 600;
     text-transform: uppercase;
     font-size: 14px;
     transition: 0.3s;
 }

 /* --- DROPDOWN (Desktop) --- */
 .dropdown-menu {
     visibility: hidden;
     opacity: 0;
     position: absolute;
     top: 130%;
     left: 0;
     background: #fff;
     min-width: 180px;
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
     border-radius: 6px;
     padding: 10px 0;
     transform: translateY(15px);
     transition: all 0.4s ease;
     height: 400px;
    overflow: auto;
 }

 .dropdown:hover .dropdown-menu {
     visibility: visible;
     opacity: 1;
     transform: translateY(0);
     top: 100%;
 }

 .dropdown-menu a {
     color: #333;
     padding: 10px 20px;
     display: block;
     font-size: 13px;
     text-transform: capitalize;
 }

 .dropdown-menu a:hover {
     background: #f8f8f8;
     color: #a31d42;
 }

 /* --- CENTER: LOGO --- */
 .logo {
     text-align: center;
 }

 .logo img {
     height: 60px;
     width: auto;
     transition: 0.3s;
 }

 /* --- RIGHT: SOCIAL --- */
 .social-media {
     display: flex;
     justify-content: flex-end;
     gap: 20px;
 }

 .social-media a {
     color: #fff;
     font-size: 18px;
     transition: 0.3s;
 }

 .social-media a:hover {
     color: #a31d42;
 }

 .mobile-close {
     display: none;
 }

 /* --- MOBILE RESPONSIVE --- */
 @media (max-width: 992px) {
     .wrapper{
             flex-direction: column !important;
     }
     .top-bar {
         padding: 10px 20px;
         flex-direction: column;
         text-align: center;
         gap: 5px;
     }

     .header-container {
         padding: 10px 20px;
         grid-template-columns: 40px auto 1fr;
     }

     .hamburger {
         display: block;
         grid-column: 1;
     }

     .logo {
         grid-column: 2;
         text-align: left;
     }

     .social-media {
         grid-column: 3;
     }

     .nav-menu {
         position: fixed;
         top: 0;
         left: -100%;
         height: 100vh;
         width: 280px;
         background: #111;
         flex-direction: column;
         padding: 100px 30px;
         transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
         z-index: 2000;
     }

     #menu-toggle:checked~.nav-menu {
         left: 0;
     }

     .mobile-close {
         display: block;
         position: absolute;
         top: 25px;
         right: 25px;
         color: #fff;
         font-size: 28px;
         cursor: pointer;
     }

     .dropdown-menu {
         position: static;
         visibility: visible;
         opacity: 1;
         background: none;
         box-shadow: none;
         display: none;
         transform: none;
         padding-left: 15px;
     }

     .dropdown:hover .dropdown-menu {
         display: block;
     }

     .dropdown-menu a {
         color: #bbb;
         border: none;
         padding: 8px 0;
     }

     .logo img {
         height: 45px;
     }

     /* Mobile logo size fix */
 }

 /* --- BANNER CONTAINER FIXED HEIGHT --- */
 .hero-banner {
     position: relative;
     height: 600px;
     /* Aapki required height */
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
     color: #fff;
     text-align: center;
 }

 /* --- VIMEO VIDEO CONTAINER --- */
 .video-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: -2;
     pointer-events: none;
 }

 /* Video ko container ke hisaab se stretch/cover karne ke liye */
 .video-background iframe {
     width: 100vw;
     height: 56.25vw;
     /* 16:9 ratio */
     min-height: 600px;
     min-width: 106.67vh;
     /* (16/9) * 600 */
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%);
 }

 .overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.55);
     z-index: -1;
 }

 /* Mobile adjustments for 600px height */
 @media (max-width: 600px) {
     .hero-banner {
         height: 500px;
         /* Mobile par 600px bahut zyada ho sakta hai, isliye thoda kam */
     }

     .video-background iframe {
         min-height: 500px;
     }
       
 }
 


 .hero-content {
     padding: 0 20px;
 }

 .hero-content h1 {
     font-size: 3.5rem;
     font-weight: 900;
     line-height: 1.2;
 }


 .hero-content span {
     font-family: "Poppins", Sans-serif;
     font-size: 48px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: #a31d42;
 }

 .hero-btns {
     display: flex;
     gap: 15px;
     justify-content: center;
     margin-top: 35px;
 }

 .btn {
     padding: 15px 50px;
     border-radius: 50px;
     text-decoration: none;
     color: #fff;
     font-weight: 600;
     transition: 0.3s ease;
     border: 2px solid transparent;
 }

 .btn-call {
     background: #a31d42;
 }

 .btn-whatsapp {
     background: #25d366;
 }

 .btn:hover {
     transform: translateY(-3px);
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
 }

 @media (max-width: 600px) {

     .hero-content h1 {
         font-size: 2.2rem;
     }

     .hero-btns {
         flex-direction: column;
         width: 100%;
         max-width: 300px;
         margin-left: auto;
         margin-right: auto;
     }

     .btn {
         width: 100%;
         text-align: center;
     }
 }


 /* --- BRAND SLIDER SECTION --- */
 .brands-section {
     padding: 60px 0;
     background: #fff;
     overflow: hidden;
     border-bottom: 1px solid #eee;
 }

 .brands-wrapper {
     max-width: 1400px;
     /* Thoda wide rakha hai kyunki 6 logos hain */
     margin: 0 auto;
     overflow: hidden;
     position: relative;
 }

 .brands-track {
     display: flex;
     transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
     /* Smooth snap animation */
     align-items: center;
 }

 .brand-item {
     min-width: 16.66%;
     /* (100% / 6 logos) ek waqt mein 6 dikhenge */
     flex-shrink: 0;
     display: flex;
     justify-content: center;
     padding: 0 15px;
 }

 .brand-item img {
     width: 120px;
     /* Size thoda chota kiya taaki 6 fit ho sakein */
     height: auto;
 }


 /* --- RESPONSIVE LOGIC --- */
 @media (max-width: 1200px) {
     .brand-item {
         min-width: 20%;
     }

     /* 5 logos */
 }

 @media (max-width: 992px) {
     .brand-item {
         min-width: 25%;
     }

     /* 4 logos */
 }

 @media (max-width: 768px) {
     .brand-item {
         min-width: 33.33%;
     }

     /* 3 logos */
 }

 @media (max-width: 480px) {
     .brand-item {
         min-width: 50%;
     }

     /* 2 logos (Best for small screens) */
     .brand-item img {
         width: 90px;
     }
 }



 /* --- CARDS SECTION --- */
 .product-section {
     padding: 80px 60px;
     background-color: #f9f9f9;
 }

 .section-title {
     text-align: center;
     margin-bottom: 50px;
 }

 .section-title h2 {
     font-size: 32px;
     font-weight: 900;
     text-transform: uppercase;
     color: #222;
 }

 /* Cards Container */
 .cards-container {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     /* Desktop pe 3 cards */
     gap: 30px;
     max-width: 1300px;
     margin: 0 auto;
 }

 /* Single Card Style */
 .card {
     background: #fff;
     border-radius: 15px;
     overflow: hidden;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     text-align: left;
     display: flex;
     flex-direction: column;
 }


 /* Card Image */
 .card-img {
     width: 100%;
     height: 300px;
     overflow: hidden;
 }

 .card-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
 }

 .card:hover .card-img img {
     transform: scale(1.1);
 }

 /* Card Content */
 .card-info {
     padding: 25px;
 }

 .card-info h3 {
     font-size: 20px;
     color: #222;
     margin-bottom: 12px;
     font-weight: 700;
 }

 .card-info p {
     font-size: 13px;
     color: #666;
     line-height: 1.6;
     margin-bottom: 20px;
     text-align: justify;
 }

 /* Order Button */
 .order-btn {
     display: inline-block;
     background-color: #a31d42;
     color: #fff;
     text-decoration: none;
     padding: 12px 25px;
     border-radius: 50px;
     font-weight: 600;
     font-size: 14px;
     transition: background 0.3s ease;
     border: none;
     cursor: pointer;
     width: 100%;
     text-align: center;
 }

 .order-btn:hover {
     background-color: #222;
 }

 /* --- RESPONSIVE --- */
 @media (max-width: 992px) {
     .cards-container {
         grid-template-columns: repeat(2, 1fr);
         /* Tablet pe 2 cards */
     }

     .product-section {
         padding: 60px 20px;
     }
 }

 @media (max-width: 600px) {
     .cards-container {
         grid-template-columns: 1fr;
         /* Mobile pe 1 card */
     }

     .card-img {
         height: 200px;
     }
 }


 /* Container Layout */
 .wrapper {
     display: flex;
     height: 100vh;
 }

 #map {
     flex: 2;
     height: 100%;
     background: #111;
 }

 .sidebar {
     flex: 1;
     padding: 40px;
     background: #000;
     border-left: 2px solid #333;
     overflow-y: auto;
 }



 .subtitle {
     color: #888;
     margin-bottom: 30px;
 }

 .location-list {
     list-style: none;
     padding: 0;
 }

 .location-item {
     padding: 15px;
     border-bottom: 1px solid #fff;
     color: #fff;
     cursor: pointer;
     transition: 0.3s;
 }

 .location-item:hover {
     background: #a31d42;
     color: #fff;
 }



 .leaflet-bottom {
     display: none !important;
 }

 /* Typography and Base */
 .work-process-section {
     padding: 60px 20px;
     text-align: center;
     font-family: 'Helvetica Neue', Arial, sans-serif;
     background-color: #ffffff;
 }

 .section-title {
     font-size: 3rem;
     font-weight: 800;
     margin-bottom: 10px;
     color: #1a1a1a;
 }

 .section-desc {
     font-size: 1.1rem;
     color: #666;
     max-width: 700px;
     margin: 0 auto 50px;
     line-height: 1.6;
 }

 /* Flex Grid */
 .features-grid {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
     margin-bottom: 40px;
 }

 /* Individual Card */
 .feature-card {
     position: relative;
     width: 480px;
     height: 420px;
     border-radius: 35px;
     /* Rounded corners */
     overflow: hidden;
     display: flex;
     align-items: flex-end;
     text-align: left;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
 }

 /* Background Layers */
 .bg-shop {
     background: url('https://images.unsplash.com/photo-1516594798947-e65505dbb29d?auto=format&fit=crop&w=800') center/cover;
 }

 .bg-relax {
     background: url('https://images.unsplash.com/photo-1540541338287-41700207dee6?auto=format&fit=crop&w=800') center/cover;
 }

 /* Dark Overlay Gradient */
 .card-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.85) 90%);
     z-index: 1;
 }

 /* Text Content */
 .card-inner-text {
     position: relative;
     z-index: 2;
     padding: 35px;
     color: #ffffff;
 }

 .card-inner-text h3 {
     font-size: 2rem;
     margin: 0 0 12px;
 }

 .card-inner-text p {
     font-size: 1rem;
     line-height: 1.5;
     margin: 0;
     opacity: 0.9;
 }

 /* Action Button */
 .btn-action-yellow {
     background-color: #a31d42;
     color: #fff;
     padding: 18px 45px;
     font-size: 1rem;
     font-weight: bold;
     text-decoration: none;
     border-radius: 8px;
     display: inline-block;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     border: none;
     cursor: pointer;
 }

 .btn-action-yellow:hover {
     background-color: #a31d42;
     transform: scale(1.05);
 }

 /* Mobile Responsive */
 @media (max-width: 992px) {
     .feature-card {
         width: 100%;
         max-width: 500px;
     }
 }


 /* --- Section 1: Hero Banner (image_3.png) --- */
 .center-banner {
     position: relative;
     width: 100%;
     height: 400px;
     background: url('../img/bg.webp') center/cover;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 /* Dark overlay for banner image */
 .banner-overlay {
     position: absolute;
     inset: 0;
     background-color: rgba(0, 0, 0, 0.5);
     /* 50% dark overlay */
     z-index: 1;
 }

 .banner-content {
     position: relative;
     z-index: 2;
     text-align: center;
     max-width: 900px;
     padding: 0 20px;
 }

 .banner-title {
     font-size: 3rem;
     font-weight: 800;
     text-transform: uppercase;
     margin: 0 0 30px;
     letter-spacing: 2px;
     color: #fff;
 }

 /* Yellow CTA Button */
 .btn-cta-banner {
     background-color: #a31d42;
     color: #fff;
     padding: 18px 45px;
     font-size: 1rem;
     font-weight: bold;
     text-decoration: none;
     border-radius: 8px;
     text-transform: uppercase;
     letter-spacing: 1px;
     transition: all 0.3s ease;
     cursor: pointer;
     border: none;
 }

 .btn-cta-banner:hover {
     background-color: #a31d42;
     transform: translateY(-3px);
 }

 /* --- Section 2: Why Order Section (image_4.png) --- */
 .why-order-wrapper {
     background-color: #222222;
     /* Dark section background */
     padding: 80px 20px;
     text-align: center;
 }

 .section-header-title {
     font-size: 2.8rem;
     margin: 0 0 70px;
     font-weight: 700;
     color: #fff;
 }

 /* Grid Container */
 .features-row {
     display: flex;
     justify-content: center;
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
     flex-wrap: wrap;
 }

 /* Individual Feature Card */
 .feature-item-card {
     flex: 1;
     min-width: 320px;
     max-width: 380px;
     background-color: #1a1a1a;
     /* Darker card background */
     padding: 60px 30px;
     border-radius: 35px;
     /* Rounded corners as per image */
     box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
     display: flex;
     flex-direction: column;
     align-items: center;
     transition: transform 0.3s ease;
 }

 .feature-item-card:hover {
     transform: translateY(-10px);
 }

 /* Yellow Graphic Icon */
 .icon-graphic {
     width: 110px;
     height: 110px;
     background-color: rgba(255, 204, 41, 0.1);
     /* Subtle yellow backdrop */
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 40px;
 }

 .icon-graphic img {
     width: 70px;
     height: 70px;
 }

 /* Text Content */
 .feature-label {
     font-size: 1.1rem;
     text-transform: uppercase;
     color: #a31d42;
     /* Feature Title in Yellow */
     font-weight: bold;
     letter-spacing: 1.5px;
     margin: 0 0 20px;
     display: inline-block;
     border-bottom: 2px solid #a31d42;
     padding-bottom: 8px;
 }

 .feature-detail-text {
     font-size: 1rem;
     line-height: 1.6;
     color: #cccccc;
     margin: 0;
     text-align: center;
 }

 /* Responsive Breakpoints */
 @media (max-width: 1024px) {
     .banner-title {
         font-size: 2.2rem;
     }

     .section-header-title {
         font-size: 2.2rem;
     }

     .features-row {
         gap: 20px;
     }
 }

 @media (max-width: 768px) {
     .center-banner {
         height: 300px;
     }

     .features-row {
         flex-direction: column;
         align-items: center;
     }
 }


 /* Base Styles */
 .faq-wrapper {
     background-color: #000000;
     /* Dark Black Background */
     color: #ffffff;
     padding: 80px 40px;
     font-family: 'Helvetica Neue', Arial, sans-serif;
 }

 .faq-container {
     max-width: 1200px;
     margin: 0 auto;
 }

 /* Top Header Area */
 .faq-header {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
     margin-bottom: 60px;
     flex-wrap: wrap;
     gap: 20px;
 }

 .faq-header h2 {
     font-size: 3.5rem;
     font-weight: 800;
     line-height: 1.1;
     margin: 0;
     flex: 1;
     min-width: 300px;
 }

 .faq-header p {
     font-size: 1.1rem;
     color: #888;
     max-width: 450px;
     line-height: 1.6;
     margin: 0;
 }

 /* FAQ Grid Layout */
 .faq-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* Two Columns */
     gap: 20px 60px;
 }

 /* Question Item */
 .faq-item {
     border-bottom: 1px solid #222;
     /* Subtle divider */
     padding: 20px 0;
     cursor: pointer;
     transition: 0.3s;
 }

 .faq-item:hover .faq-question {
     color: #a31d42;
     /* Yellow hover effect */
 }

 .faq-question {
     font-size: 1.1rem;
     font-weight: 500;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease-out;
     color: #aaa;
     font-size: 0.95rem;
     margin-top: 10px;
     line-height: 1.5;
 }

 /* When active, show answer */
 .faq-item.active .faq-answer {
     max-height: 100px;
 }

 .plus-icon {
     font-size: 1.5rem;
     color: #444;
 }

 /* Mobile View */
 @media (max-width: 768px) {
     .faq-grid {
         grid-template-columns: 1fr;
     }

     .faq-header h2 {
         font-size: 2.5rem;
     }
 }

 /* Main Footer Wrapper */
 .site-footer {
     background-color: #0c0d12;
     /* Dark navy black */
     color: #ffffff;
     padding: 60px 0 20px;
     border-top: 4px solid #a31d42;
     /* Top yellow line */
 }

 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
     display: flex;
     justify-content: space-between;
     flex-wrap: wrap;
     gap: 40px;
 }

 /* Column Styles */
 .footer-col {
     flex: 1;
     min-width: 200px;
 }

 .footer-col h4 {
     font-size: 18px;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 25px;
     font-weight: bold;
 }

 .footer-col ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .footer-col ul li {
     margin-bottom: 12px;
 }

 .footer-col ul li a {
     color: #b0b0b0;
     text-decoration: none;
     font-size: 14px;
     text-transform: uppercase;
     transition: 0.3s;
 }

 .footer-col ul li a:hover {
     color: #a31d42;
 }

 /* Contact Details */
 .contact-info li {
     font-size: 13px;
     color: #b0b0b0;
     display: flex;
     align-items: center;
     gap: 10px;
     text-transform: uppercase;
 }

 /* Newsletter Input */
 .newsletter-form input {
     width: 100%;
     padding: 12px;
     background: #fff;
     border: none;
     margin-bottom: 10px;
     border-radius: 2px;
     box-sizing: border-box;
 }

 .subscribe-btn {
     width: 100%;
     background-color: #a31d42;
     color: #000;
     border: none;
     padding: 12px;
     font-weight: bold;
     text-transform: uppercase;
     cursor: pointer;
     transition: 0.3s;
 }

 .subscribe-btn:hover {
     background-color: #a31d42;
 }

 /* Bottom Section */
 .footer-bottom {
     margin-top: 60px;
     padding-top: 10px;
     border-top: 1px solid #222;
     display: flex;
     justify-content: space-around;
     align-items: center;
     flex-wrap: wrap;
     gap: 20px;
 }

 .footer-logo img {
     height: 70px;
     /* Logo height */
 }

 .social-links a {
     color: #fff;
     margin-left: 20px;
     font-size: 18px;
     transition: 0.3s;
 }

 .social-links a:hover {
     color: #a31d42;
 }

 /* Legal Copyright Bar */
 .legal-bar {
     background-color: #000;
     padding: 20px 0;
     text-align: left;
     font-size: 12px;
     color: #888;
     margin-top: 0px;
     border-bottom: 10px solid #a31d42;
     /* Bottom thick yellow bar */
 }

 .legal-bar .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 @media (max-width: 768px) {
     .footer-container {
         flex-direction: column;
         text-align: center;
     }

     .footer-bottom {
         flex-direction: column;
     }

     .social-links {
         margin-top: 10px;
     }
 }
 
 
 
 
 
 
 
 
 
   /* Section ID Selector */
#safari-section {
    padding: 80px;
    background-color: #f9f9f9;
}

/* Row spacing */
.safari-item-row {
    margin-bottom: 40px;
    overflow: hidden; /* Clearfix ke liye taaki floats container se bahar na nikle */
}

/* Image Base Class */
.about_img {
    max-width: 400px;
    padding: 20px;
}

/* Float Classes (Logic Wise) */
.safari-img-left {
    float: left;
}

.safari-img-right {
    float: right;
}

/* Image Styling */
.safari-thumb {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Content Styling */
.safari-title {
    font-size: 40px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.safari-description {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: justify;
}

/* Divider Styling */
.safari-divider {
    border: 0;
    border-top: 2px solid #eee;
    margin: 50px 0;
}

/* Responsive: Mobile par floats hata kar center karne ke liye */
@media (max-width: 768px) {
    .safari-img-left, 
    .safari-img-right {
        float: none !important;
        margin: 0 auto;
        max-width: 100%;
        padding: 0 0 20px 0;
    }

    .safari-title {
        font-size: 28px;
        text-align: center;
    }

    .safari-description {
        text-align: left;
    }
}




/* Inner Header ID Selector */
#inner-header {
    position: relative;
    padding: 120px 50px;
    background-image: url('https://www.blunsdonhouse.co.uk/storage//uploads/variants/332/website-bar-banner-inner-1920-x-600-8.png'); /* Default Safari Image */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax Effect */
    color: #ffffff;
    display: flex;
    align-items: center;
    z-index: 1;
}

/* Overlay for Text Readability */
#inner-header .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Black transparent layer */
    z-index: -1;
}

/* Title Styling */
.header-content .page-title {
    font-size: 50px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

/* Breadcrumb Styling */
.breadcrumb-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-links li {
    display: inline-block;
    font-size: 18px;
    font-weight: 500;
}

.breadcrumb-links li a {
    color: #ffc107; /* Gold/Yellow color for links */
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumb-links li a:hover {
    color: #ffffff;
}

.breadcrumb-links li.active {
    color: #ddd;
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    #inner-header {
        padding: 60px 0;
        background-attachment: scroll; /* Mobile par parallax smooth nahi hota */
    }

    .header-content .page-title {
        font-size: 32px;
    }
}


p{
    margin-bottom: 15px;
}

