
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;900&family=Manrope:wght@400;500;600&family=JetBrains+Mono:wght@500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --oxford-blue: #002147;
  --academic-cream: #F9F7F2;
  --crimson-seal: #B91C1C;
  --turnitin-green: #059669;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
}

body {
  font-family: 'Manrope', sans-serif;
  background: var(--academic-cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Premium grain texture with subtle animation */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  animation: grain-shift 8s infinite alternate;
}

@keyframes grain-shift {
  0%, 100% { opacity: 0.03; }
  50% { opacity: 0.05; }
}

html {
  scroll-behavior: smooth;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

/* Typography with entrance animation */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3rem;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--oxford-blue) 0%, #003366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 2.5rem;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--crimson-seal), transparent);
  opacity: 0;
  transition: opacity 0.5s ease;
}

h2:hover::after {
  opacity: 1;
}

h3 {
  font-size: 1.875rem;
}

@media (min-width: 768px) {
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 3rem;
  }
}

/* Top Bar with Enhanced Blinking */
.top-bar {
  background: linear-gradient(135deg, var(--oxford-blue) 0%, #003a6b 100%);
  color: white;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 20px rgba(0, 33, 71, 0.15);
}

.top-bar .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
  }
}

.top-bar-content {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar-content svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  animation: bounce-subtle 3s ease-in-out infinite;
}

@keyframes bounce-subtle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Enhanced Blinking office address */
.office-address {
  animation: pulse-glow-premium 2s ease-in-out infinite;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.office-address::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

@keyframes pulse-glow-premium {
  0%, 100% {
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4),
                0 0 30px rgba(255, 255, 255, 0.2);
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.6),
                0 0 50px rgba(255, 255, 255, 0.3);
    transform: scale(1.02);
  }
}

.top-bar a {
  color: white;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.top-bar a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--academic-cream);
  transition: width 0.3s ease;
}

.top-bar a:hover {
  color: var(--academic-cream);
  transform: translateY(-1px);
}

.top-bar a:hover::after {
  width: 100%;
}

.whatsapp-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.whatsapp-number {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.813rem;
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.whatsapp-number:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

/* Premium Navigation with Glass Effect */
.navbar {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.navbar:hover {
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--oxford-blue);
  text-decoration: none;
  letter-spacing: -0.02em;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--crimson-seal), var(--oxford-blue));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
  transform: translateY(-2px);
  text-shadow: 0 2px 10px rgba(0, 33, 71, 0.2);
}

.logo:hover::after {
  width: 100%;
}

.nav-menu {
  display: none;
  list-style: none;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .nav-menu {
    display: flex;
  }
}

.nav-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  padding: 0.5rem 0;
}

.nav-menu a::before {
  content: '';
  position: absolute;
  top: 50%;
  left: -10px;
  width: 4px;
  height: 4px;
  background: var(--crimson-seal);
  border-radius: 50%;
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: all 0.3s ease;
}

.nav-menu a:hover::before,
.nav-menu a.active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--oxford-blue);
  transform: translateY(-2px);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--oxford-blue), var(--crimson-seal));
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  color: var(--oxford-blue);
  cursor: pointer;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.mobile-menu-btn:hover {
  transform: rotate(90deg) scale(1.1);
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

.mobile-menu-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.mobile-menu {
  display: none;
  padding: 1rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mobile-menu.active {
  display: block;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.mobile-menu a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 33, 71, 0.05), transparent);
  transition: left 0.5s ease;
}

.mobile-menu a:hover::before {
  left: 100%;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--oxford-blue);
  background: rgba(0, 33, 71, 0.05);
  transform: translateX(5px);
}

/* Premium Buttons with Ripple Effect */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--oxford-blue) 0%, #003a6b 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(0, 33, 71, 0.2);
}

