/* General Styles */

:root {
  --primary-color: #f68d3c;
  --secondary-color: #6272b6;
  --gradient-color: linear-gradient(90deg, red, #f68d3c);
  scrollbar-width: thin; /* Makes the scrollbar thinner */
  scrollbar-color: #555 #222; /* Thumb color and track color */
}

body {
  font-family: "Avenir", "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

label {
  font-family: "Avenir", "Roboto", sans-serif;
}

button {
  font-family: "Avenir", "Roboto", "sans-serif";
}

.headerig:hover {
  color: var(--primary-color) !important;
}

::selection {
  background-color: var(--primary-color);
  color: white;
}

a {
  text-decoration: none;
  cursor: pointer;
}

h2,
.h2 {
  letter-spacing: 0.001em;
}

header {
  background: white;
  padding: 10px 5px;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.4s ease-in-out;
  z-index: 1000;
  box-shadow: 0 1px 4px 1px rgba(0, 0, 0, 0.5);
}

.hide-header {
  transform: translateY(-100%);
}

#main-navbar .active {
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.process-container {
  background-color: black;
  padding-left: 5%;
  padding-right: 5%;
  width: 90%;
  margin: auto;
}

.sections-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 0px;
  background: white;
  /* max-width: 1200px; */
  margin: 0;
}
.sections-layouts {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.sections-layout-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.sections-services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-direction: row;
}

.sections-services-tiles {
  display: flex;
  flex-direction: column;
  /* width: 30%; */
  padding: 30px 0px;
}

.services-tiles {
  flex: 1 1 35%; /* Base width: 22% allows for 4 columns with gaps */
  max-width: 30%;
  box-sizing: border-box;
  padding-bottom: 30px;
  padding-bottom: 50px;
}

.services-tiles {
  width: 30%;
}

/* For screens 1024px and below, show 3 columns */
@media (max-width: 1024px) {
  .services-tiles {
    flex: 1 1 30%;
    max-width: 30%;
    padding-bottom: 50px;
  }
}

/* For screens 768px and below, show 2 columns */
@media (max-width: 768px) {
  .services-tiles {
    flex: 1 1 45%;
    max-width: 45%;
    padding-bottom: 50px;
  }
}

/* For screens 480px and below, display 1 column */
@media (max-width: 480px) {
  .services-tiles {
    flex: 1 1 90%;
    max-width: 90%;
    padding-bottom: 50px;
  }
}

.services-tile {
  width: 25%;
}

.services-tile a img {
  width: 130px;
}

* Grid for Services */ .more-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  width: 100%;
}

/* Individual Service Tile */
.services-tile {
  flex: 1 1 22%; /* Base width: 22% allows for 4 columns with gaps */
  max-width: 22%;
  box-sizing: border-box;
  text-align: center;
}

/* For screens 1024px and below, show 3 columns */
@media (max-width: 1024px) {
  .services-tile {
    flex: 1 1 30%;
    max-width: 30%;
  }
}

/* For screens 768px and below, show 2 columns */
@media (max-width: 768px) {
  .services-tile {
    flex: 1 1 45%;
    max-width: 45%;
  }
}

/* For screens 480px and below, display 1 column */
@media (max-width: 480px) {
  .services-tile {
    flex: 1 1 90%;
    max-width: 90%;
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .sections-layout-container {
    flex-direction: column;
  }
  .sections-layout-left,
  .sections-layout-right {
    flex: none;
    width: 100%;
    text-align: center;
  }
}

.container {
  width: 90%;
  margin: auto;
  /* overflow: hidden; */
}

/* Overlay Text */
.overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2; /* Ensure it's on top of the video */
}

header .container {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Accordion Container */
.accordion {
  width: 100%;
  max-width: 800px; /* Adjust to your layout needs */
  margin: 0 auto;
  color: #fff;
  background-color: #000; /* Example dark background */
  font-family: Arial, sans-serif;
}

/* Accordion Item */
.accordion-item {
  border-bottom: 1px solid #333; /* Divider line */
  overflow: hidden;
}

/* Accordion Header */
.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 1rem;
  transition: background 0.3s ease;
}

.accordion-header:hover {
  background-color: #111;
}

