@import url('https://fonts.googleapis.com/css2?family=Gentium+Plus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=PT+Serif&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Orbitron&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
:root {

  /**
   * colors
   */

  --st-patricks-blue: hsl(252, 94%, 52%);
  --amaranth-purple: hsl(335, 88%, 38%);
  --royal-blue-dark: hsl(225, 73%, 57%);
  --chrome-yellow: rgb(255, 165, 0);
  --space-cadet-1: hsl(230, 41%, 25%);
  --space-cadet-2: hsl(230, 59%, 16%);
  --winter-sky_50: hsla(115, 100%, 53%, 0.5);
  --purple-navy: hsl(236, 26%, 43%);
  --ksu-purple: hsl(275, 54%, 33%);
  --winter-sky: hsl(252, 94%, 52%);
  --razzmatazz: hsl(252, 94%, 52%);
  --platinum: hsl(0, 0%, 90%);
  --black_70: hsla(0, 0%, 0%, 0.7);
  --rajah: hsl(252, 94%, 52%);
  --white: hsl(0, 0%, 100%);
  --black: rgb(0, 0, 0);

  --gradient-1: linear-gradient(90deg,var(--royal-blue-dark) 0,var(--ksu-purple) 52%,var(--royal-blue-dark));
  --gradient-2: linear-gradient(90deg,var(--razzmatazz) ,var(--rajah));

  /**
   * typography
   */

  --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;
  --ff-pt-serif: 'PT Serif', serif; /* Added PT Serif */
  --ff-orbitron: 'Orbitron', sans-serif; /* Added Orbitron */
  --ff-playfair-display: 'Playfair Display', serif;

  --fs-1: 4.2rem;
  --fs-2: 3.8rem;
  --fs-3: 3.2rem;
  --fs-4: 2.5rem;
  --fs-5: 2.4rem;
  --fs-6: 2rem;
  --fs-7: 1.8rem;
  --fs-8: 1.5rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
   * border radius
   */

  --radius-4: 4px;
  --radius-12: 12px;

  /**
   * spacing
   */

  --section-padding: 60px;

  /**
   * transition
   */

  --transition-1: 0.15s ease;
  --transition-2: 0.35s ease;
  --cubic-in: cubic-bezier(0.51, 0.03, 0.64, 0.28);
  --cubic-out: cubic-bezier(0.33, 0.85, 0.56, 1.02);

  /**
   * shadow
   */

  --shadow: 0 5px 20px 1px hsla(220, 63%, 33%, 0.1);

}





/*-----------------------------------*\
  #RESET
\*-----------------------------------*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

li { list-style: none; }

a { text-decoration: none; }

a,
img,
span,
input,
button,
ion-icon { display: block; }

button,
input {
  background: none;
  border: none;
  font: inherit;
}

button { cursor: pointer; }

input { width: 100%; }

ion-icon { pointer-events: none; }

img { height: auto; }

address { font-style: normal; }

html {
  font-family: var(--ff-poppins);
  font-size: 10px;
  scroll-behavior: smooth;
}

/* body {
  background-color: var(--white);
  color: var(--purple-navy);
  font-size: 1.6rem;
} */


::-webkit-scrollbar { width: 10px; }

::-webkit-scrollbar-track { background-color: hsl(0, 0%, 95%); }

::-webkit-scrollbar-thumb { background-color: hsl(0, 0%, 80%); }

::-webkit-scrollbar-thumb:hover { background-color: hsl(0, 0%, 70%); }





/*-----------------------------------*\
  #REUSED STYLE
\*-----------------------------------*/

.container { padding-inline: 15px; }

.h2,
.h3 { font-family: var(--ff-source-sans-pro); }

.btn {
  background-image: var(--gradient-2);
  background-size: 200%;
  color: var(--white);
  padding: 12px 35px;
  font-size: var(--fs-8);
  font-weight: var(--fw-500);
  border-radius: 0 25px;
  transition: var(--transition-2);
}

.btn:is(:hover, :focus) { background-position: right; }

.w-100 { width: 100%; }

.banner-animation { animation: waveAnim 2s linear infinite alternate; }

@keyframes waveAnim {
  0% { transform: translate(0, 0) rotate(0); }
  100% { transform: translate(2px, 2px) rotate(1deg); }
}

.section { padding-block: var(--section-padding); }

.section-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-3);
  margin-block-end: 60px;
  max-width: max-content;
  margin-inline: auto;
}

.underline { position: relative; }

.underline::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 6px;
  background-image: var(--gradient-2);
  border-radius: 10px;
}

