 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }



 /* ===== GLOBAL FIX ===== */
 html,
 body {
     overflow-x: hidden;
 }

 /* ===== REMOVE LEFT SPACE ===== */
 .bfl-unique-about-section,
 #ux-mv-wrapper-section {
     margin-left: 0 !important;
 }

 /* ===== REMOVE NEGATIVE MARGIN ===== */
 .bfl-unique-about-section {
     margin-top: 0 !important;
 }

 /* ===== CONTAINER FIX ===== */
 .container1,
 .section-container,
 #gal-main-container-99 {
     padding: 0 15px !important;
 }

 /* ===== MAP + FORM FIX ===== */


 /* ===== MOBILE FIX ===== */
 @media (max-width: 768px) {

     body {
         padding: 0 !important;
     }

     .container1,
     .section-container,
     #gal-main-container-99 {
         padding: 0 12px !important;
     }

     .container1 {
         margin-left: -20px !important;
     }

     /* Slider / Section overflow fix */
     * {
         max-width: 100%;
     }
 }










 /* pupup form css */






 /* Modal Overlay - Unique Prefix */
 .pbf-unique-overlay {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: transparent;
     backdrop-filter: blur(15px);
     display: flex;
     justify-content: center;
     align-items: center;
     z-index: 99999;
     opacity: 0;
     visibility: hidden;
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     padding: 20px;
 }

 .pbf-unique-overlay.pbf-active {
     opacity: 1;
     visibility: visible;
 }

 /* Modal Container */
 .pbf-unique-modal {
     background: #ffffff;
     width: 100%;
     max-width: 820px;
     border-radius: 12px;
     position: relative;
     overflow: hidden;
     display: flex;
     box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
     transform: scale(0.9) translateY(30px);
     transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
 }

 .pbf-unique-overlay.pbf-active .pbf-unique-modal {
     transform: scale(1) translateY(0);
 }

 /* Close Button */
 .pbf-unique-close {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 24px;
     color: #94a3b8;
     cursor: pointer;
     z-index: 50;
     transition: all 0.3s;
     background: #f1f5f9;
     width: 36px;
     height: 36px;
     display: flex;
     align-items: center;
     justify-content: center;
     border-radius: 50%;
 }

 .pbf-unique-close:hover {
     transform: rotate(90deg);
     color: #F28200;
     background: #fff;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 /* Form Section */
 .pbf-unique-form-side {
     padding: 45px;
     flex: 1.2;
     background: #fff;
 }

 .pbf-unique-tag {
     color: #F28200;
     text-transform: uppercase;
     font-weight: 700;
     font-size: 11px;
     letter-spacing: 2.5px;
     margin-bottom: 8px;
     display: block;
 }

 .pbf-unique-title {
     font-family: 'Montserrat', sans-serif;
     font-size: 26px;
     color: #0f172a;
     margin-bottom: 25px;
     text-transform: uppercase;
     font-weight: 800;
     line-height: 1.1;
 }

 /* Form Layout */
 .pbf-unique-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 .pbf-unique-full {
     grid-column: span 2;
 }

 .pbf-unique-input,
 .pbf-unique-textarea {
     width: 100%;
     padding: 14px 16px;
     border: 1.5px solid #e2e8f0;
     background: #f8fafc;
     border-radius: 8px;
     outline: none;
     font-size: 14px;
     color: #334155;
     transition: all 0.3s ease;
 }

 .pbf-unique-input:focus,
 .pbf-unique-textarea:focus {
     border-color: #F28200;
     background: #fff;
     box-shadow: 0 0 0 4px rgba(242, 130, 0, 0.1);
 }

 .pbf-unique-textarea {
     height: 100px;
     resize: none;
 }

 /* Action Button */
 .pbf-unique-submit {
     background: #F28200;
     color: #fff;
     border: none;
     width: 100%;
     padding: 16px;
     border-radius: 8px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     cursor: pointer;
     font-size: 14px;
     margin-top: 15px;
     transition: all 0.3s;
     box-shadow: 0 10px 25px -5px rgba(242, 130, 0, 0.4);
 }

 .pbf-unique-submit:hover {
     background: #d97500;
     transform: translateY(-2px);
     box-shadow: 0 15px 30px -5px rgba(242, 130, 0, 0.5);
 }

 /* Image Section */
 .pbf-unique-img-side {
     flex: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     position: relative;
     overflow: hidden;
     background: #f8fafc;
 }

 .pbf-unique-img-side img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     z-index: 5;
 }

 /* Success State Styling */
 .pbf-success-container {
     text-align: center;
     padding: 40px 0;
     animation: pbf-fade-in 0.5s ease;
 }

 @keyframes pbf-fade-in {
     from {
         opacity: 0;
         transform: translateY(10px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 /* Responsive */
 @media (max-width: 768px) {
     .pbf-unique-modal {
         flex-direction: column;
         max-width: 450px;
         max-height: 90vh;
         overflow-y: auto;
     }

     .pbf-unique-form-side {
         padding: 30px 20px;
         order: 2;
     }

     .pbf-unique-img-side {
         height: 160px;
         order: 1;
     }

     .pbf-unique-grid {
         grid-template-columns: 1fr;
     }

     .pbf-unique-full {
         grid-column: span 1;
     }

     .pbf-unique-title {
         font-size: 16px;
         text-align: center;
     }

     .pbf-unique-tag {
         text-align: center;
     }
 }





















 /* Container styling with white background */
 #unique-auto-slider-container.unique-marquee-wrapper {
     max-width: 100%;
     overflow: hidden;
     background-color: #ffffff;
     /* Explicit White Background */
     display: flex;
     padding-bottom: 5px;
     border-bottom: 1px solid rgb(204, 202, 202);

 }

 /* The track that actually moves */
 .unique-marquee-track {
     display: flex;
     width: max-content;
     animation: unique-scroll-animation 50s linear infinite;
 }

 /* Individual text item styling */
 .unique-marquee-item {
     font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
     font-size: 1.25rem;
     font-weight: 500;
     color: #333333;
     white-space: nowrap;
     text-transform: uppercase;
     padding: 0 20px;
     flex-shrink: 0;
 }

 /* Smooth Infinite Animation */
 @keyframes unique-scroll-animation {
     0% {
         transform: translateX(0);
     }

     100% {
         /* Moves half the width of the track (since we duplicated content) */
         transform: translateX(-50%);
     }
 }

 /* Responsive adjustments for Mobile Devices */
 @media (max-width: 768px) {
     .unique-marquee-item {
         font-size: 1rem;
         padding: 0 10px;
     }

     .unique-marquee-track {
         animation-duration: 20s;
         /* Speed up a bit on smaller screens */
     }
 }

 @media (max-width: 480px) {
     .unique-marquee-item {
         font-size: 0.9rem;
     }
 }























 /* about section start  */





 /* Unique Section Container */
 .bfl-unique-about-section {
     position: relative;
     padding: 0px 6%;
     display: flex;
     align-items: center;
     justify-content: center;
     min-height: 80vh;
     background: #fff;
     overflow: hidden;
     margin: auto;
     margin-top: -520px;
     margin-left: 70px;
     /* Taaki watermark bahar na dikhe starting me */
 }

 /* Main Wrapper for Layout */
 .bfl-content-wrapper {
     display: flex;
     max-width: 1100px;
     width: 100%;
     gap: 50px;
     z-index: 2;
     align-items: center;
 }

 /* Left Side: Image Section */
 .bfl-image-container {
     flex: 1;
     position: relative;
     min-width: 400px;
 }

 .bfl-main-img {
     width: 100%;
     max-height: 520px;
     object-fit: cover;
     display: block;

     border-radius: 4px;
 }

 /* Right Side: Text Section */
 .bfl-text-container {
     flex: 1;
     padding-top: 20px;
     position: relative;
 }

 .bfl-sub-heading {
     font-size: 16px;
     color: #333;
     text-transform: capitalize;
     margin-bottom: 15px;
     display: inline-block;
     border-bottom: 2px solid #000;
     padding-bottom: 2px;
     font-weight: 600;
 }

 .bfl-main-title {
     font-size: 45px;
     line-height: 1.1;
     color: #1a1a1a;
     margin-bottom: 25px;
     font-weight: 700;
     max-width: 450px;
 }

 .bfl-description {
     font-size: 15px;
     line-height: 1.6;
     color: #666;
     margin-bottom: 30px;
     text-align: justify;
 }

 .bfl-description strong {
     color: #333;
 }

 /* Read More Link */
 .bfl-read-more-btn {
     position: relative;
     z-index: 5;
     display: inline-block;
     font-weight: 700;
     color: #000;
     text-decoration: none;
     font-size: 14px;
     border-bottom: 2px solid #000;
     padding-bottom: 3px;
     transition: all 0.3s ease;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .bfl-read-more-btn:hover {
     color: #F28200;
     border-bottom-color: #555;
     padding-left: 1px;
 }

 /* Watermark Background Text - Animation Fixed */
 .bfl-watermark-text {
     position: absolute;
     bottom: 20px;
     right: 0;
     font-size: 150px;
     /* Slightly larger for impact */
     font-weight: 900;
     color: black;
     pointer-events: none;
     z-index: 1;
     white-space: nowrap;
     text-transform: uppercase;
     user-select: none;

     /* Initial state: Far right and invisible */
     transform: translateX(100%);
     opacity: 0.04;
     transition: transform 5s cubic-bezier(0.19, 1, 0.22, 1), opacity 1.5s ease-in-out;
     will-change: transform, opacity;
 }

 /* Active state: Comes out from right edge */
 .bfl-unique-about-section.bfl-visible .bfl-watermark-text {
     transform: translateX(15%);
     /* Adjust this to control how much it stays inside */
     opacity: 0.06;
 }

 /* Responsive Design */
 @media (max-width: 1024px) {
     .bfl-main-title {
         font-size: 38px;
     }

     .bfl-watermark-text {
         font-size: 130px;
         bottom: 80px;
     }
 }

 @media (max-width: 850px) {
     .bfl-content-wrapper {
         flex-direction: column;
         gap: 40px;
     }

     .bfl-image-container {
         min-width: 100%;
     }

     .bfl-main-img {
         max-height: 400px;
     }

     .bfl-text-container {
         padding-top: 0;
     }

     .bfl-unique-about-section {
         padding: 60px 20px;
         margin-left: -0px;
     }

     .bfl-watermark-text {
         font-size: 90px;
         bottom: 20px;
     }

     .bfl-unique-about-section.bfl-visible .bfl-watermark-text {
         transform: translateX(10%);
     }
 }

 @media (max-width: 480px) {
     .bfl-main-title {
         font-size: 30px;
     }

     .bfl-sub-heading {
         font-size: 14px;
     }

     .bfl-watermark-text {
         font-size: 60px;
         bottom: 40px;
     }

     #bfl-about-container {
         margin-top: -40px !important;
     }
 }

















 /* all seaction heading degisne css  */


 /* Scoped Container instead of body/* */
 #uh-section-wrapper {
     font-family: 'Inter', sans-serif;
     background-color: #ffffff;
     display: flex;
     justify-content: center;
     align-items: center;
     padding: 60px 20px;
     color: #0f172a;
     -webkit-font-smoothing: antialiased;
     max-width: 1200px;
     margin: 0 auto;

 }

 /* Unique Class Names */
 .uh-heading-group {
     text-align: center;
     max-width: 100%;
 }

 .uh-badge-text {
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 0.5em;
     color: #94a3b8;
     margin-bottom: 16px;
     display: block;
 }

 .uh-main-display {
     display: flex;
     flex-direction: column;
     line-height: 0.9;
     text-transform: uppercase;
     font-weight: 900;
     letter-spacing: -0.02em;
     margin: 0;
 }

 .uh-text-outline {
     font-size: clamp(32px, 8vw, 64px);
     /* Fluid typography */
     color: transparent;
     -webkit-text-stroke: 1.5px #0f172a;
 }

 .uh-accent-color {
     color: #F28200;
     /* Orangered */
     -webkit-text-stroke: 0px;
     /* Removes outline from the solid part */
 }

 /* Responsive adjustments using the unique ID */
 @media (max-width: 768px) {
     .uh-badge-text {
         font-size: 10px;
         letter-spacing: 0.3em;
     }

     .uh-text-outline {
         -webkit-text-stroke: 1px #0f172a;
     }
 }



























 /* why chooes us section degisne for css  */



 .wcu-section-wrapper {
     --wcu-primary: #F28200;
     --wcu-text-dark: #1a1a1a;
     --wcu-text-gray: #555555;
     --wcu-white: #ffffff;

     /* --- WATERMARK CONTROLS --- */
     /* Aap yahan se image aur uska size control kar sakte hain */
     --wcu-bg-watermark: url('assets/img/water.png');
     --wcu-watermark-size: 1000px;
     /* Isse watermark ka size control karein */
     --wcu-watermark-opacity: 0.12;
     /* Isse transparency control karein */

     position: relative;
     padding: 50px 45px;
     background-color: var(--wcu-white);
     overflow: hidden;
     min-height: 100vh;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
     max-width: 1100px;
     margin: 0 auto;
     margin-top: -50px;

 }

 /* Watermark Background Logic (Centered Machine Image) */
 .wcu-section-wrapper::before {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -55%);
     /* Isse image bilkul center mein rehti hai */
     width: 100%;
     height: 100%;
     background-image: var(--wcu-bg-watermark);
     background-size: var(--wcu-watermark-size);
     /* Custom size control */
     background-position: center;
     background-repeat: no-repeat;
     opacity: var(--wcu-watermark-opacity);
     z-index: 0;
     pointer-events: none;
 }

 .wcu-main-container {
     position: relative;
     z-index: 1;
     max-width: 1200px;
     width: 100%;
     margin: 0 auto;
     box-sizing: border-box;
 }



 .wcu-content-grid {
     display: grid;
     grid-template-columns: 1fr 1fr 1fr;
     gap: 30px;
     align-items: center;
 }

 /* Feature Items Styling */
 .wcu-features-column {
     display: flex;
     flex-direction: column;
     gap: 50px;
 }

 .wcu-feature-item {
     display: flex;
     align-items: flex-start;
     gap: 20px;
     transition: transform 0.3s ease;
 }

 .wcu-feature-item:hover {
     transform: translateY(-5px);
 }

 /* Left Side: Text right, Icon left (to face the center) */
 .wcu-left-side .wcu-feature-item {
     flex-direction: row-reverse;
     text-align: right;
 }

 /* Right Side: Icon left, Text right */
 .wcu-right-side .wcu-feature-item {
     text-align: left;
 }

 .wcu-icon-box {
     width: 60px;
     height: 60px;
     background-color: var(--wcu-primary);
     border-radius: 12px;
     display: flex;
     justify-content: center;
     align-items: center;
     flex-shrink: 0;
     box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
 }

 .wcu-icon-box svg {
     width: 30px;
     height: 30px;
     fill: var(--wcu-white);
 }

 .wcu-text-content h3 {
     margin: 0 0 10px 0;
     font-size: 1.25rem;
     color: var(--wcu-text-dark);
     font-weight: 700;
 }

 .wcu-text-content p {
     margin: 0;
     color: var(--wcu-text-gray);
     font-size: 0.95rem;
     line-height: 1.6;
 }

 /* Center Image Styling */
 .wcu-center-image-area {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 .wcu-main-img {
     max-width: 400px;
     height: auto;
     border-radius: 20px;
     filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
     object-fit: contain;
 }

 /* --- RESPONSIVE DESIGN --- */

 @media (max-width: 1024px) {
     .wcu-content-grid {
         grid-template-columns: 1fr;
         gap: 60px;
     }

     .wcu-center-image-area {
         grid-row: 1;
         max-width: 400px;
         margin: 0 auto;
     }

     .wcu-features-column {
         display: grid;
         grid-template-columns: 1fr 1fr;
         gap: 40px;
     }

     .wcu-left-side .wcu-feature-item {
         flex-direction: row;
         text-align: left;
     }

     .wcu-section-wrapper {
         /* Tablet par watermark thoda chota */
         --wcu-watermark-size: 400px;
     }
 }

 @media (max-width: 640px) {
     .wcu-features-column {
         grid-template-columns: 1fr;
     }

     .wcu-section-wrapper {
         padding: 50px 15px;
         /* Mobile par watermark aur chota */
         --wcu-watermark-size: 300px;
     }

     .wcu-feature-item {
         flex-direction: column !important;
         text-align: center !important;
         align-items: center !important;
     }

     .wcu-section-title {
         margin-bottom: 40px;
     }

     .wcu-main-img {
         max-width: 80%;
     }
 }


























 /* prodcut section degisne css */


 :root {
     --accent-orange: #F28200;
     --brush-pink: rgba(27, 218, 243, 0.6);
     --text-gray: #6b7280;
     --bg-light: #f4f7fa;
     --white: #ffffff;
     --transition: all 0.3s ease;
 }




 .container1 {
     max-width: 1100px;
     margin: 0 auto;
     padding: 50px 45px;
 }

 /* Section Header */
 .section-header {
     text-align: center;
     margin-bottom: 80px;
 }

 .subtitle {
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
     color: var(--accent-orange);
     font-weight: 600;
     font-size: 14px;
     text-transform: uppercase;
     letter-spacing: 1.5px;
     margin-bottom: 10px;
 }


 .main-title-wrapper {
     position: relative;
     display: inline-block;
     padding: 10px 40px;

 }

 .main-title {
     font-family: 'Inter', 'Segoe UI', sans-serif !important;
     font-size: 40px;
     color: #252525;
     position: relative;
     z-index: 2;
     display: block;
     line-height: 1;
     text-transform: uppercase;
     z-index: -99 !important;
 }


 .main-title-wrapper::before {
     content: "";
     position: absolute;
     top: 50%;
     left: 50%;
     transform: translate(-50%, -50%) rotate(-2deg);
     width: 110%;
     height: 70%;
     background: var(--brush-pink);
     filter: blur(8px);
     border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
     z-index: -999;

 }


 .main-title-wrapper::after {
     content: "";
     position: absolute;
     bottom: 5px;
     left: 10%;
     width: 0;
     height: 4px;
     background: var(--accent-orange);
     border-radius: 50%;
     transform: rotate(-1deg);
     box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     animation: draw-line 1.5s ease-out forwards;
     animation-delay: 0.5s;
 }

 @keyframes draw-line {
     to {
         width: 80%;
     }
 }


 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     margin-bottom: 50px;
 }

 .service-card {
     background: var(--white);
     border-radius: 20px;
     box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
     transition: var(--transition);
     position: relative;
     display: flex;
     flex-direction: column;
     border-bottom: 4px solid transparent;
 }



 .service-card.active {
     border-bottom-color: var(--accent-orange);
 }

 .card-image-wrapper {
     position: relative;
     height: 220px;
 }

 .image-container {
     width: 100%;
     height: 130%;
     overflow: hidden;
     border-radius: 20px 20px 0 0;
     clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
 }

 .card-image-wrapper img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: var(--transition);
 }

 .service-card:hover img {
     transform: scale(1.1);
 }


 .card-body {
     padding: 50px 30px 30px;
     flex-grow: 1;
 }

 .service-title {
     font-size: 20px;
     font-weight: 700;
     margin-bottom: 12px;
     color: var(--primary-blue);
 }

 .service-desc {
     color: var(--text-gray);
     font-size: 14px;
     margin-bottom: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }



 .footer-action {
     display: flex;
     justify-content: center;
     margin-top: 40px;
 }

 .btn-all {
     background: var(--accent-orange);
     color: var(--white);
     padding: 14px 30px;
     border-radius: 50px;
     text-decoration: none;
     font-weight: 700;
     display: flex;
     align-items: center;
     gap: 10px;
     transition: var(--transition);
 }

 .btn-all:hover {
     background: var(--primary-blue);
 }

 @media (max-width: 768px) {
     .main-title {
         font-size: 30px;
     }

     .container1 {
         margin-left: -55px;
         margin-top: -70px !important;
     }

     .services-grid {
         padding: 35px !important;
         margin: auto !important;
     }
 }










 /* last card degsine  */


 /* --- UNIQUE 6TH CARD: VERTICAL SLIDER STYLES --- */
 .v-slider-premium-wrap {
     height: 100%;
     min-height: 500px;
     position: relative;
     background: transparent !important;
     /* No outer box */
     box-shadow: none !important;
     border: none !important;
     display: flex;
     justify-content: center;
     align-items: center;
     overflow: hidden;
 }

 .v-premium-viewport {
     width: 100%;
     height: 520px;
     position: relative;
     overflow: hidden;
     /* Fade effect for top and bottom */
     mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
     -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
 }

 .v-premium-track {
     display: flex;
     flex-direction: column;
     gap: 20px;
     padding: 10px;
     animation: v-infinite-scroll 20s linear infinite;
 }

 .v-slider-item-square {
     width: 100%;
     position: relative;
 }

 .v-slider-item-square img {
     width: 100%;
     aspect-ratio: 1 / 1;
     /* Square Shape */
     object-fit: cover;
     display: block;
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
     border: 2px solid #ffffff;
     transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }

 .v-slider-item-square:hover img {
     transform: scale(1.04);
     box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;
 }

 .v-item-badge {
     position: absolute;
     top: 20px;
     left: 20px;
     background: var(--primary-blue);
     color: white;
     padding: 6px 14px;
     font-size: 10px;
     font-weight: 800;
     z-index: 5;
     text-transform: uppercase;
     letter-spacing: 1px;
     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
 }

 @keyframes v-infinite-scroll {
     0% {
         transform: translateY(0);
     }

     100% {
         transform: translateY(-50%);
     }
 }

 /* Mobile Fix */
 @media (max-width: 768px) {
     .services-grid {
         padding: 20px;
     }

     .v-premium-viewport {
         height: 420px;
     }
 }































 /* vedio with contct form css  */


 :root {
     --primary: #F28200;
     /* Aapka Bataya Hua Color */
     --primary-light: rgba(242, 130, 0, 0.1);
     --primary-dark: #d67300;
     --bg-body: #fafafa;
     --card-bg: #ffffff;
     --text-heading: #0a0a0a;
     --text-body: #4a4a4a;
     --border-color: #e5e7eb;

     --radius-sm: 16px;
 }


 .section-container {
     max-width: 1100px;
     margin: 60px auto;
     /* Reduced from 100px */
     padding: 0px 45px;
 }

 .main-grid {
     display: flex;
     gap: 32px;
     /* Slightly reduced gap */
     align-items: stretch;
 }

 /* --- Left Column: Media Hub --- */
 .media-column {
     flex: 1.5;
     display: flex;
     flex-direction: column;
     gap: 20px;
     /* Reduced gap */
     min-width: 0;
 }

 .video-wrapper {
     flex: 1;
     background: #000;
     border-radius: var(--radius-lg);
     overflow: hidden;
     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
     position: relative;
     border: 1px solid rgba(0, 0, 0, 0.05);
     min-height: 350px;
     /* Reduced from 400px */
 }

 .video-wrapper iframe {
     width: 100%;
     height: 100%;
     border: none;
     display: block;
 }

 .trust-slider-card {
     background: var(--card-bg);
     padding: 25px 40px;
     /* Reduced vertical padding */
     border-radius: var(--radius-lg);
     border: 1px solid var(--border-color);
     box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
     overflow: hidden;
 }

 .slider-label {
     font-size: 10px;
     /* Slightly smaller */
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 2px;
     color: var(--primary);
     margin-bottom: 15px;
     /* Reduced margin */
     text-align: center;
     opacity: 0.9;
 }

 .logo-carousel {
     display: flex;
     width: calc(180px * 10);
     animation: scrollLogos 40s linear infinite;
     align-items: center;
 }

 .logo-item {
     width: 180px;
     display: flex;
     justify-content: center;
     padding: 0 25px;
 }

 .logo-item img {
     max-width: 90px;
     height: auto;
     filter: grayscale(1);
     opacity: 0.35;
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .logo-item img:hover {
     filter: grayscale(0);
     opacity: 1;
     transform: translateY(-5px);
 }

 @keyframes scrollLogos {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-180px * 5));
     }
 }

 /* --- Right Column: Inquiry Hub --- */
 .form-column {
     flex: 1;
     background: var(--card-bg);

     /* Reduced padding from 60px 48px */
     border-radius: var(--radius-lg);
     box-shadow: rgba(50, 50, 105, 0.15) 0px 2px 5px 0px, rgba(0, 0, 0, 0.05) 0px 1px 1px 0px;
     border: 1px solid var(--border-color);
     display: flex;
     flex-direction: column;
     justify-content: center;
     position: relative;
 }

 /* Sophisticated Accent Line */
 .form-column::after {
     content: '';
     position: absolute;
     top: 45px;
     left: 0;
     width: 4px;
     height: 35px;
     background: var(--primary);
     border-radius: 0 4px 4px 0;
 }

 .form-header h2 {
     font-size: 28px;
     /* Reduced from 42px */
     font-weight: 800;
     color: var(--text-heading);
     text-transform: uppercase;

     line-height: 1.1;
     margin-bottom: 12px;
     letter-spacing: -1.2px;
 }

 .form-header p {
     font-size: 15px;
     color: var(--text-body);
     margin-bottom: 30px;
     /* Reduced from 40px */
     line-height: 1.5;
     max-width: 95%;
 }

 .input-field {
     margin-bottom: 18px;
     /* Reduced from 24px */
 }

 .input-field label {
     display: block;
     font-size: 12px;
     font-weight: 700;
     margin-bottom: 8px;
     color: var(--text-heading);
     letter-spacing: 0.2px;
 }

 .input-field input,
 .input-field textarea {
     width: 100%;
     padding: 14px 18px;
     /* Slightly reduced padding */
     border-radius: var(--radius-sm);
     border: 1.5px solid #eceef2;
     background: #fcfcfd;
     font-size: 14px;
     color: var(--text-heading);
     outline: none;
     transition: all 0.3s ease;
 }

 .input-field input:focus,
 .input-field textarea:focus {
     border-color: var(--primary);
     background: #fff;
     box-shadow: 0 0 0 4px var(--primary-light);
 }

 .premium-btn {
     width: 100%;
     padding: 16px;
     /* Reduced from 20px */

     background: var(--primary);
     color: #fff;
     border: none;
     font-size: 15px;
     font-weight: 700;
     cursor: pointer;
     transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
     margin-top: 8px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .premium-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-3px);
     box-shadow: 0 15px 30px -10px rgba(242, 130, 0, 0.35);
 }

 .premium-btn svg {
     transition: transform 0.3s ease;
 }

 .premium-btn:hover svg {
     transform: translateX(5px);
 }

 /* --- RESPONSIVE FIXES --- */
 @media (max-width: 1100px) {
     .main-grid {
         flex-direction: column;
         gap: 30px;
     }

     .media-column,
     .form-column {
         width: 100%;
         flex: none;
     }

     .video-wrapper {
         height: 450px;
         min-height: unset;
     }
 }

 @media (max-width: 650px) {
     .section-container {
         margin: 40px auto;
     }

     .video-wrapper {
         height: 250px;

     }



     .form-header h2 {
         font-size: 28px;
     }

     .trust-slider-card {
         padding: 20px;

     }
 }



 @media (max-width: 650px) {
     .section-container {
         margin: 40px auto;
         padding: 0 12px;
         /* pehle 45px tha */
         max-width: 100%;
     }
 }























 /* Application css start  */



 /* Unique Main Container */
 #gal-main-container-99 {
     max-width: 1100px;
     margin: 0 auto;
     padding: 0px 45px;
 }

 .gal-section-header-text {
     text-align: center;
     margin-bottom: 45px;
     color: #1a202c;
     font-size: 1.8rem;
     font-weight: 800;
     letter-spacing: -0.5px;
 }

 .gal-section-header-text span {
     color: #F28200;
 }

 /* Grid Layout Logic */
 .gal-grid-layout-ctrl {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 25px;
     margin-bottom: 35px;
 }

 /* Individual Card Box Wrapper */
 .gal-single-card-box {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 100%;
 }

 /* Creative Square Frame with Unique Class */
 .gal-img-holder-frame {
     position: relative;
     width: 100%;
     aspect-ratio: 1 / 1;
     background: #ffffff;
     border-radius: 20px;
     padding: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     border: 1px solid rgba(0, 0, 0, 0.05);
     z-index: 1;
 }

 /* Inner Content Clipping */
 .gal-inner-content-clip {
     width: 100%;
     height: 100%;
     border-radius: 12px;
     overflow: hidden;
     position: relative;
 }

 /* Image Element */
 .gal-photo-element {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.6s ease;
 }

 /* Unique Hover Animations */
 .gal-img-holder-frame:hover {

     border-color: #F28200;
 }

 .gal-img-holder-frame:hover .gal-photo-element {
     transform: scale(1.18);
 }

 /* Shine Streak Effect */
 .gal-img-holder-frame::before {
     content: '';
     position: absolute;
     top: 0;
     left: -150%;
     width: 60%;
     height: 100%;
     background: linear-gradient(to right,
             rgba(255, 255, 255, 0) 0%,
             rgba(255, 255, 255, 0.5) 50%,
             rgba(255, 255, 255, 0) 100%);
     transform: skewX(-20deg);
     transition: 0.75s;
     z-index: 5;
     pointer-events: none;
 }

 .gal-img-holder-frame:hover::before {
     left: 150%;
 }

 /* Floating Interactive Dot */
 .gal-status-dot-icon {
     position: absolute;
     top: 18px;
     right: 18px;
     width: 7px;
     height: 7px;
     background: #F28200;
     border-radius: 50%;
     opacity: 0;
     transition: 0.35s;
     z-index: 6;
     box-shadow: 0 0 8px rgba(242, 130, 0, 0.6);
 }

 .gal-img-holder-frame:hover .gal-status-dot-icon {
     opacity: 1;
 }

 /* Detached Label Area */
 .gal-text-label-area {
     margin-top: 14px;
     text-align: center;
 }

 .gal-label-title-main {
     font-size: 0.85rem;
     color: #4a5568;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     transition: color 0.3s;
 }

 .gal-single-card-box:hover .gal-label-title-main {
     color: #F28200;
 }

 /* Underline Animation */
 .gal-label-title-main::after {
     content: '';
     display: block;
     width: 0;
     height: 2px;
     background: #F28200;
     transition: width 0.3s ease;
     margin: 5px auto 0;
 }

 .gal-single-card-box:hover .gal-label-title-main::after {
     width: 25px;
 }

 /* Full Responsive Control */

 /* Tablets (2 Columns) */
 @media (max-width: 800px) {
     .gal-grid-layout-ctrl {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     #gal-main-container-99 {
         max-width: 650px;
     }
 }

 /* Small Tablets & Large Phones */
 @media (max-width: 600px) {
     .gal-section-header-text {
         font-size: 1.5rem;
     }
 }

 /* Mobile View (1 Column) */
 @media (max-width: 480px) {
     .gal-grid-layout-ctrl {
         grid-template-columns: 1fr;
         max-width: 380px;
         margin: 0 auto 30px auto;

     }


     #gal-main-container-99 {
         max-width: 100%;
         padding: 0 12px;
         /* pehle 45px tha → ab kam */
     }

 }



























 /* STRIP BANNER SECTION  */




 /* Hero Section with Unique ID */
 #ercm-hero-banner {
     position: relative;
     width: 100%;
     min-height: 280px !important;
     padding: 10px 24px;
     display: flex;
     align-items: center;
     margin: auto;
     margin-top: 50px;

     max-width: 1200px;
 }

 .ercm-container-fluid {
     max-width: 1100px;
     margin: 0 auto;
     width: 100%;
 }

 /* Breadcrumb with Unique Classes */
 .ercm-breadcrumb-nav {
     margin-bottom: 24px;
 }

 .ercm-breadcrumb-list {
     list-style: none;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 14px;
     font-weight: 500;
     color: #999999;
 }

 .ercm-breadcrumb-item a {
     text-decoration: none;
     color: #777777;
     transition: color 0.2s ease-in-out;
 }

 .ercm-breadcrumb-item a:hover {
     color: #000000;
 }

 .ercm-separator {
     color: #dddddd;
     font-weight: 300;
 }

 .ercm-breadcrumb-item.is-active {
     color: #888888;
     cursor: default;
 }

 /* Heading with Unique ID & Class */
 .ercm-page-title {
     font-size: 32px !important;
     font-weight: 900;
     line-height: 1.1;
     color: #111111;
     text-transform: uppercase;
     letter-spacing: -1px;
     max-width: 100%;
 }

 /* Responsive Design Rules */

 /* Desktop & Large Screens */
 @media (min-width: 1440px) {
     .ercm-page-title {
         font-size: 32px !important;
     }
 }

 /* Tablets (iPad/Portrait) */
 @media (max-width: 1024px) {
     #ercm-hero-banner {
         padding: 60px 40px;
         min-height: 240px;
     }

     .ercm-page-title {
         font-size: 42px;
     }
 }

 /* Mobile Devices */
 @media (max-width: 768px) {
     #ercm-hero-banner {
         padding: 50px 20px;
         min-height: auto;
     }

     .ercm-page-title {
         font-size: 22px !important;
         letter-spacing: -0.5px;
     }

     .ercm-breadcrumb-list {
         font-size: 13px;
         margin-bottom: 16px;
     }

     .ercm-breadcrumb-item {
         font-size: 11px !important;
     }
 }

 /* Small Mobile */
 @media (max-width: 480px) {
     .ercm-page-title {
         font-size: 26px;
         line-height: 1.2;
     }
 }






















 /* about visson and misson section start  */


 /* Unique Variables for Luxury Sharp Look */
 :root {
     --ux-white: #ffffff;
     --ux-dark: #111111;
     --ux-border: #efefef;
     --ux-text-main: #1a1a1a;
     --ux-text-muted: #666666;
     --ux-accent: #000000;
     /* Shine color: A bright flash effect */
     --ux-shine-grad: linear-gradient(to right,
             rgba(255, 255, 255, 0) 0%,
             rgba(255, 255, 255, 0.8) 50%,
             rgba(255, 255, 255, 0) 100%);
     --ux-speed: 0.6s;
 }



 #ux-mv-wrapper-section {
     padding: 0px 6%;
     display: flex;
     justify-content: center;
     align-items: center;
     min-height: 80vh;
     margin-left: 70px;
 }

 .ux-mv-container {
     max-width: 1100px;
     width: 100%;
 }

 /* Symmetric Grid System */
 .ux-mv-grid-layout {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 0;
     border: 1px solid var(--ux-border);
 }

 .ux-mv-card {
     padding: 90px 60px;
     background: var(--ux-white);
     position: relative;
     overflow: hidden;
     transition: transform 0.4s ease;
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 /* Vertical Line Separator */
 .ux-border-right {
     border-right: 1px solid var(--ux-border);
 }

 /* --- THE SHINE EFFECT --- */
 .ux-mv-card::after {
     content: '';
     position: absolute;
     top: 0;
     left: -150%;
     width: 60%;
     height: 100%;
     background: var(--ux-shine-grad);
     transform: skewX(-25deg);
     transition: 0s;
     pointer-events: none;
     z-index: 5;
 }

 /* Shine Animation on Hover */
 .ux-mv-card:hover::after {
     left: 150%;
     transition: var(--ux-speed) ease-in-out;
 }

 /* Subtle Card Lift */
 .ux-mv-card:hover {
     z-index: 10;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
 }

 .ux-mv-label {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 12px;
     font-weight: 700;
     letter-spacing: 4px;
     color: #F28200;
     text-transform: uppercase;
     margin-top: -30px;
 }

 .ux-mv-title {
     font-family: 'Space Grotesk', sans-serif;
     font-size: 36px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: -1px;
     color: var(--ux-dark);
 }

 .ux-mv-desc {
     font-size: 18px;
     line-height: 1.7;
     color: var(--ux-text-muted);
     max-width: 480px;
 }

 /* Corner Accent for a Sharp Look */
 .ux-corner-accent {
     position: absolute;
     top: 30px;
     right: 30px;
     width: 15px;
     height: 15px;
     border-top: 1px solid var(--ux-border);
     border-right: 1px solid var(--ux-border);
 }

 /* Responsive Breakpoints */
 @media (max-width: 992px) {
     .ux-mv-grid-layout {
         grid-template-columns: 1fr;
     }

     .ux-border-right {
         border-right: none;
         border-bottom: 1px solid var(--ux-border);
     }

     .ux-mv-card {
         padding: 70px 40px;
     }

     #ux-mv-wrapper-section {
         padding: 60px 20px;
     }

 }

 @media (max-width: 600px) {
     .ux-mv-title {
         font-size: 28px;
     }

     #ux-mv-wrapper-section {
         margin-left: 0px;
     }

     .ux-mv-desc {
         font-size: 16px;
     }
 }





















 /* director desk css start  */


 :root {
     /* Unique Variable Names */
     --av-ldr-brand: #0f172a;
     --av-ldr-gold: #F28200;
     --av-ldr-charcoal: #334155;
     --av-ldr-slate: #64748b;
     --av-ldr-pure: #ffffff;
     --av-ldr-soft-bg: #f8fafc;
 }

 .av-ldr-main-container {
     max-width: 1100px;
     margin: 60px auto;
     padding: 0 20px;
     font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
 }

 /* Unique Grid Layout - Outer Box Removed */
 .av-ldr-flex-wrapper {
     display: grid;
     grid-template-columns: 1fr 1.1fr;
     /* Reduced Gap between sections */
     gap: 40px;
     align-items: center;
 }

 /* Media Section - Height reduced by 20px (from 500px to 480px) */
 .av-ldr-media-box {
     position: relative;
     height: 600px;
     width: 100%;
     border-radius: 10px;
     overflow: hidden;
 }

 .av-ldr-media-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.8s ease;
 }

 .av-ldr-media-box:hover img {
     transform: scale(1.08);
 }

 /* Floating Achievement Badge */
 .av-ldr-stat-badge {
     position: absolute;
     bottom: 25px;
     right: 25px;
     background-color: var(--av-ldr-gold);
     color: var(--av-ldr-pure);
     padding: 15px 20px;
     border-radius: 12px;
     text-align: center;
     box-shadow: 0 10px 25px rgba(242, 130, 0, 0.3);
     z-index: 2;
 }

 .av-ldr-stat-badge b {
     display: block;
     font-size: 22px;
     line-height: 1;
 }

 .av-ldr-stat-badge span {
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 /* Content Section */
 .av-ldr-info-panel {
     padding: 20px 0;
 }

 .av-ldr-tagline {
     color: var(--av-ldr-gold);
     text-transform: uppercase;
     letter-spacing: 2.5px;
     font-weight: 800;
     font-size: 13px;
     margin-bottom: 12px;
     display: block;
 }

 .av-ldr-full-name {
     font-size: 44px;
     color: var(--av-ldr-brand);
     margin-bottom: 4px;
     font-weight: 800;
 }

 .av-ldr-designation {
     font-size: 18px;
     color: var(--av-ldr-slate);
     margin-bottom: 25px;
     display: block;
     font-weight: 500;
 }

 .av-ldr-description {
     font-size: 17px;
     line-height: 1.8;
     margin-bottom: 25px;
     color: var(--av-ldr-charcoal);
     position: relative;
 }

 .av-ldr-quote-mark {
     font-size: 60px;
     color: var(--av-ldr-gold);
     opacity: 0.15;
     position: absolute;
     top: -25px;
     left: -15px;
     font-family: serif;
 }

 .av-ldr-mission-text {
     border-left: 3px solid var(--av-ldr-gold);
     padding-left: 20px;
     margin-bottom: 35px;
     font-style: italic;
     font-size: 17px;
     color: var(--av-ldr-brand);
 }

 /* Social Icons - Updated with SVGs */
 .av-ldr-social-row {
     display: flex;
     gap: 12px;
     margin-bottom: 35px;
 }

 .av-ldr-icon-link {
     width: 42px;
     height: 42px;
     border-radius: 10px;
     background-color: #f1f5f9;
     display: flex;
     justify-content: center;
     align-items: center;
     transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
     color: var(--av-ldr-brand);
 }

 .av-ldr-icon-link svg {
     width: 20px;
     height: 20px;
     fill: currentColor;
 }

 .av-ldr-icon-link:hover {
     background-color: var(--av-ldr-brand);
     color: var(--av-ldr-pure);
     transform: translateY(-4px);
 }

 .av-ldr-autograph {
     font-family: 'Dancing Script', cursive, 'Brush Script MT';
     font-size: 34px;
     color: var(--av-ldr-brand);
     margin-top: 15px;
 }

 /* Responsive Fixes */
 @media (max-width: 900px) {
     .av-ldr-flex-wrapper {
         grid-template-columns: 1fr;
         gap: 30px;
     }

     .av-ldr-media-box {
         height: 400px;
     }

     .av-ldr-info-panel {
         text-align: left;
     }

     .av-ldr-mission-text {
         border-left: none;
         border-top: 2px solid var(--av-ldr-gold);
         padding-left: 0;
         padding-top: 15px;
     }

     .av-ldr-social-row {
         justify-content: left;
     }
 }























 /* gallery page desgien  */

 :root {
     --ap-primary-core: #2d3436;
     --ap-accent-vibe: #F28200;
     --ap-bg-base: #ffffff;
     --ap-bg-soft: #f9f9f9;
     --ap-txt-dark: #2d3436;
     --ap-txt-faded: #636e72;
     --ap-motion-fast: 0.4s;
     --ap-gutter-size: 20px;
     --ap-corner-round: 4px;
 }



 .ap-main-wrapper {
     max-width: 1100px;
     margin: 0 auto;
     margin-bottom: 50px;
 }

 /* --- Navigation / Filter Section --- */
 .ap-nav-toolbar {
     display: flex;
     justify-content: center;
     border-bottom: 1px solid #eee;
     margin-bottom: 40px;
     flex-wrap: wrap;
     gap: 10px;
 }

 .ap-nav-link {
     background: none;
     border: none;
     padding: 15px 25px;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 0.85rem;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
     color: var(--ap-txt-faded);
     position: relative;
     transition: color var(--ap-motion-fast);
 }

 .ap-nav-link i {
     font-size: 1.1rem;
 }

 .ap-nav-link::after {
     content: '';
     position: absolute;
     bottom: -1px;
     left: 0;
     width: 0;
     height: 2px;
     background-color: var(--ap-accent-vibe);
     transition: width var(--ap-motion-fast);
 }

 .ap-nav-link.ap-active-state {
     color: var(--ap-primary-core);
 }

 .ap-nav-link.ap-active-state::after {
     width: 100%;
 }

 .ap-nav-link:hover {
     color: var(--ap-primary-core);
 }

 /* --- Gallery Grid Layout --- */
 .ap-portfolio-grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     grid-auto-rows: 200px;
     gap: var(--ap-gutter-size);
 }

 .ap-card-element {
     position: relative;
     overflow: hidden;
     border-radius: var(--ap-corner-round);
     background-color: var(--ap-bg-soft);
     transition: transform 0.3s ease, opacity 0.4s ease;
     opacity: 1;
     transform: scale(1);
     padding: 5px;
     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
 }

 /* Special Spans */
 .ap-row-span-2 {
     grid-row: span 2;
 }

 .ap-col-span-2 {
     grid-column: span 2;
 }

 .ap-row-span-3 {
     grid-row: span 3;
 }

 .ap-card-element img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.6s ease;
 }

 .ap-card-element:hover img {
     transform: scale(1.05);
 }

 .ap-card-element.ap-is-hidden {
     display: none;
     opacity: 0;
     transform: scale(0.8);
 }

 /* Overlay Effect */
 .ap-card-overlay {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: rgba(0, 0, 0, 0.8);
     opacity: 0;
     transition: opacity 0.3s;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #F28200;
     font-weight: bold;
     pointer-events: none;
 }

 .ap-card-element:hover .ap-card-overlay {
     opacity: 1;
 }

 /* --- Responsive Design --- */
 @media (max-width: 1024px) {
     .ap-portfolio-grid {
         grid-template-columns: repeat(3, 1fr);
     }
 }

 @media (max-width: 768px) {
     .ap-portfolio-grid {
         grid-template-columns: repeat(2, 1fr);
         grid-auto-rows: 180px;
     }

     .ap-nav-toolbar {
         justify-content: flex-start;
         overflow-x: auto;
         white-space: nowrap;
         padding-bottom: 10px;
     }

     .ap-col-span-2 {
         grid-column: span 1;
     }
 }

 @media (max-width: 480px) {
     .ap-portfolio-grid {
         grid-template-columns: 1fr;
         grid-auto-rows: 250px;
     }

     .ap-main-wrapper {
         padding: 20px;
         margin-bottom: 50px;
     }

     .ap-row-span-2,
     .ap-row-span-3 {
         grid-row: span 1;
     }
 }























 /* blog section start  */


 /* Unique CSS Variables */
 :root {
     --z-primary-bg: #f4f7f6;
     --z-card-bg: #ffffff;
     --z-accent-color: #2563eb;
     --z-text-dark: #1f2937;
     --z-text-gray: #4b5563;
     --z-shadow-soft: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
     --z-border-radius: 12px;
     --z-transition-speed: 0.3s;
 }



 /* Main Section Container */
 #z-blog-main-section {
     max-width: 1100px;
     margin: 0 auto;
     margin-bottom: 50px;
 }



 /* Responsive Grid System */
 .z-blog-grid-wrapper {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     /* Desktop: 3 cards per row */
     gap: 30px;
 }

 /* Individual Card Style */
 .z-unique-blog-card {
     background: var(--z-card-bg);
     overflow: hidden;
     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
     transition: transform var(--z-transition-speed) ease, box-shadow var(--z-transition-speed) ease;
     display: flex;
     flex-direction: column;
     height: 100%;
 }



 /* Image Container */
 .z-card-media-box {
     width: 100%;
     height: 200px;
     overflow: hidden;
     padding: 10px;

 }

 .z-card-media-box img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.5s ease;
     box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;

 }

 .z-unique-blog-card:hover .z-card-media-box img {
     transform: scale(1.01);
 }

 /* Content Area */
 .z-card-content-body {
     padding: 20px;
     display: flex;
     flex-direction: column;
     flex-grow: 1;
 }

 .z-card-title-heading {
     font-size: 1.25rem;
     color: var(--z-text-dark);
     margin-bottom: 12px;
     line-height: 1.4;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     /* Title fix to 2 lines */
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .z-card-short-desc {
     font-size: 0.95rem;
     color: var(--z-text-gray);
     line-height: 1.6;
     margin-bottom: 20px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     /* Description fix to 3 lines */
     -webkit-box-orient: vertical;
     overflow: hidden;
 }



 /* Responsive Breakpoints */
 @media (max-width: 1024px) {
     .z-blog-grid-wrapper {
         grid-template-columns: repeat(2, 1fr);
         /* Tablet: 2 cards per row */
     }
 }

 @media (max-width: 640px) {
     .z-blog-grid-wrapper {
         grid-template-columns: 1fr;
         /* Mobile: 1 card per row */
     }

     .z-section-title {
         font-size: 1.8rem;
     }

     #z-blog-main-section {
         padding: 15px;
     }
 }


























 /* Contact page degisne  */


 /* CSS Variables */
 :root {
     --vai-primary: #F28200;
     --vai-dark: #2d3436;
     --vai-text-light: #636e72;
     --vai-bg-white: #ffffff;
     --vai-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
     --vai-radius: 30px;
 }







 .vai-contact-wrapper {
     max-width: 1100px;
     /* padding: 0px 20px; */
     margin: 0 auto;
     display: flex;
     flex-wrap: wrap;
     gap: 10px;
     align-items: stretch;
     margin-bottom: 50px;
 }



 .vai-map-section {
     flex: 1.2;
     min-width: 580px;
     position: relative;
     background: var(--vai-bg-white);
     box-shadow: var(--vai-shadow);
     overflow: hidden;
     min-height: 600px;
 }

 .vai-map-iframe {
     width: 100%;
     height: 100%;
     border: 0;
     filter: grayscale(100%) contrast(1.1) brightness(0.9);
     transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .vai-map-section:hover .vai-map-iframe {
     filter: grayscale(0%) contrast(1) brightness(1);
 }



 .vai-info-card {
     position: absolute;
     bottom: 30px;
     left: 30px;
     right: 30px;
     z-index: 10;
     background: rgba(255, 255, 255, 0.85);
     backdrop-filter: blur(15px);
     padding: 35px;
     border-radius: 25px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.5);
     animation: floatAnim 5s ease-in-out infinite;
 }

 @keyframes floatAnim {

     0%,
     100% {
         transform: translateY(0);
     }

     50% {
         transform: translateY(-15px);
     }
 }

 .vai-info-item {
     display: flex;
     align-items: center;
     margin-bottom: 25px;
 }

 .vai-info-item:last-child {
     margin-bottom: 0;
 }

 .vai-info-icon {
     width: 45px;
     height: 45px;
     background: var(--vai-primary);
     border-radius: 15px;
     display: flex;
     align-items: center;
     justify-content: center;
     margin-right: 20px;
     flex-shrink: 0;
     box-shadow: 0 8px 15px rgba(0, 180, 216, 0.2);
 }

 .vai-info-icon svg {
     width: 22px;
     height: 22px;
     fill: white;
 }

 .vai-info-content h4 {
     color: var(--vai-primary);
     font-size: 0.85rem;
     text-transform: uppercase;
     letter-spacing: 1px;
     margin-bottom: 4px;
 }

 .vai-info-content p {
     color: var(--vai-dark);
     font-size: 0.95rem;
     line-height: 1.4;
     font-weight: 500;
 }

 /* --- Right Side: Form Section --- */
 .vai-form-section {
     flex: 1;
     min-width: 500px;
     background-color: var(--vai-bg-white);

     box-shadow: var(--vai-shadow);
     position: relative;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }







 .vai-form-content-wrapper {
     position: relative;
     z-index: 1;
 }

 .vai-form-header {
     margin-bottom: 40px;
 }

 .vai-form-header h2 {
     font-size: 2.2rem;
     color: var(--vai-dark);
     margin-bottom: 8px;
     font-weight: 800;
 }

 .vai-form-header span {
     color: var(--vai-primary);
 }

 .vai-form-header p {
     color: var(--vai-text-light);
     font-size: 0.95rem;
 }

 .vai-input-group {
     margin-bottom: 22px;
 }

 .vai-input-field {
     width: 100%;
     padding: 16px 20px;
     border: 2px solid #f2f4f7;
     background: rgba(253, 253, 254, 0.8);
     border-radius: 12px;
     outline: none;
     font-size: 1rem;
     transition: all 0.4s ease;
     color: var(--vai-dark);
 }

 .vai-input-field:focus {
     border-color: var(--vai-primary);
     background: #fff;
     box-shadow: 0 8px 20px rgba(0, 180, 216, 0.06);
 }

 textarea.vai-input-field {
     height: 120px;
     resize: none;
 }

 .vai-submit-btn {
     background: var(--vai-primary);
     color: white;
     border: none;
     padding: 18px;
     border-radius: 12px;
     font-size: 1rem;
     font-weight: 700;
     cursor: pointer;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     transition: all 0.4s ease;
     width: 100%;
     margin-top: 10px;
 }

 .vai-submit-btn:hover {
     background: #F28200;
     transform: translateY(-3px);
     box-shadow: 0 12px 25px rgba(0, 180, 216, 0.3);
 }

 .vai-status-msg {
     margin-top: 15px;
     text-align: center;
     font-size: 0.9rem;
     display: none;
     padding: 10px;
     border-radius: 10px;
     font-weight: 500;
 }

 /* --- ALL DEVICES RESPONSIVE QUERIES --- */


 @media (max-width: 1100px) {
     body {
         padding: 40px 20px;
     }

     .vai-contact-wrapper {
         gap: 30px;
     }

     .vai-form-section {}

     .vai-form-section::before {
         font-size: 6rem;
     }

     .vai-map-section {
         min-height: 550px;
     }
 }


 @media (max-width: 992px) {
     .vai-contact-wrapper {
         flex-direction: column;
     }

     .vai-map-section {
         min-height: 450px;
         min-width: 100%;
     }

     .vai-form-section {
         min-width: 100%;

     }
 }

 /* Mobile Devices */
 @media (max-width: 768px) {

     .vai-contact-wrapper {
         gap: 20px;
         margin-top: -50px;
         padding: 15px;
         margin-bottom: 60px;
     }

     .vai-map-section {
         min-height: 400px;
     }

     .vai-info-card {
         padding: 25px;
         bottom: 20px;
         left: 20px;
         right: 20px;
     }

     .vai-form-header h2 {
         font-size: 1.8rem;
     }

     .vai-form-section::before {
         font-size: 5rem;
     }
 }

 /* Small Mobile Devices (iPhone SE, etc.) */
 @media (max-width: 480px) {
     body {
         padding: 20px 10px;
     }

     .vai-map-section {
         min-height: 350px;
     }

     .vai-info-card {
         position: relative;
         bottom: 0;
         left: 0;
         right: 0;
         margin: 15px;
         animation: none;
         padding: 20px;
         border-radius: 15px;
         background: var(--vai-bg-white);
     }

     .vai-info-icon {
         width: 35px;
         height: 35px;
         margin-right: 12px;
     }

     .vai-info-icon svg {
         width: 16px;
         height: 16px;
     }

     .vai-info-content p {
         font-size: 0.85rem;
     }

     .vai-form-section {}

     .vai-form-header h2 {
         font-size: 1.6rem;
     }

     .vai-form-header p {
         font-size: 0.85rem;
     }

     .vai-form-section::before {
         display: none;
     }


     .vai-input-field {
         padding: 14px 16px;
         font-size: 0.9rem;
     }

     .vai-submit-btn {
         padding: 16px;
         font-size: 0.95rem;
     }
 }

 /* Extra Small Screens */
 @media (max-width: 350px) {
     .vai-form-header h2 {
         font-size: 1.4rem;
     }

     .vai-info-card {
         margin: 10px;
         padding: 15px;
     }
 }

























 /* viedo section start  */

 :root {
     --ft-gal-bg: #0f172a;
     --ft-card-bg: #1e293b;
     --ft-accent: #F28200;
     --ft-gap: 25px;
     --ft-transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
 }


 /* Unique Section ID */
 #ft-video-section-container {
     padding: 60px 20px;
     max-width: 1100px;
     margin: 0 auto;
     margin-top: -20px;
 }

 /* Unique Grid Class */
 .ft-video-layout-grid {
     display: grid;
     /* Default: 3 columns for desktop */
     grid-template-columns: repeat(3, 1fr);
     gap: var(--ft-gap);
 }

 /* Video Card Wrapper */
 .ft-video-item-wrapper {
     overflow: hidden;
     position: relative;
     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
     transition: transform var(--ft-transition), box-shadow var(--ft-transition);
     border: 1px solid rgba(255, 255, 255, 0.1);
 }

 .ft-video-item-wrapper:hover {

     box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
     border-color: var(--ft-accent);
     z-index: 10;
 }

 /* Container for Iframe to maintain 16:9 aspect ratio */
 .ft-iframe-container {
     position: relative;
     width: 100%;
     padding-top: 56.25%;
     /* 16:9 Aspect Ratio */
 }

 .ft-iframe-container iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     border: none;
 }

 /* Responsive Breakpoints */

 /* Tablet View (2 columns) */
 @media (max-width: 1024px) {
     .ft-video-layout-grid {
         grid-template-columns: repeat(2, 1fr);
     }

     #ft-video-section-container {
         padding: 40px 15px;
     }
 }

 /* Mobile View (1 column) */
 @media (max-width: 640px) {
     .ft-video-layout-grid {
         grid-template-columns: 1fr;
     }

     #ft-video-section-container {
         padding: 30px 20px;
         margin-bottom: 50px;
     }
 }




















 /* new application section start  */

 /* --- Unique Main Container --- */
 #gal-marquee-wrapper-99 {
     max-width: 1100px;
     margin: 50px auto;
     overflow: hidden;
     /* Hide the sliding overflow */
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }



 /* --- Slider Logic --- */
 .gal-slider-track-container {
     display: flex;
     width: 100%;
     margin-bottom: 40px;
     position: relative;
 }

 /* The moving track */
 .gal-slider-track {
     display: flex;
     gap: 25px;
     padding: 10px 0;
     width: max-content;
     /* Allow track to be as wide as its content */
 }

 /* Animation for Row 1 (Moving Left) */
 .gal-move-left {
     animation: scrollLeft 25s linear infinite;
 }

 /* Animation for Row 2 (Moving Right) */
 .gal-move-right {
     animation: scrollRight 25s linear infinite;
 }

 /* Pause on Hover */
 .gal-slider-track-container:hover .gal-slider-track {
     animation-play-state: paused;
 }

 @keyframes scrollLeft {
     0% {
         transform: translateX(0);
     }

     100% {
         transform: translateX(calc(-50% - 12.5px));
     }

     /* Adjust based on gap */
 }

 @keyframes scrollRight {
     0% {
         transform: translateX(calc(-50% - 12.5px));
     }

     100% {
         transform: translateX(0);
     }
 }

 /* --- Individual Card Styling (Original Design) --- */
 .gal-single-card-box {
     display: flex;
     flex-direction: column;
     align-items: center;
     width: 300px;
     /* Fixed width for slider consistency */
     flex-shrink: 0;
 }

 .gal-img-holder-frame {
     position: relative;
     width: 100%;
     aspect-ratio: 1 / 1;
     background: #ffffff;
     border-radius: 20px;
     padding: 10px;
     box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
     transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
     cursor: pointer;
     border: 1px solid rgba(0, 0, 0, 0.05);
     z-index: 1;
     box-sizing: border-box;
 }

 .gal-inner-content-clip {
     width: 100%;
     height: 100%;
     border-radius: 12px;
     overflow: hidden;
     position: relative;
 }

 .gal-photo-element {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.6s ease;
 }

 .gal-img-holder-frame:hover {
     border-color: #F28200;
     box-shadow: 0 10px 25px rgba(242, 130, 0, 0.15);
 }

 .gal-img-holder-frame:hover .gal-photo-element {
     transform: scale(1.18);
 }

 /* Shine Streak Effect */
 .gal-img-holder-frame::before {
     content: '';
     position: absolute;
     top: 0;
     left: -150%;
     width: 60%;
     height: 100%;
     background: linear-gradient(to right,
             rgba(255, 255, 255, 0) 0%,
             rgba(255, 255, 255, 0.5) 50%,
             rgba(255, 255, 255, 0) 100%);
     transform: skewX(-20deg);
     transition: 0.75s;
     z-index: 5;
     pointer-events: none;
 }

 .gal-img-holder-frame:hover::before {
     left: 150%;
 }

 /* Floating Interactive Dot */
 .gal-status-dot-icon {
     position: absolute;
     top: 18px;
     right: 18px;
     width: 7px;
     height: 7px;
     background: #F28200;
     border-radius: 50%;
     opacity: 0;
     transition: 0.35s;
     z-index: 6;
     box-shadow: 0 0 8px rgba(242, 130, 0, 0.6);
 }

 .gal-img-holder-frame:hover .gal-status-dot-icon {
     opacity: 1;
 }

 /* Text Label Area */
 .gal-text-label-area {
     margin-top: 14px;
     text-align: center;
 }

 .gal-label-title-main {
     font-size: 0.85rem;
     color: #4a5568;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1.2px;
     transition: color 0.3s;
     margin: 0;
 }

 .gal-single-card-box:hover .gal-label-title-main {
     color: #F28200;
 }

 .gal-label-title-main::after {
     content: '';
     display: block;
     width: 0;
     height: 2px;
     background: #F28200;
     transition: width 0.3s ease;
     margin: 5px auto 0;
 }

 .gal-single-card-box:hover .gal-label-title-main::after {
     width: 25px;
 }

 /* --- Responsive Adjustments --- */
 @media (max-width: 768px) {
     .gal-single-card-box {
         width: 240px;
     }

     .gal-section-header-text {
         font-size: 1.5rem;
     }
 }

























 /* Privacy Policy Page css  */


 :root {
     --ft-primary: #F28200;
     --ft-secondary: #000;
     --ft-text-dark: #263238;
     --ft-text-light: #546e7a;
     --ft-bg-soft: #f8fcfd;
     --ft-white: #ffffff;
     --ft-accent: #00796b;
 }




 #ft-main-title {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 800;
     letter-spacing: -1px;
     margin-bottom: 15px;
     text-transform: uppercase;
 }

 .ft-effective-date {
     display: inline-block;
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     backdrop-filter: blur(5px);
 }

 /* Main Content Styling */
 #ft-policy-body {
     padding: 60px 20px;
     max-width: 900px;
     margin: 0 auto;
 }

 .ft-intro-text {
     font-size: 1.2rem;
     color: var(--ft-primary);
     font-weight: 600;
     margin-bottom: 40px;
     border-left: 4px solid var(--ft-secondary);
     padding-left: 20px;
 }

 .ft-section {
     margin-bottom: 50px;
     position: relative;
 }

 .ft-section-num {
     font-size: 0.8rem;
     font-weight: 700;
     color: var(--ft-secondary);
     display: block;
     margin-bottom: 5px;
     text-transform: uppercase;
     letter-spacing: 2px;
 }

 .ft-section-title {
     font-size: 1.6rem;
     color: var(--ft-primary);
     margin-bottom: 15px;
     display: flex;
     align-items: center;
 }

 .ft-section-content {
     font-size: 1.05rem;
     color: var(--ft-text-light);
 }

 .ft-list {
     list-style: none;
     margin-top: 15px;
 }

 .ft-list-item {
     position: relative;
     padding-left: 25px;
     margin-bottom: 10px;
 }

 .ft-list-item::before {
     content: "→";
     position: absolute;
     left: 0;
     color: var(--ft-secondary);
     font-weight: bold;
 }

 /* Contact Grid */
 #ft-contact-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 20px;
     margin-top: 30px;
 }

 .ft-contact-card {
     background: var(--ft-bg-soft);
     padding: 25px;
     border-radius: 12px;
     border: 1px solid #e1eef0;
     transition: transform 0.3s ease;
 }

 .ft-contact-card:hover {
     transform: translateY(-5px);
     border-color: var(--ft-secondary);
 }

 .ft-contact-label {
     font-weight: 700;
     color: var(--ft-primary);
     display: block;
     margin-bottom: 8px;
 }

 .ft-contact-value {
     color: var(--ft-secondary);
     text-decoration: none;
     font-size: 1.1rem;
     word-break: break-all;
 }

 /* Footer Note */
 #ft-policy-footer {
     text-align: center;
     padding: 40px 20px;
     border-top: 1px solid #eee;
     margin-top: 40px;
     color: var(--ft-text-light);
     font-size: 0.9rem;
 }

 /* Responsive Adjustments */
 @media (max-width: 600px) {
     #ft-policy-header {
         padding: 50px 20px;
     }

     .ft-section-title {
         font-size: 1.4rem;
     }
 }

 



























 
 /* terms ans condiction css start  */




 :root {
     --ft-terms-primary: #F28200;
     --ft-terms-secondary: #000;
     --ft-terms-text-dark: #263238;
     --ft-terms-text-light: #546e7a;
     --ft-terms-bg-soft: #f8fcfd;
     --ft-terms-white: #ffffff;
     --ft-terms-accent: #00796b;
 }




 #ft-terms-main-title {
     font-size: clamp(2rem, 5vw, 3.5rem);
     font-weight: 800;
     letter-spacing: -1px;
     margin-bottom: 15px;
     text-transform: uppercase;
 }

 .ft-terms-effective-date {
     display: inline-block;
     background: rgba(255, 255, 255, 0.15);
     padding: 8px 20px;
     border-radius: 50px;
     font-size: 0.9rem;
     font-weight: 500;
     backdrop-filter: blur(5px);
 }

 /* Main Content Styling */
 #ft-terms-body {
     padding: 60px 20px;
     max-width: 900px;
     margin: 0 auto;
 }

 .ft-terms-intro-text {
     font-size: 1.25rem;
     color: var(--ft-terms-primary);
     font-weight: 600;
     margin-bottom: 50px;
     border-left: 5px solid var(--ft-terms-secondary);
     padding-left: 20px;
 }

 .ft-terms-section {
     margin-bottom: 60px;
     position: relative;
 }

 .ft-terms-section-num {
     font-size: 0.8rem;
     font-weight: 800;
     color: var(--ft-terms-secondary);
     display: block;
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 3px;
 }

 .ft-terms-section-title {
     font-size: 1.75rem;
     color: var(--ft-terms-primary);
     margin-bottom: 20px;
     border-bottom: 1px solid #edf2f7;
     padding-bottom: 10px;
 }

 .ft-terms-section-content {
     font-size: 1.1rem;
     color: var(--ft-terms-text-light);
     text-align: justify;
 }

 .ft-terms-highlight-box {
     background-color: var(--ft-terms-bg-soft);
     padding: 30px;
     border-radius: 15px;
     border-right: 4px solid var(--ft-terms-secondary);
     margin: 30px 0;
 }

 /* Footer Note */
 #ft-terms-footer {
     text-align: center;
     padding: 60px 20px;
     background-color: #fcfdfe;
     border-top: 1px solid #eee;
     color: var(--ft-terms-text-light);
     font-size: 0.95rem;
 }

 .ft-terms-legal-mention {
     margin-top: 10px;
     font-weight: bold;
     color: var(--ft-terms-primary);
 }

 /* Responsive Adjustments */
 @media (max-width: 600px) {
     #ft-terms-header {
         padding: 60px 20px;
     }

     .ft-terms-section-title {
         font-size: 1.5rem;
     }

     .ft-terms-intro-text {
         font-size: 1.1rem;
     }
 }
































