/* Reset styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}


/* Hero section styles */
.hero__section {
    min-height: 100vh;
    background-image: url('/static/images/Rectangle\ 116\ \(10\).png');
    font-family: "Poppins";
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 0 5%;
    /* margin-top: 80px; */
}

@media (max-width:1024px) {
  .hero__section{
    min-height: 50vh;
    height: 50vh;
  }
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    color: white;
    font-size: 3rem;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.hero__contact-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border: 1.5px solid white;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    background-color: transparent;
    transition: all 0.3s ease;
}

.hero__contact-btn:hover {
    background-color: white;
    color: #333;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav__menu-toggle {
        display: flex;
    }

    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .nav__menu-item {
        width: 100%;
    }

    .nav__dropdown-btn {
        width: 100%;
        text-align: left;
    }

    .hero__title {
        font-size: 2rem;
    }
}


/* Base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
}

/* service */

.connect-dot-container{
    position: relative;
  }
  
  .connect-dot {
    width: 12px;
    height: 12px;
    background-color: white;
    border-radius: 50%;
  }
  
  .timeline-line {
    position: absolute;
    top: -50%;
    left: 0;
    width: 350px;
    height: 2px;
    background-color: rgb(255, 255, 255);
    transform: translateY(-50%);
  }
  
  .connect-text {
    color: rgb(255, 255, 255);
    font-family: 'Roboto Mono';
    font-size: 1rem;
  }
  
  .connect-dot-empty {
    width: 20px;
    height: 20px;
    border:1.5px solid rgb(255, 255, 255);
    border-radius: 50%;
    position: relative;
  }
  .connect-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;

  }
  .connect-dot-filled{
    width: 12px;
    height: 12px;
    position: absolute;
    border-radius: 50%;
    background-color: rgb(255, 255, 255);
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }


.services-container {
  background-color: #0e0f10;
  padding: 40px 0;
  color: #fff;
  position: relative;
}

.services-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.vector-line {
  width: 80%;
  height: 1px;
  background-color: #fff;
  margin-bottom: 30px;
}

.services-content {
  display: flex;
  /* flex-direction: column; */
  /* flex-wrap: wrap; */

  justify-content: space-around;
  align-items: center;
}

.services-header {
  flex-basis: 100%;
  margin-bottom: 30px;
}

.ellipse-text {
  display: inline-block;
  margin-bottom: 20px;
}

.services-label {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
}

.services-title {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
  line-height: 1.3;
  font-family: "Poppins";
}

.services-boxes {
  display: flex;
  margin-left: 100px;
  /* flex-wrap: wrap; */
  /* flex-direction: column; */
  gap: 40px;
  flex-basis: 100%;
  font-family: "Poppins";
  font-weight: 500;
  line-height: 19px;
}

.service-box {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 6px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #ffffff23;
  width: 170px;
  height: 140px;

}

.design-image-2{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 140px;

}


.timeline-header {
   
  align-items: center;
}


.timeline-dot-empty {
  width: 20px;
  height: 20px;
  border:1.5px solid black;
  border-radius: 50%;
  position: relative;
}

.timeline-dot-filled{
  width: 12px;
  height: 12px;
  position: absolute;
  border-radius: 50%;
  background-color: black;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}


.timeline-dot-container {
  position: relative;
  margin-right: 1rem;
  margin-bottom: 10px;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background-color: black;
  border-radius: 50%;
}

.timeline-line-2 {
  position: absolute;
  top: 50%;
  left: 25px;
  width: 330px;
  height: 2px;
  background-color: black;
  transform: translateY(-50%);
 
}

.timeline-heading{
  font-family: "Roboto Mono";
  font-size: 1rem;
  font-weight: 500;
}

.service-box h3 {
  margin: 12px 0 0 0;
  font-size: 14px;
  font-weight: 400;
}

.service-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

/* Enterprise Section */
.enterprise__container {
    display: flex;
    padding: 100px 130px;
    background: #FFFFFF;
}

.enterprise__content {
    flex: 1;
    padding-right: 50px;
}

.enterprise__header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}

.enterprise__line {
    width: 100px;
    height: 3px;
    background: #000000;
}

