/* Extracted Styles from index.html */


/* Hero Banner Styles */
.hero-banner {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(30, 144, 255, 0.7);
    border-radius: 50%;
    padding: 1.5rem;
}

.carousel-indicators {
    margin-bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid #1E90FF;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    background-color: #1E90FF;
    transform: scale(1.2);
}

.hero-image-wrapper {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: translateY(-10px);
}

.position-relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

.hero-banner .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.hero-banner .slideInDown {
    animation-name: slideInDown;
    animation-delay: 0.3s;
}

.hero-banner .slideInLeft {
    animation-name: slideInLeft;
    animation-delay: 0.5s;
}

.hero-banner .slideInRight {
    animation-name: slideInRight;
    animation-delay: 0.7s;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -50px, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-50px, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translate3d(50px, 0, 0);
        opacity: 0;
    }

    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.hero-banner h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.3;
}

.hero-banner p {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
}

.btn-primary {
    background-color: #1E90FF;
    border-color: #1E90FF;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #1C2035;
    border-color: #1C2035;
}

.btn-light {
    background-color: #FFFFFF;
    border-color: #1E90FF;
    color: #1E90FF;
    transition: all 0.3s ease;
}

.btn-light:hover {
    background-color: #A9A9A9;
    border-color: #A9A9A9;
    color: #FFFFFF;
}

.btn-accent {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.btn-accent:hover {
    background-color: #E66500;
    border-color: #E66500;
    color: #FFFFFF;
}

@media (max-width: 991.98px) {
    .hero-banner h1 {
        font-size: 28px;
    }

    .hero-banner p {
        font-size: 14px;
    }

    .hero-banner .btn {
        font-size: 14px;
        padding: 8px 20px !important;
    }
}

/* Base styles */
body {
    font-family: 'Open Sans', sans-serif;
    background-color: #ffffff;
    /* Ivory */
    margin: 0;
    padding: 0;
}

/* Remove any gap after footer */
main {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.footer {
    margin-bottom: 0 !important;
    margin-top: auto !important;
}

/* Ensure footer sticks to bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container-fluid.footer {
    margin-top: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Montserrat', sans-serif;
}

.hero-header {
    background-color: #1e90ff;
    /* Dodger Blue */
}

.btn-light {
    color: #1e90ff;
    background-color: #ffffff;
    /* Ivory */
    border: 2px solid #1e90ff;
}

.btn-light:hover {
    background-color: #a9a9a9;
    /* Silver */
    color: #ffffff;
}

/* Removed conflicting nav-link styles - using custom navbar styles instead */
.hero-header h1 {
    font-size: 2.5rem;
}

.hero-header p {
    color: #ffffff;
    /* Ivory */
}

/* Smooth transition for scroll logo */
#scroll-logo {
    transition: opacity 0.2s ease;
}

/* Removed duplicate fixed buttons styles */
/* Hero Section Styles */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    margin: 0;
}

.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-contact button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Button Styles */
.btn-glow {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid #ffffff;
    margin-right: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.floating-services {
    position: relative;
    height: 500px;
    width: 100%;
    z-index: 1;
}

.service-element {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 70px;
    /* Increased from 60px to 70px */
    height: 70px;
    /* Increased from 60px to 70px */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    cursor: grab;
    z-index: 2;
    padding: 8px;
    /* Increased padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.service-element i {
    font-size: 22px;
    /* Increased from 18px to 22px */
    color: #23272a !important;
    /* Use dark grey for better visibility */
    margin-bottom: 3px;
}

.service-element span {
    font-size: 10px;
    /* Increased from 8px to 10px */
    color: #333;
    text-align: center;
    line-height: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-8px, -12px);
    }

    50% {
        transform: translate(0, -20px);
    }

    75% {
        transform: translate(8px, -12px);
    }
}

/* Hover effect */
.service-element:hover {
    transform: scale(1.3);
    z-index: 100;
}

/* Container visibility */
.hero-header,
.container-xxl {
    overflow: visible !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .floating-services {
        height: 400px;
    }

    .service-element {
        width: 60px;
        height: 60px;
    }

    .service-element i {
        font-size: 18px;
    }

    .service-element span {
        font-size: 8px;
    }
}

.service-element.dragging {
    cursor: grabbing;
    transform: scale(1.5) !important;
    z-index: 1000;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(var(--primary-rgb), 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Highlight effect while dragging */
.service-element.dragging i {
    transform: scale(1.2);
    color: var(--primary);
}

.service-element.dragging span {
    color: var(--primary);
}

/* Further Reduced Laptop Size */
.laptop-background {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
    width: 280px;
    /* Reduced from 400px */
    height: 190px;
    /* Reduced from 280px */
    z-index: 0;
    opacity: 0.85;
}

.laptop {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1200px) rotateY(-22deg) rotateX(8deg);
    /* Adjusted angles */
    transform-style: preserve-3d;
}

.laptop-screen {
    position: relative;
    width: 100%;
    height: 85%;
    background: rgba(1, 0, 26, 0.8);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    /* Even thinner border */
    border-radius: 6px;
    /* Smaller radius */
    padding: 10px;
    /* Reduced padding */
    overflow: hidden;
}

.laptop-base {
    position: relative;
    width: 108%;
    /* Reduced overhang */
    height: 15%;
    margin-left: -4%;
    background: linear-gradient(90deg,
            rgba(var(--primary-rgb), 0.2),
            rgba(var(--primary-rgb), 0.4));
    border-radius: 0 0 6px 6px;
    transform: rotateX(-10deg);
    /* Adjusted angle */
    transform-origin: top;
}

/* Smaller Code Animation */
.code-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
}

.code-line {
    height: 6px;
    /* Smaller lines */
    margin-bottom: 6px;
    border-radius: 1px;
}

/* Thinner Circuit Lines */
.line {
    height: 1px;
    /* Thinner lines */
}

/* Adjusted Responsive Breakpoints */
@media (max-width: 1200px) {
    .laptop-background {
        width: 250px;
        height: 170px;
    }
}

@media (max-width: 991px) {
    .laptop-background {
        width: 220px;
        height: 150px;
        opacity: 0.7;
    }
}

@media (max-width: 767px) {
    .laptop-background {
        width: 180px;
        height: 122px;
        opacity: 0.5;
        right: 12%;
    }
}

/* Adjusted Glow Effects */
.laptop-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(var(--primary-rgb), 0.08),
            transparent 70%);
    animation: screenGlow 4s infinite;
}

@keyframes screenGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }
}

/* Modern Service Cards Styling */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(var(--primary-rgb), 0.1),
            rgba(var(--primary-rgb), 0.05));
    border-radius: 20px;
    z-index: -1;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 1;
}

.service-icon .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.service-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.service-card:hover .service-icon .glow {
    opacity: 0.4;
    transform: scale(1.2);
}

.hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, center) var(--mouse-y, center),
            rgba(var(--primary-rgb), 0.1),
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .hover-effect {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .service-content h5 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

/* Updated Features List Styling */
.features-list {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    transition: all 0.4s ease;
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list ul li {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.features-list ul li i {
    color: var(--primary);
}

/* Hover state adjustments */
.service-card:hover .features-list {
    bottom: 0;
    opacity: 1;
    border-top: 2px solid rgba(var(--primary-rgb), 0.1);
    /* Subtle separator */
}

/* Feature list items animation */
.service-card:hover .features-list ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced readability for feature items */
.features-list ul li:hover {
    color: #000;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .features-list ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 767px) {
    .features-list {
        padding: 1.2rem;
    }

    .features-list ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

.modern-feature {
    position: relative;
    padding: 20px;
}

.feature-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.icon-box i {
    color: #fff;
    font-size: 1.8rem;
    transform: rotate(10deg);
}

.feature-header h5 {
    font-size: 1.4rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.feature-body {
    position: relative;
    z-index: 1;
}

.feature-body p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.feature-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.learn-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(3px);
}

/* Decorative Elements */
.feature-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* Hover Effects */
.feature-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-wrapper:hover .icon-box {
    transform: rotate(0deg);
    background: var(--primary);
}

.feature-wrapper:hover .icon-box i {
    transform: rotate(0deg);
}

.feature-wrapper:hover::before {
    transform: scale(1.2);
    opacity: 0.08;
}

.feature-wrapper:hover::after {
    transform: scale(1.2);
    opacity: 0.08;
}

.feature-wrapper:hover .feature-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .feature-wrapper {
        padding: 1.5rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    .feature-header h5 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.modern-feature {
    animation: float 6s infinite ease-in-out;
}

.modern-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.about-image {
    position: relative;
    padding: 2rem;
}

.main-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    opacity: 0.5;
    animation: float 6s infinite ease-in-out;
}

.circle-pattern {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out reverse;
}

.stats-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: slideIn 0.5s ease-out forwards;
}

.stats-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stats-text {
    font-size: 0.9rem;
    color: #555;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.lottie-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .lottie-wrapper {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .lottie-wrapper {
        height: 250px;
    }
}

/* Footer Styling */
.site-footer {
    background-color: #1E90FF;
    color: #e2e8f0;
    padding: 100px 0;
}

.footer-section {
    padding: 0 50px;
}

.footer-section h4 {
    color: #1E90FF;
    margin-bottom: 15px;
}

.footer-info .contact-item {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #e2e8f0;
}

.footer-info .contact-item i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.social-btn:hover {
    color: #ffffff;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.copyright {
    background: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Removed duplicate fixed buttons styles */
/* Hero Section Styles */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    margin: 0;
}

.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-contact button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Button Styles */
.btn-glow {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid #ffffff;
    margin-right: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.floating-services {
    position: relative;
    height: 500px;
    width: 100%;
    z-index: 1;
}

.service-element {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 70px;
    /* Increased from 60px to 70px */
    height: 70px;
    /* Increased from 60px to 70px */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    cursor: grab;
    z-index: 2;
    padding: 8px;
    /* Increased padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.service-element i {
    font-size: 22px;
    /* Increased from 18px to 22px */
    color: #23272a !important;
    /* Use dark grey for better visibility */
    margin-bottom: 3px;
}

.service-element span {
    font-size: 10px;
    /* Increased from 8px to 10px */
    color: #333;
    text-align: center;
    line-height: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-8px, -12px);
    }

    50% {
        transform: translate(0, -20px);
    }

    75% {
        transform: translate(8px, -12px);
    }
}

/* Hover effect */
.service-element:hover {
    transform: scale(1.3);
    z-index: 100;
}

/* Container visibility */
.hero-header,
.container-xxl {
    overflow: visible !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .floating-services {
        height: 400px;
    }

    .service-element {
        width: 60px;
        height: 60px;
    }

    .service-element i {
        font-size: 18px;
    }

    .service-element span {
        font-size: 8px;
    }
}

.service-element.dragging {
    cursor: grabbing;
    transform: scale(1.5) !important;
    z-index: 1000;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(var(--primary-rgb), 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Highlight effect while dragging */
.service-element.dragging i {
    transform: scale(1.2);
    color: var(--primary);
}

.service-element.dragging span {
    color: var(--primary);
}

/* Further Reduced Laptop Size */
.laptop-background {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
    width: 280px;
    /* Reduced from 400px */
    height: 190px;
    /* Reduced from 280px */
    z-index: 0;
    opacity: 0.85;
}

.laptop {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1200px) rotateY(-22deg) rotateX(8deg);
    /* Adjusted angles */
    transform-style: preserve-3d;
}

.laptop-screen {
    position: relative;
    width: 100%;
    height: 85%;
    background: rgba(1, 0, 26, 0.8);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    /* Even thinner border */
    border-radius: 6px;
    /* Smaller radius */
    padding: 10px;
    /* Reduced padding */
    overflow: hidden;
}

.laptop-base {
    position: relative;
    width: 108%;
    /* Reduced overhang */
    height: 15%;
    margin-left: -4%;
    background: linear-gradient(90deg,
            rgba(var(--primary-rgb), 0.2),
            rgba(var(--primary-rgb), 0.4));
    border-radius: 0 0 6px 6px;
    transform: rotateX(-10deg);
    /* Adjusted angle */
    transform-origin: top;
}

/* Smaller Code Animation */
.code-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
}

.code-line {
    height: 6px;
    /* Smaller lines */
    margin-bottom: 6px;
    border-radius: 1px;
}

/* Thinner Circuit Lines */
.line {
    height: 1px;
    /* Thinner lines */
}

/* Adjusted Responsive Breakpoints */
@media (max-width: 1200px) {
    .laptop-background {
        width: 250px;
        height: 170px;
    }
}

@media (max-width: 991px) {
    .laptop-background {
        width: 220px;
        height: 150px;
        opacity: 0.7;
    }
}

@media (max-width: 767px) {
    .laptop-background {
        width: 180px;
        height: 122px;
        opacity: 0.5;
        right: 12%;
    }
}

/* Adjusted Glow Effects */
.laptop-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(var(--primary-rgb), 0.08),
            transparent 70%);
    animation: screenGlow 4s infinite;
}

@keyframes screenGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }
}

/* Modern Service Cards Styling */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(var(--primary-rgb), 0.1),
            rgba(var(--primary-rgb), 0.05));
    border-radius: 20px;
    z-index: -1;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 1;
}

.service-icon .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.service-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.service-card:hover .service-icon .glow {
    opacity: 0.4;
    transform: scale(1.2);
}

.hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, center) var(--mouse-y, center),
            rgba(var(--primary-rgb), 0.1),
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .hover-effect {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .service-content h5 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

/* Updated Features List Styling */
.features-list {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    transition: all 0.4s ease;
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list ul li {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.features-list ul li i {
    color: var(--primary);
}

/* Hover state adjustments */
.service-card:hover .features-list {
    bottom: 0;
    opacity: 1;
    border-top: 2px solid rgba(var(--primary-rgb), 0.1);
    /* Subtle separator */
}

/* Feature list items animation */
.service-card:hover .features-list ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced readability for feature items */
.features-list ul li:hover {
    color: #000;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .features-list ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 767px) {
    .features-list {
        padding: 1.2rem;
    }

    .features-list ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

.modern-feature {
    position: relative;
    padding: 20px;
}

.feature-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.icon-box i {
    color: #fff;
    font-size: 1.8rem;
    transform: rotate(10deg);
}

.feature-header h5 {
    font-size: 1.4rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.feature-body {
    position: relative;
    z-index: 1;
}

.feature-body p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.feature-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.learn-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(3px);
}

/* Decorative Elements */
.feature-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* Hover Effects */
.feature-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-wrapper:hover .icon-box {
    transform: rotate(0deg);
    background: var(--primary);
}

.feature-wrapper:hover .icon-box i {
    transform: rotate(0deg);
}

.feature-wrapper:hover::before {
    transform: scale(1.2);
    opacity: 0.08;
}

.feature-wrapper:hover::after {
    transform: scale(1.2);
    opacity: 0.08;
}

.feature-wrapper:hover .feature-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .feature-wrapper {
        padding: 1.5rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    .feature-header h5 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.modern-feature {
    animation: float 6s infinite ease-in-out;
}

.modern-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.about-image {
    position: relative;
    padding: 2rem;
}

.main-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    opacity: 0.5;
    animation: float 6s infinite ease-in-out;
}

.circle-pattern {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out reverse;
}

.stats-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: slideIn 0.5s ease-out forwards;
}

.stats-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stats-text {
    font-size: 0.9rem;
    color: #555;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.lottie-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .lottie-wrapper {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .lottie-wrapper {
        height: 250px;
    }
}

/* Footer Styling */
.site-footer {
    background-color: #1E90FF;
    color: #e2e8f0;
    padding: 100px 0;
}

.footer-section {
    padding: 0 50px;
}

.footer-section h4 {
    color: #1E90FF;
    margin-bottom: 15px;
}

.footer-info .contact-item {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #e2e8f0;
}

.footer-info .contact-item i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.social-btn:hover {
    color: #ffffff;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.copyright {
    background: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Removed duplicate fixed buttons styles */
/* Hero Section Styles */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content .lead {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: #0d6efd;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #6c757d;
    margin: 0;
}

.floating-contact {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
}

.floating-contact button {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.testimonials-section {
    padding: 80px 0;
    background-color: #fff;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content i {
    color: #0d6efd;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Add smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Add AOS animations */
[data-aos] {
    opacity: 0;
    transition-duration: 0.8s;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Button Styles */
.btn-glow {
    background: #ffffff;
    color: var(--primary);
    border: 2px solid #ffffff;
    margin-right: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.btn-outline-light {
    color: #ffffff;
    border: 2px solid #ffffff;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: #ffffff;
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}

.floating-services {
    position: relative;
    height: 500px;
    width: 100%;
    z-index: 1;
}

.service-element {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 70px;
    /* Increased from 60px to 70px */
    height: 70px;
    /* Increased from 60px to 70px */
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    cursor: grab;
    z-index: 2;
    padding: 8px;
    /* Increased padding */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    user-select: none;
}

.service-element i {
    font-size: 22px;
    /* Increased from 18px to 22px */
    color: #23272a !important;
    /* Use dark grey for better visibility */
    margin-bottom: 3px;
}

.service-element span {
    font-size: 10px;
    /* Increased from 8px to 10px */
    color: #333;
    text-align: center;
    line-height: 1;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-8px, -12px);
    }

    50% {
        transform: translate(0, -20px);
    }

    75% {
        transform: translate(8px, -12px);
    }
}

/* Hover effect */
.service-element:hover {
    transform: scale(1.3);
    z-index: 100;
}

/* Container visibility */
.hero-header,
.container-xxl {
    overflow: visible !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .floating-services {
        height: 400px;
    }

    .service-element {
        width: 60px;
        height: 60px;
    }

    .service-element i {
        font-size: 18px;
    }

    .service-element span {
        font-size: 8px;
    }
}

.service-element.dragging {
    cursor: grabbing;
    transform: scale(1.5) !important;
    z-index: 1000;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.2),
        0 0 30px rgba(var(--primary-rgb), 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Highlight effect while dragging */
.service-element.dragging i {
    transform: scale(1.2);
    color: var(--primary);
}

.service-element.dragging span {
    color: var(--primary);
}

/* Further Reduced Laptop Size */
.laptop-background {
    position: absolute;
    top: 50%;
    right: 18%;
    transform: translateY(-50%);
    width: 280px;
    /* Reduced from 400px */
    height: 190px;
    /* Reduced from 280px */
    z-index: 0;
    opacity: 0.85;
}

.laptop {
    position: relative;
    width: 100%;
    height: 100%;
    transform: perspective(1200px) rotateY(-22deg) rotateX(8deg);
    /* Adjusted angles */
    transform-style: preserve-3d;
}

.laptop-screen {
    position: relative;
    width: 100%;
    height: 85%;
    background: rgba(1, 0, 26, 0.8);
    border: 1px solid rgba(var(--primary-rgb), 0.3);
    /* Even thinner border */
    border-radius: 6px;
    /* Smaller radius */
    padding: 10px;
    /* Reduced padding */
    overflow: hidden;
}

.laptop-base {
    position: relative;
    width: 108%;
    /* Reduced overhang */
    height: 15%;
    margin-left: -4%;
    background: linear-gradient(90deg,
            rgba(var(--primary-rgb), 0.2),
            rgba(var(--primary-rgb), 0.4));
    border-radius: 0 0 6px 6px;
    transform: rotateX(-10deg);
    /* Adjusted angle */
    transform-origin: top;
}

/* Smaller Code Animation */
.code-container {
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
}

.code-line {
    height: 6px;
    /* Smaller lines */
    margin-bottom: 6px;
    border-radius: 1px;
}

/* Thinner Circuit Lines */
.line {
    height: 1px;
    /* Thinner lines */
}

/* Adjusted Responsive Breakpoints */
@media (max-width: 1200px) {
    .laptop-background {
        width: 250px;
        height: 170px;
    }
}

@media (max-width: 991px) {
    .laptop-background {
        width: 220px;
        height: 150px;
        opacity: 0.7;
    }
}

@media (max-width: 767px) {
    .laptop-background {
        width: 180px;
        height: 122px;
        opacity: 0.5;
        right: 12%;
    }
}

/* Adjusted Glow Effects */
.laptop-screen::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center,
            rgba(var(--primary-rgb), 0.08),
            transparent 70%);
    animation: screenGlow 4s infinite;
}

@keyframes screenGlow {

    0%,
    100% {
        opacity: 0.4;
    }

    50% {
        opacity: 0.6;
    }
}

/* Modern Service Cards Styling */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            rgba(var(--primary-rgb), 0.1),
            rgba(var(--primary-rgb), 0.05));
    border-radius: 20px;
    z-index: -1;
}

.service-icon {
    position: relative;
    width: 80px;
    height: 80px;
    background: rgba(var(--primary-rgb), 0.1);
    border-radius: 50%;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon i {
    font-size: 2rem;
    color: var(--primary);
    z-index: 1;
}

.service-icon .glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary);
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.2;
    transition: all 0.3s ease;
}

.service-content {
    position: relative;
    z-index: 1;
}

.service-content h5 {
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.25rem;
}

.service-content p {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Hover Effects */
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(var(--primary-rgb), 0.3);
}

.service-card:hover .service-icon .glow {
    opacity: 0.4;
    transform: scale(1.2);
}

.hover-effect {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, center) var(--mouse-y, center),
            rgba(var(--primary-rgb), 0.1),
            transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.service-card:hover .hover-effect {
    opacity: 1;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .service-card {
        padding: 1.5rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
    }

    .service-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 767px) {
    .service-content h5 {
        font-size: 1.1rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }
}

/* Updated Features List Styling */
.features-list {
    position: absolute;
    bottom: -100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    transition: all 0.4s ease;
    opacity: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.features-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list ul li {
    color: #333;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.features-list ul li i {
    color: var(--primary);
}

/* Hover state adjustments */
.service-card:hover .features-list {
    bottom: 0;
    opacity: 1;
    border-top: 2px solid rgba(var(--primary-rgb), 0.1);
    /* Subtle separator */
}

/* Feature list items animation */
.service-card:hover .features-list ul li {
    opacity: 1;
    transform: translateX(0);
}

/* Enhanced readability for feature items */
.features-list ul li:hover {
    color: #000;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .features-list ul li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 767px) {
    .features-list {
        padding: 1.2rem;
    }

    .features-list ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
}

.modern-feature {
    position: relative;
    padding: 20px;
}

.feature-wrapper {
    background: #fff;
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    overflow: hidden;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-10deg);
    transition: all 0.4s ease;
}

.icon-box i {
    color: #ffffff;
    font-size: 1.8rem;
    transform: rotate(10deg);
}

.feature-header h5 {
    font-size: 1.4rem;
    margin: 0;
    color: #333;
    font-weight: 600;
}

.feature-body {
    position: relative;
    z-index: 1;
}

.feature-body p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.feature-footer {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.learn-more {
    color: var(--primary);
    font-weight: 500;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: var(--primary);
    transform: translateX(5px);
}

.learn-more::after {
    content: '→';
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.learn-more:hover::after {
    transform: translateX(3px);
}

/* Decorative Elements */
.feature-wrapper::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 200px;
    height: 200px;
    background: var(--primary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.feature-wrapper::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 160px;
    height: 160px;
    background: var(--secondary);
    opacity: 0.05;
    border-radius: 50%;
    transition: all 0.4s ease;
}

/* Hover Effects */
.feature-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-wrapper:hover .icon-box {
    transform: rotate(0deg);
    background: var(--primary);
}

.feature-wrapper:hover .icon-box i {
    transform: rotate(0deg);
}

.feature-wrapper:hover::before {
    transform: scale(1.2);
    opacity: 0.08;
}

.feature-wrapper:hover::after {
    transform: scale(1.2);
    opacity: 0.08;
}

.feature-wrapper:hover .feature-footer {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    .feature-wrapper {
        padding: 1.5rem;
    }

    .icon-box {
        width: 50px;
        height: 50px;
    }

    .icon-box i {
        font-size: 1.5rem;
    }

    .feature-header h5 {
        font-size: 1.2rem;
    }
}

/* Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.modern-feature {
    animation: float 6s infinite ease-in-out;
}

.modern-feature:nth-child(2) {
    animation-delay: 0.2s;
}

.modern-feature:nth-child(3) {
    animation-delay: 0.4s;
}

.about-image {
    position: relative;
    padding: 2rem;
}

.main-image {
    position: relative;
    z-index: 2;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.floating-elements {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.dots-pattern {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 120px;
    opacity: 0.5;
    animation: float 6s infinite ease-in-out;
}

.circle-pattern {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 150px;
    opacity: 0.3;
    animation: float 8s infinite ease-in-out reverse;
}

.stats-badge {
    position: absolute;
    bottom: 30px;
    right: 0;
    background: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3;
    animation: slideIn 0.5s ease-out forwards;
}

.stats-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.stats-text {
    font-size: 0.9rem;
    color: #555;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.lottie-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    z-index: 2;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .lottie-wrapper {
        height: 300px;
    }
}

@media (max-width: 767px) {
    .lottie-wrapper {
        height: 250px;
    }
}

/* Footer Styling */
.site-footer {
    background-color: #1E90FF;
    color: #e2e8f0;
    padding: 100px 0;
}

.footer-section {
    padding: 0 50px;
}

.footer-section h4 {
    color: #1E90FF;
    margin-bottom: 15px;
}

.footer-info .contact-item {
    display: flex;
    align-items: center;
    margin-top: 15px;
    color: #e2e8f0;
}

.footer-info .contact-item i {
    margin-right: 10px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-btn {
    color: #e2e8f0;
    transition: color 0.3s ease;
}

.social-btn:hover {
    color: #ffffff;
}

.footer-section a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.copyright {
    background: rgba(0, 0, 0, 0.1);
    color: #ffffff;
    padding: 20px 0;
    text-align: center;
    font-size: 14px;
}

/* Removed duplicate fixed buttons styles */



.floating-services .service-element i {
    color: #000 !important;
}

.floating-services .service-element:hover i {
    color: #1E90FF !important;
    transform: scale(1.18) rotate(-8deg);
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
    padding-top: 0;
    transition: padding-top 0.3s ease;
}



.hero {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    background: #1e90ff;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-header {
    position: relative;
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    background: #1e90ff;
    overflow: hidden;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 10;
    position: relative;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-content .hero-title {
    color: #ffffff !important;
}

.hero-content h1.hero-title {
    color: #ffffff !important;
}





.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
    color: white;
    text-decoration: none;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-cta-secondary {
    display: inline-block;
    background: transparent;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid white;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-cta-secondary:hover {
    transform: translateY(-3px);
    background: white;
    color: #1e90ff;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.hero-clipart {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
    width: 350px;
    height: 350px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 200"><defs><linearGradient id="compassGrad" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.2);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.05);stop-opacity:1" /></linearGradient></defs><!-- Compass Rose --><circle cx="100" cy="100" r="80" fill="url(%23compassGrad)" stroke="rgba(255,255,255,0.4)" stroke-width="3"/><circle cx="100" cy="100" r="60" fill="none" stroke="rgba(255,255,255,0.3)" stroke-width="2"/><circle cx="100" cy="100" r="40" fill="none" stroke="rgba(255,255,255,0.2)" stroke-width="1"/><!-- North Arrow --><path d="M100 20 L95 40 L100 35 L105 40 Z" fill="rgba(255,255,255,0.9)"/><text x="100" y="15" text-anchor="middle" fill="rgba(255,255,255,0.8)" font-size="12" font-weight="bold">N</text><!-- South Arrow --><path d="M100 180 L95 160 L100 165 L105 160 Z" fill="rgba(255,255,255,0.6)"/><text x="100" y="195" text-anchor="middle" fill="rgba(255,255,255,0.6)" font-size="12" font-weight="bold">S</text><!-- East Arrow --><path d="M180 100 L160 95 L165 100 L160 105 Z" fill="rgba(255,255,255,0.6)"/><text x="195" y="105" text-anchor="middle" fill="rgba(255,255,255,0.6)" font-size="12" font-weight="bold">E</text><!-- West Arrow --><path d="M20 100 L40 95 L35 100 L40 105 Z" fill="rgba(255,255,255,0.6)"/><text x="5" y="105" text-anchor="middle" fill="rgba(255,255,255,0.6)" font-size="12" font-weight="bold">W</text><!-- Center Point --><circle cx="100" cy="100" r="8" fill="rgba(255,255,255,0.8)"/><circle cx="100" cy="100" r="4" fill="rgba(255,255,255,1)"/><!-- Directional Lines --><line x1="100" y1="20" x2="100" y2="180" stroke="rgba(255,255,255,0.3)" stroke-width="1"/><line x1="20" y1="100" x2="180" y2="100" stroke="rgba(255,255,255,0.3)" stroke-width="1"/><line x1="30" y1="30" x2="170" y2="170" stroke="rgba(255,255,255,0.2)" stroke-width="1"/><line x1="170" y1="30" x2="30" y2="170" stroke="rgba(255,255,255,0.2)" stroke-width="1"/></svg>') no-repeat center;
    background-size: contain;
    animation: float 6s ease-in-out infinite;
    z-index: 5;
}

.hero-clipart::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 60"><!-- Sailboat --><path d="M20 50 L80 50 L70 40 L30 40 Z" fill="rgba(255,255,255,0.3)" stroke="rgba(255,255,255,0.5)" stroke-width="1"/><path d="M45 40 L45 15 L55 15 L55 40 Z" fill="rgba(255,255,255,0.4)" stroke="rgba(255,255,255,0.6)" stroke-width="1"/><path d="M40 15 L60 15 L55 5 L45 5 Z" fill="rgba(255,255,255,0.6)" stroke="rgba(255,255,255,0.8)" stroke-width="1"/><circle cx="25" cy="50" r="3" fill="rgba(255,255,255,0.4)"/><circle cx="75" cy="50" r="3" fill="rgba(255,255,255,0.4)"/></svg>') no-repeat center;
    background-size: contain;
    animation: sail 8s ease-in-out infinite;
}

.hero-clipart::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><!-- Lighthouse --><rect x="35" y="20" width="10" height="50" fill="rgba(255,255,255,0.3)" stroke="rgba(255,255,255,0.5)" stroke-width="1"/><rect x="30" y="15" width="20" height="10" fill="rgba(255,255,255,0.4)" stroke="rgba(255,255,255,0.6)" stroke-width="1"/><circle cx="40" cy="25" r="3" fill="rgba(255,255,255,0.8)"/><circle cx="40" cy="25" r="1" fill="rgba(255,255,255,1)"/><path d="M40 15 L35 10 L45 10 Z" fill="rgba(255,255,255,0.6)"/><rect x="38" y="10" width="4" height="5" fill="rgba(255,255,255,0.4)"/></svg>') no-repeat center;
    background-size: contain;
    animation: glow 4s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(-50%) translateX(0px);
    }

    50% {
        transform: translateY(-50%) translateX(10px);
    }
}

@keyframes sail {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    25% {
        transform: translateY(-5px) rotate(2deg);
    }

    50% {
        transform: translateY(-10px) rotate(0deg);
    }

    75% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

@keyframes glow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
        color: #ffffff;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-clipart {
        width: 250px;
        height: 250px;
        right: 5%;
    }

    .hero-clipart::before {
        width: 70px;
        height: 40px;
        top: -15px;
        right: -15px;
    }

    .hero-clipart::after {
        width: 60px;
        height: 60px;
        bottom: -20px;
        left: -20px;
    }
}

/* Animated background elements */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: float 20s infinite linear;
}

/* Animated background elements */
.stars {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle 3s infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.cloud {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% {
        transform: translateX(-100px);
    }

    100% {
        transform: translateX(calc(100vw + 100px));
    }
}

.beam-hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: crosshair;
}

/* Enhanced Lighthouse Structure */
.lighthouse-container {
    position: absolute;
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%);
    z-index: 100;
    pointer-events: none;
}

