:root {
    --primary-gradient: linear-gradient(
    to top right,
    #BE00DB 0%,
    #6A02F0 33%,
    #1E58FF 66%,
    #4DA2FF 100%
    );
    --secondary-gradient: linear-gradient(
    to top right,
    #BE00DB 0%,
    #1E58FF 100%
    );
    --primary-color: #6A02F0;
    --secondary-color: #ffffff;
    --gray-color: #FBFBFB;
    --dark-color: #030609;
    --error-color: #E74C3C;
    --font-heading: "Outfit", sans-serif;
    --font-body: "DM Sans", sans-serif;
}

html {
    scroll-behavior: smooth;
    font-family: var(--font-body);
    color: var(--dark-color);
}

/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    margin-block-start: 0;
    margin-block-end: 0;
}

/* Prevent visited links from changing color */
a:link,
a:visited {
    color: inherit; /* Inherit the color from the parent, or set it to a fixed color */
    text-decoration: none; /* Ensure no underlines */
}

/* Reset margins for headers and paragraphs */
h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    margin-block-start: 0;
    margin-block-end: 0;
}

h1 {
    font-family: var(--font-heading);
    font-size: clamp(40px, 9.5vw, 80px); /* Adjusts between 40px and 80px based on viewport width */
    font-weight: 800;
    line-height: 105%;
    text-wrap: balance;
}
h2 {
    font-family: var(--font-heading);
    font-size: clamp(35px, 9vw, 60px); /* Adjusts between 40px and 80px based on viewport width */
    font-weight: 800;
    line-height: 105%;
    text-wrap: balance;
}

h3 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 8vw, 50px); /* Adjusts between 40px and 80px based on viewport width */
    font-weight: 700;
    line-height: 115%;
    text-wrap: balance;
}

h4 {
    font-family: var(--font-heading);
    font-size: clamp(30px, 8vw, 20px); /* Adjusts between 40px and 80px based on viewport width */
    font-weight: 600;
    line-height: 105%;
    text-wrap: balance;
}

p {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 300;
    line-height: 28px;
}

.container {
    width: 90%;
    max-width: 1200px; /* Set the maximum width to 1200px */
    margin: 0 auto; /* Center the container */;
    padding: 90px 0;
    align-items: center;
}

/* Hero Section */
.hero {
    width: 100%;
    height: 100vh;
    background: var(--primary-gradient);
    min-height: 700px;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensures anything going outside this section is clipped */
}

.hero p {
    font-size: 24px;
    display: block;
    margin-top: 24px;
}

/* Responsive adjustments */
@media (max-width: 1090px) {
    .hero p {
        display: none; /* Hide paragraph on smaller screens */;
    }
}

.hero button {
    margin-top: 32px;;
}

/* Hero Content */
.hero-content {
    width: 90%;
    max-width: 1200px; /* Set the maximum width to 1200px */
    color: var(--secondary-color);
}

/* Secondary Hero Section */
.secondary-hero {
    width: 100%;
    height: 400px;
    background: var(--primary-gradient);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensures anything going outside this section is clipped */
}

.secondary-hero-content {
    width: 90%;
    max-width: 1200px; /* Set the maximum width to 1200px */
    color: var(--secondary-color);
} 

.highlight-hero {
    width: 100%;
    height: 300px;
    background: var(--primary-gradient);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensures anything going outside this section is clipped */
}

.highlight-hero-content {
    width: 90%;
    max-width: 1200px; /* Set the maximum width to 1200px */
    color: var(--secondary-color);
}

.break-hero {
    width: 100%;
    background-color: var(--secondary-color);
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden; /* Ensures anything going outside this section is clipped */
}

.break-hero-content {
    width: 90%;
    max-width: 1200px; /* Set the maximum width to 1200px */
    color: var(--dark-color);
    padding: 90px 0px;
}

.highlight {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* General Button Styling */
button {
    padding: 18px 24px;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    line-height: 90%;
    cursor: pointer;
    border: none;
    border-radius: 10px;
    margin: 0 auto;
    transition: background-color 0.3s ease, color 0.3s ease;
}

/* White Button */
button.white {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block; /* Helps with transform */
}

button.white:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* Black Button */
button.black {
    background-color: var(--dark-color);
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

button.black:hover {
    background-color: var(--primary-color);
}

/* Gradient Button */
button.gradient {
    background: var(--secondary-gradient);
    color: var(--secondary-color);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: inline-block; /* Helps with transform */
}

button.gradient:hover {
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.section-graident {
    background: var(--primary-gradient);
    color: var(--secondary-color);
}

.section-gray {
    background-color: var(--gray-color);
    color: var(--dark-color);
}


.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px; /* 60px gap between left and right side */
    text-align: left;
}
  
.left-side,
.right-side {
    width: 50%; /* Both take up half the width */
}

  
.flex img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}
  
.flex p {
    margin-bottom: 32px;
}

.reversed-order .left-side { /* Add reversed-order class next to flex to reverse the order on small screens */
    order: 1;
 }
  
.reversed-order .right-side {
    order: 2;
}

/* Responsive styles for smaller screens */
@media screen and (max-width: 768px) {
    .flex {
        flex-direction: column; /* Stack the items vertically */
        text-align: center;
    }
    
    .left-side,
    .right-side {
        width: 100%; /* Take full width */
    }
    
    .reversed-order .left-side {
        order: 2;
        }
        
    .reversed-order .right-side {
        order: 1;
    }
        
}

section a {
    color: var(--dark-primary-color) !important;
    transition: color 0.3s ease;
}

section a:hover {
    color: var(--dark-color) !important;
}


.animate-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.animate-card.visible {
    opacity: 1;
    transform: translateY(0);
}
  
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.input-group select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 18px;
    font-family: inherit;
    background-color: #fff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg fill='%23000' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1rem;
}

.input-group select:focus {
    border-color: #999;
    outline: none;
}

  
.bagel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
  }
  
  .bagel-card {
    background-color: white;
    border-radius: 34px;
    overflow: hidden;
    color: var(--primary-color);
    display: flex;
    flex-direction: column;
  }
  
  .bagel-card img {
    width: 100%;
    height: auto;
    display: block;
  }
  
  .card-info {
    padding: 24px;
  }
  
  .card-info h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
  }
  
  .card-info p {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
  }
  
  @media (max-width: 900px) {
    .bagel-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .bagel-grid {
      grid-template-columns: 1fr;
    }
  }
  

  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
  }
  
  .review-card {
    background-color: white;
    border-radius: 34px;
    padding: 24px;
    color: var(--primary-color);
  }
  
  .reviewer-info {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
  }
  
  .reviewer-image {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    object-fit: cover;
    margin-right: 16px;
  }
  
  .reviewer-name {
    font-size: 19px;
    font-weight: 600;
  }
  
  .review-text {
    font-size: 19px;
    font-weight: 400;
    margin: 0;
  }
  
  @media (max-width: 900px) {
    .reviews-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .reviews-grid {
      grid-template-columns: 1fr;
    }
  }

  .services {
    background: var(--secondary-gradient);
  }
  
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
  }

  .services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 40px;
  }
  
  .service-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
  }
  
  .service-card .icon {
    width: 100%;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .service-card .icon svg {
    width: 40px;
    height: 40px;
    display: block;
  }
  
  
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
  }
  
  @media (max-width: 992px) {
    .services-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 600px) {
    .services-grid {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 600px) {
    .services-grid-2 {
      grid-template-columns: 1fr;
    }
  }