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

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden; /* Removes horizontal scrollbar */
    font-family:'Merriweather', serif;
}

#contactFormSection{
  scroll-margin-top: 150px !important; 
}

/* ===== HERO ===== */
.hero{
    background:url("/images/Rectangle\ 27.png") center/cover no-repeat;
    height: 850px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    position:relative;
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
}

.hero-content{
    position: relative;
    color: #101010;
    align-items: center;
    text-align: center;
   
}

.hero h1{
    font-family: 'Merriweather', serif;
     /* Adding shadow */
    text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.4); /* Shadow applied to each letter */
    font-size: 45px; /* Slightly reduced size */
    font-weight: 900;
    margin-top: -10px; /* Adjusted margin for better alignment */
    line-height: 1.2; /* Adjust line height for better spacing */
}
.hero-content p{
    font-size:14px;
    text-align:center;
}
.hero button {
    font-family:'Merriweather', serif;
    padding: 16px 20px;
    font-size: 30px;
    background: #D9D9D9;
    margin-top:40px;
    color: #000;
    font-weight: 700;
    cursor: pointer;
    border: none;
    border-radius: 50px; /* ✔ pill shape */
    transition: all 0.3s ease;
}

/* Responsive Design for Tablets and Below */
@media (max-width: 1024px) {
    .hero {
        height: 700px; /* Adjust height for tablets */
    }

    .hero h1 {
        font-size: 50px; /* Adjust font size for tablets */
    }

    .hero button {
        font-size: 24px; /* Adjust button size for tablets */
        padding: 14px 18px;
    }
}

/* Responsive Design for Mobile Devices */
@media (max-width: 768px) {
    .hero {
        height: 500px; /* Adjust height for mobile */
    }

    .hero h1 {
        font-size: 35px; /* Adjust font size for mobile */
        line-height: 1.3; /* Slightly adjust line height for mobile */
        margin-top:40px; /* Remove negative margin */
    }

    .hero button {
        font-size: 20px; /* Adjust button size for mobile */
        padding: 12px 16px;
    }
}

/* Responsive Design for Small Mobile Devices */
@media (max-width: 480px) {
    .hero {
        height: 400px; /* Adjust height for very small screens */
    }

    .hero h1 {
        font-size: 22px; /* Adjust font size for small mobile screens */
        line-height: 1.4; /* Adjust line height for better readability */
    }

    .hero button {
        font-size: 18px; /* Adjust button size for small screens */
        padding: 12px 14px;
    }
}
/* ===== PRODUCT INTRO ===== */

/* SECTION */
.shade-section {
  padding: 80px 20px;
}

.shade-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap:90px;
  align-items: center;
}

/* IMAGE AREA */
.image-wrapper {
  position: relative;
  max-width: 500px;
}



/* CIRCLE IMAGE */
.circle-image {
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 290px;
  height: 290px;
  background: #fff;
  border-radius: 50%;
  padding: 9px;
}

.circle-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* CONTENT */
.content-wrapper h2 {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight:900;
  margin-bottom:20px;
  color:black;
}

.content-wrapper p {
  font-size:20px;
  line-height: 1.8;
  color:black;
  margin-bottom: 18px;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .shade-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .shade-section{
    align-items:center;
  }
  .image-wrapper {
    margin: auto;
  }

  .circle-image {
    right: 50%;
    transform: translateX(50%);
  }
  .shade-container {
    gap:20px;
  }
}



/* ===== ICON ROW START ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.body {
  background: #fff;
}

/* MENU BAR */
.icon-menu {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  padding: 22px 0;
}

.icon-menu-inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ITEM */
.menu-item {
  text-align: center;
  cursor: pointer;
}

/* ICON */
.icon-circle {
  width: 52px;
  height: 52px;
  background: #2f3947;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.icon-circle i {
  color: #fff;
  font-size: 16px;
}

/* TEXT */
.menu-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 25px;
  font-weight:700;
  color: #000;
}

/* HOVER EFFECT */
.menu-item:hover .icon-circle {
  background: #000;
  transition: 0.3s ease;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .icon-menu-inner {
    flex-wrap: wrap;
    flex-direction:row;
    gap:20px;
    justify-content: center;
    font-size:14px;
  }
  .menu-item h4 {
    font-size:12px;
  }
 
}

