/* ==== WHOLE RESET ==== */


/* Preloader styling */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #44a2e7; /* You can change the background color */
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out; /* Smooth fade-out effect */
}

#preloader img {
    max-width: 150px; /* Set the maximum width of your image */
    height: auto; /* Maintains the image's aspect ratio */
}


@keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Page Overflow Fix */
body, html {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    line-height: 1.6;
    padding-top: 25px;
}


/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


section {
    padding-top: 0;
    padding-bottom: 0;
}

#hero-top,
#about,
#services,
#portfolio,
#contact-section {
  scroll-margin-top: 56px;
}



.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* ==== TOP NAVBAR ==== */

.top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #44a2e7;
    padding: 8px 30px;
    position: fixed;
    width: 100%;
    transition: transform 0.3s ease;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left .logo {
    height: 40px;
}

.nav-left .brand-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-right li a {
     outline: none;
    color: white; /* ya jo tumhara original color ho */
    background: transparent; /* ensure koi background bhi na aaye */
}

.nav-right li a:hover {
    color: #e0e0e0;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}


/* ==== HERO SECTION ==== */
.hero-img {
    position: relative;
    line-height: 1; /* Fixes potential gap under the image */
    height: 70vh;
    overflow: hidden;
}

.main-hero-image {
    width: 100%;
    height: auto; /* Maintains aspect ratio */
    object-fit: cover; /* Shows full image without cropping */
    display: block;
}

.overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px 20px 15vh;
    box-sizing: border-box;
}
.h1 {
    font-size: 3rem;
    line-height: 1;
}

.h1 strong {
    font-size: 2rem;
    display: block;
    margin-top: 30px;
    font-weight: bold;
}

.hero-text {
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.3rem;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-text p {
    font-size: 1.5rem;
    line-height: 1.6;
}

.hero-text p1 {
    font-size: 1.2rem;
    line-height: 1.6;
}


/* Hero Section Feature Buttons */
.hero-features {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap; /* Mobile par buttons ko agli line mein le aye ga */
    gap: 12px;       /* Buttons ke darmyan space */
    margin-top: 30px;  /* Upar walay text se faasla */
}

.feature-btn {
    background-color: rgba(255, 255, 255, 0.15); /* Halkay transparent white color ka button */
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 10px 18px;
    border-radius: 50px; /* Bilkul gol corners */
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(5px); /* Sheeshay jesa effect (Glassmorphism) */
    -webkit-backdrop-filter: blur(5px);
}

/* YEH CODE BUTTON KO RIGHT SIDE PAR LE AAYEGA */

/* Final CSS for Scroll Button */
#scrollToTopBtn {
    display: none;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background-color: #333;
    color: white;
    border: none;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

#scrollToTopBtn:hover {
    background-color: #000;
}

/* ==== ABOUT SECTION ==== */
.about-section {
    padding: 60px 0;
    background-color: white;
    text-align: center;
}

.about-section h2 {
    font-size: 2.5rem;
    color:  #44a2e7;
    margin-bottom: 20px;
    text-align: center;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto 20px;
    font-size: 1.1rem;
    text-align: justify;
}

.tagline-wrapper {
    display: flex;
    justify-content: center;    /* Horizontally center */
    align-items: center;        /* Vertically center */
    height: 10vh;              /* Full screen height, adjust if needed */
}

.about-tagline {
    text-align: center;
    font-weight: bold;
    font-size: 1.6rem !important;
    padding: 10px 10px;
}

/* ==== SERVICES SECTION ==== */
.services-section {
    padding: 8px 0;
    background: url('what-we-do.webp') center/cover no-repeat fixed;
    color: #4339ab;
    position: relative;
    text-align: center;
    transform: translateZ(0);
}

.services-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    background-color: black;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.black-highlight {
  background-color: rgba(0, 0, 0, 0.3);
  color: white;
  padding: 10px 8px;
  border-radius: 8px;
  text-align: center;
  margin-top: 10px;
  font-size: 1.04rem;
}

.services-section .container {
    position: relative;
    z-index: 2;
    color: white;
}

.section-title {
    font-size: 3rem;
    color: #44a2e7;
    margin-bottom: 15px;
    text-align: center;
}

.section-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.6rem;
    color: #ddd;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #333;
    text-align: left;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.service-icon {
    width: 60px;
    height: 60px;
    background:  #44a2e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.service-card h3 {
    color: #333;
    margin-bottom: 15px;
    font-size: 1.3rem;
    text-align: center;
}

.service-card ul {
    list-style: none;
    padding-left: 0;
}

.service-card ul li {
    position: relative;
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #555;
    padding-left: 1.1em;
    text-align: left;
}

.service-card ul li:before {
    content: "\2022";
    color: #44a2e7;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    position: absolute;
    left: 0;
}

/* ==== WHO WE WORK WITH SECTION ==== */
.clients-section {
    padding: 80px 0 40px;
}

.clients-flex {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.clients-content {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 30px;
    background:  #44a2e7;
    color: white;
    border-radius: 10px;
    box-sizing: border-box;
}

.clients-content h2 {
    font-size: 2.5rem;
    color: white;
    margin-bottom: 20px;
    font-weight: bold;
    text-align: center;
}

.clients-list {
    list-style: disc;
    padding-left: 20px;
    font-size: 1.5rem;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: left;
}

.clients-content .clients-list li {
    color: #f0f0f0;
    font-weight: 500;
}

.clients-content .clients-note {
    color: #e0e0e0;
    font-style: normal;
    font-size: 1rem;
    padding-left: 0;
    text-align: left;
}

.clients-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
}

.clients-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    max-width: 580px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* ==== FEATURED VIDEOS SECTION ==== */
.videos-section {
    padding: 40px 0 80px;
    background-color: #f8f8f8;
    text-align: center;
}

.videos-section .section-title {
    color: #44a2e7;
    margin-bottom: 15px;
}

