/* ===== BASE STYLES & VARIABLES ===== */
:root {
  --primary: #116a81;
  --secondary: #000000;
  --light: #ffffff;
  --gray: #f8f9fa;
  --dark-gray: #333333;
  --medium-gray: #666666;
  --transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.12);
  --border-radius: 10px;
  --border-radius-lg: 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--light);
  color: var(--secondary);
  line-height: 1.7;
  overflow-x: hidden;
  transition: opacity 0.3s ease;
}

body.fade-out {
  opacity: 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5 {
  /* font-family: "Playfair Display", serif; */

  font-family: "AR One Sans", sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 3.8rem;
  color: var(--primary);
}

h2 {
  font-size: 2.5rem;
  position: relative;
  display: inline-block;
}

h2:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  transition: var(--transition);
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--medium-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.section {
  padding: 100px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  display: inline-block;
}

.section-title h2:after {
  left: 50%;
  transform: translateX(-50%);
}

.section-title p {
  max-width: 700px;
  margin: 2rem auto 0;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  background-color: var(--primary);
  color: var(--light);
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1.1rem;
  border: 2px solid var(--primary);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--light);
  transition: var(--transition);
  z-index: -1;
}

.btn:hover:before {
  left: 0;
}

.btn:hover {
  color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  margin-left: 15px;
}

.btn-outline:before {
  background-color: var(--primary);
}

.btn-outline:hover {
  color: var(--light);
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--light);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

header.scrolled {
  padding: 2px 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  transition: var(--transition);
}

header.scrolled .nav-container {
  padding: 0;
}

.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 9vw;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin-left: 2.5rem;
  position: relative;
}

.nav-links a {
  font-weight: 600;
  font-size: 1.1rem;
  padding: 5px 0;
  position: relative;
}

.nav-links a:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover:after,
.nav-links a.active:after {
  width: 100%;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
  color: var(--primary);
  z-index: 1001;
}

/* ===== HERO SECTION ===== */
.hero {
  height: 55rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(245, 245, 245, 0.6) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-image: url(assets/hero-bg.jpg);
  background-size: cover;
  background-position: center;
  clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
  z-index: -1;
}

.hero-content {
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards 0.8s;
}

.hero-content h1 {
  margin-bottom: 1.8rem;
  font-size: 4rem;
  line-height: 1.1;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: var(--dark-gray);
}
/* Stats Section */
.stats-section {
  background-color: white;
  color: black;
  padding: 80px 0;
  text-align: center;
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.stat-item {
  padding: 20px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.stat-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
}

.stat-label {
  font-size: 18px;
  letter-spacing: 1px;
}

/* ===== LEATHER SCROLLING SECTION ===== */
.leather-scroll-section {
  padding: 60px 0;
  background-color: var(--light);
  overflow: hidden;
}

.scroll-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  height: 450px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow);
}

.scroll-wrapper {
  display: flex;
  width: 200%;
  height: 100%;
  animation: scrollRight 35s linear infinite;
}

.scroll-item {
  flex: 0 0 25%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}

.scroll-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8));
  transition: var(--transition);
}

.scroll-item:hover:before {
  background: linear-gradient(to bottom, transparent 20%, rgba(0, 0, 0, 0.9));
}

.scroll-item:hover {
  transform: scale(1.03);
}

.scroll-item-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  color: var(--light);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.scroll-item:hover .scroll-item-content {
  transform: translateY(0);
  opacity: 1;
}

.scroll-item:nth-child(1) {
  background-image: url(assets/s-15.jpg);
}

.scroll-item:nth-child(2) {
  background-image: url(assets/s-16.jpg);
}

.scroll-item:nth-child(3) {
  background-image: url(assets/s-17.jpg);
}

.scroll-item:nth-child(4) {
  background-image: url(assets/s-18.jpg);
}
.scroll-item:nth-child(5) {
  background-image: url(assets/s-19.jpg);
}

/* ===== DIFFERENTIATORS SECTION ===== */
.differentiators {
  padding: 40px 0;
  background-color: var(--gray);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.diff-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 10px 25px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(40px);
}

.diff-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.diff-card:hover:before {
  transform: scaleX(1);
}