/* ===== ICON ROW END ===== */
/* Unique Styling for Made In USA Section */
/* ===== FEATURES SECTION END ==== */
/* SECTION */
.made-usa-section {
  width: 100%;
}

/* CONTAINER */
.made-usa-box {
  display: flex;
  width: 100%;
  min-height: 230px; /* matches image height */
  margin-top: 30px;
}

/* IMAGE */
.made-usa-img {
  width: 876px;
  height: 438px;
  top: 2925px;
}

.made-usa-img img {
  width: 100%;
  height: 77.1%;
  object-fit: cover;
  display: block;
}

/* TEXT AREA */
.made-usa-text {
  width: 664px;
  height: 338px;
  top: 2925px;
  left: 868px;
  opacity: 1;
  background: #007fc4; /* exact blue look */
  color: #fcfbfb;
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.made-usa-text h4 {
  font-size: 28px;
  margin-bottom: 10px;
}

.made-usa-text p {
  font-size: 16px;
  line-height: 1.6;
}
/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
  .made-usa-box {
    flex-direction: column;
    align-items: center; /* Center content on tablet and mobile */
  }

  .made-usa-img,
  .made-usa-text {
    width: 100%;
  }

  .made-usa-text {
    padding: 20px 20px;
    text-align: center; /* Center the text on smaller screens */
  }

  .made-usa-text h4 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .made-usa-text p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* MOBILE DESIGN (smaller than 768px) */
@media (max-width: 768px) {
  .made-usa-box {
    flex-direction: column;
    align-items: center; /* Stack the image and text vertically */
  }

  .made-usa-img,
  .made-usa-text {
    width: 100%;
    padding: 0;
  }

  .made-usa-img {
    height:auto; 
  }

  .made-usa-text {
    text-align: center;
    padding: 15px 20px; /* Adjust padding for mobile */
  }

  .made-usa-text h4 {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .made-usa-text p {
    font-size: 14px;
  }
}

/* Small mobile screen (e.g., portrait phones) */
@media (max-width: 480px) {
  /* .made-usa-img {
    height: 180px; 
  } */

  .made-usa-text h4 {
    font-size: 20px; /* Adjust header size */
  }

  .made-usa-text p {
    font-size: 12px; /* Adjust font size for readability */
  }
}


/* ===============================
   SHEERWEAVE FEATURES SECTION
================================ */

/* Section Styling */
.features-section {
  width: 100%;
  padding: 40px 20px;
  background-color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.2em;
  font-weight:600;
  margin-bottom: 20px;
  color:black;
  font-family: 'Merriweather';
}

.section-intro {
  font-size: 2em;
  color: #666;
  line-height:1.5;
 
}

/* Features Container */
.features-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  display:none;
}

.feature-item {
  display: flex;
  flex-direction:column;
  justify-content: center;
  align-items: center;
  font-weight:600;
  background-color: #fff;
  padding: 10px;
  border-radius:15px;
 
}

.feature-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  max-width: 150px;
  margin-right: 20px;
}

.feature-text h3 {
  font-size: 1.9em;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.feature-text p {
  font-size: 1em;
  color: #555;
  line-height: 1.5;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .features-container {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
    font-size:12px;
  }

  .feature-image {
    margin-bottom: 15px;
  }
}


/* ===============================
   GLOBAL VARIABLES
================================ */
 
.styles-section {
  padding: 20px 20px;
  
}
.styles-section h2{
  font-weight:600;
  font-size:40px;
}
.styles-section p{
  font-size:20px;
}
.styles-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* TEXT SECTION */
.text-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh; /* Full height of the viewport */
}


/* HEADER */
.text-section h2 {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.2;
  color: #333;
  margin-bottom: 20px;
}

/* PARAGRAPH */
.text-section p {
  text-align: center;
  font-size: 18px;
  color: #555;
  line-height: 1.8;
  font-weight: normal;
  margin-top: 10px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* CARD */
.style-card {
  background: #fff;
  text-align: center;
}

/* IMAGE */
.image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  margin-bottom: 15px;
}

/* IMAGE */
.image-wrap img {
  width: 100%;
  height: 260px;
  object-fit: cover;

  /* Top rounded */
  border-radius: 30px 30px 0 0;

  
  /* clip-path: polygon(
    0 0,
    100% 0,
    100% 85%,
    92% 100%,
    8% 100%,
    0 85%
  ); */

  display: block;
}