.lighthouse {
    position: relative;
    width: 180px;
    height: 550px;
    animation: lighthouse-glow 4s ease-in-out infinite;
}

/* Rocky Base */
.lighthouse-rocks {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    background: linear-gradient(135deg, #64748b, #475569, #334155);
    border-radius: 50% 50% 0 0;
    box-shadow:
        inset 0 10px 20px rgba(0, 0, 0, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.4);
}

.lighthouse-rocks::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 20px;
    width: 40px;
    height: 20px;
    background: #475569;
    border-radius: 50%;
    box-shadow:
        60px 0 0 #475569,
        120px 0 0 #475569,
        30px 10px 0 #334155,
        90px 10px 0 #334155;
}

/* Foundation */
.lighthouse-foundation {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 30px;
    box-shadow:
        inset 0 5px 15px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.3);
    border: 2px solid #cbd5e1;
}

/* Main Tower */
.lighthouse-tower {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 130px;
    height: 380px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 15px;
    box-shadow:
        inset -5px 0 15px rgba(0, 0, 0, 0.1),
        0 8px 25px rgba(0, 0, 0, 0.3);
    animation: building-shimmer 6s ease-in-out infinite;
    border: 2px solid #cbd5e1;
}

/* Red and White Stripes */
.lighthouse-stripes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stripe {
    position: absolute;
    width: 100%;
    height: 25px;
    background: #dc2626;
    border: 1px solid #b91c1c;
}

.stripe-1 {
    top: 40px;
}

.stripe-2 {
    top: 90px;
}

.stripe-3 {
    top: 140px;
}

/* Windows */
.lighthouse-windows {
    position: absolute;
    width: 100%;
    height: 100%;
}

.window {
    position: absolute;
    width: 15px;
    height: 20px;
    background: #fbbf24;
    border-radius: 3px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow:
        0 0 15px rgba(251, 191, 36, 0.8),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    animation: window-flicker 3s ease-in-out infinite;
}

.window-1 {
    top: 60px;
    animation-delay: 0s;
}

.window-2 {
    top: 110px;
    animation-delay: 1s;
}

.window-3 {
    top: 160px;
    animation-delay: 2s;
}

