/* Main Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #FFFFFF;
  color: #1D38FF;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

main {
  margin-top: 0;
  min-height: calc(100vh - 160px);
}

/* Common Styles */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  color: #1D38FF;
}

h1 {
  font-size: 3.5rem;
  color: #1D38FF;
}

h2 {
  font-size: 2.5rem;
  color: #1D38FF;
}

h3 {
  font-size: 1.8rem;
  color: #1D38FF;
}

p {
  color: #1D38FF;
  margin-bottom: 1rem;
}

a {
  color: #1D38FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #1D38FF 0%, #000000 100%);
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 25px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 4px 15px rgba(29, 56, 255, 0.4);
  min-height: 48px;
  min-width: 120px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  -webkit-touch-callout: none;
  position: relative;
  overflow: hidden;
  animation: slideInUp 0.8s ease-out;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover {
  background: linear-gradient(135deg, #1520CC 0%, #1a1a1a 100%);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 15px 40px rgba(29, 56, 255, 0.6);
}

.btn:hover::before {
  left: 100%;
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-outline {
  background: transparent;
  border: 2px solid #1D38FF;
  color: #1D38FF;
}

.btn-outline:hover {
  background: linear-gradient(135deg, #1D38FF 0%, #000000 100%);
  color: #FFFFFF;
  border-color: transparent;
}

/* Section Styling */
section {
  padding: 4rem 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
}

section h2 {
  text-align: center;
  margin-bottom: 3rem;
  animation: slideInDown 0.7s ease-out;
  position: relative;
}


/* About Section */
.about-section {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.8s ease-out;
}

/* Testimonials Section */
.testimonials-section {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(5px);
  animation: fadeIn 0.8s ease-out;
}

/* Staggered Card Animations */
.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }
.card:nth-child(6) { animation-delay: 0.6s; }

/* Staggered Stat Animations */
.stat:nth-child(1) { animation-delay: 0.1s; }
.stat:nth-child(2) { animation-delay: 0.2s; }
.stat:nth-child(3) { animation-delay: 0.3s; }
.stat:nth-child(4) { animation-delay: 0.4s; }

/* Staggered Testimonial Animations */
.testimonial:nth-child(1) { animation-delay: 0.1s; }
.testimonial:nth-child(2) { animation-delay: 0.2s; }
.testimonial:nth-child(3) { animation-delay: 0.3s; }
.testimonial:nth-child(4) { animation-delay: 0.4s; }

/* Stats Section */
.stats-section {
  background: rgba(220, 228, 255, 0.3) !important;
  backdrop-filter: blur(3px);
  animation: fadeIn 0.8s ease-out;
}

/* Grid Layouts */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.about-grid > div:last-child {
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-image-wrapper {
  height: 400px;
  background: #F8F9FB;
  border-radius: 15px;
  border: 2px solid #E0E7FF;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.beyond-lens-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block !important;
}

@media screen and (max-width: 900px) {
  .beyond-lens-image {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 400px;
    margin: 2rem auto 0;
    border-radius: 15px;
    order: 2;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
  }
  
  .about-grid > div:first-child {
    order: 1;
    text-align: center;
  }
  
  .about-grid > div:last-child {
    display: flex;
    justify-content: center;
    order: 3;
  }
}

@media screen and (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
  }
  
  .about-grid > div:first-child {
    order: 1;
    text-align: center;
  }
  
  .about-grid > div:last-child {
    display: flex;
    justify-content: center;
    order: 2;
    min-height: auto;
  }
  
  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }
}

@media screen and (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
  }
  .about-grid > div:first-child {
    text-align: center;
    max-width: 100%;
    order: 1;
  }
  .about-grid > div:last-child {
    display: flex !important;
    justify-content: center;
    order: 2;
    min-height: auto;
  }
  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    max-height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
  }

  .about-image-wrapper {
    height: 280px;
    order: 2;
  }

  .about-content {
    order: 1;
    text-align: center;
  }

  .about-content h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    line-height: 1.3;
  }

  .about-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666666;
    margin-bottom: 0.8rem;
  }

  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    max-height: 280px;
  }
}

.card {
  background: #F8F9FB;
  backdrop-filter: blur(10px);
  border: 2px solid #E0E7FF;
  border-radius: 15px;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  flex-direction: column;
  animation: slideInUp 0.6s ease-out;
}

.card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: #2549FF;
  box-shadow: 0 25px 50px rgba(37, 73, 255, 0.2);
  background: #FFFFFF;
  animation: glow 2s ease-in-out infinite;
}