.btn-primary:hover {
  box-shadow: 0 15px 40px rgba(0, 33, 71, 0.3);
  transform: translateY(-3px);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-secondary {
  background: white;
  color: var(--oxford-blue);
  border: 2px solid var(--oxford-blue);
  position: relative;
}

.btn-secondary::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: var(--oxford-blue);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-secondary:hover {
  color: white;
}

.btn-secondary:hover::after {
  width: 100%;
}

.btn-cta {
  background: linear-gradient(135deg, var(--crimson-seal) 0%, #dc2626 100%);
  color: white;
  padding: 1rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  box-shadow: 0 20px 50px rgba(185, 28, 28, 0.3);
  position: relative;
}

.btn-cta::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.btn-cta:hover {
  box-shadow: 0 25px 60px rgba(185, 28, 28, 0.4);
  transform: translateY(-3px) scale(1.02);
}

/* Hero Section with Parallax */
.hero {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }
}

.hero h1 {
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  background: rgba(5, 150, 105, 0.1);
  border: 2px solid var(--turnitin-green);
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 0.8s ease 0.4s both;
  transition: all 0.3s ease;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.1), transparent);
  animation: slide-badge 3s infinite;
}

@keyframes slide-badge {
  0% { left: -100%; }
  100% { left: 100%; }
}

.trust-badge:hover {
  background: rgba(5, 150, 105, 0.15);
  transform: scale(1.02);
  box-shadow: 0 10px 30px rgba(5, 150, 105, 0.2);
}

.trust-badge svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--turnitin-green);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  animation: fadeInUp 0.8s ease 0.6s both;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  animation: fadeInRight 0.8s ease 0.4s both;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero img:hover {
  transform: scale(1.03) rotate(1deg);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

/* Sections with Stagger Animation */
.section {
  padding: 6rem 0;
  position: relative;
  z-index: 10;
}

.section-white {
  background: white;
}

.section-cream {
  background: var(--academic-cream);
}

.section-dark {
  background: linear-gradient(135deg, var(--oxford-blue) 0%, #003a6b 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-header h2 {
  color: var(--oxford-blue);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.section-dark .section-header h2 {
  color: white;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 48rem;
  margin: 0 auto;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.9);
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Premium Cards with 3D Effect */
.card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 33, 71, 0.02) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(0, 33, 71, 0.1);
}

.card-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, var(--oxford-blue) 0%, #003a6b 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.card-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: rotate(45deg);
  transition: all 0.6s ease;
}

.card:hover .card-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 15px 40px rgba(0, 33, 71, 0.3);
}

.card:hover .card-icon::before {
  top: 100%;
  left: 100%;
}

.card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: white;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.card:hover .card-icon svg {
  transform: scale(1.1) rotate(-5deg);
}

.card h3 {
  color: var(--oxford-blue);
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.card:hover h3 {
  color: var(--crimson-seal);
}

.card p {
  color: var(--text-secondary);
  line-height: 1.8;
}

/* Premium Stats with Counter Animation */
.stats {
  text-align: center;
  transition: transform 0.3s ease;
}

.stats:hover {
  transform: translateY(-5px);
}

.stat-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: countUp 2s ease-out;
}

@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.stat-label {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Footer with Hover Effects */
.footer {
  background: linear-gradient(135deg, var(--oxford-blue) 0%, #001a33 100%);
  color: white;
  padding: 4rem 0 2rem;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.footer h3::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--crimson-seal);
}

.footer h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.footer ul li:hover {
  transform: translateX(5px);
}

.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  position: relative;
}

.footer a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--crimson-seal);
  transition: width 0.3s ease;
}

.footer a:hover {
  color: white;
}

.footer a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-links a {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--crimson-seal);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.4s ease;
}

.social-links a:hover::before {
  transform: scale(1);
}

.social-links a:hover {
  transform: translateY(-5px) rotate(360deg);
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.4);
}

.social-links svg {
  width: 1.25rem;
  height: 1.25rem;
  position: relative;
  z-index: 1;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

/* WhatsApp Floating Button - Ultra Premium */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 40;
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, #25D366 0%, #20ba5a 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: pulse-ring-premium 2s infinite;
}