/* Door */
.lighthouse-door {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 35px;
    background: linear-gradient(135deg, #8b5a2b, #a0522d);
    border-radius: 3px 3px 0 0;
    border: 1px solid #654321;
    box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
}

.lighthouse-door::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 3px;
    background: #ffd700;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 215, 0, 0.8);
}

/* Lantern Room */
.lighthouse-lantern {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 120px;
    animation: lantern-rotate 8s ease-in-out infinite;
}

.lantern-glass {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 50% 50% 20% 20%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(2px);
}

.lantern-frame {
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 3px solid #1f2937;
    border-radius: 50% 50% 20% 20%;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.4);
}

.lantern-light {
    position: absolute;
    top: 25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 35px;
    background: radial-gradient(ellipse, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow:
        0 0 50px #fbbf24,
        0 0 100px rgba(251, 191, 36, 0.6),
        0 0 150px rgba(251, 191, 36, 0.3);
    animation: light-pulse 2s infinite;
}

.lantern-beam {
    position: absolute;
    top: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 250px;
    height: 6px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(251, 191, 36, 0.8) 20%,
            rgba(251, 191, 36, 1) 50%,
            rgba(251, 191, 36, 0.8) 80%,
            transparent 100%);
    border-radius: 3px;
    animation: beam-sweep 4s linear infinite;
}

/* Weather Vane */
.weather-vane {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    animation: vane-spin 10s linear infinite;
}

.vane-arrow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 25px solid #1f2937;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.vane-base {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #1f2937;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.lighthouse-light {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    box-shadow:
        0 0 30px #fbbf24,
        0 0 60px rgba(251, 191, 36, 0.5);
    animation: lighthouse-pulse 2s infinite;
}

@keyframes lighthouse-pulse {

    0%,
    100% {
        box-shadow:
            0 0 30px #fbbf24,
            0 0 60px rgba(251, 191, 36, 0.5);
    }

    50% {
        box-shadow:
            0 0 50px #fbbf24,
            0 0 100px rgba(251, 191, 36, 0.8);
    }
}

@keyframes lighthouse-glow {

    0%,
    100% {
        filter: brightness(1) drop-shadow(0 0 20px rgba(251, 191, 36, 0.3));
    }

    50% {
        filter: brightness(1.2) drop-shadow(0 0 30px rgba(251, 191, 36, 0.6));
    }
}

@keyframes building-shimmer {

    0%,
    100% {
        background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    }

    50% {
        background: linear-gradient(135deg, #f1f5f9, #cbd5e1);
    }
}

@keyframes lantern-rotate {

    0%,
    100% {
        transform: translateX(-50%) rotateY(0deg);
    }

    25% {
        transform: translateX(-50%) rotateY(8deg);
    }

    75% {
        transform: translateX(-50%) rotateY(-8deg);
    }
}

@keyframes light-pulse {

    0%,
    100% {
        box-shadow:
            0 0 40px #fbbf24,
            0 0 80px rgba(251, 191, 36, 0.6),
            0 0 120px rgba(251, 191, 36, 0.3);
    }

    50% {
        box-shadow:
            0 0 60px #fbbf24,
            0 0 120px rgba(251, 191, 36, 0.8),
            0 0 180px rgba(251, 191, 36, 0.5);
    }
}

@keyframes beam-sweep {
    0% {
        transform: translateX(-50%) rotate(-45deg);
        opacity: 0.8;
    }

    50% {
        transform: translateX(-50%) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) rotate(45deg);
        opacity: 0.8;
    }
}

@keyframes vane-spin {
    0% {
        transform: translateX(-50%) rotate(0deg);
    }

    100% {
        transform: translateX(-50%) rotate(360deg);
    }
}

@keyframes window-flicker {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    }

    50% {
        opacity: 0.7;
        box-shadow: 0 0 15px rgba(251, 191, 36, 0.8);
    }
}

.lighthouse-windows {
    position: absolute;
    width: 12px;
    height: 15px;
    background: #fbbf24;
    border-radius: 3px;
    left: 50%;
    transform: translateX(-50%);
    top: 40px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    animation: window-flicker 3s ease-in-out infinite;
}

.lighthouse-windows::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 15px;
    background: #fbbf24;
    border-radius: 3px;
    top: 50px;
    box-shadow: 0 0 10px rgba(251, 191, 36, 0.6);
    animation: window-flicker 3s ease-in-out infinite 1.5s;
}

/* Rocky Base */
.rocks {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 60px;
    z-index: 4;
}

.rock {
    position: absolute;
    background: linear-gradient(135deg, #64748b, #475569);
    border-radius: 50%;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.rock:nth-child(1) {
    width: 40px;
    height: 25px;
    left: 20px;
    bottom: 10px;
}

.rock:nth-child(2) {
    width: 60px;
    height: 35px;
    left: 70px;
    bottom: 5px;
}

.rock:nth-child(3) {
    width: 35px;
    height: 20px;
    left: 140px;
    bottom: 15px;
}

.rock:nth-child(4) {
    width: 25px;
    height: 15px;
    left: 50px;
    bottom: 25px;
}

/* Interactive Beam - Enhanced Connection */
.beam-element {
    position: absolute;
    width: 0;
    height: 0;
    background: transparent;
    pointer-events: none;
    z-index: 6;
    transform-origin: 0% 50%;
    transition: width 0.15s ease-out, height 0.15s ease-out, transform 0.15s ease-out;
}

.beam-element::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(251, 191, 36, 0.9) 0%,
            rgba(251, 191, 36, 0.8) 10%,
            rgba(251, 191, 36, 0.6) 25%,
            rgba(251, 191, 36, 0.4) 50%,
            rgba(251, 191, 36, 0.2) 75%,
            rgba(251, 191, 36, 0.05) 90%,
            transparent 100%);
    border-radius: 50px;
    filter: blur(3px);
    box-shadow:
        0 0 40px rgba(251, 191, 36, 0.6),
        0 0 80px rgba(251, 191, 36, 0.4),
        0 0 120px rgba(251, 191, 36, 0.2);
}

.beam-element::after {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.8) 0%,
            rgba(255, 255, 255, 0.6) 15%,
            rgba(255, 255, 255, 0.3) 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    border-radius: 25px;
    filter: blur(1px);
}

/* Text Styling */
.beam-hero-heading {
    position: relative;
    z-index: 7;
    font-size: 4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
    letter-spacing: 0.1em;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(248, 250, 252, 0.3);
    margin-top: 6rem;
    user-select: none;
}

.beam-letter {
    display: inline-block;
    transition: all 0.4s ease;
    opacity: 0.6;
    transform: translateY(0);
}

.beam-letter.active {
    opacity: 1;
    color: #fbbf24;
    text-shadow:
        0 0 15px rgba(251, 191, 36, 1),
        0 0 30px rgba(251, 191, 36, 0.8),
        0 0 45px rgba(251, 191, 36, 0.6),
        2px 2px 4px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px) scale(1.1);
}

.subtitle {
    position: relative;
    z-index: 7;
    font-size: 1.3rem;
    color: rgba(248, 250, 252, 0.8);
    margin-top: 1.5rem;
    text-align: center;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Ocean Waves */
.ocean {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(180deg,
            rgba(30, 58, 138, 0.9) 0%,
            rgba(30, 58, 138, 1) 100%);
    z-index: 8;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 C150,100 350,0 600,60 C850,120 1050,20 1200,60 V120 H0 V60Z" fill="rgba(59, 130, 246, 0.8)"/></svg>') repeat-x;
    animation: wave-animation 15s infinite linear;
}

.wave:nth-child(2) {
    bottom: 10px;
    animation: wave-animation 20s infinite linear reverse;
    opacity: 0.7;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .lighthouse {
        width: 100px;
        height: 320px;
    }

    .lighthouse-tower {
        width: 70px;
        height: 200px;
    }

    .lighthouse-foundation {
        width: 120px;
        height: 40px;
    }

    .lighthouse-lantern {
        width: 80px;
        height: 70px;
    }
}

@media (max-width: 480px) {
    .lighthouse {
        width: 80px;
        height: 250px;
    }

    .lighthouse-tower {
        width: 60px;
        height: 150px;
    }

    .lighthouse-foundation {
        width: 100px;
        height: 35px;
    }

    .lighthouse-lantern {
        width: 70px;
        height: 60px;
    }
}



.icon-container {
    width: 70px;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #f5f5f5);
    box-shadow: 5px 5px 15px #d9d9d9, -5px -5px 15px #ffffff;
    transition: all 0.3s ease;
    margin: 0 auto 1.5rem;
}

.icon-container:hover {
    transform: scale(1.1);
    background: #1E90FF;
}

.icon {
    font-size: 2rem;
    color: #1E90FF;
    transition: all 0.3s ease;
}

.icon-container:hover .icon {
    color: #ffffff;
}

.feature-card {
    padding: 2.5rem;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 144, 255, 0.1);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(30, 144, 255, 0.15);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #333;
}