/* Sparate blog page degisne css  */


        :root {
            --sb-main-bg: #f8fafc;
            --sb-card-bg: #ffffff;
            --sb-accent-color: #2563eb;
            --sb-accent-hover: #1d4ed8;
            --sb-text-dark: #1e293b;
            --sb-text-light: #64748b;
            --sb-border-color: #e2e8f0;
            --sb-shadow: 0 4px 20px -5px rgba(0, 0, 0, 0.1);
            --sb-radius: 12px;
            --sb-container-width: 1200px;
        }

        

      
        #sb-unique-header {
            background: var(--sb-card-bg);
            padding: 1.5rem;
            text-align: center;
            border-bottom: 1px solid var(--sb-border-color);
            margin-bottom: 2rem;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .sb-main-wrapper {
            max-width: var(--sb-container-width);
            margin: 0 auto;
            padding: 0 1.25rem;
            display: flex;
            gap: 2.5rem;
            align-items: flex-start; /* Important for sticky */
        }

        /* Blog Section */
        .sb-content-area {
            flex: 2;
            background: var(--sb-card-bg);
            padding: 2.5rem;
            border-radius: var(--sb-radius);
            box-shadow: var(--sb-shadow);
        }

        .sb-post-title {
            font-size: 2.25rem;
            line-height: 1.2;
            margin-bottom: 1.5rem;
            color: var(--sb-text-dark);
            font-weight: 800;
        }

        .sb-featured-img {
            width: 100%;
            height: 400px;
            overflow: hidden;
            background: #eef2f6;
            border-radius: var(--sb-radius);
            margin-bottom: 2rem;
            border: 1px solid var(--sb-border-color);
        }

        .sb-featured-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }


        .sb-paragraph {
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            color: #475569;
        }

        /* Sidebar & Sticky Form */
        .sb-sidebar-sticky {
            flex: 1;
            position: sticky;
            top: 200px !important; /* Header ke niche rahega */
            width: 100%;
        }

        

        /* Mobile Responsive Logic */
        @media (max-width: 1024px) {
            .sb-main-wrapper {
                gap: 1.5rem;
            }
        }

        @media (max-width: 850px) {
            .sb-main-wrapper {
                flex-direction: column;
                align-items: stretch;
            }

            .sb-sidebar-sticky {
                position: relative;
                top: 0;
                margin-top: -60px;
                margin-bottom: 300px;

            }

            .sb-post-title {
                font-size: 1.75rem;
            }

            .sb-content-area {
                padding: 1.5rem;
            }
            
            .sb-featured-img {
                height: 250px;
            }
        }
























        /* whatapp button css  */

    

   
        .wa-container {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 9999;
            display: flex;
            align-items: center;
            flex-direction: row-reverse; /* Button right mein rahega, text left se niklega */
        }

        /* Blinking Animation */
        @keyframes pulse-blink {
            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); }
        }

        /* The Button Circle */
        .wa-button {
            background-color: #25D366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 2px 5px 15px rgba(0,0,0,0.2);
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse-blink 2s infinite; /* Blinking effect */
            text-decoration: none;
        }

        /* WhatsApp SVG Icon */
        .wa-icon {
            width: 35px;
            height: 35px;
            fill: white;
        }

        /* Number/Text Reveal Panel */
        .wa-number-reveal {
            background-color: #ffffff;
            color: #333;
            padding: 0 0;
            margin-right: -10px; /* Overlap effect */
            height: 45px;
            border-radius: 25px 0 0 25px;
            display: flex;
            align-items: center;
            font-weight: 600;
            font-size: 14px;
            max-width: 0;
            overflow: hidden;
            white-space: nowrap;
            transition: max-width 0.5s ease, padding 0.5s ease;
            box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        }

        /* Hover Interaction */
        .wa-container:hover .wa-number-reveal {
            max-width: 250px; /* Number reveal size */
            padding: 0 30px 0 20px;
        }

        .wa-container:hover .wa-button {
            animation-play-state: paused; /* Hover par blinking ruk jayegi */
            transform: scale(1.1);
        }

        /* Mobile Adjustments */
        @media screen and (max-width: 600px) {
            .wa-container {
                bottom: 20px;
                right: 20px;
            }
            .wa-button {
                width: 65px;
            height: 60px;
            }
            .wa-icon {
                width: 28px;
                height: 28px;
            }
            .wa-number-reveal {
                font-size: 12px;
                height: 40px;
            }
            /* Mobile par hover kaam nahi karta toh hamesha toggle ya click logic rakhte hain, 
               par responsive design ke liye hum css se handle kar rahe hain */
        }