/* WHITE CURVE AT BOTTOM */
/* .image-wrap::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 38px;
  background: #fff;
  border-radius: 40px;
  z-index: 1;
} */

/* IMAGE TITLE */
.image-title {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  z-index: 2;
}



/* TEXT */
.style-card h4 {
  background: #fff;
  width: calc(100% - 70px);
  margin: -50px auto 0;
  padding: 18px 10px;
  /* border-radius: 50px 50px 0px 0px; */
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  /* font-size: 16px; */
  font-weight: 600;
  color: #111;    
  text-align: center;
  z-index: 2;
  position: relative;
}

.style-card p {
  font-size: 18px;
  line-height: 1.6;
  color:black;
  padding: 0 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .styles-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .styles-section h2{
  font-weight:600;
  font-size:25px;
}
}

@media (max-width: 576px) {
  .styles-container {
    grid-template-columns: 1fr;
  }

  
}

/* FAQ SECTION */
/* Custom styling for the accordion */
.accordian1{
  padding-top:50px;
}
.accordion-button {
  background-color: transparent; 
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  padding: 28px 32px;
  border-radius:24px;
  box-shadow: none;
}
.accordion-button:focus {
    background-color:  #0099FF; /* Keep the same color when expanded */
    color:white;
}
.accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #ffffff;
}
/* 🔥 REMOVE BOOTSTRAP DEFAULT ICON COMPLETELY */
.accordion-button::after {
  background-image: none !important;
  filter: none !important;
}
.accordion{
    font-family: 'Fredoka One', sans-serif ; /* Correct property to set the font family */
}

.accordion-button:focus {
  box-shadow: none; /* Remove default focus shadow */
}


.accordion-button::before {
  display: none;
}

.accordion-body {
  background-color: transparent; /* ❌ remove second blue box */
  color: #ffffff;
  font-size: 24px;
  line-height: 1.6;
  padding: 0 32px 28px 32px;
  border-radius:24px;
  box-shadow: none;
}

.accordion-item {
  background-color: #0099FF;
  border-radius:32px;
  overflow: hidden; 
  margin-bottom: 18px !important;
  border: none;
  color: white;

  align-items:center;
  width:80%;
  margin: 0 auto;

  
}

.accordion-header {
  padding: 0;
  margin: 0;
}

/* .accordion-button:after {
  content: '\f078'; 
  font-family: 'FontAwesome';
  background-color: #0099FF;
  font-weight: bold;
  font-size:25px;
  color:white;
  float: right;
  transition: transform 0.3s ease;
} */
 .accordion-button::after {
  content: "›";
  background: #ffffff;
  color: #0099FF;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
  filter: none !important; /* 🔥 stops black hover */
}
/* 🔥 REMOVE ALL FOCUS / ACTIVE BORDERS */
.accordion-button:focus,
.accordion-button:focus-visible,
.accordion-button:active {
  outline: none !important;
  box-shadow: none !important;
  border: none !important;
}

.accordion-button:hover::after,
.accordion-button:focus::after {
  background: #ffffff;
  color: #0099FF;
  filter: none !important; /* 🔥 force white */
}

.accordion-button.collapsed::after {
  transform: rotate(0deg);
}
.accordion-button:not(.collapsed)::after {
  transform: rotate(90deg);
}
.accordion-button {
  border-radius: 0 !important;   /* 🔑 prevents mismatch */
}

.accordion-body {
  border-radius: 0 !important;
}
.accordion-item:first-of-type,
.accordion-item:last-of-type {
  border-radius: 32px;
}

/* Responsive styling */
@media (max-width: 767px) {
   .accordion-button {
    font-size: 18px;
    padding: 20px;
  }

  .accordion-body {
    font-size: 16px;
    padding: 0 20px 20px;
  }
.faq-new{
  padding-top:0 !important;
}
}
.accordion-button strong {
  margin-right: 20px; /* Add margin to the right to space out the text */
}

.FAQ{
  font-size:90px;
  font-weight:600;
  padding-bottom:0;
}
.faq2{
  padding-bottom:30px;
}
/* ===== FOOTER START ===== */

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .product-intro,
    .usa{
        flex-direction:column;
    }

    .product-img,
    .product-text,
    .usa img{
        width:100%;
    }

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

    .navbar{
        flex-direction:row;
        gap:10px;
    }
}