/* Accordion Title */
.accordion-header h4 {
  margin: 0;
  font-size: 1rem !important;
  font-weight: normal;
  text-transform: uppercase;
}

/* Plus Icon */
.accordion-icon {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

/* Accordion Content (Initially Collapsed) */
.accordion-content {
  max-height: 0;
  padding: 0 1rem;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, opacity 0.3s ease;
}

/* When Item is Active */
.accordion-item.active .accordion-content {
  padding: 1rem;
  max-height: 300px; /* Set a max-height that fits your content */
  opacity: 1;
}

/* Rotate the Plus Icon to 'x' when active (45 deg) */
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

footer .container {
  width: 80%;
  margin: 0 auto;
}

header .logo img {
  height: 50px;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}

nav ul li {
  margin-left: 20px;
}

nav ul li:hover {
  border-bottom: 2px solid rgb(255, 153, 0);
  color: 2px solid rgb(255, 153, 0);
}

.hero {
  position: relative;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(50%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

/* Typography Styling */
.hero-content h1 {
  font-size: 4rem;
  /* font-weight: bold; */
}

.hero-content p {
  font-size: 1.5rem;
  margin-top: 0.5rem;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, red, var(--primary-color));
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: all 0.3s ease-in-out;
}

.cta-button:hover {
  background: linear-gradient(90deg, var(--primary-color), red);
  transform: scale(1.1);
}

/* Button */
.btn {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  transition: 0.3s ease-in-out;
  border: 2px solid black;
  border-radius: 30px;
  font-weight: bold;
}

.btn:hover {
  background-color: black;
  color: white;
}

.cta-button2 {
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
  color: black;
  border-radius: 30px;
  transition: 0.3s ease-in-out;
  background-color: none;
  z-index: 1;
  overflow: hidden;
  position: relative;
  font-weight: bold;
}

.cta-button2:hover {
  background: linear-gradient(90deg, red, #f68d3c);
  color: white !important;
}

.cta-button2::before {
  content: "";
  position: absolute;
  inset: 0;
  font-weight: bold;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(90deg, red, #f68d3c);
  mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
  mask-composite: exclude;
  -webkit-mask: linear-gradient(white 0 0) content-box,
    linear-gradient(white 0 0);
  -webkit-mask-composite: destination-out;
  z-index: -1;
}

/* background: linear-gradient(
    45deg,
    var(--primary-color),
    var(--secondary-color)
  ); */

nav ul li a {
  color: var(--primary-color);

  text-decoration: none;
  font-family: "Lato", sans-serif;
  font-style: normal;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.sub-nav-container {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  justify-content: space-around;
}

.sub-sub-navs {
  display: flex;
  gap: 15px;
  padding: 10px;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
}

.sub-sub-navs::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome & Safari */
}

.sub-sub-navs-menu {
  flex: 0 0 auto;
  width: 180px; /* Adjust based on design */
  text-align: center;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: white;
  border: none;
  padding: 10px !important;
  cursor: pointer;
  font-size: 20px;
  z-index: 100;
  height: 100%;
}

.left-arrow {
  left: 0px;
  border-right: 1px solid black;
}

.right-arrow {
  right: 0px;
  border-left: 1px solid black;
}

/* Portfolio Section */
.portfolio {
  padding: 80px 0;
  background-color: var(--secondary-color);
  color: #fff;
  text-align: center;
}

.portfolio h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

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

.project img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  border-radius: 10px;
}

.project:hover img {
  transform: scale(1.2);
}

.project .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  text-align: center;
}
.project:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overlay p {
  font-size: 16px;
}

/* Lightbox Popup */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox.active {
  display: flex;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.testimonials {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.testimonial-slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.testimonial {
  background-color: white;
  padding: 20px;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.testimonial p {
  font-style: italic;
  color: #333;
  margin-bottom: 10px;
}

.testimonial span {
  font-weight: bold;
  color: #007bff;
}

.testimonial-slider a {
  font-size: 14px;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.testimonial-slider a:hover {
  color: #0056b3;
}

.services {
  background-color: #e9ecef;
  padding: 60px 0;
  text-align: center;
}

.service-item {
  background-color: white;
  padding: 40px;
  margin: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #343a40;
}

.service-item p {
  font-size: 16px;
  color: #6c757d;
}

.services .service-item:not(:last-child) {
  margin-bottom: 30px;
}

.services .cta-button {
  margin-top: 30px;
}

.cta-tab {
  background-color: black;
  padding: 40px;
  display: flex;
  color: white;
  border-radius: 50px;
  flex-direction: row;
  align-items: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 60px;
}

.cta-tab-tabs {
  margin-bottom: 20px;
}

.tile-inner-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.more-services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  flex-direction: row;
}

input {
  font-family: "roboto";
}

.blog {
  background-color: #f5f5f5;
  padding: 50px 0;
}

.blog h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #333;
  margin-bottom: 40px;
}

.blog-post {
  background-color: white;
  padding: 30px;
  max-width: 600px;
  margin: 0 auto 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post h3 {
  font-size: 24px;
  margin-bottom: 15px;
}

.blog-post p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.blog-post a {
  display: inline-block;
  margin-top: 15px;
  font-weight: bold;
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-post a:hover {
  color: #0056b3;
}

.blog .cta-button {
  margin-top: 30px;
  text-align: center;
  display: block;
}

.contact {
  background-color: #007bff;
  padding: 60px 0;
  text-align: center;
  color: white;
}

.contact h2 {
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 20px;
}

.contact p {
  font-size: 18px;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

.partners {
  background-color: #f9f9f9;
  padding: 50px 0;
  text-align: center;
}

.partners h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 40px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.partners-logos img {
  max-height: 80px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.partners-logos img:hover {
  transform: scale(1.1);
}

/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
.sub-navs {
  display: flex;
  justify-content: space-evenly;
  padding: 20px 0px;
  background-color: var(--primary-color);
}

.tab-button {
  padding: 12px 24px;
  border: none;
  background: none;
  color: white;
  font-size: 16px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  outline: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 6px 6px rgba(0, 0, 0, 0.1);
}

.tab-button:hover {
  background: none;
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6);
}

.active-btn {
  background: none;
  transform: scale(1.05);
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.6);
}

.sub-sub-navs {
  display: flex;
  justify-content: space-evenly;
  padding: 10px;
}

.sub-sub-navs-menu a {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sub-navs-icons img {
  width: 100%;
  max-width: 82px;
  height: auto;
  max-height: 85px;
  margin: 0 auto;
  object-fit: contain;
}

.sub-sub-navs-text {
  display: flex;
  align-items: center;
  justify-content: center;
  color: black;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

.right-section h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.right-section hr {
  border: none;
  height: 2px;
  background: black;
  width: 50px;
  margin-bottom: 10px;
}

.right-section ul {
  list-style: none;
  padding: 0;
}

.right-section ul li {
  font-size: 1.2rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
}

.right-section ul li::before {
  content: "✔";
  color: green;
  font-weight: bold;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .sections-layout-left,
  .sections-layout-right {
    width: 100%; /* Stacks them on smaller screens */
  }
}

.sections-layout-left,
.sections-layout-right {
  flex: 1;
  padding: 5px;
  display: flex;
}

.sections-layout-left {
  text-align: left;
}

.sections-layout-right {
  text-align: left;
}

.sections-layout-text h2 {
  font-size: 3rem;
}

.sections-layout-text p {
  text-align: left;
  color: #676767;
  line-height: 1.7;
  font-weight: 100;
  letter-spacing: 0.8px;
}

ul {
  padding-left: 1.2em;
}

.sections-layout-text,
.section-layout p,
.section-layout ul {
  position: relative;
  margin-bottom: 30px;
  line-height: 1.7;
  font-size: 1.5rem;
  font-weight: 200;
}
.sections-layout h1 {
  font-size: 5rem;
  margin-bottom: 10px;
}
.accordion-content p {
  color: white !important;
}
.sections-layout h3 {
  padding-bottom: 5px;
  font-size: 2rem;
  position: relative;
  display: inline-block;
}

.sections-layout h3::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}

.sections-layout h3:hover::after {
  right: 0;
  width: 100%;
}

.quote {
  font-size: 2.5rem !important;
  font-weight: 300 !important;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
}

.quote-author {
  text-transform: uppercase;
  color: gray;
}

/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */
/* General for all Pages */

/* Graphics Page */
/* Graphics Page */
/* Graphics Page */
/* Graphics Page */
/* General Styling */

/* Hero Section */
.g-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.g-hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.g-hero h1 {
  font-size: 4rem;
  font-weight: bold;
  background: linear-gradient(90deg, red, orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradient-text 4s infinite;
  display: inline-block;
}

.g-hero p {
  font-size: 1.5rem;
  margin: 20px 0;
}

/* Dynamic Section */
.inspiration-section {
  padding: 50px 20px;
  background-color: #333;
  color: white;
  text-align: center;
}

.dynamic-graphics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.branding-content {
  padding: 150px 1px;
}

.higher-width {
  width: 70% !important;
}

.branding-content h3 {
  font-size: 6rem;
  margin: 60px 0px;
}

.graphic-card {
  width: 300px;
  padding: 20px;
  background: linear-gradient(135deg, red, orange);
  color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-align: left;
}

.graphic-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.graphic-card p {
  font-size: 1rem;
  margin: 0;
}

/* Animations */
@keyframes gradient-text {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Graphics Page */
/* Graphics Page */
/* Graphics Page */
/* Graphics Page */
/* Graphics Page */
/* Graphics Page */

/* Signup Form */

.marginnnnn {
  margin-bottom: 210px !important;
}

form {
  font-size: 1.3rem;
}

.form-navigation button:hover {
  background-color: #0b78ec;
}

.invalid {
  border: 2px solid red;
}

/* Progress Bar */
.progress-bar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.step {
  padding: 10px;
  margin: 5px;
  background-color: #e0e0e0;
  transition: background-color 0.3s;
}

.step.completed {
  background-color: #0033aa; /* Green for completed */
  color: white;
}

.form-step {
  display: none;
}

.form-step.active,
.form-step {
  display: flex;
  flex-direction: column;
}

.form_inputs {
  display: flex;
  width: 100%;
  margin-bottom: 15px;
  justify-content: space-between;
}

.input_input {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin: 5px;
}

/* EEEEENNNNNNDDDDDD of signup form ..................  */

.contact-intro,
.about-intro {
  background-color: white;
  color: black;
  padding: 80px 0 10px 0;
}

.featured-s {
  margin-bottom: 20px;
}

/* footer {
  background: rgb(30, 30, 30);
  color: #fff;
  padding: 20px 0;
  text-align: center;
}

footer nav ul {
  margin: 0;
}

footer nav ul li {
  display: inline;
  margin: 0 10px;
}

footer nav ul li a {
  color: #fff;
  text-decoration: none;
}

footer .contact,
footer .newsletter,
footer .social-media {
  margin: 10px 0;
} */

/* Footer Styling */
.footer {
  background-color: var(--primary-color);
  color: black;
  padding: 5%;
}

.footer-container {
  display: flex;
  justify-content: space-between;
}

/* Left Section */
.footer-left {
  width: 40%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.footer-left-tiles {
  padding: 10px 0;
}

.footer-left h2 {
  font-size: 57px;
  margin-bottom: 10px;
  margin-top: 0;
}

.footer-left p {
  margin: 10px 0;
}
.footer-left h3 {
  font-size: 2rem;
  margin: 5px;
}

.footer-left a {
  color: black;
  text-decoration: none;
}

.social-icons {
  margin: 10px 0;
}

.social-icons a {
  font-size: 18px;
  margin-right: 10px;
  color: black;
  text-decoration: none;
}

/* Right Section */
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}

.footer-column h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: black;
  text-decoration: none;
  font-size: 14px;
  position: relative;
  padding-bottom: 5px;
  overflow: hidden;
}

.footer-column h3 a {
  color: black;
  position: relative;
  text-decoration: none;
  padding-bottom: 5px;
  text-decoration: none;
  font-size: 1.5rem;
  overflow: hidden;
}

.footer-column ul li a::after,
.footer-column h3 a:hover::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: black;
  transition: all 0.3s ease-in-out;
}

.footer-column ul li a:hover::after,
.footer-column h3 a:hover::after {
  right: 0;
  width: 100%;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }
  .footer-right {
    flex-direction: column;
  }
}

.gallery {
  text-align: center;
}

.h111 {
  font-size: 2.5rem;
  margin-top: 0px;
  margin-bottom: 5px;
}

/* Additional Styles for New Sections */
.-process,
.account-management,
.legal-compliance {
  background: #f9f9f9;
  padding: 40px 0;
}

.-process h2,
.account-management h2,
.legal-compliance h2 {
  margin-top: 0;
}

.steps,
.testimonials,
.partner-logos,
.security {
  margin-bottom: 20px;
}

.partner-logos img {
  height: 50px;
  margin: 0 10px;
}

.var09 h2 {
  font-size: 2.5rem;
}

p {
  font-size: 1.2rem;
}
.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, auto));
  justify-content: center;
  gap: 4rem;
}

.grid-item {
  box-shadow: 0 4px 30px hsl(355deg 25% 15% / 10%);
  padding: 15px;
  border-radius: 0.5rem;
}

.grid-item img {
  width: 100%;
}

.grid-item h3 {
  text-align: center;
  padding: 0;
  font-size: 1.3rem;
}

.post-box {
  background: #181b24;
  padding: 12px;
  border-radius: 6px;
}

.monstText {
  font-size: 38px;
}

.text-center {
  text-align: center !important;
}

/* About Page Specific Styles */
.team,
.history,
.why-choose-us {
  padding: 40px 0;
  background: #f9f9f9;
}

.team-member {
  margin-bottom: 20px;
}

.team-member img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.team-member h3 {
  margin: 0;
}

.why-choose-us ul {
  list-style-type: none;
  padding: 0;
}

.why-choose-us li {
  margin-bottom: 10px;
}

/*  Opportunities Page Specific Styles */
.categories,
.featured-s,
.how-to-invest,
.faqs {
  padding: 40px 0;
}

.faq {
  margin-bottom: 20px;
}

.faq-answer {
  display: none;
  padding: 10px;
  transition: max-height 0.4s ease;
  line-height: 25px;
}

.faq-question {
  cursor: pointer;
  font-weight: bold;
  padding: 10px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question i {
  margin-left: auto;
}

.faq-question:hover {
  background-color: #0033aa;
}

.category {
  margin-bottom: 20px;
}

.category h3 {
  margin: 0;
}

.how-to-invest ol {
  margin-left: 20px;
}

.faq {
  margin-bottom: 20px;
}

.faq h3 {
  margin: 0;
}

/* How It Works Page Specific Styles */
.steps,
.visual-aids,
.resources,
.contact-info {
  padding: 40px 0;
}

.step {
  margin-bottom: 20px;
}

.step h3 {
  margin: 0;
}

.visual-aids img {
  max-width: 100%;
  height: auto;
}

/* Resources Page Specific Styles */
.guides,
.tools,
.insights,
.faqs,
.contact-info {
  padding: 40px 0;
}

.guides ul,
.tools ul,
.insights ul {
  list-style-type: none;
  padding: 0;
}

.guides li,
.tools li,
.insights li {
  margin-bottom: 10px;
}

.faq {
  margin-bottom: 20px;
}

.faq h3 {
  margin: 0;
}

/* Contact Us Page Specific Styles */
.contact-form,
.contact-details,
.map {
  padding: 10px 0;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin: 10px 0 5px;
}

.contact-form input,
input,
select,
.contact-form textarea {
  margin-bottom: 5px !important;
  font-size: 1rem;
  padding: 10px;
  border: 1px solid #ccc;
}

.map iframe {
  width: 100%;
  height: 400px;
}

/* Reuse general styles from above */

/* table */

table {
  width: 100%;
  background-color: rgb(229, 229, 229);
  margin-bottom: 15px;
}

tr {
  padding: 20%;
}

th,
td {
  background-color: white;
  padding: 10px;
  margin: 5px;
}

.grey {
  background-color: rgb(229, 229, 229) !important;
  border: 1px solid white;
}

/* Login Form Styles */
.login-form {
  padding: 20px;
  width: 80%;
  margin: 20px auto;
}

.login-form h1 {
  color: #0044cc;
}

.login-form form {
  display: flex;
  flex-direction: column;
}

.login-form label {
  margin-bottom: 5px;
}

.login-form input {
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.login-form button {
  background: #0044cc;
  color: #fff;
  padding: 10px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.login-form button:hover {
  background: #0033aa;
}

/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */

.activate {
  border-bottom: 2px solid white;
  padding-bottom: 10px;
}

/* Sidebar */
#mobile-sidebar {
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: #ffffff;
  box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
  transition: left 0.3s ease;
  z-index: 1000;
}

#mobile-sidebar ul {
  list-style: none;
  padding: 20px;
  margin: 0;
  flex-direction: column;
}

#mobile-sidebar ul li a {
  display: flex;
  align-items: center;
  gap: 8px; /* Space between icon and text */
  color: #333; /* Adjust text color */
  text-decoration: none;
  font-size: 16px;
}

#mobile-sidebar ul li a i {
  font-size: 18px; /* Adjust icon size */
  color: var(--primary-color); /* Icon color */
}

#mobile-sidebar ul li.active a {
  font-weight: bold;
  color: var(--primary-color);
}

#mobile-sidebar ul li {
  margin: 15px 0;
}

