/* Container is already full-width as per previous request */
/* Hamburger Icon */

@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville&display=swap');
.hamburger-icon {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    font-size: 28px;
    z-index: 10001;
    cursor: pointer;
    color: #333;
}

/* Mobile Menu */
.menu-mobile {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background-color: white;
    z-index: 10000;
    overflow-y: auto;
    transition: left 0.3s ease-in-out;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
    padding: 20px;
}

/* Show menu when active */
.menu-mobile.active {
    left: 0;
}

/* Close Button */
.menu-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
}

/* Menu Links */
.menu-mobile ul {
    list-style: none;
    padding: 0;
}

.menu-mobile ul li {
    margin: 15px 0;
}

.menu-mobile ul li a {
    text-decoration: none;
    color: #333;
    font-size: 20px;
}

/* Only show hamburger icon on mobile */
@media (max-width: 768px) {
    .hamburger-icon {
        display: block;
    }
}

.services-section {
    background: linear-gradient(135deg, #f9f9f9, #ffffff);
    padding: 60px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  }
  

  .move-down {
    margin-top: 100px; /* adjust value as needed */
}

.move-down {
  transform: translateY(10px);
}.services-section {
  background: linear-gradient(135deg, #f0f0f0, #ffffff);
  padding: 80px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
  font-size: 2.5rem;
  color: #717fe0;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
}

/* Responsive Tweaks */
@media (max-width: 600px) {
  .services-section {
    padding: 60px 15px;
  }

  .service-card {
    padding: 25px 15px;
  }

  .service-card h3 {
    font-size: 1.2rem;
  }

  .service-card p {
    font-size: 0.9rem;
  }

  .service-card .icon {
    font-size: 2rem;
  }
}



.video-section {
  position: relative;
  width: 100%;
  height: 100vh; /* You can change this to a custom height like 600px if needed */
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Ensures full video is shown without cutting */
  object-position: center;
  display: block;
}
/* Base styles for plans section */
.plans-section {
  padding: 60px 0;
  background: #f8f9fa;
  font-family: 'Segoe UI', sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Plan card styling */
.plan-card {
  flex: 1 1 22%;
  background: #fff;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
}

.plan-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
  color: #007bff;
}

.plan-card .price {
  font-size: 1.4rem;
  font-weight: bold;
  margin: 10px 0;
}

.plan-card ul {
  text-align: left;
  padding-left: 20px;
  margin-bottom: 15px;
}

.plan-card a {
  display: inline-block;
  margin-top: 15px;
  background: #007bff;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
}

/* Responsive styling */
@media (max-width: 991px) {
  .plans-grid {
    gap: 20px;
    justify-content: center;
  }

  .plan-card {
    flex: 1 1 45%; /* Adjust to 45% width on tablets and small screens */
  }
}

@media (max-width: 767px) {
  .plan-card {
    flex: 1 1 100%; /* Stack the cards on small screens */
    margin-bottom: 20px;
  }

  .plans-section h2 {
    font-size: 2rem; /* Adjust title font size for small screens */
  }

  .plans-section p {
    font-size: 1rem; /* Adjust paragraph font size for small screens */
  }

  .plan-card h3 {
    font-size: 1.2rem;
  }

  .plan-card .price {
    font-size: 1.2rem;
  }
}


.info-section {
  background-color: #fefefe;
  padding: 40px 0 60px;
}

.info-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

.info-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.info-row.reverse {
  flex-direction: row-reverse;
}

.info-text,
.info-image {
  flex: 1 1 48%;
  padding: 0 15px;
}

.text-block {
  padding-right: 15px;
}

.section-title {
  font-size: 28px;
  color: #222;
  margin-bottom: 16px;
}

.section-description {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}

.image-border {
  border: 1px solid #ddd;
  padding: 5px;
  border-radius: 8px;
  overflow: hidden;
}

.image-wrapper {
  overflow: hidden;
}

.responsive-image {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.quote-box {
  border-left: 4px solid #ccc;
  padding-left: 20px;
  margin-top: 30px;
}

.quote-text {
  font-style: italic;
  font-size: 18px;
  color: #666;
  margin-bottom: 8px;
}

.quote-author {
  font-weight: bold;
  color: #333;
}

@media (max-width: 768px) {
  .info-row,
  .info-row.reverse {
    flex-direction: column;
  }
  .info-text,
  .info-image {
    flex: 1 1 100%;
    margin-bottom: 30px;
  }
}


.smooth-services {
  padding: 70px 20px;
  background-color: #f9f9fb;
  text-align: center;
  overflow: hidden;
}

.smooth-services-header {
  margin-bottom: 50px;
}

.smooth-section-title {
  font-size: 18px;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1.2px;
  margin-bottom: 10px;
}

.smooth-subtitle {
  font-size: 34px;
  font-weight: bold;
  color: #222;
}

.smooth-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.smooth-card {
  background: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(40px);
  animation: slideFadeIn 0.8s ease forwards;
}

.smooth-icon {
  font-size: 40px;
  margin-bottom: 20px;
}

.smooth-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #333;
}

.smooth-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* Colored Icons */
.icon-pink { color: #ff5da2; }
.icon-yellow { color: #f6c343; }
.icon-cyan { color: #1abc9c; }
.icon-green { color: #28a745; }
.icon-neon-yellow { color: #ffd700; }
.icon-blue { color: #007bff; }

/* Animation */
@keyframes slideFadeIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Delayed entrance for staggered animation */
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }
.delay-5 { animation-delay: 1s; }
.delay-6 { animation-delay: 1.2s; }
/* Elegant Blue Theme */
/* Container styling */
.classy-description {
  font-family: Arial, sans-serif;
  color: #333;
  padding: 20px;
  line-height: 1.6;
}

/* Section headings (like "Acrylic photo frames - ...") */
.section-heading {
  font-size: 20px;
  font-weight: bold;
  color: #2c2c2c;
  margin-top: 25px;
  margin-bottom: 10px;
}

/* Paragraph text styling */
.section-paragraph {
  font-size: 14px;
  color: #444;
  margin-bottom: 15px;
}

/* Link styling */
.section-paragraph a {
  color: #0066cc;
  text-decoration: none;
}

.section-paragraph a:hover {
  text-decoration: underline;
}


/* Main container styling */
#information {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: #2c2c2c;
}

/* List wrapper */
#information ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Each row item */
#information li.flex-w {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}

/* Label (e.g., Weight, Dimensions) */
#information .size-205 {
  font-weight: 600;
  color: #555;
  flex-basis: 40%;
  font-size: 15px;
}

/* Value (e.g., 500g, 8x10 inch) */
#information .size-206 {
  color: #777;
  flex-basis: 60%;
  font-size: 14px;
}

/* Last item without border */
#information li.flex-w:last-child {
  border-bottom: none;
}


/* Coupon Section Styles */
.coupon-section {
	margin-left: 63px;
	margin-right: 40px;
	padding: 30px 40px 40px;
	border: 1px solid #e6e6e6;
	border-radius: 10px;
	background-color: #fff;
	font-family: 'Poppins', sans-serif;
}

@media (max-width: 991px) {
	.coupon-section {
		margin-left: 0;
		margin-right: 0;
		padding: 30px 15px 40px;
	}
}

.coupon-section ul {
	list-style: none;
	padding-left: 0;
	margin-bottom: 20px;
}

.coupon-section li {
	font-size: 14px;
	color: #333;
	padding-bottom: 10px;
}

.coupon-section input[type="text"] {
	width: 100%;
	padding: 12px 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	color: #333;
}

.coupon-section button {
	margin-top: 10px;
	background-color: #222;
	color: #fff;
	border: none;
	padding: 12px 20px;
	border-radius: 8px;
	font-size: 14px;
	cursor: pointer;
	transition: background-color 0.3s ease;
}

.coupon-section button:hover {
	background-color: #333;
}

.coupon-section .btn-danger {
	background-color: #e74c3c;
	color: #fff;
	border-radius: 8px;
	padding: 10px 20px;
	font-size: 14px;
	border: none;
}

.coupon-section .btn-danger:hover {
	background-color: #c0392b;
}


.available-coupons {
	padding: 10px 0;
	border-top: 1px solid #ddd;
	margin-top: 15px;
}
.available-coupons ul {
	padding-left: 20px;
}
.available-coupons li {
	margin-bottom: 5px;
}




/* Main Section */
.product-info {
  background-color: #fafafa; /* Light background */
  padding: 30px 20px; /* Reduced padding */
  border-radius: 10px;
}

/* Product Title */
.product-info .product-title {
  font-size: 2rem;
  font-weight: 700;
  color: #333;
  line-height: 1.4;
  margin-bottom: 1rem;
}

/* Product Description */
.product-info .product-description {
  font-size: 1.125rem;
  color: #666;
  margin-bottom: 1.5rem;
}

/* Key Features */
.product-info .key-features-title {
  font-size: 1.4rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 1rem;
}

.product-info .features-list {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 1.5rem;
}

.product-info .features-list li {
  font-size: 1.125rem;
  color: #555;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.product-info .features-list li ul {
  margin-left: 20px;
}

.product-info .features-list li strong {
  color: #f97316; /* New color theme */
}

/* Button Styling */
.product-info .btn-custom {
  background-color: #f97316; /* Orange theme */
  border-color: #f97316;
  padding: 12px 30px;
  font-size: 1.2rem;
  border-radius: 5px;
  transition: all 0.3s ease;
  color: white;
  font-weight: 600;
}

.product-info .btn-custom:hover {
  background-color: #c75e0c;
  border-color: #c75e0c;
  color: #fff;
}

/* Video Section Styling */
.product-video video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}



/* Media Query for Smaller Screens */
@media (max-width: 767px) {
  .product-info {
    padding: 20px;
  }

  .product-info .product-title {
    font-size: 1.8rem;
  }

  .product-info .product-description {
    font-size: 1rem;
  }

  .product-info .key-features-title {
    font-size: 1.25rem;
  }

  .product-info .btn-custom {
    font-size: 1rem;
  }
}

/* Apply a custom font family to the entire section */
.product-info {
  font-family: 'Arial', sans-serif; /* Replace with the font family of your choice */
}

/* Optional: Specific styles for titles and description */
.product-info .product-title {
  font-family: 'Georgia', serif; /* Different font for titles */
}

.product-info .product-description {
  font-family: 'Roboto', sans-serif; /* Different font for description */
}

/* If you want to apply the font change to video title or caption (if any) */
.product-info .product-video {
  font-family: 'Courier New', monospace; /* Font for video section (if any text is added) */
}

.classic-description-row {
  background-color: #fffefa;
  border: 1px solid #e0dccc;
  border-radius: 8px;
  padding: 20px 24px;
  font-family: 'Libre Baskerville', serif;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 20px;
  box-shadow: 0 1px 5px rgba(0,0,0,0.04);
}

/* Dynamic heading style */
.desc-heading {
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  color: #ca7b00;
  border-left: 3px solid #f0c469;
  padding-left: 10px;
  line-height: 1.5;
  width: 100%;              /* Ensures full width */
  text-align: left;         /* Aligns all lines left */
  word-break: break-word;   /* Breaks long words to avoid overflow */
  margin: 0;
}


/* Dynamic content style */
.desc-content {
  font-size: 14px;
  color: #343434;
  line-height: 1.7;
  white-space: pre-line;
  width: 100%;
  text-align: left;
}


.nfc-section {
  padding: 60px 20px;
}

.nfc-layout {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  align-items: center;
}

.nfc-layout.reverse {
  flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .nfc-layout {
    flex-direction: row;
    justify-content: space-between;
  }

  .nfc-layout.reverse {
    flex-direction: row-reverse;
  }
}

.nfc-content {
  flex: 1;
  max-width: 600px;
}

.nfc-content h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.nfc-content p,
.nfc-content ul {
  margin-bottom: 14px;
}

.nfc-content ul {
  padding-left: 20px;
  list-style: disc;
}

.nfc-content a {
  background-color: #f97316;
  color: #fff;
  padding: 10px 16px;
  text-decoration: none;
  border-radius: 6px;
  display: inline-block;
  margin-top: 10px;
}

.nfc-video-wrapper {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.video-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.4);
}

.play-button {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.play-button svg {
  margin-left: 2px;
}

.pulse {
  animation: pulse 1.3s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* move to left */
  padding-left: 20px; /* spacing from left */
  background-color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.play-button {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
    .plans-grid {
      flex-wrap: wrap !important;
      justify-content: center !important;
    }

    .plans-grid .plan-card {
      flex: 1 1 100% !important;
      max-width: 100% !important;
    }
  }


  @media (max-width: 768px) {
  .about-banner img {
    height: 200px; /* Adjust as per your design */
    object-fit: cover;
  }
}


@media (max-width: 767px) {
  .p-l-30, .p-r-30, .p-l-15-lg, .p-r-15-lg, .p-r-0-md, .p-l-0-md {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }

  .row {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  body, html {
    overflow-x: hidden !important;
  }
}
@keyframes blink {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.3; transform: translateY(5px); }
  }
 .hero-section {
    background: linear-gradient(135deg, #fceff9, #e6f0ff);
    padding: 100px 20px;
    text-align: center;
  }

  .hero-container {
    max-width: 900px;
    margin: 0 auto;
  }

  .hero-title {
    font-size: 28px;
    color: #3c4a65;
    margin-bottom: 20px;
    font-weight: 600;
  }

  .hero-description {
    font-size: 18px;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
  }

  .hero-button {
    background-color: #5d5fef;
    color: white;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
  }

  .hero-button:hover {
    background-color: #4a4bd1;
  }

  .arrow-wrapper {
    margin-top: 20px;
  }

  .blink-arrow {
    display: inline-block;
    animation: blink 1s infinite;
  }

  .blink-arrow img {
    filter: invert(40%) sepia(26%) saturate(321%) hue-rotate(195deg) brightness(96%) contrast(89%);
  }

  @keyframes blink {
    0%, 100% {
      opacity: 1;
    }
    50% {
      opacity: 0.3;
    }
  }

  /* Tablet View */
  @media (max-width: 768px) {
    .hero-title {
      font-size: 22px;
    }

    .hero-description {
      font-size: 16px;
    }

    .hero-button {
      font-size: 14px;
      padding: 12px 28px;
    }
  }

  /* Mobile View */
  @media (max-width: 480px) {
    .hero-title {
      font-size: 20px;
    }

    .hero-description {
      font-size: 15px;
    }

    .hero-button {
      font-size: 13px;
      padding: 10px 24px;
    }
  }