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

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




/* ===== HERO ===== */
.hero{
    background:url("/images/resources-bg.png") center/cover no-repeat;
    height:100vh;
    text-align:center;
    display: flex;
  align-items:flex-end;   /* ⬅ pushes content to bottom */
   
}

.hero-content {
  width: 100%;
}
/* .hero::before{
    content:"";
    position:absolute;
    inset:0;
} */







/* 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 */
      
    }

    .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: 25px !important; /* 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;
    }
}
/* 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) {
 @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;
  }
 
}
}
/* ===== 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;
    }
}
.sun-circle{
    background-color:white;
    height:400px;
    width:400px;
    border-radius:50%;
    display:flex;
    flex-direction:column;
    /* align-items:center;
    justify-content:center; */
    padding:30px;
    gap:10px;
}
.sun-circle {
  margin-right: 40px; /* adjust as needed */
}
.hero .row {
 display: flex;
  justify-content: flex-end; /* ⬅ pushes to right */
  width: 100%;
  margin-bottom: 60px;      /* ⬅ spacing from bottom */
  position: relative; /* make the circle position relative to this */
 
}
.sun-circle img {
    max-width: 60%; /* scale the image inside the circle */
    height: auto;
    margin-bottom: 10px; /* space between the image and the heading */
}
@media (max-width: 768px) {
    .hero {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero .row {
        justify-content: center;
        margin-bottom: 0;
    }

    .sun-circle {
      padding:10px;
        height: 180px;
        width: 180px;
        margin-right:0px;
        gap: 1px;
        position: absolute;
        top: 10px; /* adjust for mobile padding */
        right: 0px;  /* adjust for mobile padding */
    }

    .sun-circle img {
        max-width: 50%;
        margin-bottom: 5px;
    }

    .sun-circle h1 {
        font-size: 20px;
        text-align: center;
    }
}
.sun-circle h1{
    font-size:50px;
    font-family:'Merriweather', serif;
    font-weight:600;
    color:black;
}
.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;
  }
}