.mobile-sidebar-navs {
  padding-top: 80px;
}

.mobile-sidebar-navs li {
  padding: 10px 0px;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  z-index: 999;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

/* Sidebar Active State */
#mobile-sidebar.activate {
  left: 0;
}

.overlay.activate {
  opacity: 1;
  visibility: visible;
}

/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */

/* bookings page */
/* General Styling */

/* Header Section */
.header-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, red, orange);
  text-align: center;
  color: white;
}

.header-section h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.header-section .subtitle {
  font-size: 1.2rem;
}

/* Service Selection Section */
.service-selection {
  padding: 50px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.service-selection h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-description {
  font-size: 1rem;
  color: #555;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.service-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.service-item:hover {
  transform: scale(1.05);
}

.service-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.book-now-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
}

.book-now-btn:hover {
  background-color: #ff3300;
}

/* Booking Calendar Section */
.booking-calendar {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
}

.booking-calendar h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking-calendar .calendar-container {
  margin-bottom: 30px;
}

.input-field {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.additional-options {
  margin-bottom: 20px;
}

/* Client Information Section */
.client-info {
  padding: 50px 0;
  background-color: #f8f9fa;
}

.client-info form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.client-info .submit-btn {
  background-color: #28a745;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
}

.client-info .submit-btn:hover {
  background-color: #218838;
}

/* Payment Information Section */
.payment-info {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
}

.payment-info .pay-now-btn {
  background-color: #007bff;
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  margin-top: 20px;
}

.payment-info .pay-now-btn:hover {
  background-color: #0056b3;
}

/* Confirmation Section */
.confirmation {
  padding: 50px 0;
  text-align: center;
  background-color: #f8f9fa;
}

.add-to-calendar-btn {
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
}

.add-to-calendar-btn:hover {
  background-color: #ff3300;
}

/* Call to Action Section */
.cta-footer {
  padding: 30px 0;
  text-align: center;
  background-color: #333;
  color: white;
}

.cta-footer a {
  color: #ff6600;
  text-decoration: none;
}

.cta-footer a:hover {
  color: #ff3300;
}

/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */

/* General Styling */

/* Hero Sections */
.hero-media,
.hero-tech {
  padding: 80px 20px;
  background: linear-gradient(135deg, red, orange);
  text-align: center;
  color: white;
}

.hero-media h1,
.hero-tech h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero-media .subtitle,
.hero-tech .subtitle {
  font-size: 1.2rem;
}

/* Service Sections */
.service-selection,
.tech-services,
.media-services {
  padding: 50px 0;
  background-color: #f8f9fa;
  text-align: center;
}

.service-selection h2,
.tech-services h2,
.media-services h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.service-description {
  font-size: 1rem;
  color: #555;
}

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

.service-item {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: center;
  padding: 20px;
  transition: transform 0.3s ease-in-out;
}

.service-item:hover {
  transform: scale(1.05);
}

.service-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.book-now-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #ff6600;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 8px;
}