.feature-list li i {
    color: #1E90FF;
    margin-right: 12px;
    font-size: 1.1rem;
    background: rgba(30, 144, 255, 0.1);
    padding: 8px;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.learn-more {
    color: #1E90FF;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.learn-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Hero Section and Carousel Styles */
.hero-section {
    padding: 2rem 0;
    background: #1E90FF;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: #1E90FF;
}

/* Hero Banner Carousel Styles */
#heroCarousel {
    margin: 0 auto;
    max-width: 1400px;
    background-color: #1E90FF;
    box-shadow: 0 4px 15px rgba(30, 144, 255, 0.2);
}

.hero-banner {
    position: relative;
    overflow: hidden;
    background-blend-mode: soft-light;
    border-radius: 15px;
    margin: 0 15px;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.hero-image-wrapper {
    padding: 2rem;
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: translateY(-5px);
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.15));
}

.carousel-indicators {
    bottom: 2rem;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #FFFFFF;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.carousel-indicators .active {
    opacity: 1;
    transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

#heroCarousel:hover .carousel-control-prev,
#heroCarousel:hover .carousel-control-next {
    opacity: 0.8;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: rgba(30, 144, 255, 0.7);
    border-radius: 50%;
    padding: 1.5rem;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-banner .btn {
    transition: all 0.3s ease;
    border-radius: 30px;
    padding: 12px 30px;
    font-weight: 600;
}

.hero-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}



.service-icon {
    position: relative;
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.service-icon:hover {
    animation: spin 1s linear infinite;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary);
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



.service-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    color: #333;
}

.service-features li i {
    margin-right: 10px;
    font-size: 1.2rem;
}

.revolving-icon {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    color: #ffffff;
}

.why-choose-section {
    padding: 120px 0;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animated background elements */
.bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: visible;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.1), rgba(155, 89, 182, 0.1));
    border-radius: 50%;
    animation: float 20s infinite linear;
}

.shape-1 {
    width: 200px;
    height: 200px;
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: -5%;
    animation-delay: -10s;
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 30%;
    left: 70%;
    animation-delay: -5s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(15px) rotate(240deg);
    }
}

/* Header Section */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    font-size: 16px;
    color: #3498db;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #3498db, #e74c3c, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeInUp 1s ease 0.2s forwards;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #3498db);
    margin: 0 auto;
    border-radius: 2px;
    position: relative;
    opacity: 0;
    animation: fadeInUp 1s ease 0.4s forwards;
}

.title-underline::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #3498db, #e74c3c);
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.feature-card:nth-child(1) {
    animation-delay: 0.1s;
}

.feature-card:nth-child(2) {
    animation-delay: 0.2s;
}

.feature-card:nth-child(3) {
    animation-delay: 0.3s;
}

.feature-card:nth-child(4) {
    animation-delay: 0.4s;
}

.feature-card:nth-child(5) {
    animation-delay: 0.5s;
}

.feature-card:nth-child(6) {
    animation-delay: 0.6s;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    transition: left 0.8s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.4);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.3);
}

.feature-card:hover::before {
    left: 100%;
}

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    box-shadow: 0 10px 30px rgba(52, 152, 219, 0.4);
}

.feature-icon {
    font-size: 24px;
    color: #ffffff;
}

.feature-content h5 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.feature-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* Stats Section */
.stats-section {
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(52, 152, 219, 0.3);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    position: relative;
    overflow: visible;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease forwards;
}

.stat-box:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-box:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-box:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-box:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.15), transparent);
    transition: left 0.8s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: rgba(52, 152, 219, 0.6);
    box-shadow: 0 20px 40px rgba(52, 152, 219, 0.4);
}

.stat-box:hover::before {
    left: 100%;
}

.stat-icon-wrap {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.stat-icon {
    font-size: 20px;
    color: #524f4f;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #23272a;
    /* Charcoal/Dark Grey for readability */
    margin-bottom: 10px;
    text-shadow: none;
    background: none;
    -webkit-background-clip: initial;
    -webkit-text-fill-color: initial;
    background-clip: initial;
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    margin: 0;
}

/* Vision & Mission Container */
.vision-mission-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.mission-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease 0.8s forwards;
}

.mission-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 180deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.mission-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #e74c3c, #f39c12);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 15px 40px rgba(231, 76, 60, 0.4);
}

.mission-icon {
    font-size: 30px;
    color: #ffffff;
}

.mission-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #e74c3c, #3498db);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

.vision-section {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    position: relative;
    overflow: visible;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.8s ease 0.6s forwards;
    z-index: 2;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(52, 152, 219, 0.1), transparent);
    animation: rotate 20s linear infinite;
    z-index: -1;
}

.vision-icon-wrap {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3498db, #9b59b6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 15px 40px rgba(52, 152, 219, 0.4);
}

.vision-icon {
    font-size: 30px;
    color: #ffffff;
}

.vision-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #3498db, #e74c3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vision-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .vision-section,
    .mission-section {
        padding: 30px;
    }

    .why-choose-section {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-box {
        padding: 20px;
    }

    .stat-number {
        font-size: 2rem;
        color: #0a0a0a;
    }

    .vision-mission-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vision-section,
    .mission-section {
        padding: 25px;
    }
}



/* Modern Elegant Container Architecture */
.my-lifted-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow:
        0 8px 32px rgba(30, 144, 255, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04),
        0 2px 8px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(30, 144, 255, 0.12);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Layered Background Effect */
.my-lifted-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
            rgba(30, 144, 255, 0.1) 0%,
            rgba(65, 105, 225, 0.05) 50%,
            rgba(30, 144, 255, 0.1) 100%);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Inner Glow Effect */
.my-lifted-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%,
            rgba(30, 144, 255, 0.08) 0%,
            transparent 70%);
    border-radius: 28px;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

/* Hover Effects */
.my-lifted-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow:
        0 20px 60px rgba(30, 144, 255, 0.15),
        0 12px 32px rgba(0, 0, 0, 0.08),
        0 6px 16px rgba(0, 0, 0, 0.04),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(30, 144, 255, 0.2);
}

.my-lifted-card:hover::before {
    opacity: 1;
}

.my-lifted-card:hover::after {
    opacity: 1;
}

/* Overlapping Container Layout */
.overlapping-container {
    position: relative;
    margin: 2rem 0;
}

.overlapping-container .row {
    position: relative;
    z-index: 2;
}

.overlapping-container .col-md-4:nth-child(1) {
    transform: translateY(0);
    z-index: 3;
}

.overlapping-container .col-md-4:nth-child(2) {
    transform: translateY(-15px);
    z-index: 2;
}

.overlapping-container .col-md-4:nth-child(3) {
    transform: translateY(-30px);
    z-index: 1;
}

.overlapping-container .col-md-4:nth-child(4) {
    transform: translateY(-15px);
    z-index: 2;
}

.overlapping-container .col-md-4:nth-child(5) {
    transform: translateY(-30px);
    z-index: 1;
}

.overlapping-container .col-md-4:nth-child(6) {
    transform: translateY(-45px);
    z-index: 0;
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(30, 144, 255, 0.1), rgba(65, 105, 225, 0.1));
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    z-index: 0;
}

.floating-element:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element:nth-child(2) {
    top: 20%;
    right: 10%;
    animation-delay: 2s;
}

.floating-element:nth-child(3) {
    bottom: 15%;
    left: 15%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 2rem;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    box-shadow:
        0 16px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Layered Shadow System */
.layered-shadow {
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.02),
        0 4px 12px rgba(0, 0, 0, 0.04),
        0 8px 24px rgba(0, 0, 0, 0.06),
        0 16px 48px rgba(0, 0, 0, 0.08);
}

/* Gradient Borders */
.gradient-border {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9ff 100%);
    border-radius: 28px;
    padding: 2px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(30, 144, 255, 0.3) 0%,
            rgba(65, 105, 225, 0.2) 50%,
            rgba(30, 144, 255, 0.3) 100%);
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Responsive Overlapping */
@media (max-width: 768px) {
    .overlapping-container .col-md-4 {
        transform: none !important;
        margin-bottom: 1.5rem;
    }

    .my-lifted-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .floating-element {
        display: none;
    }
}

