@font-face {
    font-family: 'UniformRounded'; /* Custom font name */
    src: url('fonts/Uniform-Rounded-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'AxiformaBold'; /* Custom font name */
    src: url('fonts/Axiforma-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'AxiformaReg'; /* Custom font name */
    src: url('fonts/Axiforma-Regular.woff2') format('woff2');
}

/*DM Sans*/
     @font-face {
        font-display: swap; 
        font-family: 'DmSans';
        font-style: normal;
        font-weight: normal;
        src: url('fonts/DMSans-Medium.woff2') format('woff2'); 
      }

/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    overflow-x: hidden; /* Prevents horizontal scrolling */
}


body {
    font-family: 'AxiformaReg', sans-serif;
    background-color: #ededee;
    color: #333;
}

.logo{
    width: 120px !important;
    border-radius: 0 !important;
    margin: 3px 0px -5px 0px;
    transition: all 0.3s ease;
}

/* NAVBAR */
/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: transparent;
    backdrop-filter: blur(0px);
    padding: 15px 0;
    z-index: 1000;
    box-shadow: none;
    transition: background 0s ease-in-out;
}

.navbar.blur {
  background: rgba(255, 255, 255, 0.25); /* Or a light version for light navs */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}


/* When dropdown is active */
.navbar.dropdown-active {
    background: #4864BF; /* ✅ New colour when dropdown is open */
    box-shadow: none;
    color: white;
    border-bottom: 1px solid #000;
}

.NavIcon{
    width: 22px !important;
    margin-left: 5px;
}

.NavIcon2
{
    margin-top: -5px;
    width: 35px !important;
}

/* NAV CONTAINER */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* NAV LINKS */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    margin-left: 20px;
    position: relative;
}

.nav-links li a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    padding: 10px 15px;
    transition: color 0.3s ease;
}


/* Hero Sections */
/* Hero Section */
.hero {
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 50px 20px;
    color: #fff;
    overflow: hidden;
}

.hero h2{
    font-size: 2.5rem;
}

