/*-----------------------------------*\
  #style.css
\*-----------------------------------*/

/**
 * copyright 2023 dailywebdesigns.com
 */





/*-----------------------------------*\
  #CUSTOM PROPERTY
\*-----------------------------------*/

@import url('https://fonts.googleapis.com/css2?family=Eczar:wght@400..800&family=Martel+Sans:wght@200;300;400;600;700;800;900&family=Noto+Sans+Devanagari:wght@100..900&family=Noto+Sans:wght@100;200;300;400;500;700;800;900&family=Noto+Serif+Devanagari:wght@200;300;400;500;600;700;800;900&family=Yatra+One&display=swap');


:root {

  /**
     * colors
     */


  --st-patricks-blue: hsl(236, 57%, 28%);
  /* Deep blue */
  --amaranth-purple: hsl(335, 88%, 38%);
  /* Accent purple */
  --royal-blue-dark: hsl(231, 68%, 21%);
  /* Dark royal blue */
  --chrome-yellow: hsl(5, 100%, 69%);
  /* Bright yellow for contrast */
  --space-cadet-1: hsl(230, 41%, 25%);
  /* Darker space cadet blue */
  --space-cadet-2: hsl(230, 59%, 16%);
  /* Even darker for depth */
  --winter-sky_50: hsla(335, 87%, 53%, 0.5);
  /* Semi-transparent sky blue */
  --purple-navy: hsl(236, 26%, 43%);
  /* Navy with a hint of purple */
  --ksu-purple: hsl(275, 54%, 33%);
  /* Muted purple */
  --winter-sky: hsl(212, 85%, 31%);
  /* Bright sky blue */
  --razzmatazz: hsl(212, 87%, 53%);
  /* Razzmatazz for vibrancy */
  --platinum: hsl(0, 0%, 90%);
  /* Light gray for backgrounds */
  --black_70: hsla(0, 0%, 0%, 0.7);
  /* Semi-transparent black for overlays */
  --rajah: hsl(5, 100%, 69%);
  /* Bright accent color */
  --white: hsl(0, 0%, 100%);
  /* Pure white for contrast */
  --navbar-text-color: hsl(290°, 27%, 45%);

  /* Gradients using the bluish theme */
  --gradient-1: linear-gradient(90deg, var(--royal-blue-dark) 0%, var(--winter-sky) 58%, var(--royal-blue-dark) 100%);
  --gradient-2: linear-gradient(90deg, var(--razzmatazz), var(--ksu-purple));


  /**
     * typography
     */

  --ff-source-sans-pro: 'Source Sans Pro', sans-serif;
  --ff-poppins: 'Poppins', sans-serif;

  /* Typography - Adjusted for mobile view */
  --fs-1: 3rem;
  /* Reduced from 4.2rem */
  --fs-2: 2.8rem;
  /* Reduced from 3.8rem */
  --fs-3: 2.4rem;
  /* Reduced from 3.2rem */
  --fs-4: 2rem;
  /* Reduced from 2.5rem */
  --fs-5: 1.8rem;
  /* Reduced from 2.4rem */
  --fs-6: 1.6rem;
  /* Reduced from 2rem */
  --fs-7: 1.4rem;
  /* Reduced from 1.8rem */
  --fs-8: 1.2rem;
  /* Reduced from 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: "Eczar", serif;
}


.logo {
  width: 90px;
}

.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(2deg);
  }
}

.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 a {
  display: flex;
  flex-direction: row;
}

.achor-left {
  margin-left: 20px;
}

.header {
  --color: var(--white);

  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-block: 0px;
  padding-inline: 0px;
  /* Add equal padding on both sides */
  z-index: 4;
  transition: var(--transition-1);
}

.header.active {
  --color: var(--st-patricks-blue);

  position: fixed;
  background: rgb(17, 28, 90);
  background: linear-gradient(90deg, rgba(17, 28, 90, 1) 0%, rgba(0, 119, 255, 0.9943019943019943) 52%, rgba(17, 28, 90, 1) 100%);
}


.header .container {
  display: flex;
  justify-content: left;
  align-items: center;
  gap: 30px;
  width: 100%;
  padding-inline: 0px;
  /* Add equal padding on both sides */
  margin: 0px 0px;
}

.logo {
  color: var(--color);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-3);
}

.whatsapp {
  margin-left: 2px;
}

.nav-open-btn {
  color: var(--color);
  font-size: 32px;
  padding: 4px;
}

.call {
  font-size: var(--fs-7);
}

.navbar {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: -280px;
  width: 100%;
  max-width: 240px;
  min-height: 100%;
  padding: 20px;
  visibility: hidden;
  z-index: 2;
  transition: 0.25s var(--cubic-in);
}

.navbar.active {
  transform: translateX(240px);
  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(--st-patricks-blue);
  font-size: 4.2rem;
  font-weight: var(--fw-700);
}

.nav-close-btn {
  color: var(--space-cadet-1);
  font-size: 2.8rem;
  padding: 4px;
}

