* {
            font-family: 'Montserrat', sans-serif;
        }
        .gradient-bg {
            background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
        }
        .ocean-bg {
            background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 50%, #0369a1 100%);
        }
        .light-blue-bg {
            background: linear-gradient(180deg, #e0f2fe 0%, #b3e5fc 100%);
        }
        .hero-bg {
            background-image: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }
        .navbar-blur {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
        }
        .countdown-container {
            background: linear-gradient(135deg, #0ea5e9 0%, #38bdf8 100%);
        }
        .angel-newsline-bg {
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }
        .diagonal-banner {
            background: linear-gradient(135deg, #1e40af 0%, #1d4ed8 100%);
            transform: rotate(-3deg);
            margin: 0 -50px;
            overflow: hidden;
        }
        .diagonal-text {
            transform: rotate(3deg);
            animation: marquee 20s linear infinite;
        }
        @keyframes marquee {
            0% { transform: translateX(100%) rotate(3deg); }
            100% { transform: translateX(-100%) rotate(3deg); }
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .glass-effect {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        .countdown-container-custom {
    background: linear-gradient(135deg, #009ADE 0%, #2CDBFF 100%);
    box-shadow: 0 20px 40px rgba(0, 154, 222, 0.3);
}

/* Optional: Add some hover effects */
.countdown-container-custom:hover {
    background: linear-gradient(135deg, #007BC7 0%, #1BC9E8 100%);
    transform: translateY(-2px);
    transition: all 0.3s ease;
}

/* Alternative gradient directions you can use */
.countdown-container-custom-alt1 {
    background: linear-gradient(90deg, #009ADE 0%, #2CDBFF 100%); /* Left to right */
}

.countdown-container-custom-alt2 {
    background: linear-gradient(45deg, #009ADE 0%, #2CDBFF 100%); /* Diagonal */
}

.countdown-container-custom-alt3 {
    background: linear-gradient(180deg, #009ADE 0%, #2CDBFF 100%); /* Top to bottom */
}

.diagonal-banner {
  background: #005085;
  transform: skewY(-3deg);
}

.diagonal-text-container {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* For responsive font sizes */
@media (min-width: 768px) {
    .diagonal-text-container > div {
        font-size: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .diagonal-text-container > div {
        font-size: 3rem;
    }
}

@keyframes angle-scroll {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

.diagonal-banner-2 {
  background: #005085;
  transform: skewY(-3deg);
}

.diagonal-text-container-2 {
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.scrolling-text-2 {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-right 20s linear infinite;
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* Responsive font sizes for Banner 2 */
@media (min-width: 768px) {
  .diagonal-text-container-2 > div {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .diagonal-text-container-2 > div {
    font-size: 3rem;
  }
}


.perspective-1000 {
    perspective: 1000px;
}

.rotate-y-15 {
    transform: rotateY(15deg) translateZ(-50px);
}

.-rotate-y-15 {
    transform: rotateY(-15deg) translateZ(-50px);
}

.testimonial-card-left:hover,
.testimonial-card-right:hover {
    transform: rotateY(0deg) translateZ(0px);
}

.testimonial-card-center {
    transform: scale(1.1) translateZ(50px);
}

/* Additional floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotateY(15deg); }
    50% { transform: translateY(-10px) rotateY(15deg); }
}

@keyframes float-reverse {
    0%, 100% { transform: translateY(0px) rotateY(-15deg); }
    50% { transform: translateY(-10px) rotateY(-15deg); }
}

@keyframes float-center {
    0%, 100% { transform: translateY(0px) scale(1.1); }
    50% { transform: translateY(-5px) scale(1.1); }
}

.testimonial-card-left {
    animation: float 6s ease-in-out infinite;
}

.testimonial-card-right {
    animation: float-reverse 6s ease-in-out infinite;
}

.testimonial-card-center {
    animation: float-center 4s ease-in-out infinite;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .testimonial-card-left,
    .testimonial-card-right,
    .testimonial-card-center {
        width: 100%;
        transform: none !important;
        animation: none;
    }
}


 .underwater-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('your-underwater-image.jpg');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 60px;
}

/* Main Content Styling */
.main-content {
    max-width: 800px;
    z-index: 5;
}

.hero-text {
    text-align: left;
}

.main-heading {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    font-family: 'Arial Black', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.white-text {
    display: block;
    color: #ffffff;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.yellow-text {
    display: block;
    color: #ffd700;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.sub-heading {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    font-family: 'Arial', sans-serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.description {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Arial', sans-serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 700px;
}

/* Mouse Following Ball */
.mouse-follower-ball {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #ffff00, #ffd700, #ffaa00);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 60px rgba(255, 255, 0, 0.5),
        0 0 90px rgba(255, 255, 0, 0.3),
        inset -12px -12px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.ball-text {
    text-align: center;
    color: #000;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    user-select: none;
}

.offer-text {
    display: block;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.today-text {
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 2px;
    color: #cc0000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.discount-text {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #cc0000;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

/* Enhanced glow effect on hover */
.underwater-container:hover .mouse-follower-ball {
    box-shadow: 
        0 0 40px rgba(255, 255, 0, 1),
        0 0 80px rgba(255, 255, 0, 0.8),
        0 0 120px rgba(255, 255, 0, 0.6),
        inset -12px -12px 25px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Pulse animation */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .underwater-container {
        padding: 0 30px;
        text-align: center;
        justify-content: center;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .main-heading {
        font-size: clamp(2rem, 8vw, 4rem);
        margin-bottom: 20px;
    }
    
    .sub-heading {
        font-size: clamp(1.2rem, 4vw, 2rem);
        margin-bottom: 20px;
    }
    
    .description {
        font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    }
    
    .mouse-follower-ball {
        width: 100px;
        height: 100px;
    }
}

@media (max-width: 480px) {
    .underwater-container {
        padding: 0 20px;
    }
    
    .mouse-follower-ball {
        width: 80px;
        height: 80px;
    }
    
    .ball-text .offer-text {
        font-size: 9px;
    }
    
    .ball-text .today-text {
        font-size: 8px;
    }
    
    .ball-text .discount-text {
        font-size: 1px;
    }
}
        .underwater-container {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('../Component\ 1.png');
    background-size: cover;
    background-position: center;
    overflow: hidden;
    cursor: none; /* Hide default cursor */
}

.mouse-follower-ball {
    position: absolute;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at 30% 30%, #ffff00, #ffd700, #ffaa00);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 60px rgba(255, 255, 0, 0.5),
        0 0 90px rgba(255, 255, 0, 0.3),
        inset -12px -12px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.ball-text {
    text-align: center;
    color: #000;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    line-height: 1.1;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
    user-select: none;
}

.offer-text {
    display: block;
    font-size: 11px;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.today-text {
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 2px;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

.discount-text {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.9);
}

/* Enhanced glow effect on hover */
.underwater-container:hover .mouse-follower-ball {
    box-shadow: 
        0 0 40px rgba(255, 255, 0, 1),
        0 0 80px rgba(255, 255, 0, 0.8),
        0 0 120px rgba(255, 255, 0, 0.6),
        inset -12px -12px 25px rgba(0, 0, 0, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Pulse animation for attention */
@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.mouse-follower-ball {
    animation: pulse 2s ease-in-out infinite;
}
.mouse-follower-ball {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle at 30% 30%, #ffff00, #ffd700, #ffaa00);
    border-radius: 50%;
    pointer-events: none;
    z-index: 100;
    transform: translate(-50%, -50%);
    transition: all 0.1s ease-out;
    box-shadow: 
        0 0 30px rgba(255, 255, 0, 0.8),
        0 0 60px rgba(255, 255, 0, 0.5),
        0 0 90px rgba(255, 255, 0, 0.3),
        inset -15px -15px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid rgba(255, 255, 255, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.ball-text {
    text-align: center;
    color: #000;
    font-weight: bold;
    font-family: 'Arial Black', sans-serif;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8);
    user-select: none;
}

.offer-text {
    display: block;
    font-size: 12px;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.today-text {
    display: block;
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 3px;
    color: #cc0000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

.discount-text {
    display: block;
    font-size: 22px;
    font-weight: 900;
    color: #cc0000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
}

@keyframes rotateText {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-5deg); }
    75% { transform: rotate(5deg); }
}

.ball-text {
    animation: rotateText 3s ease-in-out infinite;
}