/* Enhanced Typography */
.my-lifted-card h4 {
    background: linear-gradient(135deg, #1E90FF, #4169E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    letter-spacing: -0.5px;
}

/* Subtle Animation on Load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.my-lifted-card {
    animation: fadeInUp 0.8s ease-out;
}

.my-lifted-card:nth-child(1) {
    animation-delay: 0.1s;
}

.my-lifted-card:nth-child(2) {
    animation-delay: 0.2s;
}

.my-lifted-card:nth-child(3) {
    animation-delay: 0.3s;
}

.my-lifted-card:nth-child(4) {
    animation-delay: 0.4s;
}

.my-lifted-card:nth-child(5) {
    animation-delay: 0.5s;
}

.my-lifted-card:nth-child(6) {
    animation-delay: 0.6s;
}



.my-lifted-card {
    background: rgba(255, 255, 255, 0.98);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(30, 144, 255, 0.1);
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.my-lifted-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, #1E90FF, #4169E1);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.my-lifted-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 144, 255, 0.25), 0 0 50px rgba(30, 144, 255, 0.1);
    background: rgba(255, 255, 255, 1);
}

.my-lifted-card:hover::before {
    opacity: 1;
}

.stat-number {
    color: #333333 !important;
}






/* Advanced Services Section - Clean & Simple Design */
.advanced-services-section {
    background: #ffffff;
    padding: 100px 0;
    margin: 0;
    position: relative;
}

.text-gradient {
    background: linear-gradient(135deg, #1E90FF, #4169E1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    font-family: 'Montserrat', sans-serif;
}

.services-header {
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.services-header::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #1E90FF, #4169E1);
    border-radius: 2px;
}

.services-header .badge {
    font-size: 0.9rem;
    padding: 0.4rem 1rem;
    background: rgba(30, 144, 255, 0.1);
    color: #1E90FF;
    border: 1px solid rgba(30, 144, 255, 0.2);
    border-radius: 20px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.services-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    color: #1E90FF;
}

.services-header p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
    font-family: 'Open Sans', sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards - Clean & Simple */
.service-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    height: 100%;
    margin-bottom: 20px;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 144, 255, 0.1);
    border-color: #1E90FF;
}

.service-card-inner {
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Simple Icon Design */
.service-icon-wrapper {
    text-align: center;
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-icon {
    font-size: 1.5rem;
    color: #1E90FF;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: #ffffff;
}

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.service-description {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #555;
    font-weight: 400;
}

.service-features li i {
    color: #1E90FF;
    margin-right: 8px;
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.service-cta {
    text-align: center;
    margin-top: auto;
}

.service-cta .btn {
    border-radius: 6px;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    background: transparent;
    border: 1px solid #1E90FF;
    color: #1E90FF;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.service-cta .btn:hover {
    background: #1E90FF;
    color: white;
    transform: translateY(-2px);
}

.service-cta .btn i {
    margin-left: 6px;
    font-size: 0.8rem;
}

/* CTA Section - Clean Design */
.services-cta {
    margin-top: 60px;
    text-align: center;
    background: transparent;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    font-family: 'Open Sans', sans-serif;
}

.services-cta .btn {
    font-size: 1rem;
    padding: 0.8rem 2rem;
    background: #1E90FF;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.services-cta .btn:hover {
    background: #1573B8;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .advanced-services-section {
        padding: 60px 0;
    }

    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card-inner {
        padding: 1.5rem;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .service-icon {
        font-size: 1.5rem;
    }

    .service-title {
        font-size: 1.3rem;
    }

    .services-cta {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .services-header h2 {
        font-size: 1.8rem;
    }

    .service-card-inner {
        padding: 1.5rem;
    }

    .service-icon-wrapper {
        width: 50px;
        height: 50px;
    }

    .service-icon {
        font-size: 1.2rem;
    }

    .service-title {
        font-size: 1.2rem;
    }

    .service-description {
        font-size: 0.9rem;
    }

    .service-features li {
        font-size: 0.85rem;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {

    .service-card,
    .service-icon-wrapper,
    .service-cta .btn,
    .services-cta {
        transition: none;
        animation: none;
    }
}

/* Enhanced focus states for better accessibility */
.service-card:focus-within {
    outline: 2px solid #1E90FF;
    outline-offset: 4px;
    border-radius: 24px;
}

/* Map Section Styling */
.map-section {
    margin-top: 3rem;
}

.map-heading {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1E90FF;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #1E90FF, #4169E1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.map-heading i {
    color: #1E90FF;
    -webkit-text-fill-color: #1E90FF;
}

.map-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    color: #1C2035;
    margin-bottom: 0;
    font-weight: 500;
}

/* Responsive adjustments for map section */
@media (max-width: 768px) {
    .map-heading {
        font-size: 1.6rem;
    }

    .map-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .map-heading {
        font-size: 1.4rem;
    }

    .map-subtitle {
        font-size: 0.9rem;
    }
}



.glass-cubes-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.glass-cube {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.37),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float-cube 8s ease-in-out infinite;
    transform-style: preserve-3d;
}

.glass-cube::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg,
            transparent 30%,
            rgba(255, 255, 255, 0.1) 50%,
            transparent 70%);
    border-radius: 8px;
}

.glass-cube:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.glass-cube:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.glass-cube:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.glass-cube:nth-child(4) {
    top: 80%;
    left: 20%;
    animation-delay: 6s;
    animation-duration: 11s;
}

.glass-cube:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 13s;
}

.glass-cube:nth-child(6) {
    top: 70%;
    left: 40%;
    animation-delay: 10s;
    animation-duration: 9s;
}

.glass-cube:nth-child(7) {
    top: 10%;
    left: 30%;
    animation-delay: 12s;
    animation-duration: 15s;
}

.glass-cube:nth-child(8) {
    top: 50%;
    left: 90%;
    animation-delay: 14s;
    animation-duration: 16s;
}

@keyframes float-cube {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-20px) rotateX(15deg) rotateY(15deg) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-40px) rotateX(30deg) rotateY(30deg) scale(1.05);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) rotateX(15deg) rotateY(15deg) scale(1.1);
        opacity: 1;
    }
}

/* Floating Buoy */
.floating-buoy {
    position: absolute;
    width: 35px;
    height: 50px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 50%,
            rgba(255, 255, 255, 0.02) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    backdrop-filter: blur(8px);
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    animation: buoy-bob 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

.floating-buoy::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 15px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
}

.floating-buoy:nth-child(5) {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.floating-buoy:nth-child(6) {
    top: 70%;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 7s;
}

/* Sailboat */
.sailboat {
    position: absolute;
    width: 60px;
    height: 40px;
    animation: sailboat-sail 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.sailboat::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 30px solid rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.sailboat::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 8px;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.08) 100%);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.sailboat:nth-child(7) {
    top: 30%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.sailboat:nth-child(8) {
    top: 60%;
    left: 75%;
    animation-delay: 7s;
    animation-duration: 18s;
}

/* Ocean Bubbles */
.ocean-bubble {
    position: absolute;
    width: 15px;
    height: 15px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.3) 0%,
            rgba(255, 255, 255, 0.1) 70%,
            transparent 100%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: bubble-rise 8s linear infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.ocean-bubble:nth-child(9) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 6s;
}

.ocean-bubble:nth-child(10) {
    left: 25%;
    animation-delay: 1s;
    animation-duration: 7s;
}

.ocean-bubble:nth-child(11) {
    left: 40%;
    animation-delay: 2s;
    animation-duration: 8s;
}

.ocean-bubble:nth-child(12) {
    left: 65%;
    animation-delay: 3s;
    animation-duration: 9s;
}

.ocean-bubble:nth-child(13) {
    left: 80%;
    animation-delay: 4s;
    animation-duration: 7s;
}

.ocean-bubble:nth-child(14) {
    left: 90%;
    animation-delay: 5s;
    animation-duration: 6s;
}

/* Seagull */
.seagull {
    position: absolute;
    width: 30px;
    height: 20px;
    animation: seagull-fly 10s ease-in-out infinite;
}

.seagull::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
            transparent 40%,
            rgba(255, 255, 255, 0.2) 50%,
            transparent 60%);
    clip-path: polygon(0% 50%, 50% 0%, 100% 50%, 50% 100%);
}

.seagull:nth-child(15) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.seagull:nth-child(16) {
    top: 25%;
    left: 80%;
    animation-delay: 5s;
    animation-duration: 14s;
}

/* Compass Rose */
.compass-rose {
    position: absolute;
    width: 40px;
    height: 40px;
    animation: compass-spin 20s linear infinite;
}