.navbar-text {
  background: #FFE415;
  background: linear-gradient(to right, #FFE415 14%, #FFD451 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
}

.scrolled .navbar-text {
  background: #162472;
  background: linear-gradient(to right, #162472 14%, #152371 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: var(--fs-3);
  font-weight: var(--fw-700);
  margin-right: 30px;
  /* Change to desired gradient */
}

.navbar-item:not(:last-child) {
  border-bottom: 1px solid var(--platinum);
}

.navbar-link {
  color: var(--space-cadet-1);
  font-size: var(--fs-6);
  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;
}

@media (max-width: 480px) {
  .header {
    padding-block: 10px;
    /* Reduced padding for a more compact header */
  }
  
  .call {
    font-size: var(--fs-7);
    padding-left: 25px;
  }
  

  .achor-left {
    margin: 5px;
  }

  .nav-txt {
    display: flex;
    flex-direction: column;
    /* Stack elements vertically */
    align-items: center;
    /* Center align items */
  }

  .mob-txt {
    order: 1;
    /* Ensure mob-txt appears first */
  }

  .mob-txt-1 {
    order: 2;
    /* Ensure mob-txt-1 appears second */
  }

  .about-img {
    padding-left: 80px;
  }

  .header .container {
    width: 100%;
  }

  .logo {
    width: 80px;
    height: 50px;
    margin-top: 5px;
    margin-left: 10px;
    /* Smaller logo font size for better fit */
  }

  .nav-open-btn {
    font-size: 28px;
    /* Slightly smaller button size */
    padding: 2px;

    /* Reduced padding for compactness */
  }

  .navbar {
    max-width: 100vw;
    /* Full width on mobile */
    left: 0;
    /* Position navbar from the left */
    padding: 20px;
    /* Reduced padding for mobile view */
    box-shadow: none;
    /* Remove shadow for a cleaner look */
  }

  .navbar.active {
    transform: translateX(0);
    /* Slide in from the left edge */
    transition: transform 0.3s var(--cubic-out);
    /* Adjusted transition timing */
  }

  .navbar-top {
    justify-content: space-between;
    /* Space between logo and close button */
    padding-block: 10px;
    /* Adjusted padding for mobile */
  }

  .navbar-top .logo {
    font-size: 3rem;
    /* Smaller logo size for mobile */
  }

  .nav-close-btn {
    font-size: 2rem;
    /* Smaller close button size */
    padding: 2px;
    /* Reduced padding for compactness */
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
    /* Remove borders for a cleaner look on mobile */
    margin-bottom: 10px;
    /* Add margin between items */
  }

  .navbar-link {
    font-size: var(--fs-7);
    /* Smaller link size for mobile readability */
    padding-block: 8px;
    /* Reduced padding for compactness */
    display: block;
    /* Ensure links take full width, improving touch target size */
  }

  .navbar-text {
    font-size: 100px;
  }
}



/*-----------------------------------*\
    #HERO
  \*-----------------------------------*/

.slider {
  width: 100%;
  height: 50vh;
  /* Full height */
  overflow: hidden;
  transition: var(--transition-2);
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slides img {
  width: 100%;
  height: auto;
  /* Maintain aspect ratio */
}

.hero {
  background-image: url("../images/hero-bg-bottom.png"),
    url("../images/hero-bg.png"),
    var(--gradient-1);
  background-repeat: no-repeat, no-repeat, no-repeat;
  background-position: -280px bottom, center, center;
  background-size: auto, cover, auto;
  padding-block-start: 120px;
  padding-block-end: var(--section-padding);
}

.hero-content {
  margin-block-end: 50px;
}

.hero-subtitle {
  color: var(--chrome-yellow);
  font-family: var(--ff-source-sans-pro);
  font-size: var(--fs-1);
  margin-left: 300px;
  word-spacing: 0.1cm;

}

.main-container {
  width: 100vw;
  justify-content: center;
}

.hero-title {
  color: var(--white);
  font-size: var(--fs-1);
  margin-block-end: 20px;
}

.hero-text {
  color: var(--white);
  font-size: var(--fs-4);
  margin-block-end: 30px;
}


@media (max-width: 480px) {
  .slider {
    height: 220px;
  }
}


/*-----------------------------------*\
    #ABOUT
  \*-----------------------------------*/

.about-banner {
  margin-block-end: 0px;
}

.about .row {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  margin-left: 30px;
  margin-right: 30px;
}

.about .section-title {
  margin-inline: 0;
}


.about .underline::before {
  left: 0;
  transform: translateX(0);
}

.about-text {
  font-size: var(--fs-5);
  margin-block-end: 20px;
  margin-block-start: 30px;
}

.stats-list {
  display: grid;
  gap: 30px;
  justify-content: space-between;
}

.bold {
  font-size: x-large;
}

.bolder {
  font-size: large;
  color: rgba(165, 42, 42, 0.708);
}

.stats-card {
  text-align: center;
  margin-left: 90px;
  padding-left: 15px;
  box-shadow: var(--shadow);
  /* Existing shadow */
  border-radius: var(--radius-12);
  position: relative;
  /* Positioning for pseudo-element if needed */
  width: 100%;
}

/* Optional: Adding a pseudo-element for a more pronounced shadow border effect */
.stats-card::before {
  content: '';
  position: absolute;
  top: -5px;
  /* Adjust as needed */
  left: -5px;
  /* Adjust as needed */
  right: -5px;
  /* Adjust as needed */
  bottom: -5px;
  /* Adjust as needed */
  background-color: transparent;
  /* Background color for shadow effect */
  border-radius: inherit;
  /* Match the card's border radius */
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.182);
  /* Shadow effect */
  z-index: -1;
  /* Place behind the card content */
}

.stats-title {
  color: var(--st-patricks-blue);
  font-size: var(--fs-2);
  font-weight: var(--fw-700);
}

.stats-text {
  font-size: var(--fs-3);
}

.video-container {
  width: 700px;
  height: 400px;
  border-radius: 5px;
}

@media (max-width: 480px) {
  .about .row {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .bolder {
    font-size: medium;
    color: rgba(165, 42, 42, 0.816);
  }

  .video-container {
    width: 380px;
    height: 200px;
  }

  .about {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    text-align: center;
    /* Center text within the container */
  }

  .about-banner {
    margin-block-end: 20px;
    /* Adjusted margin for mobile */
    width: 75%;
  }

  .about .section-title {
    margin-inline: 0;
    /* Keep margin inline as is */
    font-size: var(--fs-2);
    /* Adjusted section title size */
    text-align: center;
  }

  .about-content {
    display: flex;
    flex-direction: column;
    /* Stack items vertically */
    justify-content: center;
    /* Centers horizontally */
    align-items: center;
    /* Centers vertically */
    text-align: center;
    /* Center text within the container */
  }

  .about .underline::before {
    left: 50%;
    /* Center underline */
    transform: translateX(-50%);
    /* Adjust to center */
    display: flex;
    justify-self: center;
  }

  .about-text {
    font-size: var(--fs-7);
    /* Adjusted font size for about text */
    margin-block-end: 2px;
    /* Reduced margin for mobile */
    text-align: center;
    /* Center text content */
    text-align: justify;
    padding-left: 15px;
    padding-right: 15px;
  }

  .stats-list {
    display: grid;
    /* Keep grid layout */
    gap: 10px;
    /* Reduced gap between items */
    justify-items: self-end;
    /* Center items within grid cells */
  }

  .stats-card {
    margin-top: 40px;
    text-align: center;
    /* Center text inside the card */
    padding: 30px;
    /* Reduced padding for mobile */
    box-shadow: var(--shadow);
    border-radius: var(--radius-12);
    width: 100%;
    /* Full width for better centering */
  }

  .stats-title {
    color: var(--st-patricks-blue);
    font-size: var(--fs-4);
    /* Adjusted font size for stats title */
    font-weight: var(--fw-700);
  }

  .stats-text {
    font-size: var(--fs-5);
    /* Adjusted font size for stats text */
  }
}


/*-----------------------------------*\
    #VIDEO
  \*-----------------------------------*/

.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Fixed position */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full screen width */
  height: 100%;
  /* Full screen height */
  background-color: rgba(0, 0, 0, 0.8);
  /* Dark background with opacity */
}

.modal-content {
  background-color: #fff;
  margin: 10% auto;
  /* Centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 800px;
  /* Max width for video */
  position: relative;
}

.close {
  color: #aaa;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.modal-video {
  width: 100%;
  /* Make the video take up full width */
  height: 450px;
  /* Adjust height for better visibility */
}

.video-wrapper {
  background: url(assets/25.jpeg) top center no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  padding: 155px 0;
  position: relative;
  overflow: hidden;
  /* Hide overflow for parallax effect */
  transition: background 1s ease-in-out;
}

.video-wrapper-overlay {
  position: absolute;
  background: var(--gradient-1);
  opacity: 90%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.shape-image-top {
  background: url() top center no-repeat;
  background-size: contain;
  width: 100%;
  max-height: 200px;
  padding: 100px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.shape-image-bottom {
  background: url() bottom center no-repeat;
  background-size: contain;
  width: 100%;
  max-height: 92px;
  padding: 46px 0;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  position: relative;
  z-index: 3;
  /* Ensure container is above overlay */
}

.row {
  display: flex;
  justify-content: center;
  /* Center the content */
}

.col-md-12 {
  text-align: center;
}

.popup-gallery {
  position: relative;
  /* Position for the play icon */
  display: inline-block;
}

.video-icon {
  width: 100px;
  height: 100px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: inline-block;
  background: transparent;
  transition: all 0.4s ease-in-out;
  position: relative;
  /* Position for the pulsating effect */
  cursor: pointer;
}

.video-icon:before {
  content: '';
  width: 100px;
  height: 100px;
  position: absolute;
  border: 1px solid #fff;
  border-radius: 100%;
  left: 50%;
  margin-left: -50px;
  bottom: 10%;
  margin-bottom: -10px;
  animation: doublePulsation 1.9s ease infinite;
  z-index: 0;
}

@keyframes doublePulsation {
  0% {
    transform: scale(1.0, 1.0);
    opacity: 0.0;
  }

  50% {
    opacity: 0.55;
  }

  100% {
    transform: scale(1.3, 1.3);
    opacity: 0.0;
  }
}

.video-icon:hover {
  background: #fff;
}

.video-icon:hover i {
  color: #4285f4;
}

.video-icon i {
  font-size: 54px;
  line-height: 100px;
  color: #fff;
  transition: all 0.4s ease-in-out;
}

.video-title {
  font-size: 34px;
  line-height: 40px;
  margin-top: 45px;
  color: #fff;
  font-weight: 700;
}

.video-title span {
  font-size: 19px;
  line-height: 24px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 1px;
}

video {
  width: 100%;
  /* Responsive video width */
  max-width: 600px;
  /* Max width for larger screens */
  height: auto;
  /* Maintain aspect ratio */
  display: none;
  /* Hide by default until played */
}

/* Modal styles */
.modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1000;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */
  transition: opacity 0.3s ease-in-out;
  /* Smooth transition */
  visibility: hidden;
  opacity: 0;
}

.modal.show {
  visibility: visible;
  opacity: 1;
}

.modal-content {
  background-color: #fefefe;
  margin: 15% auto;
  /* 15% from the top and centered */
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  /* Could be more or less, depending on screen size */
  max-width: 600px;
  position: relative;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  /* Smooth transition */
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

.modal-video {
  width: 100%;
  height: auto;
  display: block;
  /* Show the video */
  border-radius: 5px;
}

.overlay-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: url('overlay-image.jpg') no-repeat center center;
  background-size: cover;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  z-index: 1;
}

.modal.show .overlay-image {
  opacity: 0;
}

/*-----------------------------------*\
    #BROUCHER
  \*-----------------------------------*/

.main {
  height: 90vh;
  width: 100%;
}

.wrapper,
.slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide {
  overflow: hidden;
}

.download-button {
  position: absolute;
  top: 20px;
  /* Adjust as needed */
  right: 20px;
  /* Adjust as needed */
  padding: 10px 15px;
  border-radius: 25px;
  color: #fff;
  font-size: var(--fs-6);
  font-weight: var(--fw-500);
  background-color: var(--razzmatazz);
  /* Change color as needed */
  text-decoration: none;
  transition: background-color 0.3s ease;
  z-index: 200;
  /* Ensure it's above other elements */
}

.download-button:hover {
  background-color: var(--razzmatazz);
  /* Darker shade on hover */
}

.slide::before {
  content: "";
  position: absolute;
  height: 85vh;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.slide .image {
  height: 85vh;
  width: 100%;
  border-left: var(--royal-blue-dark) 50px solid;
  border-right: var(--royal-blue-dark) 50px solid;
}

.slide .image-data {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 100;
}

.image-data span.text {
  font-size: 14px;
  font-weight: 400;
  color: #fff;
}

.image-data h2 {
  font-size: 45px;
  font-weight: 600;
  color: #fff;
}


.button-container {
  text-align: center;
}

.download-btn {
  display: inline-flex;
  margin-bottom: 20px;
  margin-left: 88%;
  justify-self: end;
  right: 10px;
  background-color: #007bff;
  /* Button color */
  color: white;
  /* Text color */
  padding: 12px 20px;
  /* Padding */
  font-size: 16px;
  /* Font size */
  border: none;
  /* No border */
  border-radius: 5px;
  /* Rounded corners */
  text-decoration: none;
  /* Remove underline */
  transition: background-color 0.3s ease;
  /* Smooth transition */
}

.download-btn i {
  margin-right: 8px;
  /* Space between icon and text */
}

.download-btn:hover {
  background-color: #0056b3;
  /* Darker shade on hover */
}

/* swiper button css */
.nav-btn {
  height: 50px;
  width: 50px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.604);
}

.nav-btn:hover {
  background: rgba(11, 9, 9, 0.522);
}

.swiper-button-next {
  right: 50px;
}

.swiper-button-prev {
  left: 50px;
}

.nav-btn::before,
.nav-btn::after {
  font-size: 25px;
  color: #fff;
}

.swiper-pagination-bullet {
  opacity: 1;
  height: 12px;
  width: 12px;
  background-color: #4a3b3b;
  visibility: hidden;
}

.swiper-pagination-bullet-active {
  border: 2px solid #fff;
  background-color: #010101;
}

@media screen and (max-width: 768px) {
  .nav-btn {
    visibility: hidden;
  }

  .swiper-pagination-bullet {
    visibility: visible;
  }
}

@media (max-width: 480px) {
  .main {
    height: 35vh;
    /* Allow height to adjust based on content */
  }

  .slide .image {
    height: auto;
    /* Adjust image height for better responsiveness */
    width: 100%;
    /* Ensure image takes full width */
  }

  .slide .image-data {
    width: 90%;
    /* Make image data width responsive */
    padding: 0 10px;
    /* Add padding for better spacing */
  }

  .slide .image {
    border-left: 0px;
    border-right: 0px;
  }

  .download-btn {
    right: 10px;
    margin-left: 260px;
    font-size: 12px;
    padding: 10px 14px;
  }

  .download-button {
    position: fixed;
    /* Change to fixed for better accessibility */
    top: 260px;
    /* Adjust top position */
    right: 10px;
    /* Adjust right position */
    padding: 8px 12px;
    /* Smaller padding */
    font-size: var(--fs-8);
    /* Adjust font size */
    border-radius: 20px;
    /* Slightly smaller border-radius */
  }

  .download-button:hover {
    background-color: darken(var(--razzmatazz), 10%);
    /* Darker shade on hover (if using SCSS) */

  }


  .image-data span.text {
    font-size: 12px;
    /* Reduced font size for mobile */
  }

  .image-data h2 {
    font-size: 24px;
    /* Reduced font size for mobile */
  }

  a.button {
    padding: 8px 16px;
    /* Adjust button padding for smaller screens */
    font-size: var(--fs-6);
    /* Adjust font size for button text */
    margin-top: 15px;
    /* Reduced margin for mobile */
  }

  .nav-btn {
    height: 40px;
    /* Smaller button size for navigation */
    width: 40px;
  }

  .swiper-button-next,
  .swiper-button-prev {
    right: 20px;
    /* Adjust position for smaller screens */
    left: 20px;

  }

  .swiper-pagination-bullet {
    height: 10px;
    /* Smaller bullet size */
    width: 10px;
    background-color: #00000057;
  }
}



/*-----------------------------------*\
    #SERVICE
  \*-----------------------------------*/

.service-list {
  display: grid;
  gap: 60px;
}

.service-card .contact-texts {
  margin-top: 20px;
}

.service-card {
  padding: 30px;
  row-gap: 20px;
  box-shadow: var(--shadow);
  border-radius: var(--radius-12);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7);
}

.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;
}

.service-card .text {
  text-align: center;
  margin-block-end: 20px;
}

.service-card .card-btn {
  margin-inline: auto;
  padding: 15px;
  border: 1px solid var(--white);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-1);
}