.card h3 {
  color: #1D38FF;
  margin-bottom: 1rem;
}

.card p {
  flex-grow: 1;
  margin-bottom: 1.5rem;
  color: #1D38FF;
}

/* Hero Section */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(240, 244, 255, 0.7) 0%, rgba(255, 255, 255, 0.7) 100%);
  background-attachment: fixed;
}



.hero-content {
  z-index: 1;
  max-width: 800px;
  position: relative;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  animation: slideInDown 0.8s ease-out;
  color: #1D38FF;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  animation: slideInUp 0.8s ease-out 0.2s both;
  color: #1D38FF;
}

.hero .btn {
  animation: slideInUp 0.8s ease-out 0.4s both;
}

/* Responsive Images */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  min-height: 44px;
  min-width: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Elements - Touch Friendly */
button, 
input[type="button"],
input[type="submit"] {
  min-height: 48px;
  min-width: 48px;
  padding: 12px 16px;
  font-size: 16px;
}

/* Animations */
@keyframes slideInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleHover {
  to {
    transform: scale(1.05);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(37, 73, 255, 0.3);
  }
  50% {
    box-shadow: 0 0 20px rgba(37, 73, 255, 0.6);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
  }
  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes gradientShift {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* Stats Section */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.stat {
  text-align: center;
  padding: 2rem;
  animation: scaleIn 0.6s ease-out;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.stat:hover {
  animation: float 3s ease-in-out infinite;
  transform: scale(1.08);
}

.stat h3 {
  font-size: 2.5rem;
  color: #1D38FF;
  margin-bottom: 0.5rem;
  animation: slideInDown 0.7s ease-out 0.1s both;
}

.stat p {
  color: #1D38FF;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

/* Testimonials */
.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin: 3rem 0;
}

@media screen and (max-width: 1024px) {
  .testimonials-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2.5rem 0;
  }
}

@media screen and (max-width: 768px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
  }
  .testimonial {
    padding: 1.5rem;
  }
}

/* Testimonials show as full card style on large devices */
@media screen and (min-width: 1025px) {
  .testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: 3rem 0;
  }
  .testimonial {
    background: #F8F9FB;
    backdrop-filter: blur(10px);
    border: 2px solid #E0E7FF;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 20px rgba(37, 73, 255, 0.08);
    display: flex;
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .testimonials-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem 0;
    padding: 0;
    display: grid;
  }
  .testimonials-wrapper .testimonial {
    margin-bottom: 0;
    padding: 1.2rem;
    flex: none;
  }
  .carousel-dots {
    display: none !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    margin: 1.2rem 0;
    display: flex;
    flex-direction: column;
  }

  .about-grid > div:first-child {
    text-align: center;
  }

  .about-grid > div:last-child {
    display: flex;
    justify-content: center;
  }

  .about-grid h2 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }

  .about-grid p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    max-height: 250px;
  }

  .hero {
    height: auto;
    padding: 1.5rem 0.75rem;
    min-height: auto;
    margin-top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.2rem;
  }

@media screen and (max-width: 480px) {
  .testimonials-wrapper {
    gap: 0.8rem;
    margin: 1rem 0 2rem 0;
    padding: 0 0.75rem 0.75rem 0.75rem;
  }
  .testimonials-wrapper .testimonial {
    flex: 0 0 calc(100vw - 2.5rem);
    padding: 1rem;
  }
  .testimonial p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  .author-info h4 {
    font-size: 0.95rem;
  }
  .author-info p {
    font-size: 0.8rem;
  }
}

.testimonial {
  background: #F8F9FB;
  backdrop-filter: blur(10px);
  border: 2px solid #E0E7FF;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 0;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 8px 20px rgba(37, 73, 255, 0.08);
  display: flex;
  flex-direction: column;
  animation: slideInUp 0.7s ease-out;
}

.testimonial:hover {
  border-color: #2549FF;
  transform: translateY(-8px) scale(1.01);
  background: #FFFFFF;
  box-shadow: 0 20px 50px rgba(37, 73, 255, 0.2);
  animation: glow 2s ease-in-out infinite;
}