@keyframes pulse-ring-premium {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

.whatsapp-float:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
  width: 2.5rem;
  height: 2.5rem;
  color: white;
  position: relative;
  z-index: 1;
  animation: wiggle 1s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  75% { transform: rotate(10deg); }
}

.whatsapp-tooltip {
  position: absolute;
  top: 50%;
  right: 5rem;
  transform: translateY(-50%);
  background: var(--oxford-blue);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -8px;
  transform: translateY(-50%);
  border: 8px solid transparent;
  border-left-color: var(--oxford-blue);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  right: 5.5rem;
}

/* Contact Form - Ultra Premium */
.contact-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--oxford-blue);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.form-label .required {
  color: var(--crimson-seal);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: white;
  border: 2px solid #E5E7EB;
  border-radius: 0.75rem;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--oxford-blue);
  box-shadow: 0 0 0 4px rgba(0, 33, 71, 0.1),
              0 10px 30px rgba(0, 33, 71, 0.05);
  transform: translateY(-2px);
}

.form-input:focus + .form-label,
.form-select:focus + .form-label,
.form-textarea:focus + .form-label {
  color: var(--oxford-blue);
}

.form-textarea {
  resize: vertical;
  min-height: 150px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  font-style: italic;
}

.checkbox-group {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: background 0.3s ease;
}

.checkbox-group:hover {
  background: rgba(0, 33, 71, 0.02);
}

.checkbox-group input {
  margin-top: 0.25rem;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: var(--oxford-blue);
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  cursor: pointer;
}

.checkbox-group a {
  color: var(--oxford-blue);
  font-weight: 600;
  text-decoration: none;
  position: relative;
}

.checkbox-group a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--oxford-blue);
  transition: width 0.3s ease;
}

.checkbox-group a:hover::after {
  width: 100%;
}

.contact-info-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.contact-info-card:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.contact-info-card h3 {
  font-size: 1.5rem;
  color: var(--oxford-blue);
  margin-bottom: 1.5rem;
}

.contact-method {
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.contact-method:hover {
  background: rgba(0, 33, 71, 0.03);
  transform: translateX(5px);
}

.contact-method-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.contact-method-header svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--oxford-blue);
  transition: transform 0.3s ease;
}

.contact-method:hover .contact-method-header svg {
  transform: scale(1.2) rotate(5deg);
}

.contact-method-header h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--oxford-blue);
}

.contact-method p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: var(--crimson-seal);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-method a:hover {
  color: var(--oxford-blue);
  transform: translateX(3px);
}

/* Legal Pages */
.legal-content {
  max-width: 56rem;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.5rem;
  color: var(--oxford-blue);
  margin-bottom: 1rem;
  margin-top: 2rem;
  position: relative;
  padding-left: 1rem;
}

.legal-content h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--crimson-seal);
  border-radius: 2px;
}

.legal-content h3 {
  font-size: 1.125rem;
  color: var(--oxford-blue);
  margin-bottom: 0.5rem;
  margin-top: 1rem;
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

.legal-content ul {
  margin: 1rem 0;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
  line-height: 1.8;
}

/* Pricing Cards - Ultra Premium */
.pricing-card {
  background: white;
  padding: 2.5rem;
  border-radius: 1.25rem;
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 33, 71, 0.03) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover::before {
  opacity: 1;
}

.pricing-card:hover {
  border-color: var(--oxford-blue);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.15);
  transform: translateY(-10px) scale(1.02);
}

.pricing-card.popular {
  border-color: var(--crimson-seal);
  background: linear-gradient(135deg, white 0%, rgba(185, 28, 28, 0.02) 100%);
}

.pricing-card.popular::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--crimson-seal), #dc2626);
}

.popular-badge {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--crimson-seal), #dc2626);
  color: white;
  padding: 0.35rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(185, 28, 28, 0.3);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-5px); }
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.pricing-icon {
  width: 4.5rem;
  height: 4.5rem;
  background: linear-gradient(135deg, var(--oxford-blue), #003a6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover .pricing-icon {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(0, 33, 71, 0.3);
}

.pricing-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: white;
}