.service-card .card-btn:is(:hover, :focus) {
  color: var(--white);
  background-color: var(--royal-blue-dark);
}

@media (max-width: 480px) {
  .service-list {
    display: grid;
    /* Keep grid layout */
    gap: 15px;
    /* Reduced gap between items */

  }

  .service-card {
    padding: 20px;
    /* Reduced padding for mobile */
    box-shadow: var(--shadow);
    /* Keep shadow effect */
    border-radius: var(--radius-12);
    /* Maintain border radius */
  }

  .service-card .card-icon {
    max-width: 120px;
    /* Reduced max width for icon */
    padding: 10px;
    /* Added padding for better spacing */
  }

  .service-card .card-icon ion-icon {
    font-size: 4rem;
    /* Adjusted icon size for mobile */
  }

  .service-card .title {
    font-size: var(--fs-5);
    /* Adjusted font size for title */
    margin-block-end: 10px;
    /* Reduced margin for mobile */
  }

  .service-card .text {
    font-size: var(--fs-6);
    /* Adjusted font size for text */
    margin-block-end: 15px;
    /* Reduced margin for mobile */
  }

  .service-card .card-btn {
    padding: 10px;
    /* Adjusted padding for button */
    font-size: var(--fs-6);
    /* Adjusted font size for button text */
  }
}