:is(.service-card, .features-card) .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-4);
  font-weight: var(--fw-700);
}

:is(.service-card, .features-card, .blog-card) .text { font-size: var(--fs-8); }

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}





/*-----------------------------------*\
  #HEADER
\*-----------------------------------*/

.header .btn { display: none; }

.header {
  --color: var(--st-patricks-blue);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 14px;
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  --color: var(--st-patricks-blue);

  position: fixed;
  background-color: var(--white);
  box-shadow: 0 2px 30px hsla(0, 0%, 0%, 0.1);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  color: var(--color);
  font-family: var(--ff-pt-serif);
  font-size: var(--fs-3);
}

.nav-open-btn {
  color: var(--color);
  font-size: 32px;
  padding: 4px;
}

.navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: -280px;
  width: 100%;
  max-width: 280px;
  min-height: 100%;
  padding: 20px;
  visibility: hidden;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(280px);
  visibility: visible;
  transition: 0.5s var(--cubic-out);
}

.navbar-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 10px 30px;
}

.navbar-top .logo {
  color: var(--black);
  font-size: 4.2rem;
  font-weight: var(--fw-700);
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-item:not(:last-child) { border-bottom: 1px solid var(--platinum); }

.navbar-link {
  color: var(--space-cadet-1);
  font-size: var(--fs-8);
  font-weight: var(--fw-600);
  padding-block: 12px;
}

.overlay {
  position: fixed;
  inset: 0;
  background-color: var(--black_70);
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-2);
}

.overlay.active {
  opacity: 1;
  pointer-events: all;
}





/*-----------------------------------*\
  #HERO
\*-----------------------------------*/

.hero {
background: rgb(92, 91, 91) url("../images/back-1.jpg") no-repeat center/cover;
padding-block-start: 120px;
padding-block-end: var(--section-padding);
}

.hero-content { 
  position: relative;
}

.hero-subtitle {
  color: var(--black);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-6);
  margin-block-end: 20px;
}

.hero-title {
  color: var(--st-patricks-blue);
  font-family: var(--ff-pt-serif);
  font-size: var(--fs-1);
  margin-block-end: 10px;
}

.hero-text {
  font-size: 1.5rem;
  font-family: var(--ff-playfair-display);
  line-height: 1.6;
  color: var(--black);
  text-align: left;
  margin: 0;
  text-align: justify; /* Distribute text edge to edge */
}




/*-----------------------------------*\
  #ABOUT
\*-----------------------------------*/

.about-banner { margin-block-end: 30px; }

.about .section-title { margin-inline: 0; }

.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.stats-list {
  display: grid;
  gap: 30px;
}

.stats-card {
  text-align: center;
  padding: 15px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.stats-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.stats-text { font-size: var(--fs-8); }





/*-----------------------------------*\
  #SERVICE
\*-----------------------------------*/

.service-list {
  display: grid;
  gap: 30px;
}

.service-card {
  padding: 30px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.service-card .card-icon {
  /* background-image: url("../images/service-banner-pattern.png"); */
  background-repeat: no-repeat;
  background-size: contain;
  background-color: hsla(335, 87%, 53%, 0.12);
  aspect-ratio: 1 / 1;
  max-width: 165px;
  display: grid;
  place-content: center;
  margin-inline: auto;
  transition: var(--transition-1);
}

.service-card:hover .card-icon { background-color: var(--winter-sky); }

.service-card .card-icon ion-icon {
  font-size: 5rem;
  color: var(--winter-sky);
  --ionicon-stroke-width: 20px;
  transition: var(--transition-1);
}

.service-card:hover .card-icon ion-icon { color: var(--white); }

.service-card .title {
  text-align: center;
  margin-block-end: 15px;
  font-family: var(--ff-pt-serif)
}

.service-card .text {
  text-align: center;
  margin-block-end: 20px;
 
}

.service-card .card-btn {
  margin-inline: auto;
  padding: 15px;
  border: 1px solid var(--winter-sky);
  border-radius: 50%;
  color: var(--winter-sky);
  transition: var(--transition-1);
}

.service-card .card-btn:is(:hover, :focus) {
  color: var(--white);
  background-color: var(--winter-sky);
}


/*-----------------------------------*\
  #FEATURE
\*-----------------------------------*/

.features-list > li:first-child { margin-block-end: 30px; }

.features-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.features-card .icon {
  background-image: var(--gradient-1);
  background-size: 200%;
  color: var(--white);
  min-width: max-content;
  max-width: max-content;
  font-size: 36px;
  padding: 22px;
  border-radius: 50%;
}

.features-card .icon ion-icon { --ionicon-stroke-width: 20px; }

.features-card .title { margin-block-end: 10px; }

.features-banner { margin-block: 40px; }

.features-banner > img {
  max-width: max-content;
  margin-inline: auto;
}





/*-----------------------------------*\
  #BLOG
\*-----------------------------------*/

.blog { padding-block-end: 120px; }

.blog-list {
  display: grid;
  gap: 30px;
}

.blog-card {
  padding: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
}

.blog-card .banner {
  border-radius: var(--radius-12);
  overflow: hidden;
  margin-block-end: 15px;
}

.blog-card .banner img { transition: var(--transition-2); }

.blog-card .banner a:is(:hover, :focus) img { transform: scale(1.1); }

.blog-card .title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-6);
  line-height: 1.2;
  margin-block-end: 15px;
}