.diff-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.diff-icon {
  font-size: 3.5rem;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.diff-card h3 {
  margin-bottom: 1.2rem;
  color: var(--primary);
}

/* ===== SERVICES & FAQ SECTION ===== */
.services-faq {
  padding: 120px 0;
}

.services-faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item {
  background-color: var(--light);
  border-radius: var(--border-radius);
  padding: 40px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateX(-30px);
  cursor: pointer;
}

.service-item:hover {
  transform: translateX(-10px);
  box-shadow: var(--shadow-hover);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  margin-bottom: 1rem;
}

/* FAQ Styles */
.faq-section h2 {
  margin-bottom: 3rem;
}

.faq-item {
  background-color: var(--light);
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  opacity: 0;
  transform: translateX(30px);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.1rem;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(17, 106, 129, 0.05);
}

.faq-question.active {
  background-color: rgba(17, 106, 129, 0.08);
  color: var(--primary);
}

.faq-icon {
  font-size: 1.2rem;
  transition: var(--transition);
}

.faq-question.active .faq-icon {
  transform: rotate(45deg);
  color: var(--primary);
}

.faq-answer {
  padding: 0 30px;
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer.open {
  padding: 0 30px 25px;
  max-height: 500px;
}

/* Payment & Shipping Section */
.payment-shipping-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #fdfeff);
}

/* Payment & Shipping Container */
.ps-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.ps-box {
  flex: 1;
  min-width: 300px;
  background-color: white;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.09);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(40px);
}

.ps-box.visible {
  opacity: 1;
  transform: translateY(0);
}

.ps-box:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.ps-header {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f0e6d6;
}

.ps-icon {
  width: 60px;
  height: 60px;
  background-color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  color: white;
  font-size: 24px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.ps-box:hover .ps-icon {
  background-color: white;
  color: var(--primary);
  border: 1px solid var(--primary);
  transform: scale(1.1);
}

.ps-header h3 {
  font-size: 26px;
  color: #2c2416;
}

/* Payment & Shipping Logos Grid */
.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.logo-item {
  background-color: #f9f5f0;
  border-radius: 10px;
  padding: 25px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  min-height: 120px;
}

.logo-item:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(193, 154, 107, 0.1),
    transparent
  );
  transition: 0.5s;
}

.logo-item:hover:before {
  left: 100%;
}

.logo-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background-color: white;
}

.logo-img {
  max-width: 100%;
  max-height: 60px;
  filter: grayscale(30%);
  transition: all 0.4s ease;
}

.logo-item:hover .logo-img {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.logo-name {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 14px;
  color: #5a4a30;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.logo-item:hover .logo-name {
  opacity: 1;
  transform: translateY(0);
}

/* Testimonials Section */
.testimonials-section {
  padding: 80px 0;
  background: linear-gradient(to bottom, #ffffff, #ebf2f8);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: 36px;
  color: #000000;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.section-title h2:after {
  content: "";
  position: absolute;
  width: 80px;
  height: 3px;
  background-color: var(--primary);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

/* Testimonials Container */
.testimonials-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Testimonial Card */
.testimonial-card {
  min-width: 100%;
  padding: 40px;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.testimonial-card.active {
  opacity: 1;
  transform: translateY(0);
}

.quote-icon {
  color: var(--primary);
  font-size: 28px;
  margin-bottom: 10px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.644);
  margin-bottom: 25px;
  font-style: italic;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.client-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--primary);
}

.client-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-details h4 {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.801);
  margin-bottom: 5px;
}

.client-details p {
  color: rgba(0, 0, 0, 0.562);
  font-size: 16px;
}

.client-rating {
  color: #ffc107;
  margin-top: 5px;
}

/* Navigation Buttons */
.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--primary);
  color: white;
  border: none;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.nav-btn:hover {
  background-color: #08303a;
  transform: translateY(-3px);
}

/* Indicators */
.indicators {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #d4c4b5;
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background-color: var(--primary);
}