/* Hero Content */
.hero-content {
  padding-top: 80px; /* or match the navbar height */
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-intro {
  display: flex;
    text-align: center;
    margin-bottom: 160px;
    opacity: 0;
    animation: fadeIn 2s ease forwards;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Fade-in only (no translateY) */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}


.brand-logo {
  max-width: 380px;
  margin: 0 auto;
  display: block;
}



.brand-slogan {
  max-width: 600px;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 40px;
}

.brand-logo2 {
  max-width: 280px;
  margin-left: -150px;
  margin-top: 0px;
  display: block;
}


.carousel-container {
  text-align: center;
  color: white;
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-header {
  font-size: 2.5rem;
    width: 100% !important;
    max-width: 900px;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: -20px;
}

.carousel-subheader {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.85); /* Adjust for readability */
  transition: opacity 0.3s ease;
}


.carousel {
  overflow: hidden;
  border-radius: 12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.carousel-track img {
  width: 100%;
  max-width: 900px;
  flex-shrink: 0;
  object-fit: cover;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.carousel-dots button.active {
  background: white;
}


/* Header fade-in */
@keyframes headerSlide {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Slide effect */
@keyframes slideImages {
  0% { transform: translateX(0%); }
  20% { transform: translateX(0%); }
  25% { transform: translateX(-100%); }
  45% { transform: translateX(-100%); }
  50% { transform: translateX(-200%); }
  70% { transform: translateX(-200%); }
  75% { transform: translateX(-300%); }
  95% { transform: translateX(-300%); }
  100% { transform: translateX(-400%); }
}



.hero1 {
    position: relative;
    display: block; /* changed from flex */
    height: auto; /* allow height to grow with content */
    padding:80px 80px 30px 80px;
    background: linear-gradient(270deg, #5FB4F1, #8DC0EF, #5f7bea, #4864BF);
    background-size: 800% 800%;
    border: none;
    box-shadow: none;
    animation: gradientMove 15s ease infinite;
    overflow: hidden;
    z-index: 0;
  }

  .hero1::after {
    content: "";
    position: absolute;
    inset: 0;
    background: url("images/staggered-progressive-rhythm-of-light-colorful-bl-2025-02-02-11-54-31-utc.jpg") center center / cover no-repeat;
    opacity: 0.2; /* 👈 control how faint the image is */
    z-index: 0;
    pointer-events: none;
  }
  
  
  @keyframes gradientMove {
    0%, 100% {
      background-position: 0% 50%;
    }
    50% {
      background-position: 100% 50%;
    }
  }
  
  /* ensure text and content in hero are visible above */
  .hero1 > * {
    position: relative;
    z-index: 2;
  }

  /* BLOB BASE STYLES */
.blob {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3; /* more visible */
  filter: blur(60px); /* reduced blur for clarity */
  pointer-events: none;
  z-index: 1; /* still sits above background image but below content */
  animation: floatBlob 30s ease-in-out infinite;
}

/* INDIVIDUAL BLOBS (can tweak size/position as desired) */
.blob1 {
  width: 400px;
  height: 400px;
  top: 10%;
  left: 20%;
  background: #4864BF;
  animation-delay: 0s;
}



/* ANIMATION: stronger, more dynamic floating */
@keyframes floatBlob {
  0% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
  25% {
    transform: translate(100px, -80px) scale(1.2) rotate(10deg);
  }
  50% {
    transform: translate(160px, 60px) scale(1) rotate(0deg);
  }
  75% {
    transform: translate(-80px, 40px) scale(1.1) rotate(-10deg);
  }
  100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

  
  
  

    .hero-top-bar {
        width: 100%;
    text-align: center;
    padding: 30px 20px 10px;
    background: rgba(255, 255, 255, 0.6); /* Frosted Glass Effect */
    backdrop-filter: blur(10px);
    margin-top: -75px;
    
    }
    
    .hero-top-bar h3 {
        font-size: 1.5rem;
        color: #260448;
        margin: 0;
    }
    
    .hero-top-bar p {
        font-size: 1rem;
        color: #555;
        margin-top: 8px;
    }
    

/* Content inside hero */
.content-container {
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
}

/* Footer */
.footer {
    text-align: center;
    padding: 20px;
    background: #1D1D24;
    color: #fff;
    font-size: 14px;
}



/* Mobile Menu */
/* Show hamburger only on mobile */
.hamburger {
  color: white;
  font-size: 28px;
  cursor: pointer;
  display: none;
  position: absolute;
  right: 20px;
  top: 14px;
  z-index: 1100;
}

/* MOBILE MENU STYLES */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 70vw; /* ✅ Covers 70% of screen */
  height: 100vh;
  background: 
    linear-gradient(322deg, rgba(255, 255, 255, 0.9) -80%, rgba(72, 100, 191, 0.9) 59%),
    url("images/staggered-progressive-rhythm-of-light-colorful-bl-2025-02-02-11-54-31-utc.jpg") center center / cover no-repeat;
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 120px;
  flex-direction: column;
  transform: translateX(-100%); /* ✅ Slide from left */
  transition: transform 0.4s ease-in-out;
  z-index: 1200;
}


/* Show the menu */
.mobile-menu.active {
    transform: translateX(0);
}

.mobile-overlay {
  position: fixed;
  top: 0;
  left: 70vw; /* ✅ Starts where the menu ends */
  width: 30vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  display: none;
  z-index: 1100;
  transition: opacity 0.4s ease;
}

.mobile-overlay.active {
  display: block;
}


/* Mobile Menu Container */
.mobile-menu-container {
    width: 80%;
    max-width: 400px;
    text-align: center;
}

/* Logo and Close Button */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90%;
}

.mobile-logo {
    width: 150px;
}

.close-btn {
    font-size: 28px;
    cursor: pointer;
    color: white;
    margin-right: 10px;
}

/* Mobile Navigation */
.mobile-nav {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-top: 60px;
}

.mobile-nav li {
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
    text-transform: capitalize;
    padding: 0px 0px 10px 0px;
}

.mobile-nav a {
    text-decoration: none;
    color: white;
}

/* Mobile Dropdown */
.mobile-dropdown {
    cursor: pointer;
}

.mobile-dropdown span {
    display: block;
    position: relative;
}

.mobile-dropdown-menu {
    display: none;
    margin-top: 10px;
    font-size: 15px;
    line-height: 2;
}

.mobile-dropdown-menu li {
    font-size: 1rem;
    margin: 8px 0;
    opacity: 0.8;
    border: none;
}

.mobile-dropdown-menu a{
    color: white;
}

/* Social Icons */
.mobile-social {
    position: absolute;
    bottom: 40px;
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 20px;
}

.mobile-social a {
    color: white;
    font-size: 24px;
    transition: opacity 0.3s;
}

.mobile-social a:hover {
    opacity: 0.7;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    .hamburger {
        display: block; /* ✅ Ensure hamburger is visible */
    }
   
}


/* Portfolio Section */
/* Portfolio Section */
.portfolio-section {
  position: relative;
  background: #f4f4f4;
  padding: 80px 50px 0px 50px;
  overflow: hidden;
  z-index: 0; /* Important to allow ::after to sit beneath content */
}

.portfolio-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/Texturelabs_Stone_124M.jpg") center center / cover no-repeat;
  opacity: 0.1;
  z-index: -1; /* ⬅️ This pushes it behind everything in the section */
  pointer-events: none;
}

/* Container (centers content) */
.portfolio-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Flex row: text + image */
.portfolio-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 70px;
  margin-bottom: 160px;
}

/* Text block */
.portfolio-header {
  flex: 1 1 500px;
  max-width: 550px;
}

.portfolio-header h2 {
  font-size: 2.5rem;
  color: #1d1d1d;
}

.portfolio-header p {
  font-size: 1.1rem;
  color: #5a5a5a;
}

/* Image block */
.portfolio-image {
  flex: 1 1 400px;
  max-width: 350px;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.portfolio-header .reverse {
max-width: 521px;
}


/*Section 2*/
.highlight{
  color: #8DC0EF !important;
}

.highlight2{
  color: #4864BF !important;
}


.portfolio-section2 {
  position: relative;
  background: #303338;
  text-align: center;
  padding: 125px 20px 145px 20px;
  overflow: hidden;
  z-index: 0;
  clip-path: polygon(0 0%, 100% 5%, 100% 100%, 0% 95%);
}

.portfolio-section2::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/Texturelabs_Stone_124M.jpg") center center / cover no-repeat;
  opacity: 0.1;
  z-index: -1; /* ⬅️ This pushes it behind everything in the section */
  pointer-events: none;
}

/* Header */
.portfolio-header2 {
  max-width: 800px;
  margin: 0 auto 50px;
}

.portfolio-header2 h2 {
  font-size: 2.5rem;
  color: #808080;
}

.portfolio-header2 p {
  font-size: 1.1rem;
  color: #a3a3a3;
}

.portfolio-image2 .feature-image-left {
display: flex;
justify-content: center;
margin-top: 40px;
}

.portfolio-image2 img {
width: 800px; /* Adjust based on design */
max-width: 100%;
border-radius: 10px;

}


/*Section 3*/

.portfolio-section3 {
  position: relative;
  background: #f5f5f5;
  text-align: center;
  padding: 80px 20px;
  overflow: hidden;
  z-index: 0; /* Important to allow ::after to sit beneath content */
  
}

.portfolio-section3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/Texturelabs_Stone_124M.jpg") center center / cover no-repeat;
  opacity: 0.1;
  z-index: -1; /* ⬅️ This pushes it behind everything in the section */
  pointer-events: none;
}

/* Header */
.portfolio-header3 {
  max-width: 800px;
  margin: 0 auto 50px;
}

.portfolio-header3 h2 {
  font-size: 2.5rem;
  color: #1d1d1d;
}

.portfolio-header3 p {
  font-size: 1.1rem;
  color: #a3a3a3;
}

.portfolio-image3 .feature-image-left {
display: flex;
justify-content: center;
margin-top: 40px;
}

.portfolio-image3 img {
width: 800px; /* Adjust based on design */
max-width: 100%;
border-radius: 10px;
margin-bottom: 50px;

}


/*Section 4*/

.portfolio-section4 {
  position: relative;
  background: #4864bf;
  text-align: center;
  padding: 125px 20px 145px 20px;
  overflow: hidden;
  z-index: 0;
  clip-path: polygon(0% 0%, 100% 3%, 100% 100%, 0% 100%);
}

.portfolio-section4::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/staggered-progressive-rhythm-of-light-colorful-bl-2025-02-02-11-54-31-utc.jpg") center center / cover no-repeat;
  opacity: 0.1;
  z-index: -1; /* ⬅️ This pushes it behind everything in the section */
  pointer-events: none;
}