/* Responsive for tablets and below */
@media (max-width: 1024px) {
  .shade-container {
    flex-direction: column;
    text-align: center;
  }

  .image-wrapper {
    flex: 1 1 100%;
    margin-bottom: 20px;
  }

  .content-wrapper {
    flex: 1 1 100%;
    padding:20px;

  }

  .content-wrapper h2 {
    font-size: 28px;
  }

  .content-wrapper p {
    font-size: 16px;
  }
}

/* Mobile responsive design */
@media (max-width: 768px) {
  .shade-container {
    padding: 20px;
  }
 .image-wrapper img{
  width:380px;
 }
  .image-wrapper {
    margin-bottom: 20px;
  }

  .content-wrapper h2 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .content-wrapper p {
    font-size: 14px;
  }
}

/* Small mobile screen (e.g., portrait phones) */
@media (max-width: 480px) {
  .shade-container {
    padding: 15px;
  }

  .content-wrapper h2 {
    font-size: 20px;
  }

  .content-wrapper p {
    font-size: 12px;
  }
}
.footer-bottom {
  margin-top: 0px;
  /* margin-bottom:0px; */
  /* padding: 8px 0px; */
  text-align: center;
 
  font-size: 18px;
  color: #ffffff;
}

.footer-bottom p {
  margin: 0;
  
}

.footer-bottom strong {
  font-weight: 700;
}