/* Registration Details */
.registration-details {
  background: linear-gradient(to right, rgba(24, 24, 24, 0.877), #13738b);
  border-radius: 12px;
  padding: 40px;
  /* margin: 90px; */
  color: white;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 30px rgba(44, 36, 22, 0.2);
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.registration-details.visible {
  opacity: 1;
  transform: translateY(0);
}

.details-text {
  flex: 1;
  min-width: 300px;
}

.details-text h3 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #69d3ee;
}

.details-text p {
  font-size: 16px;
  line-height: 1.7;
  opacity: 0.9;
  color: #e8faff;
}

.details-button {
  padding: 15px 25px;
  background-color: #b9ab9a;
  color: #2c2416;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(193, 154, 107, 0.3);
}

.details-button:hover {
  background-color: #38342e;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(205, 227, 255, 0.4);
}
/* Footer Styles */
.footer-main {
  background-color: #124957;
  color: #f0f0f0;
  padding: 1.5rem;
  width: 100%;
  border-top: 1px solid rgba(192, 0, 0, 0.05);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Footer Top Section */
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Brand Section */
.footer-brand {
  text-align: center;
}

.footer-company-name {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 0.1rem;
}

.footer-company-tagline {
  font-size: 0.85rem;
  color: #aaaaaa;
  font-weight: 400;
  letter-spacing: 1.5px;
}

/* Contact Links Grid */
.footer-links-grid {
  display: grid;
  grid-template-columns: 3fr;
  gap: 1rem;
}

/* Contact Item */
.footer-link-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-link-icon {
  width: 18px;
  height: 18px;
  color: #d4d4d4;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-link-icon svg {
  width: 100%;
  height: 100%;
}

.footer-link-content {
  flex: 1;
}

.footer-link-label {
  font-size: 0.75rem;
  color: #aaaaaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
  display: block;
}

.footer-link-text {
  font-size: 0.9rem;
  color: #fffcfc;
  line-height: 1.4;
}

.footer-link-anchor {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-anchor:hover {
  color: #a0a0a0;
}

/* Address Formatting */
.footer-address {
  font-style: normal;
}

.footer-address-line {
  display: block;
}

/* Copyright Section */
.footer-copyright {
  text-align: center;
  padding-top: 0.5rem;
}

.footer-copyright-text {
  font-size: 0.8rem;
  color: #aaaaaa;
  letter-spacing: 0.3px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding-top: 150px;
  min-height: 80vh;
}

/* ===== SERVICES PAGE ===== */
.services-hero {
  color: var(--primary);
  text-align: center;
  padding-top: 160px;
}

.services-hero h2 {
  color: var(--primary);
}
.services-hero h2::after {
  display: none;
}

.services-detail {
  padding: 40px 0;
}

.service-category {
  margin-bottom: 100px;
}

.service-category h2 {
  margin-bottom: 3rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-detail-card {
  background-color: var(--light);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  transform: translateY(40px);
}

.service-detail-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-hover);
}

.service-detail-img {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.service-detail-content {
  padding: 30px;
}

.service-detail-content h3 {
  margin-bottom: 15px;
  color: var(--primary);
}

/* ===== ABOUT PAGE ===== */

.about-content {
  padding: 170px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-img {
  height: 630px;
  background-size: cover;
  background-position: center;
  border-radius: var(--border-radius-lg);
  opacity: 0;
  transform: translateX(-50px);
}

/* ===== CONTACT PAGE ===== */

.contact-content {
  padding: 150px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  margin-bottom: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
}

.contact-icon {
  width: 70px;
  height: 70px;
  background-color: var(--gray);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 25px;
  font-size: 1.8rem;
  color: var(--primary);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item:hover .contact-icon {
  background-color: var(--primary);
  color: var(--light);
  transform: scale(1.1);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 18px;
  margin: 15px 0;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  transition: var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(123, 212, 235, 0.3);
}

.contact-form textarea {
  height: 230px;
  resize: vertical;
}

/* ===== ANIMATIONS ===== */
@keyframes scrollRight {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .hero-bg {
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .footer-links-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 2rem;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--light);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    z-index: 1000;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links li {
    margin: 0 0 30px 0;
    width: 100%;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-bg {
    display: none;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
  }

  .diff-grid,
  .services-faq-container,
  .service-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .registration-details {
    flex-direction: column;
    text-align: center;
    gap: 25px;
  }

  .services-faq-container {
    gap: 80px;
  }

  .service-item,
  .faq-item {
    transform: translateY(30px);
  }

  .service-item:hover {
    transform: translateY(-10px);
  }

  .about-img {
    transform: translateY(30px);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  h1 {
    font-size: 2.8rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 3.2rem;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 15px;
    display: inline-block;
  }

  .scroll-container {
    height: 350px;
  }

  .testimonial-card {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 16px;
  }

  .client-info {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .stat-item {
    flex-basis: 50%;
  }

  .stat-number {
    font-size: 36px;
  }

  .diff-grid,
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-main {
    padding: 2.5rem 2rem 1.5rem;
  }

  .footer-top {
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }

  .footer-brand {
    text-align: left;
    flex: 0 0 250px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    flex: 1;
  }

  .footer-company-name {
    font-size: 2.2rem;
  }

  .page-content {
    padding-top: 120px;
  }
}

@media (max-width: 576px) {
  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .stat-item {
    flex-basis: 100%;
  }

  .scroll-container {
    height: 250px;
  }

  .diff-card,
  .service-item,
  .faq-item,
  .service-detail-card {
    padding: 30px 20px;
  }
  .registration-details {
    display: none;
    padding: 30px 25px;
  }

  .contact-item {
    flex-direction: column;
  }

  .contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

/* ===== UTILITY CLASSES ===== */
.visible {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.page {
  display: none;
  animation: fadeIn 0.8s ease forwards;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.text-primary {
  color: var(--primary);
}

.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-30 {
  margin-top: 30px;
}

.mt-50 {
  margin-top: 50px;
}
