*{
    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 BASE */
/* HERO BASE */
.hero-education {
  position: relative;
  width: 100%;
  height: 100vh; /* Full viewport height */
  overflow: hidden;
}

/* Background image */
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;  /* Ensures the image fully covers the area */
  object-position: left center; /* Aligns the image more towards the left */
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;  /* Ensures the image stays behind other content */
}

/* White overlay */
.hero-education::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: rgba(255, 255, 255, 0.65); */
}

/* Content wrapper */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  justify-content: flex-end; /* Align content to the right */
  align-items: center; /* Center vertically */
  padding-top: 60px;
  padding-left: 40px;
  padding-right: 60px;
  width: 100%;
  height: 100%; /* Ensure it stretches across the full screen */
}

/* RIGHT text block */
.hero-text {
  max-width: 550px; /* Limit text width */
  text-align: left; /* Align text to the left */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start; /* Align text to the start of the column */
  padding-bottom: 10px; /* Optional padding */
}

.hero-text h1 {
  font-size: 50px;
  line-height: 1.25;
  font-weight: 800;
  color: #000;
  margin-bottom: 20px;
  font-family: 'Merriweather', serif;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 40px;
  font-size: 20px;
  color: #000;
  border: 2px solid #000;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
  text-align: start;
}

.hero-btn:hover {
  background: #000;
  color: #fff;
}

/* Background image */
.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures the image covers the area */
}

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

.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;
  }
 
}
  .hero-thumbs{
    margin-left:-25px;
    margin-bottom:20px;
  }
  .material-title {
  background: #fff;
  width: calc(100% - 70px);
  margin: -30px auto 0 !important;
  padding: 18px 10px ;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius:1px !important;
  border-bottom-right-radius:1px !important;
  font-size: 26px;
  font-weight: 600;
  color: #111;
  position:relative;
  z-index: 2;
 
 
}
.protection-section{
  padding-top:0px !important;
}
.screening-cta h1{
  font-size:28px !important;
}
}
/* ===== 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;
    }
    .materials-section{
      padding-top:0px !important;
    }
}

/* Section */
.materials-section {
  padding: 80px 20px;
 
  text-align: center;
}

/* Header */
.materials-badge {
  display: inline-block;
  background: #1a73e8;
  color: #fff;
  padding: 10px 40px;
  border-radius: 35px;
  font-size:35px;
  margin-bottom: 10px;
}
.materials-header h1 {
font-size:50px;
}
.materials-header p {
  color:black;
  margin-bottom: 60px;
  font-size:20px;
  font-family: 'Open Sans', sans-serif;
}

/* Grid */
.materials-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.material-card:nth-last-child(2) {
  grid-column: 1 / 2;
  justify-self: end;
}

.material-card:nth-last-child(1) {
  grid-column: 2 / 3;
  justify-self: start;
}

@media (max-width: 992px) {
  .materials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .material-card:nth-last-child(2),
  .material-card:nth-last-child(1) {
    grid-column: auto;
    justify-self: stretch;
  }
}

@media (max-width: 576px) {
  .materials-grid {
    grid-template-columns: 1fr;
  }
}
/* Card */
.material-card {
  /* background: #fff; */
  border-radius: 38px;
  /* overflow: hidden; */
  position: relative;
}

/* Image */
.material-card img {
  width: 100%;
  height: 250px;
  border-radius:30px;
  object-fit: cover;
  display: block;
  
}

/* === SHAPE LOGIC (Your CSS Adapted) === */
.material-info {
  margin-top: -30px;
  text-align: center;
  padding: 10px 18px 25px;
}

.material-title {
  background: #fff;
  width: calc(100% - 70px);
  margin: -40px auto 0;
  padding: 18px 10px;
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  border-bottom-left-radius:15px;
  border-bottom-right-radius:15px;
  font-size: 26px;
  font-weight: 600;
  color: #111;
  position: relative;
  z-index: 2;
}

.material-desc {
  font-size: 18px;
  color:black;
  line-height: 1.6;
  margin-top:5px;
}

/* Button */
.material-btn {
   display: inline-flex;
  align-items: center;
  justify-content: center;
    font-weight: 600;
  /* margin-top: 14px; */
  padding: 14px 26px;
  background: #111;
  color: #fff;
  border-radius: 20px;
  font-size: 15px;
  text-decoration: none;
  transition: 0.3s;
  font-family: 'Open Sans', sans-serif;
    background: linear-gradient(
    to bottom,
    #2a2a2a 0%,
    #0b0b0b 100%
  );
    box-shadow:
    inset 0 3px 6px rgba(255, 255, 255, 0.15),
    inset 0 -6px 10px rgba(0, 0, 0, 0.8),
    0 6px 12px rgba(0, 0, 0, 0.4);

}
.btn-black{
    background-color:black;
    padding: 10px 10px;
    display: inline-block;
    margin-top:20px;
    justify-content:center;
   align-content:center;
border-radius: 30px;
}
.aluminium-btn{
    margin-top:80px;
}
/* .material-btn:hover {
  background: #1a73e8;
} */

/* Mobile tweaks */
@media (max-width: 480px) {
 

  .material-title {
    font-size: 15px;
  }
}

/* SECTION */
.expand-section {
  padding: 80px 20px;
  background: #fff;
}

/* CONTAINER */
.expand-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

/* IMAGE GROUP */
.expand-images {
  position: relative;
  display: flex;
  align-items: flex-end;
}

/* MAIN IMAGE */
/* .image-main {
  width: 70%;
} */