/* Header */
.portfolio-header4 {
  max-width: 800px;
  margin: 0 auto 50px;
}

.portfolio-header4 h2 {
  font-size: 2.5rem;
  color: #F5f5f5;
}

.portfolio-header4 p {
  font-size: 1.1rem;
  color: #cacaca;
}

.portfolio-image4 .feature-image-left {
display: flex;
justify-content: center;
margin-top: 40px;
}

.portfolio-image4 img {
width: 800px; /* Adjust based on design */
max-width: 100%;
border-radius: 10px;

}

/*SECTION 5*/

.portfolio-section5 {
  position: relative;
  background: #303338;
  text-align: center;
  padding: 125px 20px 100px 20px;
  overflow: hidden;
  z-index: 0;
}

.portfolio-section5::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/Texturelabs_Stone_124M.jpg") center center / cover no-repeat;
  opacity: 0.1;
  z-index: -1; /* ⬅️ This pushes it behind everything in the section */
  pointer-events: none;
}

.portfolio-header5 h2 {
  font-size: 2.5rem;
  color: #808080;
}


.footer {
    background-color: #1D1D24;
    color: #ccc;
    padding: 60px 20px 30px;
    font-family: 'AxiformaReg', sans-serif;
  }
  
  .footer-container {
    display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        max-width: 1200px;
        margin: 0 auto;
        gap: 25px;
  }
  
  .footer-col {
    min-width: 220px;
  }
  
  .footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
  }
  
  .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-col ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .footer-col ul li a {
    color: #5FB4F1;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
  }
  
  .footer-col ul li a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #8DC0EF;
    transition: width 0.3s ease;
  }
  
  .footer-col ul li a:hover {
    color: #8DC0EF;
  }
  
  .footer-col ul li a:hover::after {
    width: 100%;
  }
  
 
  
  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #333;
    padding-top: 20px;
  }

  .footer-bottom a {
  color: #5FB4F1; /* or any colour you'd like */
  text-decoration: none; /* optional: removes underline */
}