.enterprise__circle {
    width: 20px;
    height: 20px;
    background: #000000;
    border-radius: 50%;
    margin: 0 10px;
}

.enterprise__label {
    font-size: 18px;
    color: #000000;
}

.enterprise__title {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
}

.enterprise__description {
    color: #666666;
    margin-bottom: 40px;
    line-height: 1.6;
}

.enterprise__image {
    flex: 1;
}

.enterprise__image img {
    width: 100%;
    height: auto;
 
}

/* Migration Section */
.migration__container {
    display: flex;
    padding: 100px 130px;
    background: #F5F5F5;
}

.migration__image {
    flex: 1;
    padding-right: 50px;
}

.migration__image img {
    width: 100%;
    height: auto;

}

.migration__content {
    flex: 1;
    padding-left: 50px;
}

/* Common Dropdown Styles */
.dropdown__item {
    margin-bottom: 20px;
}

.dropdown__button {
    width: 100%;
    padding: 15px 0;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 18px;
    color: #000000;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    
  }


.dropdown__button.active .dropdown__icon {
    transform: rotate(45deg);
}

.dropdown__content {
    display: none;
    padding: 15px 0;
    color: #666666;
    line-height: 1.6;
    font-family: "Lato";
}
.dropdown__icon {
    font-size: 24px;
    transition: transform 0.3s ease;
    color: #5481FD;
    font-weight: 100;
}


.dropdown__content.active {
    display: block;
}

.dropdown__divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 20px 0;
}

/* Responsive Styles */
@media (max-width: 1920px) {
    .services__container {
        width: 100%;
    }
}

@media (max-width: 1200px) {
    .services__boxes {
        flex-direction: column;
        align-items: center;
    }
    
    .enterprise__container,
    .migration__container {
        flex-direction: column;
    }
    
    .enterprise__content,
    .migration__content {
        padding: 0;
        margin-bottom: 50px;
    }
    
    .enterprise__image,
    .migration__image {
        padding: 0;
    }
}