/*-----------------------------------*\
    #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;
}


button {
  padding: 10px 10px;
  font-size: 16px;
  color: white;
  background-color: var(--razzmatazz);
  /* Base color for the button */
  border: none;
  border-radius: 100%;
  /* Rounded corners */
  position: relative;
  cursor: pointer;
  outline: none;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

button::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: 30px;
  /* Larger radius for the ring effect */
  background-color: rgba(255, 255, 255, 0.3);
  /* Ring color */
  z-index: -1;
  /* Behind the button */
}

button:hover {
  background-color: #3700b3;
  /* Darker shade on hover */
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-image: linear-gradient(to right, #c9b4dd, #cadbdd);
  /* Gradient background */
  margin: 15% auto;
  padding: 10px;
  border-radius: 10px;
  /* Rounded corners for modal */
  width: 60%;
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}


@media (max-width: 480px) {
  .modal {
    display: flex;
    /* Change display to flex for centering */
    justify-content: center;
    /* Center modal content horizontally */
    align-items: center;
    /* Center modal content vertically */
  }

  .modal-content {
    top: 20%;
    margin: 10% auto;
    /* Adjust margin for mobile */
    padding: 15px;
    /* Increased padding for better spacing */
    width: 80%;
    /* Full width for better responsiveness */
  }

  video {
    width: 100%;
  }

  .mybtn {
    padding: 9px;
    /* Reduced padding for button */
    font-size: 16px;
    /* Adjusted font size for button text */
    margin: 10px;
  }

  .close {
    font-size: 24px;
    /* Reduced close button size */
  }
}


/*-----------------------------------*\
    #Filterable Gallery
  \*-----------------------------------*/


.wrapper-gallery {
  margin: 100px auto;
  max-width: 1100px;
}

.wrapper-gallery div {
  display: flex;
  justify-content: center;
  flex-direction: row;
}

.wrapper-gallery .items {
  display: flex;
  max-width: 720px;

}

.items {
  display: flex;
  /* Enables flexbox layout */
  flex-wrap: wrap;
  /* Allows items to wrap onto the next line */
}

.items span {
  margin: 10px;
  padding: 6px 16px;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  color: #007bff;
  border-radius: 40px;
  border: 2px solid #007bff;
  transition: all 0.3s ease;
}

.items span.active,
.items span:hover {
  color: #fff;
  background: #007bff;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
}

.gallery .image {
  width: calc(100% / 4);
  padding: 7px;
  width: 25%;
  height: 220px;
  object-fit: contain;
}

.gallery .image span {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.gallery .image img {
  width: 100%;
  vertical-align: middle;
  transition: all 0.3s ease;
}

.gallery .image:hover img {
  transform: scale(1.1);
}

.gallery .image.hide {
  display: none;
}

.gallery .image.show {
  animation: animate 0.4s ease;
}

@keyframes animate {
  0% {
    transform: scale(0.5);
  }

  100% {
    transform: scale(1);
  }
}

.preview-box {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: #fff;
  max-width: 90%;
  /* Adjusted for better responsiveness */
  max-height: 90%;
  /* Added max-height for vertical images */
  width: auto;
  /* Allow width to adjust based on content */
  height: auto;
  /* Allow height to adjust based on content */
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  border-radius: 5px;
  padding: 15px;
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.2);
}

.preview-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
  transition: all 0.3s ease;
}