.blog-card .title > a { color: inherit; }

.blog-card .title > a:is(:hover, :focus) { color: var(--razzmatazz); }

.blog-card .text { margin-block-end: 15px; }

.blog-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  font-size: var(--fs-8);
  color: var(--purple-navy);
  font-weight: var(--fw-500);
  padding-block-end: 10px;
}

.blog-card .meta ion-icon {
  color: var(--winter-sky);
  font-size: 22px;
  --ionicon-stroke-width: 35px;
}

.publish-date,
.comment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment {
  color: inherit;
  margin-inline-start: auto;
}





/*-----------------------------------*\
  #FOOTER
\*-----------------------------------*/

.footer { font-size: var(--fs-8); }

.footer a { color: inherit; }

.footer-top {
  background-image: url("../images/footer-bg.png"), var(--gradient-1);
  background-repeat: no-repeat;
  background-size: auto, 200%;
  background-position: center, center;
  color: var(--white);
}

.footer-brand { margin-block-end: 30px; }

.footer-brand .logo {
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-brand .text {
  font-size: var(--fs-8);
  margin-block-end: 20px;
}

.social-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}

.footer-top .social-link {
  background-color: var(--white);
  color: var(--winter-sky);
  font-size: 18px;
  padding: 8px;
  border-radius: 50%;
}

.footer-top .social-link:is(:hover, :focus) {
  background-image: var(--gradient-2);
  color: var(--white);
}

.footer-list:not(:last-child) { margin-block-end: 25px; }

.footer-list-title {
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-5);
  font-weight: var(--fw-700);
  margin-block-end: 15px;
}

.footer-link { padding-block: 5px; }

:is(.footer-link, .footer-item-link):not(address):is(:hover, :focus) { text-decoration: underline; }

.footer-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  padding-block: 10px;
}

.footer-item-icon {
  background-image: var(--gradient-2);
  padding: 13px;
  border-radius: 50%;
}

.footer-bottom {
  background-color: var(--space-cadet-2);
  padding: 20px;
  text-align: center;
  color: var(--white);
}

.copyright-link {
  display: inline-block;
  text-decoration: underline;
}

.copyright-link:is(:hover, :focus) { text-decoration: none; }





/*-----------------------------------*\
  #GO TO TOP
\*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 0;
  right: 15px;
  background-color: var(--winter-sky);
  color: var(--white);
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  box-shadow: -3px 3px 15px var(--winter-sky_50);
  z-index: 2;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition-1);
}

.go-top.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(-15px);
}





/*-----------------------------------*\
  #MEDIA QUERIES
\*-----------------------------------*/
 
/**
 * responsive for larger than 550px screen
 */

@media (min-width: 550px) {

  /**
   * REUSED STYLE
   */

  .container {
    max-width: 550px;
    margin-inline: auto;
  }

  .section-title { --fs-3: 3.6rem; }



  /**
   * HEADER
   */

  .header .btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline-start: auto;
  }



  /**
   * ABOUT
   */

  .stats-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * BLOG
   */

  .blog-card {
    display: grid;
    grid-template-columns: 0.75fr 1fr;
    gap: 20px;
    padding: 30px;
  }

  .blog-card .banner { margin-block-end: 0; }

  .blog-card .banner a { height: 100%; }

  .blog2-list {
    display: flex;
    flex-wrap: nowrap; /* Prevents wrapping */
    justify-content: flex-start; /* Aligns items from left to right */
    gap: 10px; /* Spacing between items */
    padding: 0;
    margin: 0;
    list-style: none;
    overflow-x: auto; /* Enables horizontal scrolling if needed */
}




.blog2-card {
  flex: 1 1 30%; /* Makes each card take exactly 30% of the row */
  min-width: 300px; /* Prevents shrinking too much */
  max-width: 350px; /* Ensures consistency */
  padding: 20px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
}