/* lets collab start */
.vision-banner-container {
    background-color: #000000;
    padding: 0rem 0rem 0rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 180px;
  }
  
  /* Top section styles */
  .banner-content {
    max-width: 1400px;
    min-height: 200px;
    margin: auto;
    position: relative;
  }
  
  .top-section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    /* margin-bottom: 1.5rem; */
  }
  
  .horizontal-line {
    width: 400px;
    height: 2px;
    background-color: #ffffff;
    margin-top: 1rem;
  }
  
  .collaborate-section {
    display: flex;
    align-items: center;
    gap: 0.40rem;
  }
  
  .circle-empty {
    width: 20px;
    height: 20px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    position: relative;
  }
  
  .circle-filled {
    width: 12px;
    height: 12px;
    background-color: #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
  }
  
  .collaborate-text {
    color: #ffffff;
    font-size: 1rem;
    margin-left: 0.5rem;
    font-family: 'Roboto Mono';
  }
  
  /* Main content styles */
  .main-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 200px;
    /* gap: 2rem; */
  }
  
  .vision-heading {
    color: #ffffff;
    font-size: 2rem;
    font-family: 'Poppins';
    font-weight: 600;
    max-width: 100%;
    line-height: 1.2;
    margin: 25px 0px;
    margin-bottom: 40px;
  }
  
  .cta-section {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
  }
  
  .demo-button {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
    padding: 0.40rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins';
  }
  
  .demo-button:hover {
    background-color: #ffffff;
    color: #000000;
  }
  
  .decorative-pattern {
    width: 150px;
    height: auto;
  
    object-fit: contain;
  }
  
  /* Responsive styles */
  @media screen and (max-width: 1024px) {
    .vision-heading {
        font-size: 2.8rem;
    }
    
    .vision-banner-container {
        padding: 2rem;
        padding-bottom: 4rem;
    }
  }
  
  @media screen and (max-width: 768px) {
    .main-content {
        flex-direction: column;
        align-items: flex-start;
    }
  
    .vision-heading {
        font-size: 2.2rem;
        max-width: 100%;
    }
  
    .cta-section {
        width: 100%;
        justify-content: space-between;
    }
  
    .decorative-pattern {
        width: 80px;
    }

    .design-image-2{
      display: none;
    }
  }
  
  @media screen and (max-width: 480px) {
    .vision-banner-container {
        padding: 1.5rem;
        padding-bottom: 4rem;
    }
  
    .horizontal-line {
        width: 80px;
    }
  
    .vision-heading {
        font-size: 1.8rem;
    }
  
    .collaborate-text {
        font-size: 0.9rem;
    }
  
    .circle-empty,
    .circle-filled {
        width: 20px;
        height: 20px;
    }
  
    .demo-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
  
    .decorative-pattern {
        width: 60px;
    }
  }
  
  /* Cloud Solutions Container */
  .cloud-solutions-container {
    padding: 5rem 0;
    background-color: #fff;
    font-family: "Poppins";
  }
  
  .solutions-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .solutions-content .vector-line {
    background-color: #000;
  }
  
  .solutions-label {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
  }
  
  .migration-title, .solutions-title,.content__title {
    font-size: 32px;
    color: #000;
    margin-bottom: 15px;
    margin-top: 20px;
    font-weight: 600;
    line-height: 2rem;
  }
  
  .solutions-description, .migration-description,.content__description {
    color: #000000;
    opacity: 80%;
    margin-bottom: 40px;
    font-family: "Lato";
    
  }
  
  .dropdown-sections {
    border-top: 1px solid #eee;
  }
  
  .dropdown-item {
    border-bottom: 1px solid #eee;
  }
  
  .dropdown-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
  }
  
  .dropdown-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
  }
  
  .dropdown-header i{
    color: #5481FD;
  }
  
  .dropdown-content {
    display: none;
    padding: 0 0 20px;
    font-family: "Lato";
    color: #000000;
    opacity: 80%;
  }
  
  .dropdown-content.active {
    display: block;
  }
  
  .solutions-image img {
    width: 100%;
    height: auto;
    
  }
  /* Cloud Migration Container */
  .cloud-migration-container {
    padding: 20px 0 5rem 0;
    background-color: #fff;
    font-family: "Poppins";
  
  }
  
  .migration-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .migration-image img {
    width: 100%;
    height: auto;
  
  }
  
  
  /* Responsive Design */
  @media (max-width: 992px) {
    .services-boxes {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .solutions-wrapper,
    .migration-wrapper {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    .services-boxes {
      grid-template-columns: 1fr;
    }
  
    .services-title,
    .solutions-title {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .services-container,
    .cloud-solutions-container,
    .cloud-migration-container {
      padding: 40px 0;
    }
  
    .services-title,
    .solutions-title {
      font-size: 24px;
    }
  }
  
/* Main Content Section */
.content__container {
    display: flex;
    padding: 80px 130px;
    gap: 60px;
    background: #FFFFFF;
}

.content__left {
    flex: 1;
    max-width: 600px;
}

.content__header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
}


.content__label {
    font-size: 18px;
    color: #000000;
    margin-bottom: 10px;
}

/* .content__title {
    font-size: 36px;
    color: #000000;
    margin-bottom: 20px;
} */

/* .content__description {
    color: #666666;
    margin-bottom: 40px;
    font-size: 16px;
    line-height: 1.8;
} */

.content__right {
    flex: 1;
    display: flex;
    align-items: center;
}

.content__image {
    width: 100%;
    height: auto;
}

/* Dropdown Styles */
.dropdown__item {
    margin-bottom: 15px;
}






/* Responsive Styles */
@media (max-width: 1200px) {
    .hero__container,
    .content__container {
        padding: 60px 40px;
    }

    .hero__cta-button {
        right: 40px;
    }

    .hero__title {
        font-size: 36px;
    }
}

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

    .content__left {
        max-width: 100%;
    }

    .hero__decorative-image {
        width: 120px;
        height: 120px;
    }

    .content__line {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .hero__container,
    .content__container {
        padding: 40px 20px;
    }

    .hero__cta-button {
        position: relative;
        top: auto;
        right: auto;
        margin-top: 20px;
        align-self: flex-start;
    }

    .hero__title {
        font-size: 28px;
    }
}


/* testimonial starts */
/* .reviews__wrapper {
    background-color: #000000;
    font-family: Arial, sans-serif;
}

.reviews__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 130px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.reviews__header {
    position: relative;
    margin-bottom: 40px;
}

.reviews__line {
    width: 472px;
    height: 3px;
    background: #FFFFFF;
    margin-bottom: 20px;
}

.reviews__label {
    font-size: 18px;
    color: #FFFFFF;
    margin-left: 20px;
}

.reviews__content {
    max-width: 800px;
    margin-bottom: 60px;
}

.reviews__heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reviews__subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
}

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

.testimonial__card {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 400px;
    transition: transform 0.3s ease;
}

.testimonial__card:hover {
    transform: translateY(-5px);
}

.testimonial__card--silver {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(200,200,200,0.1));
}

.testimonial__card--gold {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(255,193,7,0.1));
}

.testimonial__card--copper {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(205,127,50,0.1));
}

.testimonial__image-container {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.testimonial__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.testimonial__content {
    position: relative;
    z-index: 1;
    padding: 30px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.8));
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.testimonial__quote {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.testimonial__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.reviews__decorative-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .reviews__container {
        padding: 60px 40px;
    }

    .reviews__line {
        width: 300px;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews__container {
        padding: 40px 20px;
    }

    .reviews__heading {
        font-size: 36px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial__card {
        height: 350px;
    }

    .reviews__decorative-image {
        width: 120px;
        height: 120px;
    }
}

@media (max-width: 480px) {
    .reviews__line {
        width: 200px;
    }

    .reviews__heading {
        font-size: 28px;
    }

    .testimonial__card {
        height: 300px;
    }
} */

/* Reset and base styles */
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navigation styles */

/* .navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f8f9fa;
    padding: 10px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1000;
}

.navbar .navbar-brand img {
    height: 70px;
    width: 80px;
}

.navbar-menu {
    display: flex;
    justify-content: center;
}


.navbar-menu ul {
display: flex; /* Changes the layout to horizontal */
/* list-style: none;
padding: 0;
margin: 0;
gap: 20px; /* Adds spacing between the menu items */
/* } */

/* .navbar-menu ul li {
position: relative;
}

.navbar-menu ul li a {
text-decoration: none;
color: #333;
font-size: 18px;
font-weight: bold;
padding: 5px 10px;
display: block;
}

.navbar-menu ul li a:hover {
color: #007bff;
}

.dropdown {
position: absolute;
top: 100%;
left: 0;
display: none;
background-color: #f8f9fa;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
list-style: none;
padding: 10px;
margin: 0;
z-index: 1000;
}

.dropdown li {
margin: 5px 0;
}

.dropdown li a {
text-decoration: none;
color: #333;
font-size: 16px;
}

.dropdown li a:hover {
color: #007bff;
}

/* Show dropdown on hover */
/*  */

/* Responsive styles */
@media (max-width: 768px) {
    .nav__menu-toggle {
        display: flex;
    }

    .nav__menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 1rem;
        flex-direction: column;
        gap: 1rem;
    }

    .nav__menu.active {
        display: flex;
    }

    .nav__dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 0.5rem;
    }

    .nav__menu-item {
        width: 100%;
    }

    .nav__dropdown-btn {
        width: 100%;
        text-align: left;
    }

    .hero__title {
        font-size: 2rem;
    }
}