.preview-box .details {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.details .title {
  display: flex;
  font-size: 18px;
  font-weight: 400;
}

.details .title p {
  font-weight: 500;
  margin-left: 5px;
}

.details .icon {
  color: #007bff;
  font-size: 22px;
  /* Corrected from font-style to font-size */
  cursor: pointer;
}

.preview-box .image-box {
  width: calc(100% - (15px));
  /* Adjusted for padding */
}

.image-box img {
  width: auto;
  /* Allow image width to adjust based on its aspect ratio */
  height: auto;
  /* Allow image height to adjust based on its aspect ratio */

  max-width: calc(100%);
  /* Ensure image does not overflow the box */
  max-height: calc(80vh);
  /* Limit height to viewport height */

  border-radius: 0;
  /* Remove border radius for image box */
}

.shadow {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 2;
  display: none;
  background: rgba(0, 0, 0, 0.4);
}

.shadow.show {
  display: block;
}

@media (max-width: 1000px) {
  .gallery .image {
    width: calc(100% / 3);
  }
}

@media (max-width: 800px) {
  .gallery .image {
    width: calc(100% / 2);
  }
}

@media (max-width: 700px) {
  .wrapper-gallery nav .items {
    max-width: 600px;
  }

  nav .items span {
    padding: 7px 15px;
  }
}

@media (max-width: 600px) {
  .wrapper-gallery {
    margin: 30px auto;
  }

  .wrapper-gallery nav .items {
    flex-wrap: wrap;
    justify-content: center;
  }

  nav .items span {
    margin: 5px;
  }

  .gallery .image {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .wrapper-gallery {
    margin: 20px auto;
    /* Reduced margin for mobile */
    max-width: 100%;
    /* Full width on mobile */
    padding: 10px;
    /* Added padding for better spacing */
     
  }
  .texttt{
      font-size: 11px !important;
  }

  .wrapper-gallery div {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    /* Center align items */
    justify-content: center;
    /* Center items horizontally */
  }

  .gallery .image {
    row-gap: 10px;
    width: calc(100% - 10px);
    /* Full width on mobile */
    height: 230px;
    object-fit: cover;
    overflow-y: hidden;
    margin-bottom: 10px;
    /* Space between images */
    border-radius: 5px;
    /* Rounded corners for images */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    /* Subtle shadow for images */
    transition: transform 0.2s;
    /* Smooth transition for hover effect */
  }

  .gallery .image:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
  }

  .items {
    max-width: 100%;
    /* Full width for items */
    display: flex;
    /* Use flexbox for alignment */
    justify-content: center;
    /* Center items */
    flex-wrap: wrap;
    /* Allow wrapping */
  }

  .items span {
    padding: 8px 20px;
    /* Adjust padding for smaller screens */
    font-size: 14px;
    /* Slightly smaller font size */
    margin: 5px;
    /* Add some margin between buttons */
    background-color: white;
    /* Default button color */
    color: #007BFF;
    /* Default text color */
    border-radius: 5px;
    /* Rounded corners for buttons */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: background-color 0.3s, transform 0.2s;
    /* Smooth transition effect */
  }

  /* Hover effect for buttons */
  .items span:hover {
    transform: scale(1.05);
    /* Slight zoom effect on hover */
  }

  /* Active state for clicked menu option */
  .items span.active {
    background-color: #007BFF;
    /* Blue background for active option */
    color: white;
    /* White text for active option */
  }





  .preview-box {
    width: 100%;
    height: 80%;
    background-color: rgba(255, 255, 255, 0.86);
    /* Dark semi-transparent background for better contrast */
    z-index: 1000;
    /* Ensure it appears above other elements */
    padding: 20px;
    /* Padding around the content */
    box-sizing: border-box;
    /* Include padding in width/height calculations */
  }

  .preview-box img {
    max-width: 100%;
    /* Responsive image size to fit within the box */
    max-height: calc(100% - 40px);
    /* Leave space for padding and margins */
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    /* Shadow around the image for depth */
  }

  .shadow {
    display: none;
    /* Hide the shadow initially if used elsewhere in your design */
  }
}







/*-----------------------------------*\
    #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;
}


@media (max-width: 480px) {
  .footer {
    font-size: var(--fs-7);
    /* Slightly smaller font size for better fit */
    text-align: center;
  }

  .footer-top {
    background-size: cover;
    /* Use cover to fill the space */
    padding: 20px;
    /* Add padding for better spacing */
  }

  .footer-brand {
    text-align: center;
    /* Center align brand elements */
    margin-block-end: 15px;
    /* Reduced margin */
  }

  .footer-brand .logo {
    font-size: var(--fs-6);
    /* Smaller logo font size */
    margin-block-end: 10px;
    /* Reduced margin */
    justify-self: center;
  }

  .footer-brand .text {
    font-size: var(--fs-7);
    /* Smaller text size */
    margin-block-end: 15px;
    /* Reduced margin */
  }

  .social-list {
    justify-content: center;
    /* Center social icons */
    gap: 8px;
    /* Reduced gap between icons */
  }

  .footer-top .social-link {
    font-size: 16px;
    /* Smaller icon size */
    padding: 6px;
    /* Reduced padding for compactness */
  }

  .footer-list-title {
    font-size: var(--fs-6);
    /* Smaller title size */
    margin-block-end: 1px;
    /* Reduced margin */
  }

  .footer-item {
    flex-direction: column;
    /* Stack items vertically */
    align-items: center;
    /* Center align items */
    padding-block: 5px;
    /* Reduced padding for compactness */
  }

  .footer-item-icon {
    padding: 10px;
    /* Reduced padding for smaller icons */
    margin-bottom: 0px;
    /* Space between icon and text */
  }

  .footer-bottom {
    font-size: var(--fs-7);
    /* Smaller footer bottom text size */
    /
  }
}




