/* Base styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #0d2d4f; /* dark navy for text */
    background-color: #f9fafb; /* light background */
    overflow-x: hidden; /* Prevent horizontal scroll from animations */
    position: relative;
  }
  
  /* Global Background Image */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('CDL Logo.jpeg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-attachment: fixed;
    opacity: 0.08;
    filter: grayscale(100%);
    z-index: -1;
    pointer-events: none;
  }
  
  a {
    color: #004e8a;
    text-decoration: none;
    transition: all 0.3s ease;
  }
  
  a:hover {
    color: #2a72b5;
    transform: translateY(-1px);
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
    position: relative;
    z-index: 2;
  }
  
  /* Navigation Bar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0.5rem 0;
  }
  
  .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    height: 80px;
    gap: 1.5rem;
  }
  
  .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: #004e8a;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 0;
  }
  
  .logo-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #004e8a, #2a72b5, #f5ba2b);
    transition: left 0.5s ease;
  }
  
  .logo-text:hover::after {
    left: 0;
  }
  
  nav {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
  }
  
  .nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-list li a {
    font-weight: 600;
    color: #004e8a;
    text-transform: uppercase;
    font-size: 0.85rem;
    position: relative;
    padding: 0.75rem 0;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
  
  .nav-list li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f5ba2b, #e0a81e);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
  }
  
  .nav-list li a:hover::before {
    width: 100%;
  }
  
  .nav-contact {
    flex-shrink: 0;
  }
  
  .nav-contact a {
    font-weight: 700;
    color: #004e8a;
    padding: 0.75rem 1.25rem;
    border: 2px solid #004e8a;
    border-radius: 30px;
    transition: all 0.3s ease;
    white-space: nowrap;
    font-size: 0.95rem;
    display: inline-block;
  }
  
  .nav-contact a:hover {
    background: #004e8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 78, 138, 0.3);
  }
  
  /* Hero Section */
  .hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background: linear-gradient(135deg, rgba(13, 45, 79, 0.9) 0%, rgba(28, 90, 159, 0.9) 50%, rgba(42, 114, 181, 0.9) 100%);
    overflow: hidden;
  }
  
  /* Video Background */
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 80%, rgba(245, 186, 43, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(42, 114, 181, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
    z-index: 1;
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.1);
    z-index: 1;
    animation: pulse 4s ease-in-out infinite;
  }
  
  @keyframes pulse {
    0%, 100% { opacity: 0.05; transform: scale(1); }
    50% { opacity: 0.08; transform: scale(1.02); }
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #ffffff, #f5ba2b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
  
  @keyframes shimmer {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
  }
  
  .hero .tagline {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: slideInLeft 1s ease-out 0.3s both;
  }
  
  @keyframes slideInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  .hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d7e6f7;
    animation: slideInRight 1s ease-out 0.6s both;
  }
  
  @keyframes slideInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  

  
  .btn-primary {
    display: inline-block;
    background: linear-gradient(45deg, #f5ba2b, #e0a81e);
    color: #0d2d4f;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 8px 25px rgba(245, 186, 43, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.5px;
    animation: fadeInUp 1s ease-out 0.9s both;
  }
  
  .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
  }
  
  .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(245, 186, 43, 0.4);
  }
  
  .btn-primary:hover::before {
    left: 100%;
  }
  

  
  /* Scroll Indicator */
  .scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: bounce 2s infinite;
  }
  
  .scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid #ffffff;
    border-bottom: 3px solid #ffffff;
    transform: rotate(45deg);
    animation: scrollBounce 2s infinite;
  }
  
  @keyframes scrollBounce {
    0%, 20%, 50%, 80%, 100% {
      transform: rotate(45deg) translateY(0);
    }
    40% {
      transform: rotate(45deg) translateY(-10px);
    }
    60% {
      transform: rotate(45deg) translateY(-5px);
    }
  }
  
  /* Section Styles */
  .section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  /* Ensure sections have proper background contrast */
  .about,
  .pricing,
  .endorsements,
  .financing,
  .testimonials,
  .contact {
    position: relative;
    z-index: 1;
  }
  
  .about::before,
  .pricing::before,
  .endorsements::before,
  .financing::before,
  .testimonials::before,
  .contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
  
  /* Enhanced background for better contrast with global image */
  .about::before {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(226, 232, 240, 0.85) 100%);
  }
  
  .pricing::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.85) 100%);
  }
  
  .endorsements::before {
    background: linear-gradient(135deg, rgba(226, 232, 240, 0.85) 0%, rgba(241, 245, 249, 0.85) 100%);
  }
  
  .financing::before {
    background: linear-gradient(135deg, rgba(248, 250, 252, 0.85) 0%, rgba(226, 232, 240, 0.85) 100%);
  }
  
  .testimonials::before {
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.85) 0%, rgba(226, 232, 240, 0.85) 100%);
  }
  
  .contact::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 250, 252, 0.85) 100%);
  }
  
  .section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #0d2d4f;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s ease-out forwards;
  }
  
  @keyframes revealText {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #004e8a, #f5ba2b);
    border-radius: 2px;
    animation: expandWidth 1s ease-out 0.5s forwards;
    width: 0;
  }
  
  @keyframes expandWidth {
    to {
      width: 80px;
    }
  }
  
  /* About Section */
  .about {
    position: relative;
  }
  
  .about::before {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 78, 138, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAround 15s ease-in-out infinite;
  }
  
  .about::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: 10%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(245, 186, 43, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: floatAround 20s ease-in-out infinite reverse;
  }
  
  @keyframes floatAround {
    0%, 100% { 
      transform: translate(0, 0) rotate(0deg);
      border-radius: 50%;
    }
    25% { 
      transform: translate(20px, -20px) rotate(90deg);
      border-radius: 60% 40% 30% 70%;
    }
    50% { 
      transform: translate(-10px, 20px) rotate(180deg);
      border-radius: 30% 60% 70% 40%;
    }
    75% { 
      transform: translate(-20px, -10px) rotate(270deg);
      border-radius: 40% 30% 60% 70%;
    }
  }
  
  .about p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #2a4365;
    line-height: 1.8;
    text-align: center;
    position: relative;
    z-index: 1;
  }
  
  /* Pricing Section */
  .pricing {
    position: relative;
  }
  
  .pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 30% 20%, rgba(0, 78, 138, 0.03) 0%, transparent 50%),
      radial-gradient(circle at 70% 80%, rgba(245, 186, 43, 0.03) 0%, transparent 50%);
    animation: slowPulse 8s ease-in-out infinite;
  }
  
  @keyframes slowPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
  }
  
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .pricing-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 2.5rem;
    text-align: center;
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
  }
  
  .pricing-card:nth-child(1) { animation-delay: 0.2s; }
  .pricing-card:nth-child(2) { animation-delay: 0.4s; }
  
  @keyframes slideInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #004e8a, #2a72b5, #f5ba2b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .pricing-card:hover::before {
    transform: scaleX(1);
  }
  
  .pricing-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  }
  
  .pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0d2d4f;
    position: relative;
  }
  
  .pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #004e8a, #2a72b5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    position: relative;
  }
  
  .pricing-card .price::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #f5ba2b, #e0a81e);
    transition: width 0.3s ease;
  }
  
  .pricing-card:hover .price::after {
    width: 100%;
  }
  
  .pricing-card .description {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
  }
  
  .note {
    margin-top: 2rem;
    text-align: center;
    color: #4a5568;
    font-style: italic;
    position: relative;
    z-index: 1;
  }
  
  /* Endorsements Section */
  .endorsements {
    position: relative;
  }
  
  .endorsements::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 80% 30%, rgba(42, 114, 181, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 20% 70%, rgba(245, 186, 43, 0.05) 0%, transparent 50%);
    animation: morphShape 25s ease-in-out infinite reverse;
  }
  
  .endorsements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
  }
  
  .endorsement-card {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease-out forwards;
  }
  
  .endorsement-card:nth-child(1) { animation-delay: 0.3s; }
  .endorsement-card:nth-child(2) { animation-delay: 0.5s; }
  .endorsement-card:nth-child(3) { animation-delay: 0.7s; }
  
  .endorsement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #2a72b5, #f5ba2b);
    transform: scaleX(0);
    transition: transform 0.3s ease;
  }
  
  .endorsement-card:hover::before {
    transform: scaleX(1);
  }
  
  .endorsement-card:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .endorsement-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0d2d4f;
    position: relative;
  }
  
  .endorsement-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2a72b5, #f5ba2b);
    transition: width 0.3s ease;
  }
  
  .endorsement-card:hover h3::after {
    width: 100%;
  }
  
  .endorsement-card p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.6;
    margin-top: 0.5rem;
  }
  
  /* Financing Section */
  .financing {
    position: relative;
  }
  
  .financing p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #2a4365;
    text-align: center;
    line-height: 1.8;
  }
  
  /* Testimonials Section */
  .testimonials {
    position: relative;
    overflow: visible;
    padding-bottom: 4rem;
  }
  
  .testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
      radial-gradient(circle at 20% 30%, rgba(0, 78, 138, 0.05) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(245, 186, 43, 0.05) 0%, transparent 50%);
    animation: morphShape 20s ease-in-out infinite;
    z-index: 0;
  }
  
  @keyframes morphShape {
    0%, 100% { 
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      transform: rotate(0deg);
    }
    25% { 
      border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
      transform: rotate(90deg);
    }
    50% { 
      border-radius: 50% 60% 30% 60% / 60% 30% 60% 40%;
      transform: rotate(180deg);
    }
    75% { 
      border-radius: 60% 40% 60% 30% / 30% 60% 40% 60%;
      transform: rotate(270deg);
    }
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
  }
  
  /* 3D Flip Cards */
  .flip-card {
    perspective: 1000px;
    height: 300px;
    margin-bottom: 2rem;
  }
  
  .flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
    cursor: pointer;
    transform-origin: center center;
  }
  
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
  
  /* Disable hover on mobile devices */
  @media (hover: none) and (pointer: coarse) {
    .flip-card:hover .flip-card-inner {
      transform: rotateY(0deg);
    }
  }
  
  .flip-card-front, .flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow: hidden;
    top: 0;
    left: 0;
  }
  
  .flip-card-back {
    background: linear-gradient(145deg, #004e8a, #2a72b5);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 15px 35px rgba(0, 78, 138, 0.3);
  }
  
  .flip-card-front {
    background: linear-gradient(145deg, #ffffff, #f8fafc);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(0, 78, 138, 0.1);
    position: relative;
  }
  
  .card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
  
  .video-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
    background: rgba(0, 0, 0, 0.9);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .preview-text {
    font-size: 1.3rem;
    color: #ffffff;
    font-weight: 900;
    margin: 0;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 1);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }
  
  .flip-card-back {
    background: linear-gradient(145deg, #004e8a, #2a72b5);
    color: white;
    transform: rotateY(180deg);
    box-shadow: 0 15px 35px rgba(0, 78, 138, 0.3);
  }
  

  
  .preview-text {
    font-size: 1.1rem;
    color: #2a4365;
    font-weight: 500;
    opacity: 0.8;
  }
  
  @keyframes fadeInOut {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
  }
  
  .testimonial-content {
    text-align: center;
  }
  
  .testimonial-text {
    font-style: italic;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
  }
  
  .testimonial-author {
    font-weight: 600;
    color: #f5ba2b;
    text-align: right;
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .testimonial-rating {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
  }
  
  .star {
    color: #f5ba2b;
    font-size: 1.2rem;
    animation: starTwinkle 3s ease-in-out infinite;
  }
  
  .star:nth-child(2) { animation-delay: 0.2s; }
  .star:nth-child(3) { animation-delay: 0.4s; }
  .star:nth-child(4) { animation-delay: 0.6s; }
  .star:nth-child(5) { animation-delay: 0.8s; }
  
  @keyframes starTwinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
  }
  
  /* Contact Section */
  .contact {
    position: relative;
  }
  
  .contact-container {
    text-align: center;
  }
  
  .contact-info {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2a4365;
  }
  
  .contact-info a {
    font-weight: 600;
    color: #004e8a;
    padding: 0.5rem 1rem;
    border: 2px solid #004e8a;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .contact-info a:hover {
    background: #004e8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 78, 138, 0.3);
  }
  
  .social-link {
    font-weight: 600;
    color: #004e8a;
    padding: 0.5rem 1rem;
    border: 2px solid #004e8a;
    border-radius: 25px;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #004e8a;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 78, 138, 0.3);
  }
  
  /* Footer */
  .footer {
    background: linear-gradient(135deg, #0d2d4f 0%, #1c5a9f 100%);
    color: #ffffff;
    padding: 2rem 0;
    text-align: center;
  }
  
  .footer-container p {
    font-size: 1rem;
  }
  
  /* Scroll Animations */
  .fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
  }
  
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Responsive adjustments */
  @media (max-width: 768px) {
    /* Mobile logo watermark centering */
    body::before {
      background-position: center center;
      background-size: 80% auto;
    }
    
    .hero h1 {
      font-size: 2.5rem;
    }
    .hero .tagline {
      font-size: 1.4rem;
    }
    .hero .subtitle {
      font-size: 1rem;
    }
    .btn-primary {
      padding: 0.875rem 1.5rem;
      font-size: 0.9rem;
    }
    
    /* Mobile Navigation */
    .navbar-container {
      flex-direction: column;
      height: auto;
      padding: 1rem 0;
      gap: 1rem;
    }
    
    .logo-text {
      font-size: 1.2rem;
    }
    
    nav {
      order: 3;
      width: 100%;
    }
    
    .nav-list {
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .nav-list li a {
      font-size: 0.8rem;
      padding: 0.5rem 0;
    }
    
    .nav-contact {
      order: 2;
    }
    
    .nav-contact a {
      font-size: 0.9rem;
      padding: 0.5rem 1rem;
    }
    
    .pricing-grid,
    .endorsements-grid,
    .testimonial-grid {
      grid-template-columns: 1fr;
    }
    
    /* Mobile flip cards */
    .flip-card {
      height: 250px;
      cursor: pointer;
    }
    
    .flip-card-front, .flip-card-back {
      padding: 1.5rem;
    }
    
    .video-overlay {
      padding: 1.5rem;
    }
    
    .preview-text {
      font-size: 1rem;
    }
    
    .testimonial-text {
      font-size: 0.95rem;
    }
    
    /* Mobile-specific text */
    @media (hover: none) and (pointer: coarse) {
      .preview-text {
        content: "Tap to read testimonial";
      }
    }
  }
  
  @media (max-width: 480px) {
    .nav-list {
      gap: 0.5rem;
    }
    
    .nav-list li a {
      font-size: 0.75rem;
    }
    
    .logo-text {
      font-size: 1.1rem;
    }
  }
  