.pricing-card h3 {
  font-size: 1.75rem;
  color: var(--oxford-blue);
  margin-bottom: 0.5rem;
  transition: transform 0.3s ease;
}

.pricing-card:hover h3 {
  transform: scale(1.05);
}

.pricing-description {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.pricing-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--oxford-blue), var(--crimson-seal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform 0.3s ease;
}

.pricing-card:hover .pricing-amount {
  transform: scale(1.1);
}

.pricing-unit {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.pricing-deadline {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--crimson-seal);
  margin-top: 0.5rem;
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(185, 28, 28, 0.1);
  border-radius: 1rem;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
}

.pricing-features li {
  display: flex;
  align-items: start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
  padding: 0.5rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.pricing-features li:hover {
  background: rgba(0, 33, 71, 0.03);
  transform: translateX(5px);
}

.pricing-features svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--turnitin-green);
  flex-shrink: 0;
  margin-top: 0.125rem;
  transition: transform 0.3s ease;
}

.pricing-features li:hover svg {
  transform: scale(1.2) rotate(10deg);
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 1rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.hidden {
  display: none;
}

/* Responsive adjustments */
@media (max-width: 767px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  .section {
    padding: 3rem 0;
  }
  .hero {
    padding: 3rem 0;
  }
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
    width: 4rem;
    height: 4rem;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* Loading Animation for Page Elements */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-in;
}

/* Smooth Scroll Snap for Sections */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Selection Color */
::selection {
  background: var(--oxford-blue);
  color: white;
}

::-moz-selection {
  background: var(--oxford-blue);
  color: white;
}

/* Trusted Logos Section */
.trusted-logos {
  text-align: center;
  margin-top: 30px;
}

.trusted-logos h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.logo-scroll {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
}

.logo-scroll img {
  height: 80px; /* Increased logo size */
  margin-right: 40px; /* Increased space between logos */
  object-fit: contain; /* Ensure images don't stretch */
  animation: scroll-logos 15s linear infinite;
}

@keyframes scroll-logos {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Mobile View - Ensure logos scroll smoothly and are of equal size */
@media (max-width: 768px) {
  .logo-scroll img {
    height: 60px; /* Resize logos for mobile */
    margin-right: 20px; /* Decrease space between logos */
  }

  .logo-scroll {
    animation: scroll-logos-mobile 20s linear infinite; /* Slower scroll on mobile for better visibility */
  }
}

@keyframes scroll-logos-mobile {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}



/* Packages Grid */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-2xl);
  margin-bottom: var(--spacing-2xl);
}

.pricing-package {
  background-color: var(--bg-white);
  border-radius: 1.5rem;
  padding: var(--spacing-2xl);
  box-shadow: var(--shadow-md);
  transition: var(--transition-medium);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.pricing-package:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pricing-package.popular {
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-lg);
  transform: scale(1.05);
}

.pricing-package.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--bg-white);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.package-header {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.package-title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--text-dark);
  margin-bottom: var(--spacing-sm);
}

.package-subtitle {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

.package-pricing {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  padding: var(--spacing-lg) 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

.price-main {
  font-size: 3rem;
  font-weight: var(--font-weight-extrabold);
  color: var(--primary-blue);
  line-height: 1;
}

.price-note {
  font-size: 0.875rem;
  color: var(--text-medium);
  margin-top: var(--spacing-sm);
  font-weight: var(--font-weight-medium);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--spacing-xl);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-medium);
  font-size: 0.95rem;
}

.package-features i {
  color: var(--accent-green);
  font-size: 0.875rem;
  flex-shrink: 0;
}

.custom-quote {
  text-align: center;
  background-color: var(--bg-light-grey);
  padding: var(--spacing-xl);
  border-radius: 1rem;
  margin-top: var(--spacing-2xl);
}