.image-main img {
  width: 100%;
  border-radius: 30px;
  object-fit: cover;
  display: block;
}

/* SMALL IMAGE */
.image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 35%;
}

.image-small img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  display: block;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* CONTENT */
.expand-content h1 {
  font-size: 52px;
  font-weight: 600;
  margin-bottom: 20px;
  font-family:'Merriweather', serif;
}

.expand-content p {
  font-size: 18px;
  line-height: 1.7;
  color:black;
  margin-bottom: 16px;
  font-family: 'Open Sans', sans-serif;
}

/* ---------------- RESPONSIVE ---------------- */

/* TABLET */
@media (max-width: 992px) {
  .expand-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .expand-images {
    justify-content: center;
  }

  .image-main {
    width: 80%;
  }

  .image-small {
    width: 40%;
    right: 10%;
  }

  .expand-content {
    text-align: center;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .image-main {
    width: 100%;
  }

  .image-small {
    position: relative;
    width: 60%;
    margin-top: -40px;
    right: auto;
    bottom: auto;
  }

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

  .expand-content p {
    font-size: 14px;
  }
}
/* SECTION */
.protection-section {
  padding: 80px 20px;
  background: #fff;
}

/* HEADER */
.protection-header {
  max-width: 800px;
  margin: 0 auto 60px;
  text-align: center;
}

.protection-header h1 {

  font-weight: 600;
  margin-bottom: 16px;
 
}

.protection-header p {
  font-size: 18px;
  color: #444;
  line-height: 1.6;
  font-family: 'Open Sans', sans-serif;
}

/* CARD GRID */
.protection-cards {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

/* CARD */
.protection-card {
  background: #fff;
  border-radius: 20px;
  padding-top:20px;
  padding-bottom:20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border: 1px solid #e5e5e5;
}

/* CARD TITLE */
.card-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  text-align:start;
}

/* .card-icon {
  font-size: 26px;
} */

.card-title h3 {
  font-size: 25px;
  font-weight: 600;
  /* font-family: 'Open Sans', sans-serif; */
}

/* IMAGE */
.protection-card img {

  object-fit: cover;
  /* border-radius: 14px; */
  margin-bottom: 18px;
}

/* DESCRIPTION */
.card-desc {
  font-size: 20px;
  color:black;
  margin-bottom: 20px;
  font-family: 'Open Sans', sans-serif;
}

/* BUTTON */
.card-btn {
  display: inline-block;
  padding: 20px 40px;
  border-radius: 30px;
  background: #eaeaea;
  color: #000;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.card-btn:hover {
  background: #000;
  color: #fff;
}

/* ---------------- RESPONSIVE ---------------- */


/* Media Query for Tablets */
@media (max-width: 768px) {
    .protection-cards {
      gap: 15px;
      display: grid;
      grid-template-columns: repeat(1, 1fr);
    }

    .protection-card {
        width: 50%; /* Ensure cards still take up 48% width but add some spacing */
    }

    .card-title h3 {
        font-size: 16px; /* Adjust font size for better mobile readability */
    }

    .card-desc {
        font-size: 12px; /* Smaller description text */
    }

    .card-btn {
        font-size: 13px; /* Slightly smaller button font */
    }
}

/* Media Query for Mobile */
@media (max-width: 480px) {
    .protection-cards {
        gap: 10px;
    }
     .card-icon img{
      object-fit:contain;
     }
    .protection-card {
        width: 100%; /* Cards will stack vertically */
        padding: 15px;
        overflow:hidden;
    }

    .card-title h3 {
        font-size: 14px; /* Adjust font size for smaller screens */
    }

    .card-desc {
        font-size: 12px; /* Adjust description text size */
    }

    .card-btn {
        font-size: 12px; /* Smaller button font for mobile */
    }
}



/* SECTION BACKGROUND */
.screening-cta {
  background: #0a9bf5; /* Phifer blue */
  padding: 80px 20px;
  color: #fff;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

/* CONTAINER */
.cta-container {
  max-width: 1200px;
  margin: auto;
}

/* HEADING */
.screening-cta h1 {
  font-size: 56px;
  font-weight: 500;
  margin-bottom: 14px;
  font-family:'Merriweather', serif; 
}

/* SUBTEXT */
.screening-cta p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 50px;
  line-height: 1.6;
  opacity: 0.95;
}

/* OPTIONS WRAPPER */
.cta-options {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* OUTER WHITE RING */
.border-cir {
  width: 150px;
  height: 150px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* INNER CIRCLE */
.cta-circle {
  width: 125px;
  height: 125px;
  background: #fff;
  border-radius: 50%;
  box-shadow:
    inset 0 2px 6px rgba(0,0,0,0.15),
    0 6px 14px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* ICON */
.cta-circle img {
  width: 38px;
  height: auto;
}

/* LABEL */
.cta-circle span {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.1;
  font-family:'Merriweather', serif; 
}

/* ---------------- RESPONSIVE ---------------- */

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

  .border-cir {
    width: 120px;
    height: 120px;
  }

  .cta-circle {
    width: 95px;
    height: 95px;
  }
}

/* MOBILE */
@media (max-width: 576px) {
  .screening-cta {
    padding: 60px 15px;
  }

  .screening-cta h2 {
    font-size: 24px;
  }

  .cta-options {
    gap: 25px;
  }
}

.accordian1{
  padding-top:50px;
}
.accordion-button {
  background-color: transparent; 
  color: #ffffff;
  font-size: 30px;
  font-weight: 600;
  padding: 20px 28px;
  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;
}