.videos-section .section-subtitle {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 40px;
    text-align: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.video-item {
  cursor: pointer;
  text-align: center;
}

.video-item img {
  width: 100%;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.video-item:hover img {
  transform: scale(1.05);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.modal-content {
  position: relative;
  max-width: 90%;
  width: 800px;
  background: #000;
  border-radius: 10px;
}

.modal-content iframe {
  width: 100%;
  height: 450px;
  border-radius: 10px;
}

.close-modal {
  position: absolute;
  top: -12px;
  right: -5px;
  font-size: 30px;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  padding: 4px 10px;
}


.video-thumb {
  position: relative;
  width: 100%;
}

.video-thumb img.youtube-logo {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 50px;
  height: auto;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  padding: 2px 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}


.playlist-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin: 40px auto 0 auto;  /* center with spacing */
  background-color: #fff;
  padding: 30px;
  border-radius: 0px;
  box-shadow: #44a2e7;
  max-width: 600px;
  width: 100%; /* responsive full width */
  text-align: center;
}
.container {
  padding: 0 15px;
  max-width: 1200px;
  margin: 0 auto;
}

.playlist-cta p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    text-align: center;
}

.playlist-btn {
    background-color: #44a2e7;
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.playlist-btn i.fa-youtube {
  font-size: 2rem;
  color: red;
}

.playlist-btn:hover {
    background-color: #44a2e7;
    transform: translateY(-2px);
}

/* ==== WHY VIBLUENCE SECTION ==== */
.why-vibulence-section {
    padding: 40px 0;
    background: url('why_vibluence.webp') center/cover no-repeat fixed;
    position: relative;
    text-align: center;
    color: white;
    transform: translateZ(0);
}

.why-vibulence-section .container {
    position: relative;
    z-index: 2;
}

.why-vibulence-section .overlay {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.why-vibulence-section .section-title {
    color: #44a2e7;
}

.why-vibulence-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);;
    gap: 15px;
    margin-top: 20px;
}

.why-vibulence-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    color: #333;
}

.why-vibulence-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.why-vibulence-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 15px;
    text-align: center;
}

.why-vibulence-card p {
    font-size: 1rem;
    color: #555;
    text-align: left;
}

/* ==== FREE EDIT SECTION ==== */
.free-edit-section {
    background-color: #f8f8f8;
    color: #333;
    padding: 100px 0px ;
}

.free-edit-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.free-edit-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-edit-image-container img {
    max-width: 100%;
    height: 350px;
    object-fit: fixed;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.free-edit-text-container {
    flex: 1;
    min-width: 300px;
    height: 350px;
    text-align: center;
    background: #44a2e7;
    color: white;
    padding: 30px;
    border-radius: 10px;
    box-sizing: border-box;
}

.free-edit-text-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    text-align: center;
}

.free-edit-text-container p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: #f0f0f0;
    line-height: 1.6;
    text-align: left;
}