.footer-bottom a:hover {
  color: #8DC0EF; /* hover effect */
  text-decoration: underline; /* optional: adds underline on hover */
}

/* Fake player style */
.custom-player {
  position: relative;
  width: 640px;
  max-width: 90%;
  margin: 0 auto;
  cursor: pointer;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  margin-bottom: 80px;
}

.custom-player .thumbnail {
  width: 100%;
  display: block;
  object-fit: cover;
}

.custom-player .play-icon {
  position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    background: rgba(0, 0, 0, 0.5);
    padding: 5px 30px;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    pointer-events: none;
}

/* Modal */
.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.75);
  justify-content: center;
  align-items: center;
}

.video-container {
  margin-top: 100px;
  position: relative;
  width: 60%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
  border-radius: 12px;
}

.youtube-close-btn {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.privacy-container {
  max-width: 800px;
  margin: 50px auto 150px auto;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.privacy-container h1, h2, p{
  margin-bottom: 10px;
  margin-top: 10px;
}


  
  


/* ✅ MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
    /* Reduce Hero Height */
    .hero {
        padding: 70px 20px 113px 20px !important;
    }

    .hero h2 {
        width: 100%;
        font-size: 1.5rem; /* Smaller title */
    }

    .hero p{
        font-size: 1rem;
    }

    /* Adjust Hero Content Layout */
    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 215px;
    }

    .feature-row {
    margin-bottom: 72px !Important;
}

.brand-intro {
    margin-bottom: 84px !Important;
}

.feature-image img {
    width: 100% !Important;
}


    /* Reduce Hero 1 Padding */
    .hero1 {
        padding: 80px 15px;
    }

    .portfolio-header h2 {
      font-size: 1.5rem;
      color: #1d1d1d;
  }

  .portfolio-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 !important;
}