.custom-quote p {
  font-size: 1.125rem;
  color: var(--text-dark);
  margin-bottom: var(--spacing-lg);
}

/* ============================= */
/* PREMIUM SAAS PRICING SECTION  */
/* ============================= */

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  align-items: stretch;
  margin-top: 3rem;
}

/* Responsive */
@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

/* Base Card - SaaS Glass Style */
.pricing-package {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 1.5rem;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

/* Animated gradient border glow */
.pricing-package::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 1.5rem;
  background: linear-gradient(
    135deg,
    transparent,
    rgba(0, 33, 71, 0.2),
    rgba(185, 28, 28, 0.2),
    transparent
  );
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: 0.4s ease;
}

/* Hover effect */
.pricing-package:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.12);
}

.pricing-package:hover::before {
  opacity: 1;
}

/* ============================= */
/* CENTER "MOST POPULAR" CARD   */
/* ============================= */

.pricing-package.popular {
  transform: scale(1.08);
  z-index: 2;
  background: linear-gradient(145deg, #ffffff, #f8f9ff);
  border: 2px solid rgba(185, 28, 28, 0.3);
  box-shadow: 0 30px 90px rgba(185, 28, 28, 0.15);
}

/* Floating badge */
.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #B91C1C, #dc2626);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* ============================= */
/* TYPOGRAPHY IMPROVEMENT        */
/* ============================= */

.package-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--oxford-blue);
}

.package-subtitle {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* PRICE STYLE */
.price-main {
  font-size: 3.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--oxford-blue), #B91C1C);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: transform 0.3s ease;
}

.pricing-package:hover .price-main {
  transform: scale(1.08);
}

/* ============================= */
/* FEATURES LIST MODERN LOOK     */
/* ============================= */

.package-features li {
  padding: 0.6rem 0.8rem;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
}

.package-features li:hover {
  background: rgba(0, 33, 71, 0.04);
  transform: translateX(6px);
}

.package-features i {
  color: #059669;
  transition: transform 0.3s ease;
}

.package-features li:hover i {
  transform: scale(1.2);
}

/* ============================= */
/* CTA STYLE (if button added)   */
/* ============================= */

.pricing-package .btn {
  width: 100%;
  margin-top: 1.5rem;
  border-radius: 12px;
}

/* ============================= */
/* ENTRY ANIMATION (SAAS FEEL)   */
/* ============================= */

.pricing-package {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 0.8s ease forwards;
}

.pricing-package:nth-child(1) { animation-delay: 0.1s; }
.pricing-package:nth-child(2) { animation-delay: 0.2s; }
.pricing-package:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================= */
/* MOBILE FIX FOR CENTER CARD    */
/* ============================= */

@media (max-width: 992px) {
  .pricing-package.popular {
    transform: scale(1);
  }
}

/* styles.css me ye section add karo (end me) */

/* ===== Prices Page ===== */
.pricing-hero {
  padding: 5rem 0 4rem;
}

.pricing-hero-content {
  max-width: 820px;
  text-align: center;
  margin: 0 auto;
}

.pricing-kicker {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--crimson-seal);
  background: rgba(185, 28, 28, 0.08);
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.pricing-hero h1 {
  margin-bottom: 1rem;
}

.pricing-hero p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.pricing-hero-note {
  margin: 1.4rem auto 0;
  display: inline-flex;
  gap: 0.6rem;
  align-items: center;
  background: #fff;
  color: var(--oxford-blue);
  border: 1px solid rgba(0, 33, 71, 0.12);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.pricing-hero-note svg {
  flex-shrink: 0;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-package {
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.08);
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(2, 6, 23, 0.06);
  transition: 0.25s ease;
}

.pricing-package:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.12);
}

.pricing-package.popular {
  border: 2px solid rgba(185, 28, 28, 0.35);
  transform: scale(1.02);
}

.pricing-package.popular:hover {
  transform: scale(1.02) translateY(-6px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 14px;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--crimson-seal), #dc2626);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.package-header {
  text-align: center;
  margin-bottom: 1rem;
}