.free-edit-btn {
    background-color: #fff;
    color: #44a2e7;
    font-weight: bold;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.free-edit-btn:hover {
    background-color: #eaeaea;
    transform: translateY(-2px);
}

/* ==== FOOTER STYLE ==== */

.footer-section {
  background-color: #44a2e7;
  padding: 30px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-section a:hover {
  color: #d9e6f2;
}

/* Flex container: side-by-side layout */
.footer-flex {
    background-color: #44a2e7;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px 30px 30px;
}

/* Left Side */
.collaborate-text {
  color: white;
  text-align: left;
  width: 30%;
  min-width: 250px;
}

.collab-heading {
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.collaborate-text p {
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: 0.9rem;
  text-align: left;
}

.collab-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.collab-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  justify-content: flex-start;
  text-align: left;
}

.check-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}

.contact-center {
  width: 30%;
  min-width: 200px;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.contact-heading {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.contact-email {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-center .contact-line {
    display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px; /* thoda space between icon/text */
  margin: 8px 0;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: white; /* White if dark footer; adjust if needed */
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
}

.contact-link:hover {
  color: white; /* WhatsApp green */
  text-decoration: underline;
}

.contact-link img {
  height: 20px;
  align-items: center;
  width: 20px;
  object-fit: contain;
}

/* Right Side */
/* Right Side Column */


.footer-right {
  width: 30%;
  min-width: 250px;
  align-self: center; /* Yeh line poore right column ko vertically center kar degi */
}

/* Social Links Icons */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center; /* Isko 'flex-end' se 'flex-start' kar diya hai */
  gap: 20px;
  width: 100%;
  margin-top: 80px;
}

.social-links a {
    font-size: 2rem; /* Icon ka size */
    color: white;
}

.social-links li a i {
  margin-right: 10px;
  margin-left: 20px;
}

/* Footer Copy */
.footer-copy {
    background-color: #44a2e7;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  margin-top: 0px;
  font-size: 12px;
  flex-wrap: wrap;
}

.footer-copy-left {
  color: #e0e0e0;
}

.footer-copy-left a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-copy-left a:hover {
  text-decoration: underline;
}

.footer-copy-right {
  margin-top: -10px;    /* thoda upar */
  margin-left: -30px;   /* thoda left shift */
  display: flex;
  gap: 10px;
}


.footer-btn {
  color: white;
  background-color: transparent;
  border: 1px solid white;
  padding: 1px 10px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: white;
  color: #44a2e7;
}


/* Terms and Conditions */

.page-container {
  max-width: 800px;
  margin: 80px auto 40px auto;  /* Upar 80px gap, neeche 40px gap, dono sides center */
  padding: 30px 20px;              /* Left-right thoda padding */
  background: white;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  color: #222;
  line-height: 1.6;
  text-align: center;           /* By default saara text center aligned */
}

.last-updated-bold {
    text-align: center !important;
    font-weight: bold;
    font-size: 1.5rem !important; /* Force this font size */
    margin-bottom: 40px;
    line-height: 2 !important;
}

/* Page ke jo section headings hain (h2), unko left aligned karna */
.page-container h2 {
  line-height: 2;
  text-align: left;             /* Headings left aligned */
  font-weight: 700;
  color: #44a2e7;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Main page title (h1) center aligned hi rahe */
.page-container h1 {
  text-align: center;
  font-weight: 700;
  color: #44a2e7;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Lists (ul) ko left aligned karte hain, magar unka container center mein rahe */
.page-container ul {
  text-align: left !important;      /* Force left alignment */
  display: block !important;        /* Full width block */
  margin: 1rem 0 1.5rem 0 !important;  /* Normal margin */
  padding-left: 20px !important;    /* Bullet indent */
  max-width: 800px;                 /* Container width */
}

/* Normal paragraphs (p) aur contact lines center aligned */
.page-container p, 
.page-container .contact-line {
  text-align: justify;
  margin-left: 40px;
}

/* Contact info lines ko left align karna with fixed width aur center block */
.page-container .contact-line {
  text-align: left;
  max-width: 400px;            /* Width limit jisse neat dikhe */
  margin: 0.3rem auto;         /* Center horizontally */
}

/* Links styling */
.page-container a {
  color: #44a2e7;
  text-decoration: none;
}

.page-container a:hover {
  text-decoration: underline;
}

.page-container p.indented-paragraph {
  margin-left: 25px; /* jitna bhi aap chahen adjust kar sakte hain */
  text-align: justify;
}
.page-container p.indented-paragraph1 {
  margin-left: 28px; /* jitna bhi aap chahen adjust kar sakte hain */
  text-align: justify;
}

.page-container p.indented {
  margin-left: 50px; /* Aap jitna chaho adjust kar sakte ho */
}

.space-between {
  line-height: 7;  /* 1.5 rem ka extra neeche space */
}


/* ==   LEGAL PAGES (TERMS & POLICY) NEW STYLE  == */
/* =============================================== */

/* Main container jo page jaisa dikhta hai */
.legal-container {
    max-width: 850px;
    margin: 80px auto 60px auto;
    padding: 40px 50px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.legal-container .last-updated-bold {
    text-align: center;
    font-weight: bold;
    font-size: 1.5rem !important; /* Force this font size */
    color: #555;
    margin-bottom: 40px;
    line-height: 1.5;
}

/* Main Heading (TERMS AND CONDITIONS) */
.legal-container h1 {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    color: #44a2e7;         /* Blue color */
    border-bottom: none;      /* Underline hata di */
    padding-bottom: 10px;
    margin-bottom: 20px;
}

/* "Last updated" wali line */
.legal-container .last-updated-bold {
    font-size: 1rem;
    font-weight: bold;      /* Bold text */
    text-align: center;
    color: #333;
    margin-bottom: 40px;      /* Neeche zyada space */
}

/* Section Headings (e.g., 1. Services Offered) */
.legal-container h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #44a2e7;         /* Blue color */
    text-align: left;
    margin-top: 40px;
    margin-bottom: 15px;
}

/* Paragraphs aur Lists */
.legal-container p, .legal-container li {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
    text-align: left;       /* Saara text left aligned */
    margin-bottom: 15px;
}

.legal-container ul {
    list-style-type: disc; /* Normal dot wali list */
    padding-left: 25px;
    margin-bottom: 20px;
}

.legal-container li {
    margin-bottom: 10px;
}

/* Links */
.legal-container a {
    color: #44a2e7;
    font-weight: 500;
    text-decoration: none;
}

.legal-container a:hover {
    text-decoration: underline;
}



/* ==== RESPONSIVE STYLES (TABLET & MOBILE) ==== */

/* Tablet adjustments */
@media only screen and (max-width: 1024px) and (min-width: 769px) {
#hero-top,
#about,
#services,
#portfolio,
#contact-section {
  scroll-margin-top: 80px; /* navbar ki height ke barabar */
}


    /* === TABLET HERO ADJUSTMENTS === */
    .hero-img {
        height: 35vh; /* Mobile se thoda zyada height */
        max-height: 600px;
    }
    
    .main-hero-image {
        height: 100%;
        object-fit: cover;
    }

    .overlay {
    display: flex;
    justify-content: center; /* Content ko horizontally center karega */
    align-items: center;     /* Content ko vertically center karega */
    
    /* Yeh content ko bilkul neeche chipakne se bachayega (optional) */
    padding: 20px; 
    box-sizing: border-box; /* Padding ko theek se handle karne ke liye */
}

    .hero-text {
        padding: 10px 0; /* Mobile se thoda zyada padding */
        width: 100%; /* Mobile ke 120% se chhota */
    }

    .hero-text h1 {
        font-size: 1.2rem; /* Mobile se bada font */
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-text h1 p {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 20px;
        font-weight: 400;
    }

    .hero-features {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 15px;
        padding: 5px 15px;
        width: 100%;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .hero-features::-webkit-scrollbar {
        display: none;
    }

    .feature-btn {
        white-space: nowrap;
        border-radius: 25px;
        font-size: 0.7rem;
        padding: 6px 8px;
        background-color: rgba(255, 255, 255, 0.15);
        border: 1px solid rgba(255, 255, 255, 0.3);
        color: #fff;
        font-weight: 600;
        flex-shrink: 0;
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
    }

    /* Navbar */
    .top-navbar {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    background: #44a2e7;
    padding: 8px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left .logo {
    height: 40px;
}

.nav-left .brand-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 25px;
}
.nav-right a {
        pointer-events: auto !important; /* JS ko click rokne se mana karega */
    }

.nav-right li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right li a:hover {
    color: #e0e0e0;
}

.hamburger {
    display: none;
}

    /* About Section */
    .about-section {
        padding: 30px 30px;
    }

    .about-section h2 {
        font-size: 2.4rem;
        margin-bottom: 20px;
    }

    .about-section .about-intro-line strong {
        font-size: 1.5rem;
    }

    .about-section p {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }

    /* Tagline scrolling text */
    .tagline-wrapper {
        padding: 15px 0;
    }

    .about-tagline {
        font-size: 5rem; /* Mobile ke 8rem se thoda chhota */
        animation-duration: 20s;
    }

    /* Services & Why Vibluence Grids */
    .services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 3 ki jagah 4 columns kar diye */
    gap: 20px;
    margin-top: 20px;
}
    .why-vibulence-grid {
        grid-template-columns: repeat(3, 1fr); /* Tablet pe 3 columns */
        gap: 20px;
        margin-top: 20px;
    }

    .black-highlight {
        font-size: 1rem;
        padding: 8px 20px;
        margin-bottom: 10px;
        margin-top: -16px;
    }

    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 18px;
        margin-bottom: 12px;
    }

    .service-card {
        padding: 15px 15px;
        font-size: 1rem;
        min-height: auto;
        text-align: center;
    }

    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .service-card ul li {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    /* Clients & Free Edit Sections */
    .clients-flex,
    .clients-content {
        padding: 30px 25px;
    }

    .clients-content h2 {
        font-size: 2rem;
    }

    .clients-content .clients-note {
        font-size: 1rem;
    }

    /* OUR WORK IN ACTION */
.playlist-btn {
    padding: 12px 28px;         
    font-size: 1.1rem; 
    color: #ffffff;            
    border: none;               
    border-radius: 50px;       
    text-decoration: none;      
    font-weight: 600;           
    
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;   
    transition: background-color 0.3s ease;
}

.playlist-btn .fa-youtube {
    font-size: 2rem; /* Icon ko text se thora sa bara rakha hai */
    color: red;
}

 /* Why Vibluence Cards */
    .why-vibulence-card {
        padding: 20px 15px;
        font-size: 1rem;
        text-align: center;
    }

    .why-vibulence-card h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .why-vibulence-card p {
        font-size: 1rem;
        line-height: 1.6;
        text-align: center;
    }

/* FREE EDITS */

    .free-edit-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }

    .free-edit-image-container,
    .free-edit-text-container {
        width: 50%;
        min-width: auto;
    }

    /* Footer */
    /* ==== FOOTER STYLE (Corrected) ==== */

.footer-section {
  background-color: #44a2e7;
  padding: 30px 20px;
}

.footer-section a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.footer-section a:hover {
  color: #d9e6f2;
}

/* Flex container: side-by-side layout */
.footer-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px 30px 10px;
}

/* Left Side */
.collaborate-text {
  color: white;
  text-align: left;
  width: 30%;
  min-width: 250px;
}

.collab-heading {
  font-weight: bold;
  font-size: 1.9rem;
  margin-bottom: 10px;
  color: #fff;
  text-align: center;
}

.collaborate-text p {
  line-height: 1.4;
  margin-bottom: 12px;
  font-size: 1rem;
  text-align: left;
}

.collab-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}

.collab-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 8px;
  justify-content: flex-start;
  text-align: left;
}

.check-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
  margin-top: 2px;
}


.contact-center {
  width: 30%;
  min-width: 200px;
  text-align: center;
  color: white;
  padding-top: 80px;
}

.contact-heading {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: white;
}

.contact-email {
  color: white;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
}

.contact-email:hover {
  text-decoration: underline;
}

.contact-line {
  margin: 8px 0;
  font-size: 1rem;
  color: white;
}

.contact-link {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.contact-link:hover {
  text-decoration: underline;
}

/* WhatsApp Link ki Styling */
.whatsapp-link {
    display: inline-flex;  /* Logo aur text ko ek line mein layega */
    align-items: center;   /* Unko vertically center karega */
    gap: 8px;              /* Logo aur text ke beech faasla dega */
    text-decoration: none; /* Link ke neeche se line hatayega */
    color: inherit;        /* Text ka color wahi rakhega jo parent ka hai */
    font-weight: 500;
}

/* WhatsApp Logo ka Size */
.whatsapp-link img {
    width: 22px;   /* Logo ki chaurai */
    height: 22px;  /* Logo ki unchai */
}

/* Right Side */
/* Right Side Column */
.footer-right {
  width: 30%;
  min-width: 250px;
  align-self: center; /* Yeh line poore right column ko vertically center kar degi */
}

/* Social Links Icons */
.social-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  justify-content: center; /* Isko 'flex-end' se 'flex-start' kar diya hai */
  gap: 20px;
  width: 100%;
  margin-top: 80px;
}

.social-links a {
    font-size: 2rem; /* Icon ka size */
    color: white;
}

.social-links li a i {
  margin-right: 20px;
  margin-left: 20px;
}

/* Footer Copy */
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Aap is value ko adjust kar saktay hain */
  padding-top: 30px; /* Pehlay 20px tha */
  border-top: 1px solid rgba(255, 255, 255, 0.2);

  color: #e0e0e0;
  font-size: 12px;
  flex-wrap: wrap;
}
.footer-copy-left {
  margin-top: -30px;
  color: #e0e0e0;
}