.testimonial p {
  font-style: italic;
  margin-bottom: 1.2rem;
  color: #666666;
  font-size: 0.95rem;
  line-height: 1.5;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.author-info h4 {
  color: #1D38FF;
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

.author-info p {
  margin: 0;
  color: #999999;
  font-size: 0.85rem;
  font-style: normal;
}

.carousel-dots {
  display: none;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E0E7FF;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: #1D38FF;
  width: 30px;
  border-radius: 6px;
}

/* Responsive */
@media screen and (max-width: 1024px) {
  section {
    padding: 3rem 0;
  }

  .grid {
    gap: 1.5rem;
  }

  .card {
    padding: 1.5rem;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2.2rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .stat h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  main {
    margin-top: 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.4rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
  }

  .about-image-wrapper {
    height: 350px;
    order: 2;
  }

  .about-content {
    order: 1;
    text-align: center;
  }

  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
  }

  .hero {
    height: auto;
    padding: 2rem 1rem;
    min-height: auto;
    margin-top: 0;
    width: 100%;
    position: relative;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 1rem;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .container {
    padding: 0 1rem;
    max-width: 100%;
  }

  section {
    padding: 2rem 1rem;
  }

  section h2 {
    margin-bottom: 2rem;
    text-align: center;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0;
  }

  .card {
    padding: 1.5rem;
    border-radius: 12px;
  }

  .card h3 {
    font-size: 1.2rem;
  }

  .card p {
    font-size: 0.95rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
  }

  .stat {
    padding: 1.5rem 1rem;
  }

  .stat h3 {
    font-size: 1.8rem;
  }

  .stat p {
    font-size: 0.85rem;
  }

  .testimonial {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .testimonial-author {
    gap: 0.8rem;
  }

  .author-info h4 {
    font-size: 0.95rem;
  }

  .testimonial-author > div:first-child {
    flex-shrink: 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .btn {
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
  }
}

/* Ultra-Small Devices (320px - 360px) */
@media screen and (max-width: 360px) {
  main {
    margin-top: 0;
  }

  h1 {
    font-size: 1.5rem;
    line-height: 1.2;
  }

  h2 {
    font-size: 1.2rem;
  }

  h3 {
    font-size: 1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
  }

  .about-grid > div:last-child {
    display: flex;
    justify-content: center;
    visibility: visible;
  }

  .about-grid > div:first-child {
    width: 100%;
    text-align: center;
    padding: 0 0.5rem;
  }

  .about-grid h2 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .about-grid p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 0.8rem;
  }

  .about-grid .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.3rem;
    display: inline-block;
    margin-top: 0.5rem;
  }

  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 200px;
  }

  .hero {
    height: auto;
    padding: 1.2rem 0.5rem;
    min-height: auto;
    margin-top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 0.25rem;
  }

  .hero h1 {
    font-size: 1.3rem;
    line-height: 1.2;
    margin-bottom: 0.6rem;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .container {
    padding: 0 0.75rem;
  }

  section {
    padding: 1.5rem 0.75rem;
  }

  section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.2rem;
    border-radius: 10px;
  }

  .card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .stat {
    padding: 1rem;
  }

  .stat h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .stat p {
    font-size: 0.8rem;
    letter-spacing: 0.3px;
  }

  .testimonial {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .testimonial p {
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
  }

  .testimonial-author {
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .author-info h4 {
    font-size: 0.85rem;
  }

  .author-info p {
    font-size: 0.75rem;
  }

  .testimonials-wrapper {
    display: flex;
    scroll-behavior: smooth;
    overflow-x: auto;
    gap: 1.5rem;
    margin: 2rem 0;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
  }

  .testimonials-wrapper::-webkit-scrollbar {
    height: 4px;
  }

  .testimonials-wrapper::-webkit-scrollbar-track {
    background: #E0E7FF;
    border-radius: 10px;
  }

  .testimonials-wrapper::-webkit-scrollbar-thumb {
    background: #1D38FF;
    border-radius: 10px;
  }

  .testimonial {
    flex: 0 0 100%;
    scroll-snap-align: start;
    padding: 1.2rem;
  }

  .carousel-dots {
    display: flex;
  }

  .testimonial p {
    font-size: 0.9rem;
  }

  .testimonial-author {
    gap: 0.8rem;
  }

  .author-info h4 {
    font-size: 0.85rem;
  }

  .author-info p {
    font-size: 0.75rem;
  }

  .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Small Devices (361px - 375px) */
@media screen and (max-width: 375px) and (min-width: 361px) {
  main {
    margin-top: 0;
  }

  h1 {
    font-size: 1.6rem;
  }

  h2 {
    font-size: 1.3rem;
  }

  h3 {
    font-size: 1.1rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    display: flex;
    flex-direction: column;
  }

  .about-grid > div:last-child {
    display: flex;
    justify-content: center;
    visibility: visible;
  }

  .about-grid > div:first-child {
    width: 100%;
    text-align: center;
    padding: 0 0.5rem;
  }

  .about-grid h2 {
    font-size: 1.35rem;
    margin-bottom: 0.9rem;
    line-height: 1.2;
    font-weight: 700;
  }

  .about-grid p {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #666666;
    margin-bottom: 0.8rem;
  }

  .about-grid .btn {
    font-size: 0.92rem;
    padding: 0.77rem 1.4rem;
    display: inline-block;
    margin-top: 0.5rem;
  }

  .beyond-lens-image {
    display: block !important;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 200px;
  }

  .hero {
    height: auto;
    padding: 2.8rem 0.8rem 1.8rem 0.8rem;
    min-height: auto;
  }

  .hero h1 {
    font-size: 1.4rem;
    line-height: 1.25;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.1rem;
  }

  .container {
    padding: 0 0.8rem;
  }

  section {
    padding: 1.5rem 0.8rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.2rem;
    border-radius: 10px;
  }

  .card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.7rem;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.45;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    margin: 1.5rem 0;
  }

  .stat {
    padding: 1rem 0.5rem;
  }

  .stat h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }

  .stat p {
    font-size: 0.75rem;
  }

  .stat p {
    font-size: 0.8rem;
  }

  .btn {
    padding: 0.8rem 1.4rem;
    font-size: 0.9rem;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 480px) {
  main {
    margin-top: 0;
  }

  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-grid > div:last-child {
    display: none !important;
    visibility: hidden;
  }

  .about-grid > div:first-child {
    width: 100%;
  }

  .hero {
    height: auto;
    padding: 1.5rem 0.75rem;
    min-height: auto;
    overflow: hidden;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 0.5rem;
    position: relative;
    z-index: 1;
  }

  .hero h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .container {
    padding: 0 0.8rem;
  }

  section {
    padding: 2rem 0.8rem;
  }

  section h2 {
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }

  .grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .card {
    padding: 1.2rem;
    border-radius: 10px;
  }

  .card h3 {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .card p {
    font-size: 0.9rem;
    line-height: 1.5;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .stat {
    padding: 1rem;
  }

  .stat h3 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .stat p {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }

  .testimonial {
    padding: 1.2rem;
    margin-bottom: 1rem;
    border-radius: 10px;
  }

  .testimonial p {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }

  .testimonial-author {
    gap: 0.8rem;
    flex-wrap: wrap;
  }

  .author-info h4 {
    font-size: 0.9rem;
  }

  .author-info p {
    font-size: 0.8rem;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Landscape Orientation - Small Devices */
@media screen and (max-height: 500px) and (orientation: landscape) {
  main {\n    margin-top: 50px;\n  }\n\n  .hero {\n    min-height: 100vh;\n    padding: 1rem;\n  }\n\n  h1 {\n    font-size: 1.4rem;\n  }\n\n  h2 {\n    font-size: 1.1rem;\n  }\n\n  section {\n    padding: 1rem 0;\n  }\n\n  .grid {\n    grid-template-columns: repeat(2, 1fr);\n    gap: 0.8rem;\n  }\n\n  .card {\n    padding: 0.8rem;\n  }\n\n  .btn {\n    padding: 0.6rem 1rem;\n    font-size: 0.75rem;\n  }\n}\n\n/* High DPI / Retina Displays */\n@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {\n  * {\n    -webkit-font-smoothing: antialiased;\n    -moz-osx-font-smoothing: grayscale;\n  }\n\n  img {\n    image-rendering: -webkit-optimize-contrast;\n  }\n}\n\n/* 360x640 Galaxy Note 1 Specific */\n@media screen and (max-width: 360px) and (max-height: 640px) {\n  main {\n    margin-top: 55px;\n  }\n\n  .hero {\n    min-height: 45vh;\n    padding: 1.5rem 0.6rem;\n  }\n\n  .container {\n    padding: 0 0.6rem;\n  }\n\n  .grid {\n    gap: 0.8rem;\n  }\n\n  .card {\n    padding: 0.9rem;\n  }\n}\n\n/* 375x667 iPhone SE Specific */\n@media screen and (max-width: 375px) and (max-height: 667px) and (orientation: portrait) {\n  h1 {\n    font-size: 1.5rem;\n    line-height: 1.2;\n  }\n\n  h2 {\n    font-size: 1.2rem;\n  }\n\n  .hero {\n    min-height: 40vh;\n  }\n}