/*-----------------------------------*\
    #GO TO TOP
  \*-----------------------------------*/

.go-top {
  position: fixed;
  bottom: 65px;
  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);
  /* box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.7); */
  border: 0.1rem solid rgba(0, 0, 0, 0.7);
}

.wp.wp-active {
  position: fixed;
  bottom: 15px;
  /* Distance from the bottom */
  right: 15px;
  /* Distance from the left */
  background-color: #25D366;
  /* WhatsApp green */
  color: #fff;
  font-size: 2rem;
  padding: 14px;
  border-radius: var(--radius-4);
  box-shadow: -3px 3px 15px rgba(0, 0, 0, 0.5);
  z-index: 2;
  transition: background-color 0.3s ease;
}


.wp.wp-active:hover {
  background-color: #128C7E;
  /* Darker green on hover */
}

/*-----------------------------------*\
    #MEDIA QUERIES
  \*-----------------------------------*/

/**
   * responsive for larger than 550px screen
   */

@media (min-width: 480px) {

  /**
     * 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;
  }

  /*Hero Section*/


  /* Media Query for Screens 480px and Below */
  @media (max-width: 480px) {

    .hero {
      padding-block-start: 30px;
      /* Further reduce top padding if needed */
      padding-block-end: 0px;
      /* Further reduce bottom padding if needed */
    }

    .hero-content {
      margin-block-end: 15px;
      /* Further reduce margin below hero content */
    }

    .hero-subtitle {
      font-size: var(--fs-7);
      /* Use variable for subtitle font size */
      margin-block-end: 5px;
      /* Maintain reduced margin below subtitle */
    }

    .hero-title {
      font-size: var(--fs-5);
      /* Adjust title font size using variable for better readability on mobile */
      margin-block-end: 10px;
      /* Maintain reduced margin below title */
    }

    .hero-text {
      font-size: var(--fs-5);
      /* Use variable for text font size for better readability on mobile */
      margin-block-end: 15px;
      /* Maintain reduced margin below text */
    }

  }

  /**
     * ABOUT
     */
  .stats-list {
    grid-template-columns: repeat(2, 1fr);
    /* Change to 2 columns for mobile */
    gap: 20px;
    /* Reduce gap between cards */
  }

  .stats-card {
    padding: 10px;
    /* Reduce padding for smaller screens */
    box-shadow: none;
    /* Optionally remove shadow for a cleaner look */
    border-radius: var(--radius-8);
    /* Slightly reduce border radius */
  }

  .stats-title {
    font-size: var(--fs-3);
    /* Adjust title font size for better readability */
  }

  .stats-text {
    font-size: var(--fs-9);
    /* Adjust text font size for better readability on mobile */
  }

  .stats-list {
    grid-template-columns: repeat(2, 1fr);
    /* Change to 2 columns for mobile */
    gap: 20px;
    /* Reduce gap between cards */
  }

  .stats-card {
    padding: 10px;
    /* Reduce padding for smaller screens */
    box-shadow: none;
    /* Optionally remove shadow for a cleaner look */
    border-radius: var(--radius-8);
    /* Slightly reduce border radius */
  }

  .stats-title {
    font-size: var(--fs-3);
    /* Adjust title font size for better readability */
  }

  .stats-text {
    font-size: var(--fs-9);
    /* Adjust text font size for better readability on mobile */
  }

  .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%;
  }

  /*Gallery*/

  .gallery {
    flex-direction: column;
    /* Ensure column layout */
    align-items: center;
    /* Center align gallery items */
  }

  .gallery .images {
    columns: 2 150px;
    /* Adjust columns to 2 for smaller screens */
    gap: 10px;
    /* Reduce gap between images */
    max-width: 100%;
    /* Allow full width on mobile */
    margin: 20px 0;
    /* Reduce margin */
  }

  .gallery .images .img {
    margin-bottom: 10px;
    /* Reduce margin below images */
  }

  .lightbox {
    background: rgba(0, 0, 0, 0.85);
    /* Darker background for better visibility */
  }

  .lightbox .wrapper {
    width: 90%;
    /* Make lightbox content wider on mobile */
    max-width: none;
    /* Remove max-width restriction */
    padding: 10px;
    /* Reduce padding in lightbox */
  }

  header .details span {
    font-size: 1rem;
    /* Decrease font size for details text */
  }

  header .details i {
    font-size: 1.5rem;
    /* Decrease icon size */
  }

  header .buttons i {
    height: 35px;
    /* Reduce button size */
    width: 35px;
    font-size: 1rem;
    /* Decrease button icon size */
  }

  .preview-img .img {
    max-height: 50vh;
    /* Reduce max height for preview image on mobile */
  }


  /**
     * 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: 14px;
  }

  .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;
    align-items: center;
  }

  .navbar-item:not(:last-child) {
    border-bottom: none;
  }

  .navbar-link {
    color: var(--platinum);
  }



  /**
     * 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: 1300px;
  }

  .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;
  }

}

/* Add responsive styles */
@media (max-width: 1200px) {
  .navbar {
    display: none;
    flex-direction: column;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    z-index: 1000;
  }

  .navbar.active {
    display: flex;
  }

  .nav-open-btn,
  .nav-close-btn {
    display: block;

  }

  .nav-open-btn {
    position: absolute;
    top: 14px;
    right: 20px;

  }

  .nav-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
  }

  .overlay.active {
    display: block;
  }

  /* Add other responsive styles for elements */
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 1rem;
    padding: 10px 20px;
  }

  .section-title {
    font-size: 2rem;
  }

  .about-text {
    font-size: 1rem;
  }

  .stats-title {
    font-size: 1.5rem;
  }

  .stats-text {
    font-size: 1rem;
  }

  .service-card {
    padding: 20px;
  }

  .service-card .title {
    font-size: 1.5rem;
  }

  .service-card .text {
    font-size: 1rem;
  }

  .footer-list-title {
    font-size: 1.5rem;
  }

  .footer-link {
    font-size: 1rem;
  }
}