.package-title {
  font-size: 1.42rem;
  margin-bottom: 0.45rem;
  color: var(--oxford-blue);
}

.package-subtitle {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.package-pricing {
  text-align: center;
  padding: 1rem 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.price-main {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  color: var(--oxford-blue);
}

.price-note {
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}

.package-features li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--turnitin-green);
  font-weight: 700;
}

.btn-full {
  width: 100%;
}

.custom-quote {
  margin-top: 2.2rem;
  padding: 1.4rem;
  text-align: center;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.custom-quote p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

@media (max-width: 767px) {
  .pricing-hero {
    padding: 3rem 0 2.2rem;
  }

  .package-title {
    font-size: 1.25rem;
  }

  .price-main {
    font-size: 2.1rem;
  }

  .pricing-package.popular,
  .pricing-package.popular:hover {
    transform: none;
  }
}


/* =======================================================
   HOME PAGE TARGETED PATCH (Append at end of styles.css)
   ======================================================= */

/* View Services and service block polish */
.services-home-grid {
  gap: 1.5rem;
}

.service-home-card {
  position: relative;
  border: 1px solid rgba(0, 33, 71, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}

.service-home-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oxford-blue), var(--crimson-seal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.service-home-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 33, 71, 0.25);
  box-shadow: 0 14px 40px rgba(2, 6, 23, 0.14);
}

.service-home-card:hover::before {
  transform: scaleX(1);
}

.service-home-card h3 {
  margin-bottom: 0.5rem;
  color: var(--oxford-blue);
}

.service-home-card p {
  margin-bottom: 0.9rem;
}

/* Service card pricing line */
.service-home-price {
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  margin-top: 0.2rem;
  padding: 0.55rem 0.8rem;
  border-radius: 0.6rem;
  background: rgba(0, 33, 71, 0.05);
  color: var(--oxford-blue);
  font-weight: 800;
  font-size: 1rem;
}

.service-home-price span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

/* Pricing section UI uplift */
.packages-grid {
  gap: 1.75rem;
}

.pricing-package {
  border: 1px solid rgba(0, 33, 71, 0.12);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.pricing-package:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 33, 71, 0.22);
  box-shadow: 0 18px 42px rgba(2, 6, 23, 0.13);
}

.pricing-package .package-title {
  color: var(--oxford-blue);
}

.pricing-package .price-main {
  color: var(--crimson-seal);
}

/* keep popular card strong */
.pricing-package.popular {
  border-color: rgba(185, 28, 28, 0.35);
  box-shadow: 0 20px 48px rgba(185, 28, 28, 0.12);
}

/* features list cleaner */
.package-features li {
  position: relative;
  padding-left: 1.4rem;
  line-height: 1.55;
}

.package-features li i {
  display: none; /* hides old icon tags safely */
}

.package-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--turnitin-green);
  font-weight: 800;
}

/* How It Works (new section) */
.home-how-it-works .section-header {
  margin-bottom: 2.2rem;
}