.compass-rose::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: conic-gradient(from 0deg,
            rgba(255, 255, 255, 0.1) 0deg,
            rgba(255, 255, 255, 0.2) 45deg,
            rgba(255, 255, 255, 0.1) 90deg,
            rgba(255, 255, 255, 0.2) 135deg,
            rgba(255, 255, 255, 0.1) 180deg,
            rgba(255, 255, 255, 0.2) 225deg,
            rgba(255, 255, 255, 0.1) 270deg,
            rgba(255, 255, 255, 0.2) 315deg,
            rgba(255, 255, 255, 0.1) 360deg);
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.compass-rose::after {
    content: 'N';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-weight: bold;
}

.compass-rose:nth-child(17) {
    top: 20%;
    left: 70%;
    animation-delay: 0s;
}

.compass-rose:nth-child(18) {
    top: 75%;
    left: 30%;
    animation-delay: 10s;
}

/* Lighthouse Beam Particles */
.lighthouse-beam-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: radial-gradient(circle,
            rgba(255, 255, 220, 0.9) 0%,
            rgba(255, 255, 200, 0.6) 50%,
            transparent 100%);
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(255, 255, 220, 0.8);
    animation: beam-particle-float 4s ease-in-out infinite;
}

.lighthouse-beam-particle:nth-child(19) {
    top: 40%;
    left: 45%;
    animation-delay: 0s;
    animation-duration: 5s;
}

.lighthouse-beam-particle:nth-child(20) {
    top: 35%;
    left: 55%;
    animation-delay: 1s;
    animation-duration: 6s;
}

.lighthouse-beam-particle:nth-child(21) {
    top: 45%;
    left: 35%;
    animation-delay: 2s;
    animation-duration: 4s;
}

.lighthouse-beam-particle:nth-child(22) {
    top: 30%;
    left: 65%;
    animation-delay: 3s;
    animation-duration: 7s;
}

.lighthouse-beam-particle:nth-child(23) {
    top: 50%;
    left: 25%;
    animation-delay: 4s;
    animation-duration: 5s;
}

.lighthouse-beam-particle:nth-child(24) {
    top: 25%;
    left: 75%;
    animation-delay: 5s;
    animation-duration: 6s;
}

.glass-sphere:nth-child(9) {
    top: 15%;
    left: 85%;
    animation-delay: 1s;
    animation-duration: 13s;
}

.glass-sphere:nth-child(10) {
    top: 75%;
    left: 15%;
    animation-delay: 3s;
    animation-duration: 11s;
}

.glass-sphere:nth-child(11) {
    top: 25%;
    left: 60%;
    animation-delay: 5s;
    animation-duration: 14s;
}

/* Glass Pyramid */
.glass-pyramid {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 45px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
    animation: float-pyramid 12s ease-in-out infinite;
    transform-style: preserve-3d;
}

.glass-pyramid::before {
    content: '';
    position: absolute;
    top: 15px;
    left: -20px;
    width: 40px;
    height: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
}

.glass-pyramid:nth-child(12) {
    top: 35%;
    left: 25%;
    animation-delay: 2s;
    animation-duration: 15s;
}

.glass-pyramid:nth-child(13) {
    top: 65%;
    left: 75%;
    animation-delay: 7s;
    animation-duration: 12s;
}

/* Glass Cylinder */
.glass-cylinder {
    position: absolute;
    width: 40px;
    height: 60px;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.15) 50%,
            rgba(255, 255, 255, 0.08) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(8px);
    box-shadow:
        0 8px 32px rgba(31, 38, 135, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    animation: float-cylinder 9s ease-in-out infinite;
    transform-style: preserve-3d;
}

.glass-cylinder::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.glass-cylinder::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    right: -2px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
}

.glass-cylinder:nth-child(14) {
    top: 20%;
    left: 45%;
    animation-delay: 4s;
    animation-duration: 16s;
}

.glass-cylinder:nth-child(15) {
    top: 80%;
    left: 65%;
    animation-delay: 8s;
    animation-duration: 13s;
}

/* Glass Torus (Ring) */
.glass-torus {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.25);
    animation: float-torus 14s ease-in-out infinite;
    transform-style: preserve-3d;
}

.glass-torus::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.glass-torus:nth-child(16) {
    top: 45%;
    left: 85%;
    animation-delay: 6s;
    animation-duration: 17s;
}

.glass-torus:nth-child(17) {
    top: 10%;
    left: 20%;
    animation-delay: 9s;
    animation-duration: 11s;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
    animation: float-particles 8s ease-in-out infinite;
}

.floating-particles::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    width: 20px;
    height: 20px;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
}

.floating-particles:nth-child(18) {
    top: 30%;
    left: 35%;
    animation-delay: 0s;
    animation-duration: 10s;
}

.floating-particles:nth-child(20) {
    top: 50%;
    left: 25%;
    animation-delay: 6s;
    animation-duration: 9s;
}

/* Maritime Animation Keyframes */
@keyframes buoy-bob {

    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }

    25% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-25px) rotate(-1deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-15px) rotate(2deg);
        opacity: 1;
    }
}

@keyframes sailboat-sail {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-35px) translateX(-5px) rotate(-3deg);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) translateX(10px) rotate(5deg);
        opacity: 1;
    }
}

@keyframes bubble-rise {
    0% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }

    10% {
        opacity: 1;
        transform: translateY(90vh) scale(0.5);
    }

    90% {
        opacity: 1;
        transform: translateY(10vh) scale(1.2);
    }

    100% {
        transform: translateY(-50px) scale(1.5);
        opacity: 0;
    }
}

@keyframes seagull-fly {

    0%,
    100% {
        transform: translateY(0px) translateX(0px) rotate(0deg);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-30px) translateX(20px) rotate(10deg);
        opacity: 1;
    }

    50% {
        transform: translateY(-50px) translateX(-15px) rotate(-5deg);
        opacity: 0.7;
    }

    75% {
        transform: translateY(-30px) translateX(20px) rotate(10deg);
        opacity: 1;
    }
}

@keyframes compass-spin {
    0% {
        transform: rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: rotate(180deg);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0.6;
    }
}

@keyframes beam-particle-float {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 1;
    }
}

@keyframes float-pyramid {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        opacity: 0.5;
    }

    33% {
        transform: translateY(-30px) rotateX(25deg) rotateY(15deg) scale(1.2);
        opacity: 1;
    }

    66% {
        transform: translateY(-50px) rotateX(50deg) rotateY(30deg) scale(1.1);
        opacity: 0.6;
    }
}

@keyframes float-cylinder {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        opacity: 0.6;
    }

    25% {
        transform: translateY(-20px) rotateX(15deg) rotateY(25deg) scale(1.1);
        opacity: 1;
    }

    50% {
        transform: translateY(-35px) rotateX(30deg) rotateY(50deg) scale(1.05);
        opacity: 0.8;
    }

    75% {
        transform: translateY(-20px) rotateX(15deg) rotateY(25deg) scale(1.1);
        opacity: 1;
    }
}

@keyframes float-torus {

    0%,
    100% {
        transform: translateY(0px) rotateX(0deg) rotateY(0deg) scale(1);
        opacity: 0.5;
    }

    25% {
        transform: translateY(-30px) rotateX(30deg) rotateY(30deg) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translateY(-55px) rotateX(60deg) rotateY(60deg) scale(1.1);
        opacity: 0.6;
    }

    75% {
        transform: translateY(-30px) rotateX(30deg) rotateY(30deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes float-particles {

    0%,
    100% {
        transform: translateY(0px) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-40px) scale(1.5);
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {

    .glass-cube,
    .glass-sphere {
        width: 40px;
        height: 40px;
    }

    .glass-pyramid {
        border-left: 20px solid transparent;
        border-right: 20px solid transparent;
        border-bottom: 35px solid rgba(255, 255, 255, 0.1);
    }

    .glass-cylinder {
        width: 30px;
        height: 45px;
    }

    .glass-torus {
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {

    .glass-cube,
    .glass-sphere {
        width: 30px;
        height: 30px;
    }

    .glass-pyramid {
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 25px solid rgba(255, 255, 255, 0.1);
    }

    .glass-cylinder {
        width: 25px;
        height: 35px;
    }

    .glass-torus {
        width: 35px;
        height: 35px;
    }
}



/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    color: #000000;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #1E90FF;
    color: white;
    transform: translateY(-2px);
}

.back-to-top i {
    color: inherit;
}

.whatsapp-chat {
    position: fixed;
    bottom: 75px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: #25D366;
    color: #fff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 1.6rem;
    cursor: pointer;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
}

.whatsapp-chat.show {
    opacity: 1;
    visibility: visible;
}

.whatsapp-chat:hover {
    background: #128C7E;
    color: #fff;
}

@media (max-width: 768px) {
    .whatsapp-chat {
        width: 38px;
        height: 38px;
        right: 15px;
        font-size: 1.2rem;
        bottom: 75px;
    }
}