.book-now-btn:hover {
  background-color: #ff3300;
}

/* Booking Calendar Section */
.booking-media,
.booking-tech {
  padding: 50px 0;
  text-align: center;
  background-color: #fff;
}

.booking-media h2,
.booking-tech h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.booking-media .calendar-container,
.booking-tech .calendar-container {
  margin-bottom: 30px;
}

.input-field {
  padding: 10px;
  margin: 10px 0;
  width: 100%;
  max-width: 300px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

/* CTA Footer */
.cta-footer-media,
.cta-footer-tech {
  padding: 30px 0;
  text-align: center;
  background-color: #333;
  color: white;
}

.cta-footer-media a,
.cta-footer-tech a {
  color: #ff6600;
  text-decoration: none;
}

.cta-footer-media a:hover,
.cta-footer-tech a:hover {
  color: #ff3300;
}

/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */
/* Nav Barrrrrrrrrrrrrrrrrrrrrrr */

/* Extra small devices (phones, 0px and up) */

@media only screen and (max-width: 767px) {
  .modal-content {
    padding: 15px 20px 24px 20px !important;
  }

  .form-internal-content h3 {
    font-size: 24px !important;
    line-height: 28px !important;
    letter-spacing: 0.015em !important;
  }

  .input-group {
    flex-direction: column !important;
  }

  .form-inputs-with-lines {
    font-size: 18px !important;
  }

  button {
    padding: 12px 22px !important;
    font-size: 1rem !important;
  }

  .gchoice label {
    font-size: 10px !important;
    padding: 8px 20px !important;
  }

  .slider {
    left: -5% !important;
  }

  .branding-content {
    padding: 0px 0px !important;
  }

  .branding-content h3 {
    font-size: 2rem !important;
    margin: 40px 0px !important;
  }

  .sections-layout-text h2 {
    font-size: 2.5rem !important;
  }

  .branding-content h1 {
    font-size: 2.5rem !important;
  }

  p {
    font-size: 1.2rem !important;
  }
  .sections-layout h1 {
    font-size: 2.5rem !important;
  }
  .sections-layouts h2 {
    font-size: 2.5rem !important;
  }
  .services-tiles {
    padding-bottom: 10px !important;
  }
  .services-tiles h2 {
    font-size: 2rem !important;
  }

  .sections-layout-container h2 {
    font-size: 2.5rem !important;
  }
  .modal-button-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .modal-button-container .cta-button {
    width: 80%;
  }

  .contacts-in-contacts {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .social-icons a {
    font-size: 25px;
  }
  .sections-services-container {
  }

  .sections-services-tiles {
    padding: 0px 0px;
  }

  .contact-tiles {
    align-items: flex-start !important;
  }

  .sub-navs {
    padding: 10px 0px;
    gap: 40px;
  }

  .this-specialh1 {
    font-size: 1.5rem;
  }

  .footer-left-tiles {
    padding: 15px 0;
  }

  .footer-left h2 {
    font-size: 30px;
    margin-bottom: 50px;
    margin-top: 50px;
  }

  .footer-left h3 {
    font-size: 1.4rem;
    font-weight: 100 !important;
  }

  .footer-column h3 {
    font-size: 18px;
    margin-bottom: 10px;
    margin-top: 50px;
  }

  .footer-right {
    gap: 0px;
  }
}

@media (min-width: 375px) {
  #main-navbar {
    display: none;
  }

  header .logo img {
    height: 30px;
  }

  header {
    padding: 10px 0;
  }
}

@media (max-width: 991px) {
  .form_inputs {
    flex-direction: column;
  }

  .gallery-grid {
    overflow: hidden !important;
  }

  .signup-formm .container {
    width: 95%;
  }

  .input_input {
    width: auto;
  }

  .contact-form input,
  input,
  select,
  .contact-form textarea {
    font-size: 1rem;
    padding: 5px;
  }

  form {
    font-size: 1rem;
  }
}

/* Small devices (phones, 576px and up) */
@media (min-width: 575px) and (max-width: 767.98px) {
  .overlay-text h1 {
    font-size: 1rem;
  }
  .overlay-text p {
    font-size: 1rem;
  }

  #mobile-sidebar ul li a {
    font-size: 1rem;
  }
}

@media (max-width: 767.98px) {
  .progress-bar {
    display: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  nav ul li a {
    font-size: 0.6rem;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
}

@media (min-width: 992px) {
  header .logo img {
    height: 40px;
  }

  .menu-toggle {
    display: none !important;
  }

  #mobile-sidebar {
    display: none !important;
  }

  .overlay {
    display: none !important;
  }

  #main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5rem;
  }
}

@media only screen and (max-width: 1400px) {
  .sub-navs-icons img {
    max-width: 76px;
    max-height: 76px;
  }
}