.footer-copy-left a {
  color: #ffffff;
  text-decoration: none;
  font-weight: bold;
}

.footer-copy-left a:hover {
  text-decoration: underline;
}

.footer-copy-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.footer-btn {
  color: white;
  background-color: transparent;
  margin-top: -20px;
  border: 1px solid white;
  padding: 0px 15px;
  font-size: 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-btn:hover {
  background-color: white;
  color: #44a2e7;
}
}



@media (min-width: 481px) and (max-width: 768px) {

    /* === MOBILE HERO FIX START === */
    .hero-img {
        height: 25vh; /* Give the hero section a fixed height on mobile */
        max-height: 450px; /* Set a max height to avoid being too tall */
    }
    
    .main-hero-image {
        height: 100%; /* Make the image fill the container's new height */
        object-fit: cover; /* Make the image cover the area, cropping if necessary */
    }

    .hero-text {
    width: 100%;            /* Fix overflow */
    padding: 5px 0.2px;     /* Proper padding from left and right */
    box-sizing: border-box; /* Ensure padding doesn't cause overflow */
}


.overlay {
    align-items: center;    /* Text ko wapas vertically center mein layein */
    padding: 1px;        /* Padding ko mobile ke liye reset karein */
}

    .hero-text h1 {
        font-size: 1.5rem;
        line-height: 0.5;
        margin-bottom: 15px;
    }

    .hero-text h1 p {
        font-size: 0.8rem;
        line-height: 1.2;
        margin-top: 15px;
        font-weight: 300;
    }

 .hero-features {
    display: flex;
    flex-wrap: nowrap;        /* Prevent wrap */
    overflow-x: auto;         /* Enable horizontal scroll */
    gap:5px;
    justify-content: flex-start;
    padding: 2px 0px;
    margin-top: 15px;
    width: 100%;
    scrollbar-width: none;    /* Firefox hide scrollbar */
    -ms-overflow-style: none; /* IE & Edge hide scrollbar */
    position: relative;
    left: 100px;
}

.hero-features::-webkit-scrollbar {
    display: none;           /* Chrome/Safari hide scrollbar */
}

.feature-btn {
    white-space: nowrap;
    border-radius: 20px;
    font-size: 0.8rem;
    padding: 5px 10px;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-weight: 500;
    flex-shrink: 0;           /* Prevent squishing */
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

    /* === MOBILE HERO FIX END === */


    /* Navbar Mobile */
    .top-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #44a2e7;
    padding: 8px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-left .logo {
    height: 40px;
}

.nav-left .brand-name {
    font-size: 1.4rem;
    font-weight: bold;
    color: white;
}

.nav-right {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-right li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right li a:hover {
    color: #e0e0e0;
}

.hamburger {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}
   /* Scrolling Tagline Fix */
.tagline-wrapper {
    width: 100%;
    overflow: hidden; /* Yeh text ko box ke bahir jane se rokay ga */
    padding: 10px 0;
}

.about-tagline {
    font-weight: bold;
    font-size: 8rem;
    
    /* Animation Properties */
    white-space: nowrap; /* Text ko ek line mein rakhega */
    animation: scroll-text 15s linear infinite; /* Animation ka naam aur time */
}



    /* Services & Why Vibluence Grids */
    .services-grid,

    .section-title {
    font-size: 5rem;   /* Aap is value ko apni marzi se kam ya zyada kar sakte hain */
    font-weight: 700;      /* Text ko bold rakhega */
    text-align: center;    /* Heading ko center mein rakhega (optional) */
    margin-bottom: 25px;   /* Heading ke neeche thora sa faasla dega */
    color: #44a2e7;          /* Text ka color (agar change karna ho) */
}

    
    .why-vibulence-grid {
        display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns in a row */
    gap: 15px; /* Gap between cards */
    margin-top: 15px;
  }
  .black-highlight {
        font-size: 0.9rem; /* thoda bada font mobile pe */
        padding: 5px 2px;
        margin-bottom: 2px;
        margin-top: 10;
    }

    .service-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
    margin-bottom: 10px;
  }

    .service-card {
    padding: 10px 10px; /* Less padding for shorter height */
    font-size: 0.5rem;
    min-height: auto; /* Remove fixed height if any */
    text-align: center;
  }



   .service-card h3 {
    font-size: 0.67rem;
    margin-bottom: 10px;
  }

  .service-card ul li {
    font-size: 0.7rem;
    margin-bottom: 5px;
  }

    .service-card ul {
        flex-grow: 1;
    }


    .service-card ul li::before {
        left: 0.2em;
    }

    /* "Who We Work With" block font size adjustments */
    /* Main container jo text aur image ko hold kar raha hai */
.clients-flex {
    display: flex;
    align-items: stretch; /* Yeh text aur image walay box ko barabar height dega */
    gap: 30px;            /* Dono columns ke beech mein space */
    margin-top: 20px;
}

/* Dono columns (text aur image) ko barabar width dega */
.clients-content,
.clients-image {
    flex: 1; /* Dono ko 50%-50% space dega */
    padding: 10px; /* Thori si internal padding */
}

/* Asal Image ki styling - YEH SAB SE ZAROORI HAI */
.clients-image img {
    width: 100%;       /* Image ko apne container ki poori width dega */
    height: 100%;      /* Image ko apne container ki poori height dega */
    object-fit: cover; /* Image ko stretch kiye bina box mein fit karega (crop karke) */
    border-radius: 8px; /* Optional: Image ke koney gol karne ke liye */
}

/* Baqi text ki styling (yeh aapke paas pehle se ho sakti hai) */
.clients-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.clients-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

/* "Our Work In Action" block font size adjustments */

.videos-section {
    padding: 20px 15px;
}

.videos-section .section-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.videos-section .section-subtitle {
    font-size: 0.82rem;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.video-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.video-item {
    width: 100%;
}

.video-item iframe {
    width: 100%;
    height: 200px; /* Adjust as needed */
    border-radius: 8px;
}

.video-item h3 {
    font-size: 0.9rem;
    margin-top: 8px;
    text-align: center;
}

.playlist-cta {
    text-align: center;
    margin-top: 30px;
}

.playlist-cta p {
    font-size: 0.78rem;
    margin-bottom: 10px;
}

.playlist-btn {
    font-size: 0.85rem;
    padding: 8px 16px;
}


/*Why Vibluence Sections*/


.section-title {
  font-size: 1.49rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* OUTER WRAPPER – hides scroll overflow */
.why-vibulence-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

/* INNER SCROLLING TRACK */
.why-vibulence-grid {
  display: flex;
  gap: 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Individual Card */
.why-vibulence-card {
  flex: 0 0 250px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  scroll-snap-align: start;
  text-align: center;
}

.why-vibulence-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.why-vibulence-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

    .why-vibulence-grid {
    animation: scroll-cards 35s linear infinite;
    width: max-content;
  }

  .why-vibulence-grid:active {
    animation-play-state: paused;
  }

  
    /*Free Edit Sections*/
  
   
 .free-edit-text-container {
    height: auto; /* <--- YEH LINE MASLA HAL KAR DEGI */
    padding: 10px; /* Padding ko charon taraf se aek jaisa rakhein */
}

.free-edit-text-container h2 {
    font-size: 1.3rem; /* Aap is value ko adjust kar sakte hain */
    line-height: 1.2;  /* Lines ke beech ka faasla theek karega */
    font-weight: bold;
}

.free-edit-image-container img {
    height: auto; /* Yeh image ko stretch hone se bachayega */
}

.free-edit-section {
    padding: 30px 0; /* Padding ko 100px se 60px kar dein */
}



    /* FOOTER MOBILE-SPECIFIC STYLES */

    .footer-section {
  padding-bottom: 0;
  margin-bottom: 0;
}

    .footer-flex {
    flex-direction: column;
    gap: 10px;
    padding: 0px 0; 
  }
.collab-heading{
  font-size: 1.7rem;
    text-align: center;
  font-weight: bold; 
}


/* "Let's Collaborate" section ki list ko center karne ke liye */
.collab-list {
    /* List ki default styling hata dein */
    list-style-type: none;
    padding-left: 0;

    /* List ki chaurai (width) uske sab se lambay item ke barabar kar dega */
    width: max-content;
    
    /* Ab is poore list block ko horizontally center kar dega */
    margin-left: auto;
    margin-right: auto;

    /* Optional: Upar walay text se thora faasla dega */
    margin-top: 25px;
}

/* List ke items ko behtar dikhane ke liye */
.collab-list li {
    /* Text hamesha left se shuru hoga */
    text-align: left; 
    
    /* Har item ke beech vertical space */
    margin-bottom: 15px; 

    /* Font size behtar karne ke liye (aap adjust kar sakte hain) */
    font-size: 1rem;
    font-weight: 500;
}
.collaborate-text {
        width: 100%;
    }
  .collaborate-text p {
    text-align: center;
  font-size: 0.9rem; /* ya 0.85rem */
  white-space: nowrap; /* line-break nahi hoga */
  overflow: hidden; /* agar bahar jaye toh chhup jayega */
  text-overflow: ellipsis; /* agar bahar jaye toh ... lagega */
}
  .contact-center,
  .footer-right {
    width: 100% !important;
    gap: 10px;
    margin-top: -10px;
    padding: 2px 0; 
    min-width: auto !important;
    text-align: center !important;
  }

  /* Social links ko horizontal center me lane ke liye */
.social-links {
  display: flex;
  justify-content: center; /* Icons ko left align karne ke liye */
  align-items: center;
  flex-direction: row; 
  gap: 10px;
  width: 100%; /* Container ko poori width dega */
  padding-left: 10px; /* Left side se thora sa space dega */
  box-sizing: border-box; /* Padding ko width ke andar adjust karega */
  margin: 0;
  list-style: none;
}

.social-links li {
  display: inline-flex;      /* Inline flex, taake horizontal ho */
  align-items: center;
}

.social-links li a {
  display: flex;
  align-items: center;
  gap: 8px;                  /* Icon aur text ke beech gap */
  color: white;
  text-decoration: none;
  font-weight: 500;
}

/* Main wrapper for the copyright section */
.footer-copy {
  display: flex;
  justify-content: space-between; /* Pushes children to opposite ends */
  align-items: center;            /* Vertically aligns text and buttons */
  width: 100%;
  padding: 5px 1px;             /* Adds space around the section */
  box-sizing: border-box;
  flex-wrap: nowrap;              /* Ensures items never stack vertically */
}

/* Left side container for copyright text */
.footer-copy-left {
  font-size: 0.3rem;     /* Font size kam kar diya hai */
  white-space: nowrap;    /* Isse text ek hi line mein rahega */
  overflow: hidden;       /* Agar text phir bhi zyada ho to overflow hide hojayega */
  text-overflow: ellipsis;/* Chupne wale text ki jagah '...' dikhega */
  text-align: left;
  color: #ccc;
}

/* Right side container for the buttons */
.footer-copy-right {
    font-size: 3rem;
  display: flex;
  align-items: center;
  gap: 15px;      /* Space between the two buttons */
  flex-shrink: 0; /* Prevents this container from shrinking */
}

/* Styling for the actual buttons (links) */
a.footer-btn {
  font-size: 0.3rem;     /* Button ke box ka color (example) */
  padding: 4px 5px;               /* YEH BOX KA SIZE CONTROL KARTA HAI */
  border-radius: 4px;             /* Box ke koney gol karne ke liye */
  color: white;
  text-decoration: none;
  white-space: nowrap;
}

/* Terms and Conditions */
 .page-container {
    max-width: 95%;
    margin: 60px auto 30px auto;
    padding: 20px 15px;
  }

  .page-container h1 {
    font-size: 1rem;
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  .page-container h2 {
    font-size: 1.1rem;
    margin-top: 1.2rem;
    margin-bottom: 0.6rem;
    text-align: left;
  }
  .last-updated-bold {
    font-size: 1.2rem;
    line-height: 2.5;
  }

  .page-container p,
  .page-container p.indented,
  .page-container p.indented-paragraph,
  .page-container {
    font-size: 0.75rem;
    margin-left: 25px;
    text-align: justify;
  }

  .page-container ul {
    font-size: 0.75rem;
    padding-left: 30px;
    margin: 1rem 0 1.5rem 0;
  }

  .page-container .contact-line {
    font-size: 0.9rem;
    text-align: left;
    margin-left: 10px;
    max-width: 100%;
  }

 /* Final Style for the Highlighted Text Box */

.page-container .space-between {
    display: block;
    width: 90%;
    max-width: 500px;
    margin: 25px auto;
    padding: 15px 20px;
    
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    
    background-color: #f7f7f7; /* Box ka halka background color */
    
    /* --- EDGES / BORDERS --- */
    border-top: 2px solid #44a2e7;      /* Upar ka halka border */
    border-right: 5px solid #44a2e7;     /* Right ka halka border */
    border-bottom: 2px solid #44a2e7;   /* Neeche ka halka border */
    border-left: 5px solid #44a2e7;     /* Left ka mota, color wala border */
    
    border-radius: 5px; /* Koney thore se gol */
}

.page-container .space-between strong {
    font-weight: 500;
    color: #333;
}

/* ==   LEGAL PAGES (TERMS & POLICY) STYLES     == */


.legal-container {
    max-width: 95%;
    margin: 40px auto 30px auto;
    padding: 20px 15px;
    box-shadow: none;
    border-radius: 0;
  }

  .legal-container h1 {
    font-size: 1.4rem;
    margin-bottom: 15px;
  }

  p.last-updated-bold {
    font-size: 1rem;
    line-height: 2.5;
  }


  .legal-container h2 {
    font-size: 0.8rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #44a2e7;
  }

 .page-container .page-intro {
    text-align: left !important;
    margin-left: 20px !important; /* Left se 30px ka faasla dega */
    margin-right: 10px !important; /* Right se bhi thora faasla */
}

  .legal-container p,
  .legal-container li {
    font-size: 0.79rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 12px;
  }

  .legal-container ul {
    padding-left: 20px;
    margin-bottom: 20px;
  }

  .legal-container li {
    margin-bottom: 8px;
  }

  .legal-container a {
    font-size: 0.85rem;
  }
}



@media (max-width: 480px) {

  

    /* =================================
       Hero Section
    ==================================== */
    .hero-img {
        height: 30vh; /* Mobile par height thori adjust ki */
        max-height: 400px;
    }

    .main-hero-image {
        height: 100%;
        object-fit: cover;
    }

    .overlay {
        display: flex; /* Isko flex rakhein center karne ke liye */
        align-items: center;
        justify-content: center;
        padding: 0 15px; /* Side se thori padding */
    }

    .hero-text {
        width: 100%;
        text-align: center; /* Text ko center align kiya */
        box-sizing: border-box;
    }

    .hero-text h1 {
        font-size: 1rem; /* Font size thora barha diya hai */
        line-height: 0.5;
        margin-bottom: 10px;
    }

    /* NOTE: h1 ke andar p nahi hota, isko alag se style kiya hai */
    .hero-text p {
        font-size: 0.5rem;
        line-height: 1.4;
        font-weight: 300;
        margin-top: 10px;
    }

    /* --- Scrolling Feature Buttons --- */
   .hero-features {
    display: grid;
    /* Do barabar ke columns banayein */
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 4px 4px;
    margin-top: 20px;
    box-sizing: border-box;
}

/* Teesre button ko alag se style karein */
.feature-btn:nth-child(3) {
    /* Is button ko dono columns ki jagah de dein */
    grid-column: 1 / -1;
    /* Isko iski line ke center mein rakhein */
    justify-self: center;
    /* Button ki max-width set karein takay woh behtar lage */
    width: 80%;
    max-width: 300px;
    text-align: center;
}

.feature-btn {
    margin-top: -2px;
    /* Aapke purane styles yahan mojood rahenge... */
    border-radius: 10px;
    font-size: 0.5rem;
    padding: 4px 4px;
    /* ...etc... */

    /* === YEH LINES ADD KAREIN === */
    min-height: 2px;         /* Sab buttons ki kam se kam height set karega */
    display: flex;            /* Text ko button ke center mein laane ke liye */
    align-items: center;      /* Vertically center karega */
    justify-content: center;  /* Horizontally center karega */
}

    /* =================================
       Navbar
    ==================================== */
  #hero-top,
  #about,
  #services,
  #portfolio,
  #contact-section {
    scroll-margin-top: 56px;
  }
    
    .nav-right {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #44a2e7;
        position: absolute;
        top: 40px;
        left: 0;
        text-align: center;
        z-index: 999;
        padding: 5px 0;
    }

    .nav-right.active {
        display: block;
    }

    .nav-right li {
        margin: 4px 0;
    }

    .hamburger {
        display: block;
    }

    

    /* =================================
       General Sections & Typography
    ==================================== */
    .section-title {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
    }

    /* =================================
       About Section
    ==================================== */
    .about-section h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .about-section .about-intro-line strong {
        font-size: 1.2rem;
    }

    .about-section p {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    /* --- Scrolling Tagline --- */
    .tagline-wrapper {
        width: 100%;
        overflow: hidden;
        padding: 15px 0;
    }

    .about-tagline {
        font-weight: bold;
        font-size: 6rem; /* Size thora kam kiya takay ajeeb na lage */
        white-space: nowrap;
        animation: scroll-text 15s linear infinite;
    }

    /* =================================
       Services & Why Vibluence Sections
    ==================================== */

    .services-section {
      font-size: 2rem;
}


    .black-highlight {
        font-size: 0.44rem;
        margin-top: -1px;
    }

    .services-grid {
        display: grid;
        grid-template-columns: 1fr 1fr; /* 2 columns */
        gap: 15px;
        margin-top: 20px;
    }

    .service-card {
        padding: 5px;
        font-size: 0.8rem;
        text-align: center;
        background-color: #f9f9f9; /* Card ko thora color dia */
        border-radius: 8px;
    }
    
    .service-card h3 {
        font-size: 0.90rem;
        margin-bottom: 10px;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
        margin-bottom: 10px;
    }

    /* --- WHO WE WORK WITH --- */

 .clients-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* horizontally center karega */
    align-items: center;      /* vertically align karega */
    gap: 30px; /* Text aur image ke darmiyan gap */
    padding: 10px; /* Container ke 4 taraf spacing */
    margin-top: -40px;
    margin-bottom: 10px;
}

.clients-section {
    margin-bottom: 15px;
    padding-bottom: 5px;
}

.clients-content h2 {
    font-size: 1.5rem; /* ya jitna chhota chahte ho */
    font-weight: bold;
    margin-bottom: 10px; /* optional spacing niche */
}

.clients-list li {
    font-size: 1rem; /* ya jitna chhota chahte ho */
    line-height: 1.4;   /* optional: spacing between lines */
    margin-bottom: 5px; /* optional: spacing between items */
}

.clients-note {
    font-size: 0.6rem; /* ya jitna chhota chahte ho, try 0.7rem or 0.65rem too */
    margin-top: 10px;   /* optional spacing above */
}



.clients-image {
    flex: 1 1 300px; /* Responsive width and minimum size */
    max-width: 500px; /* Optional: limit width */
}

.clients-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px; /* optional styling */
}

 /* =================================
       OUR WORK IN ACTIOn
    ==================================== */

    .section-title {
    font-size: 1.5rem; /* ya jitna chhota chahte ho */
    font-weight: bold;
    margin-bottom: 2px; /* optional spacing */
    text-align: center; /* optional: agar center chahte ho */
}

.videos-section {
    margin-top: 10px;
    padding-top: 5px;
}


.videos-section .section-subtitle {
    font-size: 0.8rem !important;
    color: #555;
    text-align: center;
}
    .video-grid {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .video-item iframe {
        width: 100%;
        height: 220px; /* Thori height barha di */
        border-radius: 8px;
        border: none;
    }

    .video-item h3 {
        font-size: 1rem;
        margin-top: 10px;
        text-align: center;
    }

    .playlist-cta p {
    font-size: 0.74rem; /* ya jitna chhota chahte ho, try 0.75rem too */
    color: #555;         /* optional: halka color */
    text-align: center;  /* optional */
    margin-bottom: 10px;
}

.playlist-btn {
    font-size: 0.85rem;        /* text size */
    padding: 8px 16px;         /* box size - kam karo to button chhota hoga */
    border-radius: 6px;        /* optional: rounded corners */
    background-color: #44a2e7; /* ya tumhara desired red color */
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.playlist-btn i {
    font-size: 1.5rem; /* ya 0.9rem */
    color: red;
}

.playlist-cta{
 margin-top: 12px;
}

    /* --- Why Vibluence Scrolling Cards (FIXED) --- */
    /* NOTE: Aapne .why-vibluence-grid ke 2 style likhe they, unko fix kar ke ek kar diya hai */


    .why-vibluence-scroll-wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  position: relative;
}

.why-vibluence-grid {
  display: flex;
  flex-wrap: nowrap;             /* Prevent wrapping to new line */
  gap: 15px;
  width: max-content;
  animation: scroll-cards 25s linear infinite;
}

.why-vibluence-card {
  flex: 0 0 250px;               /* Fixed width: don’t allow shrink */
  height: 180px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 12px;
  text-align: center;
  overflow: hidden;
}

.why-vibluence-card h3 {
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.why-vibluence-card p {
  font-size: 0.8rem;
  line-height: 1.3;
  text-align: justify;
}

.section-title {
  font-size: 1.49rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

/* OUTER WRAPPER – hides scroll overflow */
.why-vibulence-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

/* INNER SCROLLING TRACK */
.why-vibulence-grid {
  display: flex;
  gap: 15px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

/* Individual Card */
.why-vibulence-card {
  flex: 0 0 250px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 15px;
  scroll-snap-align: start;
  text-align: center;
}

.why-vibulence-card h3 {
  font-size: 1rem;
  margin-bottom: 10px;
}

.why-vibulence-card p {
  font-size: 0.85rem;
  line-height: 1.5;
}

    .why-vibulence-grid {
    animation: scroll-cards 35s linear infinite;
    width: max-content;
  }

  .why-vibulence-grid:active {
    animation-play-state: paused;
  }



    /* =================================
       Free Edit & Collaboration Section
    ==================================== */
    .free-edit-image-container img {
        height: auto;
        width: 100%;
        max-width: 300px; /* Image bohot bari na ho jaye */
        margin: 0 auto;   /* Center karne ke liye */
        display: block;
    }

    .free-edit-text-container h2 {
        font-size: 1.1rem;
        line-height: 1.3;
        font-weight: bold;
        text-align: center;
    }

    .free-edit-text-container p {
    text-align: justify;
}

.free-edit-btn {
    padding: 12px 16px;    /* Vertical padding kam kar diya height kam karne ke liye */
    font-size: 1rem;   /* Text size chhota kar diya */
    line-height: 1.2;     /* Text ke liye line height adjust kar sakte ho */
    border-radius: 8px;   /* Optional: button corners thode rounded */
}

    /* =================================
       Footer
    ================================== */

 /* Collaborate Heading */
.collab-heading {
  text-align: center;
  white-space: nowrap;
  font-size: 1.5rem;
}

/* Collaborate Text */
.collaborate-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}
.collaborate-text p {
  font-size: 0.85rem;
  white-space: normal;
  overflow: visible;
}

.collab-list li {
  text-align: left;
  margin-bottom: 10px;
}

/* Footer Section Wrapper */
.contact-footer {
  padding: 0px 0px;
  background-color: #f8f8f8;
}

/* Main Flex Container for Footer */
.footer-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 20px 0px;
  margin-bottom: 0;
}

/* Contact Center */
.contact-center {
  text-align: center;
  margin-top: -85px;
}
.contact-center h2 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.contact-line {
  font-size: 0.85rem;
  line-height: 1.4;
  white-space: nowrap;
}

/* WhatsApp Link */
.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}
.whatsapp-link img {
  width: 18px;
  height: 18px;
}

/* Social Links */
.footer-right {
  text-align: center;
  font-size: 1rem;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.social-links li a {
  font-size: 1.2rem;
  text-decoration: none;
}
.social-links li a:hover {
  color: #007bff;
}

/* Footer Copy */
.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px;
  font-size: 0.7rem;
  background-color: #f8f8f8;
  border-top: 1px solid #ddd;
}

/* Left Side: Copyright */
.footer-copy {
  display: flex;
  justify-content: space-between; /* Left-Right alignment */
  align-items: center;
  padding: 10px;
  font-size: 0.7rem;
  flex-wrap: wrap;
  background-color: #44a2e7; /* Optional: light background */
  border-top: 1px solid #ddd; /* Optional: top border */
}

/* Left Side: Copyright */
.footer-copy-left {
  color: #666;
  font-size: 0.3rem;
  text-align: left;
}

/* Right Side: Buttons */
.footer-copy-right {
   display: flex;
    gap: 15px;
    position: relative; /* Add this line */
    z-index: 10px;
}

.footer-btn {
  margin-top: 7px;
  font-size: 0.4rem;
  padding: 0px 0px;
  border-radius: 2px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
}

.footer-btn:hover {
  background-color: #eee;
}




    /* =================================
       Legal Pages (Terms and Condititions)
    ==================================== */
    
 
  
  .page-container {
    padding: 20px 15px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .page-container h1 {
    font-size: 1.4rem;
    align-items: center;
    margin-bottom: 15px;
  }


  p.page-intro {
    text-align: left;
    font-size: 0.87rem;
    margin: 0 0 15px 10px;
    padding: 0;
  }

  .last-updated-bold {
    padding-bottom: 5px;
    font-size: 0.87rem;
    margin: 0 auto 15px auto;
    padding: 0;
    text-align: center;
    max-width: fit-content;
    display: block;
    transform: translateX(-10px);
}


  .page-container h2 {
    font-size: 1.15rem;
    margin-top: 20px;
  }

  .page-container ul {
    padding-left: 18px;
    margin-bottom: 15px;
  }

  .page-container ul li {
    margin-bottom: 8px;
  }

  .legal-page-container .indented {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

  /* Aakhri wale box ko 2 lines mein laane ke liye */

.page-container .space-between {
    /* Pehle se mojood styles... */
    display: block;
    margin: 25px auto;
    padding: 15px 20px;
    text-align: center;
    line-height: 1.6;
    background-color: #f7f7f7;
    border: 1px solid #44a2e7;
    border-radius: 8px;

    /* === YEH CHANGES KAREIN === */
    width: 95%;           /* Chaurai thori barha di hai */
    font-size: 0.7rem;    /* Font size halka sa kam kiya hai */
}

.page-container .space-between strong {
    font-weight: 600; /* Boldness aek jaisi rakhein */
}


/* ===== PRIVACY POLICY PAGE STYLING ===== */

/* Page ka main container */
.legal-container {
    width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 25px 20px; /* Andar se space */
    font-family: 'Poppins', sans-serif;
}

/* Page ki main heading (PRIVACY POLICY) */
.legal-container h1 {
    font-size: 1.8rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 15px;
    color: #44a2e7;
}

/* "Last updated" wali line */
.legal-container .last-updated-bold {
    padding-bottom: 5px;
    font-size: 0.87rem;
    margin: 0 auto 15px auto;
    padding: 0;
    text-align: center;
    max-width: fit-content;
    display: block;
    transform: translateX(-10px);
}

/* Section headings (Jaise "1. Information We Collect") */
.legal-container h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #44a2e7;
    margin-top: 30px;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 1px solid #eaeaea;
}

/* Aam paragraph text */
.legal-container p {
    text-align: justify;
    font-size: 0.9rem;
    line-height: 1.;
    color: #555;
    margin-bottom: 15px;
}

/* List ke sub-headings (a. b. c. etc) */
.legal-container p strong {
    font-size: 0.8rem;
    font-weight: 600;
    color: #44a2e7;
    display: block;
    margin-bottom: 5px;
}

/* Lists (ul) aur list items (li) */
.legal-container ul {
    padding-left: 20px;
    margin-bottom: 15px;
    list-style-type: disc;
}

.legal-container li {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

/* Contact Us section ke links ke liye */
.legal-container ul li a {
    color: #44a2e7; /* Link ka color blue kiya */
    text-decoration: none;
    font-weight: 500;
    /* Taake lamba link (email/url) screen se bahar na jaye */
    word-break: break-all; 
}

.legal-container ul li a:hover {
    text-decoration: underline; /* Mouse le jane par underline aye */
}


    

}

@keyframes scroll-cards {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }


/* Scrolling Text Animation */
@keyframes scroll-text {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}