.designer-link {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.designer-link:hover {
  opacity: 0.8;
}
/* fabric-performancwe */
.fabric-performance {
  padding: 60px 20px;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Toggle Buttons */
.toggle-wrapper {
  display: inline-flex;
  background: #f1f1f1;
  border-radius: 30px;
  padding: 5px;
  margin-bottom: 25px;
  /* 🔑 THIS fixes it */
  margin-right: auto;
  border:1px solid black;
}
.toggle-row {
  text-align: left;
}
@media (min-width: 992px) {
  .toggle-wrapper {
    margin-right: auto;
   
  }

}
.toggle-btn {
  padding: 8px 25px;
  border: none;
  border-radius: 25px;
  background: transparent;
  font-weight: 600;
  cursor: pointer;
}

.toggle-btn.active {
  background: #2aa4ff;
  color: #fff;
}

/* Title */
.section-titlee {
    display: inline-block;          /* 🔑 stops full width */
  font-size: 26px;
  background-color: #2aa4ff;
  color: #fff;
  padding: 14px 28px;             /* better pill padding */
  border-radius: 999px;           /* perfect capsule */
  margin: 0 auto 40px;    
  
}
.section-title-wrapper {
  text-align: center;
}
/* Grid */
.performance-grid {
  display: grid; /* assuming you toggle this from none → grid */
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.performance-grid.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
/* Tablet */
@media (max-width: 992px) {
  .performance-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .performance-grid {
    grid-template-columns: 1fr;
  }
  .toggle-row {
  text-align:center;
}
}
.performance-grid.active {
  display: grid;
}

/* Cards */
.performance-card {
  position: relative;
  width: 100%;

  border-radius: 25px;
  overflow: hidden;
}

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

.performance-card img {
  width: 100%;
  height: 230px;              /* 🔥 SAME HEIGHT */
  object-fit: cover;          /* 🔥 NO STRETCH */
  border-radius: 25px;
  border: 2px solid black;
  display: block;
}
/* REMOVE THIS */
.performance-label {
  position: static;   /* 🔥 change from absolute */
  transform: none;
  left: auto;
  bottom: auto;

  font-family: 'Merriweather', serif;
  color: #000;

  margin-top: 15px;   /* image ke niche spacing */
  font-size: 22px;
  font-weight: 600;
  text-align: center;
}
/* Responsive text */
@media (max-width: 576px) {
  .performance-label{
    font-size: 14px;
    padding: 20px 14px;
    top:250px;
  }
}
.performance-card h4 {
  font-size: 16px;
  /* margin: 15px; */
}

.performance-card p {
  font-size: 14px;
  color: black;
  padding: 0 15px 20px;
  line-height: 1.6;
  font-family:'Open Sans', sans-serif;
  padding-top:20px;
}

/* Commercial Placeholder */
.coming-soon {
  font-size: 16px;
  color: #777;
}

/* Mobile Adjustments */
@media (max-width: 576px) {
  .section-titlee {
    font-size: 22px;
  }
}
/* Commercial Heading */
.commercial-heading {
  text-align: center;
  margin-bottom: 40px;
}
.commercial-tab {
  display: none;
}

.commercial-tab.active {
  display: block;
}

.commercial-heading h2 {
  display: inline-block;
  background: #3aa0e6;
  color: #fff;
  padding: 16px 50px;
  border-radius: 999px;
  font-family: 'Merriweather', serif;
}

/* Feature Strip */
.commercial-features {
   display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #000;
  border-radius: 30px;
  padding: 1px 10px;
  margin-bottom: 50px;
}

.commercial-features span {
  font-weight: 600;
  font-size: 14px;
}

/* Cards Grid */
.commercial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.border-back{
  background: linear-gradient(
  135deg,
  #1fb0ff 0%,
  #1799e6 35%,
  #0d82c6 100%

);

width:350px;
  color: #fff;
  border-radius: 26px;
  padding: 26px;
  border:1px solid white;
  position: relative;
}
.border-back::after {
  content: "";
  position: absolute;
  /* inset: 10px; */

  /* border: 2px solid rgba(255,255,255,0.7); */
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border-radius: 20px;
  pointer-events: none;
}
/* Individual Card */
.commercial-card {
background-color:#1fb0ff;
display:flex;
justify-content:center;
padding:8px;
border-radius:20px;
}

/* Inner border effect */
/* .commercial-card::after {
  content: "";
  position: absolute;

  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border-radius: 20px;
  pointer-events: none;
} */

/* Header layout */
.card-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

/* Icon circle */
.card-icon {
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon img {
  width: 34px;
  height: 34px;
}

/* Title */
.commercial-card h4 {
  font-family: 'Merriweather', serif;
  font-size: 24px;
  line-height: 1.2;
  margin: 0;
  
}

/* Bullet list */
.commercial-card ul {
  padding-left: 22px;
  margin: 0;
}

.commercial-card li {
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif
}

/* Responsive */
@media (max-width: 992px) {
  .commercial-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .commercial-cards {
    grid-template-columns: 1fr;
  }

  .commercial-features {
    gap: 10px;
    justify-content: center;
    overflow:hidden;
    
  }
    .commercial-cards {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 991px) {
  .commercial-cards {
    display: flex;
    flex-direction: column;
    gap: 16px; /* optional spacing between cards */
  }

  .commercial-features {
    justify-content: center;
    gap: 10px;
  }
}

.performance-grid {
  display: none;
}

.performance-grid.active {
 display: grid;
} 
/* Tablet */
@media (max-width: 992px) {
  .performance-grid.active {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 576px) {
  .performance-grid.active {
    grid-template-columns: 1fr;
  }
}
/* sample data */
.sample-cta {
  padding: 40px 20px;
}

.sample-cta-inner {
  max-width: 1200px;
  margin: auto;
  display: flex;
  border: 3px solid #000;
  background: #fff;
}

/* Image */
.cta-image {
  flex: 1;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Content */
.cta-content {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-content h2 {
  font-family: 'Merriweather', serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight:600;
}

.cta-content p {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  margin-bottom: 30px;
}

/* Button */
.cta-btn {
  display: inline-flex;          /* 🔑 not block */
  align-items: center;
  justify-content: center;

  background: #1e90ff;
  color: #fff;
  padding: 12px 28px;            /* 🔑 gives pill shape */
  border-radius: 999px;          /* perfect pill */

  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  white-space: nowrap;    
}

/* Hover */
.cta-btn:hover {
  background: #0b76d1;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

/* Tablet */
@media (max-width: 992px) {
  .cta-content h2 {
    font-size: 30px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .sample-cta-inner {
    flex-direction: column;
  }

  .cta-image {
    height: 220px;
  }

  .cta-content {
    padding: 25px;
    text-align: center;
    align-items: center;
  }

  .cta-content h2 {
    font-size: 26px;
  }

  .cta-content p {
    font-size: 16px;
  }
}
.free-but{
  display: flex;
  align-items: center;           /* 🔑 vertical alignment */
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 576px) {
  .free-but {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* Mobile & Tablet (up to 991px) */
@media (max-width: 991px) {
  br {
    display: none;
  }
}