/* ===== Base Styles ===== */
/* Reset & Base */

html {
  scroll-behavior: smooth;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  background: #ffffff;
  color: #000000;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
 scroll-behavior: smooth;
}
/* ===== Hero Section ===== */
.features-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding:80px 2% 140px;
  background: linear-gradient(to bottom, #ffffff, #f4f4f4, #eaeaea);
  margin-top:50px;
}

.features-hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}
.features-hero-text h1 {
  font-size: 6rem;
  font-weight:100;
  letter-spacing:3px;
  color: rgb(38, 82, 171); /* Logo blue */
  font-family: 'Quintessential', cursive;
  margin-bottom:0px;
}
.features-hero-text p {
  font-family: 'Overlock', sans-serif;
  font-size:1.8rem;
  color: #292929;
  
  line-height: 1.8;
  letter-spacing: 3px;
}
.features-hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.features-hero-image img {
  max-width: 100%;
  height: auto;
}
/* ===== Features Section ===== */
.features-section {
  padding: 100px 5%;
  background: #ffffff;
  text-align: center;
}

.features-section h2 {
  font-size:7rem;
  color: rgb(38, 82, 171); /* Logo blue */
  font-family: 'Quintessential', cursive;
  margin-bottom: 60px;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Grid Layout */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

/* Feature Card */
.feature-box {
  background: #f7f7f7;
  border: 1px solid rgba(38, 82, 171, 0.2);
  padding: 40px 25px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

/* Hover effect */
.feature-box:hover {
  transform: translateY(-12px);
  box-shadow: 0 10px 25px rgba(38, 82, 171, 0.25);
}

/* Icon */
.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

/* Title */
.feature-box h3 {
  color: rgb(38, 82, 171);
  font-family: 'Quintessential';
  font-size: 1.7rem;
  margin-bottom: 12px;
  font-weight: 600;
}

/* Text */
.feature-box p {
  color: #333333;
  font-family: 'Overlock', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 1px;
}
/* ===== Device Compatibility ===== */
/* ===== Device Compatibility ===== */
.device-compatibility {
  padding: 80px 5%;
  text-align: center;
  background: #ffffff;
}
.device-compatibility h2 {
  color: rgb(38, 82, 171); /* Logo blue */
  font-family: 'Quintessential', cursive;
  font-weight: 400;
  font-size: 6rem;
  margin-bottom: 15px;
  letter-spacing: 2px;
}
.device-compatibility p {
  color: #000000;
  margin-bottom: 40px;
  font-family: 'Overlock', sans-serif;
  font-size:2em;
  letter-spacing: 1.5px;
}
.device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}
.device-box {
  background: #dedede;
  border: 1px solid rgba(66, 91, 255, 0.4);
  padding: 30px;
  border-radius: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}
.device-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 20px rgba(66, 79, 255, 0.3);
}
.device-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 15px;
}
.device-box h3 {
  color: rgb(38, 82, 171);
  font-family: 'Quintessential';
  letter-spacing: 2px;
  font-size: 1.6rem;
  margin-top: 5px;
}
.device-box p {
  color: #222222;
  font-size:1.2rem;
  font-weight: 500;
  font-family: 'Overlock', sans-serif;
  letter-spacing: 1.5px;
  margin-top: 8px;
}

/* ===== Comparison Section ===== */
.comparison-section {
  padding: 80px 5%;
  background: #ffffff;
  text-align: center;
}
.comparison-section h2 {
  font-size:4.8rem;
  color: rgb(38, 82, 171); /* Logo blue */
  letter-spacing: 3px;
  font-family: 'Quintessential', cursive;
  font-weight: 400;
  margin-bottom: 40px;
}
.comparison-container {
  display: flex;
  
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.column {
  flex: 1;
  min-width: 280px;
  background: #b8b7b7;
  border: 1px solid rgb(38, 82, 171);
  border-radius: 12px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.column:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgb(38, 82, 171);
}
.column h3 {
  color: rgb(38, 82, 171); /* Logo blue */
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.column ul {
  list-style: none;
  padding: 0;
  text-align: left;
}
.column ul li {
  margin-bottom: 12px;
  padding-left: 1.2em;
  position: relative;
}
.column.with ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  color: #00ff88;
}
.column.without ul li::before {
  content: '✖';
  position: absolute;
  left: 0;
  color: #ff4e4e;
}

/* ===== Infinite Scrolling Strip ===== */
.infinite-strip {
  background-color: rgb(38, 82, 171); /* Logo blue */
  color: #ffffff;
  overflow: hidden;
  white-space: nowrap;
  font-weight: 600;
  font-size: 1.2rem;
  padding: 14px 0;
  border-top: 2px solid rgb(38, 82, 171);
  border-bottom: 2px solid rgb(38, 82, 171);
  position: relative;
}
.scrolling-text {
  font-family: 'Quintessential';
  letter-spacing: 2px;
  display: flex;
  animation: scrollText 15s linear infinite;
  gap: 100px;
}
.scrolling-text span {
  flex-shrink: 0;
}





@keyframes scrollText {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== Responsive Adjustments ===== */

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {

  
  .features-hero {
    flex-direction: column;
    padding: 50px ;
    background: linear-gradient(to bottom, #ffffff, #f4f4f4, #eaeaea);
    flex-direction: column-reverse;
    padding-right:50px;
    
  }

  .features-hero-text, .features-hero-image {
    max-width:80%;
  }
 

  /* ===== Hero Section ===== */
  .features-hero-image img {
  max-width: 100%;
  height: auto;
  
  margin-right:90px;
  
}


.features-hero-text {
  flex: 1;
  min-width: 300px;
  max-width: 50%;
}
.features-hero-text h1 {
  font-size:11vw;
  font-weight:100;
  letter-spacing:3px;
  text-align: center;
  color: rgb(38, 82, 171);  
  font-family: 'Quintessential', cursive;
  margin-bottom:0px;
}
.features-hero-text p {
  font-size:7vw;
  color: #000000;
  line-height: 1.8;
  letter-spacing: 2px;
  text-align: center;
}
.features-hero-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.features-section {
  padding: 60px 5%;
  
  text-align: center;

}
.features-section h2 {
  font-size: 3rem;
  color: rgb(38, 82, 171);
  font-family: 'Quintessential', cursive;
  margin-bottom: 10px;
  letter-spacing: 2px;
  font-weight: 400;
}


.device-compatibility h2 {
  color: rgb(38, 82, 171);
  font-family: 'Quintessential', cursive;
  font-weight: 400;
  font-size: 3rem;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.device-compatibility p {
  color: #1a1919;
  margin-bottom: 30px;
  font-size: 1.3rem;
  text-align: left;
  letter-spacing: 2px;
}

.comparison-section h2 {
  font-size:3rem;
  color: rgb(38, 82, 171);
  letter-spacing: 3px;
  font-family: 'Quintessential', cursive;
  font-weight: 400;
  margin-bottom: 40px;
}


.column {
  flex: 1;
  min-width:250px;
  background: #abaaaa;
  border: 1px solid rgb(38, 82, 171);
  border-radius: 12px;
  padding:25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column h3 {
  color: rgb(38, 82, 171);
  font-size: 2rem;
  margin-bottom: 20px;
}
}