/* hero section start */

/* Base styles */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
  }
  
  
  /* Responsive styles */
  @media screen and (min-width: 768px) {
    .services-header {
      flex-basis: 40%;
    }
  
    /* .services-boxes {
      flex-basis: 60%;
    } */
  
    .services-boxes {
      margin-left: 60px;
    }
  }
  
  @media screen and (max-width: 1024px) {
    .services-content {
      display: block;
    }
  
    .services-header {
      flex-basis: 40%;
      margin-bottom: 0;
    }

    br{
      display: none;
    }
  
  
    .service-box {
      margin-top: 30px;

    }
  }
  
  @media screen and (max-width: 767px) {
    .services-title {
      font-size: 24px;
    }

    
    .services-boxes {
      display: block;
      margin-left: 0;
      }
  
    .service-box {
      width: 100%;
    }
  }
  
  @media screen and (max-width: 480px) {
    .services-wrapper {
      padding: 0 10px;
    }
  
    .services-title {
      font-size: 20px;
    }

    
    .services-boxes {
      display: block;
      margin-left: 0;
      }
  
    .service-box {
      height: auto;
      min-height: 120px;
    }
  }
  
  
  
  /* Cloud Migration Container */
  .cloud-migration-container {
    padding: 60px 0;
    background-color: #fff;
  }
  
  .migration-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .migration-image img {
    width: 100%;
    height: auto;
    
  }
  
  /* Responsive Design */
  @media (max-width: 992px) {
    /* .services-boxes {
      grid-template-columns: repeat(2, 1fr);
    } */
  
    .solutions-wrapper,
    .migration-wrapper {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    /* .services-boxes {
      grid-template-columns: 1fr;
    }
   */
    .services-title,
    .solutions-title {
      font-size: 20px;
    }
  }
  
  @media (max-width: 480px) {
    .services-container,
    .cloud-solutions-container,
    .cloud-migration-container {
      padding: 40px 0;
    }
  
    .services-title,
    .solutions-title {
      font-size: 24px;
    }
  }
  


.reviews__wrapper {
    background-color: #000000;
    font-family: Arial, sans-serif;
}

.reviews__container {
    max-width: 1920px;
    margin: 0 auto;
    padding: 80px 130px;
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
}

.reviews__header {
    position: relative;
    margin-bottom: 40px;
}

.reviews__line {
    width: 472px;
    height: 3px;
    background: #FFFFFF;
    margin-bottom: 20px;
}

.reviews__label {
    font-size: 18px;
    color: #FFFFFF;
    margin-left: 20px;
}

.reviews__content {
    max-width: 800px;
    margin-bottom: 60px;
}

.reviews__heading {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.reviews__subheading {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    line-height: 1.6;
}

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

.testimonial__card {
    /* Allow the card to grow with content */
    border-radius: 12px;
    position: relative;
    height: auto;
    min-height: 520px;
    transition: transform 0.3s ease;
    /* Removed overflow: hidden; so text is never cut off */
}

.testimonial__card:hover {
    transform: translateY(-5px);
}

/* Gradient backgrounds */
.testimonial__card--silver {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(200,200,200,0.1));
}
.testimonial__card--gold {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(255,193,7,0.1));
}
.testimonial__card--copper {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(205,127,50,0.1));
}