/* Increase font sizes of blog card 2*/
.blog2-card h3 {
  font-size: 22px; /* Larger title */
  font-weight: bold;
}

.blog2-card p {
  font-size: 18px; /* Bigger paragraph text */
}

.blog2-card a {
  font-size: 18px; /* Bigger links */
  font-weight: bold;
}



 



  /**
   * FOOTER
   */

  .footer-brand,
  .footer-list:not(:last-child) { margin-block-end: 0; }

  .footer-top .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
  }

}





/**
 * responsive for larger than 768px screen
 */

@media (min-width: 768px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 720px; }



  /**
   * HERO
   */

  .hero {
    min-height: 600px;
    display: grid;
    place-items: center;
  }

  .hero-content { margin-block-end: 0; }

  .hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 30px;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: 1fr 1fr; }



  /**
   * FEATURES
   */

  .features-list > li:first-child { margin-block-end: 0; }

  .features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: repeat(3, 1fr); }

}





/**
 * responsive for larger than 992px screen
 */

@media (min-width: 992px) {

  /**
   * CUSTOM PROPERTY
   */

  :root {

    /**
     * typography
     */

    --fs-1: 5.4rem;

  }



  /**
   * REUSED STYLE
   */

  .container { max-width: 950px; }



  /**
   * HEADER
   */

  .header { padding-block: 20px; }

  .overlay,
  .nav-open-btn,
  .navbar-top { display: none; }

  .navbar,
  .navbar.active {
    all: unset;
    margin-inline-start: auto;
  }

  .header .btn { margin-inline-start: 0; }

  .navbar-list {
    display: flex;
    gap: 25px;
  }

  .navbar-item:not(:last-child) { border-bottom: none; }

  .navbar-link { color: var(--color); }



  /**
   * HERO
   */

  .hero { min-height: 700px; }



  /**
   * ABOUT
   */

  .about .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }



  /**
   * SERVICE
   */

  .service-list { grid-template-columns: repeat(3, 1fr); }



  /**
   * FEATURES
   */

  .features-list { grid-template-columns: 1fr; }

  .features .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }

  .features .section-title { grid-column: 1 / 4; }

  .features-banner {
    margin-block: 0;
    display: grid;
    place-items: center;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: repeat(4, 1fr); }

  .footer-brand { grid-column: 1 / 5; }

  .footer-brand .text { max-width: 45ch; }

}





/**
 * responsive for larger than 1200px screen
 */

@media (min-width: 1200px) {

  /**
   * REUSED STYLE
   */

  .container { max-width: 1200px; }

  .section-title { --fs-3: 4.6rem; }



  /**
   * HERO
   */

  .hero { min-height: 800px; }
  



  /**
   * BLOG
   */

  .blog-list { grid-template-columns: 1fr 1fr; }

  .blog-card { height: 100%; }

  .blog-card .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }



  /**
   * FOOTER
   */

  .footer-top .container { grid-template-columns: 1fr 0.5fr 0.7fr 0.5fr 1fr; }

  .footer-brand { grid-column: auto; }

}
.hero-banner {
  width: 100%; /* Full width */
  max-width: 800px; /* Adjust the max width if needed */
  height: auto;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-banner video {
  width: 100%; 
  height: auto; 
  object-fit: cover; 
  max-height: 500px; 



  
}

/*STYLING FOR THE CARDS LAYOUT*/

/* Responsive stacking on small screens */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    align-items: center;
  }

  .card-group {
    width: 90%;
    max-width: none;
  }
}

@media (min-width: 769px) {
  .card-group {
    width: 300px;
  }
}

/*W.P*/
.gallery {
  display: flex; 
  gap: 20px; 
  padding: 10px;
  justify-content: center; 
}