.home-steps {
  display: grid;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.home-step {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0.9rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid rgba(0, 33, 71, 0.12);
  border-radius: 0.9rem;
  padding: 1rem 1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.home-step:hover {
  transform: translateX(5px);
  border-color: rgba(0, 33, 71, 0.25);
  box-shadow: 0 10px 28px rgba(2, 6, 23, 0.1);
}

.step-no {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--oxford-blue), #003a6b);
}

.home-step h3 {
  margin: 0 0 0.3rem;
  color: var(--oxford-blue);
  font-size: 1.08rem;
}

.home-step p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* Footer disclaimer block style */
.footer-disclaimer {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* Mobile */
@media (max-width: 768px) {
  .home-step {
    grid-template-columns: 44px 1fr;
    padding: 0.9rem;
  }

  .step-no {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
  }

  .service-home-price {
    font-size: 0.94rem;
  }
}

/* Footer disclaimer only */
.footer-disclaimer {
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}


/* ===== Footer disclaimer layout fix ===== */
.footer-bottom {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap; /* allows disclaimer to move next row */
}

.footer-bottom > p,
.footer-bottom .footer-links {
  margin: 0;
}

/* Works whether disclaimer is inside or outside footer-bottom */
.footer-disclaimer {
  display: block;
  width: 100%;
  flex-basis: 100%;
  clear: both;
  margin-top: 1rem;
  padding: 0.95rem 1rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
}

.footer-disclaimer p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

/* Mobile footer stacking */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
}

/* ===== Privacy Policy Page (Append at end of styles.css) ===== */

.privacy-page .privacy-hero {
  padding: 4.5rem 0 3.5rem;
}

.privacy-page .privacy-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.privacy-page .privacy-subtitle {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 760px;
}

.privacy-page .privacy-card {
  background: #fff;
  padding: 2.4rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 33, 71, 0.09);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.08);
}

.privacy-page .privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.4rem;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.7rem;
}

.privacy-page .privacy-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.privacy-page .legal-content h2 {
  margin-top: 1.7rem;
  margin-bottom: 0.72rem;
  font-size: 1.3rem;
}

.privacy-page .legal-content p,
.privacy-page .legal-content li {
  color: var(--text-secondary);
  line-height: 1.78;
  font-size: 0.98rem;
}

.privacy-page .legal-content ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
}

.privacy-page .legal-content a {
  color: var(--oxford-blue);
  text-decoration: none;
  font-weight: 600;
}

.privacy-page .legal-content a:hover {
  color: var(--crimson-seal);
}

@media (max-width: 768px) {
  .privacy-page .privacy-hero {
    padding: 3.1rem 0 2.4rem;
  }

  .privacy-page .privacy-card {
    padding: 1.45rem 1.05rem;
    border-radius: 0.8rem;
  }

  .privacy-page .legal-content h2 {
    font-size: 1.14rem;
  }

  .privacy-page .legal-content p,
  .privacy-page .legal-content li {
    font-size: 0.95rem;
  }
}

/* Privacy heading visibility fix */
.privacy-page .privacy-hero h1 {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  opacity: 1;
}


/* ===== Terms of Use Page (Append at end of styles.css) ===== */

.terms-page .terms-hero {
  padding: 4.5rem 0 3.5rem;
}

.terms-page .terms-kicker {
  display: inline-block;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.terms-page .terms-hero h1 {
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  -webkit-text-fill-color: #ffffff;
  color: #ffffff;
  opacity: 1;
}

.terms-page .terms-subtitle {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.03rem;
  line-height: 1.7;
  max-width: 760px;
}

.terms-page .terms-card {
  background: #fff;
  padding: 2.4rem 2rem;
  border-radius: 1rem;
  border: 1px solid rgba(0, 33, 71, 0.09);
  box-shadow: 0 14px 36px rgba(2, 6, 23, 0.08);
}

.terms-page .terms-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1.4rem;
  padding: 0.9rem 1rem;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 0.7rem;
}

.terms-page .terms-meta p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-secondary);
}

.terms-page .legal-content h2 {
  margin-top: 1.7rem;
  margin-bottom: 0.72rem;
  font-size: 1.3rem;
}

.terms-page .legal-content p,
.terms-page .legal-content li {
  color: var(--text-secondary);
  line-height: 1.78;
  font-size: 0.98rem;
}

.terms-page .legal-content ul {
  margin-top: 0.6rem;
  padding-left: 1.1rem;
}

.terms-page .legal-content a {
  color: var(--oxford-blue);
  text-decoration: none;
  font-weight: 600;
}

.terms-page .legal-content a:hover {
  color: var(--crimson-seal);
}

@media (max-width: 768px) {
  .terms-page .terms-hero {
    padding: 3.1rem 0 2.4rem;
  }

  .terms-page .terms-card {
    padding: 1.45rem 1.05rem;
    border-radius: 0.8rem;
  }

  .terms-page .legal-content h2 {
    font-size: 1.14rem;
  }

  .terms-page .legal-content p,
  .terms-page .legal-content li {
    font-size: 0.95rem;
  }
}