/* Image container gets the border-radius & overflow hidden */
.testimonial__image-container {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 12px;
    overflow: hidden;
}

.testimonial__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.testimonial__content {
    position: relative;
    z-index: 1;
    padding: 30px;
    padding-bottom: 40px;
    background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.9));
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.testimonial__quote {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFFFFF;
}

/* No line-clamp so the entire text is visible */
.testimonial__text {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 10px;
    display: block;
    overflow: visible;
}

.reviews__decorative-image {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 180px;
    height: 180px;
    opacity: 0.8;
}

@media (max-width: 1200px) {
    .reviews__container {
        padding: 60px 40px;
    }

    .reviews__line {
        width: 300px;
    }

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial__card {
        min-height: 480px;
    }
}

@media (max-width: 768px) {
    .reviews__container {
        padding: 40px 20px;
    }

    .reviews__heading {
        font-size: 36px;
    }

    .testimonials__grid {
        grid-template-columns: 1fr;
    }

    .testimonial__card {
        min-height: 420px;
    }

    .reviews__decorative-image {
        width: 120px;
        height: 120px;
    }

    .testimonial__content {
        padding-bottom: 30px;
    }
}

@media (max-width: 480px) {
    .reviews__line {
        width: 200px;
    }

    .reviews__heading {
        font-size: 28px;
    }

    .testimonial__card {
        min-height: 400px;
    }

    .testimonial__quote {
        font-size: 20px;
    }

    .testimonial__text {
        font-size: 14px;
    }

    .testimonial__content {
        padding: 20px;
        padding-bottom: 25px;
    }
}


@media screen and (max-width: 1024px) {
  .footer-links-section > *:nth-child(-n+3) {
    display: none; /* Hides first three columns */
  }
  }