/* Hover effect on images */
.sub-images img:hover {
  transform: scale(1.05); /* Slightly enlarge the image */
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Add a soft shadow when hovered */
  cursor: pointer; /* Change cursor to indicate the image is interactive */
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card-group {
  flex: 1 1 250px;
  max-width: 300px;
  padding: 1rem;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}


.main-card {
  width: 100%;
  max-width: 300px; 
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.main-card:hover {
  transform: scale(1.2); 
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4);
}


.sub-images {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sub-images img {
  width: 100%;
  max-width: 400px;
  border-radius: 5px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.sub-images img:hover {
  transform: scale(1.2); 
  box-shadow: 6px 6px 20px rgba(0, 0, 0, 0.4);
}
/*services ps*/
.card-title {
  font-family: var(--ff-playfair-display);
  font-size: 15px; 
  font-weight: bold; 
  color: rgb(0, 0, 0);
  background-color: #ffffff; 
  padding: 12px 20px; 
  text-align: center; 
  width: fit-content; 
  margin: 15px auto;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); 
}

/*title at the 3 ps*/
.card1-title {
  font-family: var(--ff-playfair-display);
  font-size: 15px; 
  font-weight: bold; 
  color: rgb(0, 0, 0); 
  background-color: #ffffff; 
  padding: 12px 20px; 
  text-align: center; 
  width: fit-content; 
  margin: 95px auto; 
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2); 
}

/*wed bkgrnd*/
.weddings-designs-page {
  background: url("../images/back-3.png") no-repeat center rgb(255, 255, 255) ;
  background-size: cover; 
  background-attachment: fixed; 
  background-position: center;
  color: #000000; 
  text-align: center;
  padding: 50px;
}

@media (max-width: 320px) {
  .weddings-designs-page {
    background-size: cover; /* Keep natural scaling */
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* Mobile fix */
    overflow-x: hidden; /* Hide horizontal scroll caused by layout overflow */
  }
}

/*bckgrnd web*/
.web-designs-page {
  background: rgb(92, 91, 91) url("../images/back-4.png")
  background-size: cover; 
  background-attachment: fixed; 
  background-position: center;
  color: #000000; 
  text-align: center;
  padding: 50px;
}

/*bckgrnd gra*/
.graphic-designs-page {
  background: rgb(255, 255, 255) url("../images/back-2.png") no-repeat center;
  background-size: cover; 
  background-attachment: fixed; 
  background-position: center;
  color: #FFFFFF; 
  text-align: center;
  padding: 50px;
}




.hero-box {
  width: 90vw; /* take 90% of the viewport width */
  margin: 20px auto;
  padding: 10px 15px;
  background-color: #f0f4ff;
  border-radius: 10px;
  font-family: Arial, sans-serif;
  box-sizing: border-box;
}


img {
  -webkit-user-drag: none; 
  user-select: none; 
}


.no-click {
  pointer-events: none; 
}


.custom-video {
  display: block;
  width: 100%; 
  max-width: 1200px; 
  height: 100%; 
  max-height: 410px; 
  object-fit: cover;
  border-radius: 12px; 
  transition: transform 0.3s ease-in-out;
}

.custom-video:hover {
  transform: scale(1.3); 
  cursor: pointer;
}



.back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2e1eb9; 
  color: white; 
  border: none;
  padding: 12px 16px; 
  font-size: 10px; 
  cursor: pointer;
  border-radius: 8px; 
  transition: background 0.3s ease-in-out;
}

.back-button i {
  font-size: 16px; 
}

.back-button:hover {
  background-color: #000000; 
}


.bonus-section {
  background: #fff7e6; 
  padding: 15px;
  border-left: 4px solid #ffb400; 
  border-radius: 6px;
  margin-top: 15px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1); 
}

.bonus-title {
  font-size: 18px; 
  font-weight: bold;
  color: #d18b00; 
  margin-bottom: 8px;
}

.bonus-list {
  list-style: none;
  padding: 0;
}

.bonus-list li {
  font-size: 14px; 
  color: #333;
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.bonus-list li::before {
  content: "✅"; 
  margin-right: 8px;
  color: #1512d5; 
  font-size: 16px; 
}


.herow-text {
  color: var(--black);
  font-size: var(--fs-8);
  margin-block-end: 5px;
  font-family: var(--ff-pt-serif);
  line-height: 1.6; 
}


.whatsapp-link {
  display: inline-flex; 
  align-items: center;
  white-space: nowrap; 
  text-decoration: none;
  color: #25D366; 
  font-size: 15px;
  font-weight: normal;
}

.whatsapp-icon {
  width: 30px;
  height: 30px;
  margin-right: 8px;
  flex-shrink: 0; 
}



.watermarked {
  position: relative;
  display: inline-block;
}

.watermarked img {
  display: block;
  width: 100%;
}
/*
.watermarked::after {
  content: "N.C.L";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 20px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 10;
  white-space: nowrap;
}

.watermarked::before {
  content: " Nᴀᴊᴇʀᴏ Cʀᴀғᴛɪɴɢ Lᴀʙ ©";
  font-family: 'Roboto', sans-serif;
  font-size: 12px; 
  font-variant: small-caps;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 10;
}
*/

.whatsapp-bubble {
  width: 28px;
  height: 28px;
  background: #49db55;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}


.whatsapp-bubble::before {
  content: "✔"; 
  font-size: 16px;
  color: white;
  font-weight: bold;
}