.portfolio-content {
  display: flex
;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 41px;
  margin-bottom: 22px;
}

.portfolio-header {
  flex: 1 1 500px;
  max-width: 550px;
  text-align: center !important;
  margin-bottom: 10px;
}

.portfolio-header5 h2{
  font-size: 1.5rem !important;
}

    .portfolio-section {
        position: relative;
        background: #f4f4f4;
        padding: 80px 30px 50px 30px;
        overflow: hidden;
        z-index: 0;
    }
.portfolio-header2 h2 {
  font-size: 1.9rem;
  color: #808080;
  margin-bottom: 10px;
}

.portfolio-header3 h2 {
  font-size: 1.9rem;
  color: #1d1d1d;
  margin-bottom: 10px;
}

.portfolio-header4 h2 {
  font-size: 1.9rem;
  color: #f5f5f5;
  margin-bottom: 10px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 25px;
}

.brand-logo2 {
  max-width: 280px;
  margin: 0;
  display: block;
}

.brand-logo {
    max-width: 300px;
    margin: 0 auto;
    display: block;
}

.video-container {
  position: relative;
  width: 90%;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  background: #000;
}
    

}



/* Cookie Banner Styling */
#cookie-banner {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  background: white;
  color: black;
  padding: 20px;
  font-family: 'AxiformaReg', sans-serif;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: opacity 0.3s ease-in-out;
}

.cookie-banner-content{
  font-size: 0.7rem;
}

.cookie-banner-content h3 {
    margin: 0 0 10px;
}

.cookie-banner-content ul {
    text-align: center;
    padding-left: 20px;
}

.cookie-buttons {
    margin-top: 15px;
}

.cookie-btn {
    border: none;
    border-radius: 30px;
    padding: 10px 20px;
    font-family: 'AxiformaReg', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
    margin: 5px;
}

.cookie-accept {
    background: white;
    color: #4864BF;
}

.cookie-accept:hover {
    background: #4864BF;
    color: white;
    transform: scale(1.05);
}

.cookie-decline {
  background: white;
  color: #4864BF;
}

.cookie-decline:hover {
    background: #4864BF;
    color: white;
    transform: scale(1.05);
}

.cookie-settings {
  background: white;
  color: #4864BF;
}

.cookie-settings:hover {
    background: #4864BF;
    color: white;
    transform: scale(1.05);
}

/* Cookie Settings Modal */
#cookie-settings-modal {
    display: none;
    position: fixed;
    bottom: -101px;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 95%;
    max-width: 341px;
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 10000;
}

.cookie-settings-content h3 {
    margin: 0 0 10px;
}

.cookie-close {
    background: red;
    color: white;
}

.cookie-close:hover {
    background: darkred;
}

@media (max-width: 768px) {
#cookie-banner {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3sease-in-out;
    position: fixed;
    bottom: 24px;
    left: 49.5%;
    transform: translateX(-50%);
    width: 84%;
    padding: 20px;
    font-family: 'AxiformaReg', sans-serif;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: opacity 0.3sease-in-out;
}
}


.feature-row {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 150px;
}

.feature-text {
  min-width: 280px;
  max-width: 800px;
}

.feature-text h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
}

.feature-text p {
  font-size: 1rem;
  color: #000000;
}

.feature-image {
  flex: 2;
  min-width: 300px;
}

.feature-image img {
  width: 70%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}