@media (max-width: 992px) {

  /* Add other responsive styles for elements */
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-text {
    font-size: 1.25rem;
  }

  .btn {
    font-size: 0.875rem;
    padding: 8px 16px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .about-text {
    font-size: 1.875rem;
  }

  .stats-title {
    font-size: 1.25rem;
  }

  .stats-text {
    font-size: 0.875rem;
  }

  .service-card {
    padding: 15px;
  }

  .service-card .title {
    font-size: 1.25rem;
  }

  .service-card .text {
    font-size: 0.875rem;
  }

  .footer-list-title {
    font-size: 1.25rem;
  }

  .footer-link {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {

  /* Add other responsive styles for elements */
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    font-size: 0.75rem;
    padding: 6px 12px;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .about-text {
    font-size: 1.705rem;
  }

  .stats-title {
    font-size: 1rem;
  }

  .stats-text {
    font-size: 0.75rem;
  }

  .service-card {
    padding: 10px;
  }

  .service-card .title {
    font-size: 1rem;
  }

  .service-card .text {
    font-size: 0.75rem;
  }

  .footer-list-title {
    font-size: 1rem;
  }

  .footer-link {
    font-size: 0.75rem;
  }
}

@media (max-width : 480px){
  .btn{
    padding: 15px 10px;
  }
}
@media (max-width: 576px) {

  /* Add other responsive styles for elements */
  .hero-title {
    font-size: 1.25rem;
  }

  .hero-text {
    font-size: 0.875rem;
  }

  .btn {
    font-size: 0.625rem;
    padding: 5px 10px;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .about-text {
    font-size: 1.625rem;
  }

  .stats-title {
    font-size: 0.875rem;
  }

  .stats-text {
    font-size: 1.625rem;
  }

  .service-card {
    padding: 5px;
  }

  .service-card .title {
    font-size: 0.875rem;
  }

  .service-card .text {
    font-size: 0.625rem;
  }

  .footer-list-title {
    font-size: 0.875rem;
  }

  .footer-link {
    font-size: 0.625rem;
  }
}