/* ===== Navbar Logo Proper Visible Size ===== */

.navbar .container{
  min-height: 6.4rem; /* navbar ko enough height */
}

.navbar .logo{
  display: inline-flex;
  align-items: center;
  padding: 0;
  line-height: 1;
}

.navbar .logo img{
  display: block;
  width: auto;
  height: 96px !important;     /* visibly large desktop */
  max-height: 96px;
  object-fit: contain;
}

/* large screens */
@media (min-width: 1200px){
  .navbar .logo img{
    height: 104px !important;
    max-height: 104px;
  }
}

/* tablet */
@media (max-width: 991px){
  .navbar .container{
    min-height: 5.6rem;
  }
  .navbar .logo img{
    height: 78px !important;
    max-height: 78px;
  }
}

/* mobile */
@media (max-width: 767px){
  .navbar .container{
    min-height: 5rem;
  }
  .navbar .logo img{
    height: 64px !important;
    max-height: 64px;
  }
}

/* ===== About Page Final Fixes ===== */
.about-hero h1 {
  font-size: clamp(2rem, 3.4vw, 2.9rem) !important; /* still h1, but less oversized */
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.about-story-copy p {
  text-align: justify;
  text-justify: inter-word;
  line-height: 1.9;
  max-width: 62ch;
}

.about-story-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-story-image-wrap img {
  width: 100%;
  max-width: 540px;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 16px 38px rgba(2, 6, 23, 0.14);
}

/* Mobile tuning */
@media (max-width: 767px) {
  .about-hero h1 {
    font-size: 1.7rem !important;
    line-height: 1.25;
  }

  .about-story-copy p {
    text-align: left; /* better readability on small screens */
  }

  .about-story-image-wrap img {
    max-width: 100%;
    aspect-ratio: 16 / 11;
  }
}


/* =========================================================
   GLOBAL MOBILE LAYOUT STABILITY PATCH (append at end)
   ========================================================= */

/* 1) Stop horizontal shifting/overflow */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas,
iframe {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Prevent long text/links forcing width */
h1, h2, h3, h4, h5, h6, p, a, li {
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Keep sections from creating side-scroll */
.section,
.container,
.navbar,
.top-bar,
.footer,
.contact-grid,
.footer-content {
  max-width: 100%;
}

/* Floating WhatsApp should not create overflow */
.whatsapp-float {
  right: 1rem;
}
@media (min-width: 768px) {
  .whatsapp-float {
    right: 1.25rem;
  }
}

/* 2) Contact page: stack quote + get in touch on mobile/tablet */
@media (max-width: 1100px) {
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
  }

  .contact-grid > * {
    width: 100%;
    min-width: 0;
  }

  .contact-info-card,
  .contact-method {
    text-align: left;
  }

  .contact-method-header {
    justify-content: flex-start;
  }
}

/* 3) Footer clean alignment (Quick Links / Our Services centered on small screens) */
@media (max-width: 991px) {
  .footer-content {
    grid-template-columns: 1fr !important;
    gap: 1.6rem;
    text-align: center;
  }

  .footer-content > div {
    background: transparent !important;
    box-shadow: none !important;
    border: 0 !important;
  }

  .footer h3,
  .footer h4 {
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
  }

  .footer h3::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer ul {
    padding: 0;
    margin: 0 auto;
  }

  .footer ul li {
    margin-bottom: 0.6rem;
    transform: none !important;
  }

  .footer ul li:hover {
    transform: none !important;
  }

  .social-links {
    justify-content: center;
    flex-wrap: wrap;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
  }

  .footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* 4) Extra-safe mobile spacing */
@media (max-width: 767px) {
  .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .hero,
  .section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .card,
  .contact-info-card {
    padding: 1.25rem;
  }
}
