 @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");


        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
        }

        /* Header Styles */
        header {
            background: white;
            padding: 15px 5%;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            transition: all 0.3s ease;
        }
        
        header.scrolled {
            padding: 10px 5%;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
        }

          nav {
            display: flex;
            justify-content: center;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            gap: 40px;
        }

        .logo {
            height: 80px;
        }

        .nav-links {
            display: flex;
            gap: 40px;
            list-style: none;
        }

        .nav-links a {
            text-decoration: none;
            color: #333;
            font-weight: 500;
            font-size: 15px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #4a9d8f;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: #333;
        }

        /* Hero Section */
        .hero {
            position: relative;
            min-height: calc(100vh - 80px);
            background-image: url('bg.jpg');
            background-size: cover;
            background-position: center;
            overflow: hidden;
            display: flex;
            align-items: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(15, 64, 77, 0.8) 0%, rgba(157, 200, 127, 0.6) 100%);
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 60px 5%;
            width: 100%;
            display: grid;
            grid-template-columns: 1.2fr 420px;
            gap: 80px;
            align-items: start;
        }

        .hero-text {
            padding-top: 40px;
        }

        .hero-text h1 {
            font-size: 2.5rem;
            color: white;
            line-height: 1.15;
            margin-bottom: 25px;
            font-weight: 900;
            letter-spacing: 1px;
        }

        .hero-text h1 .highlight {
            color: #9dc87f;
          
        }

        .hero-text p {
            font-size: 1.4rem;
            color: white;
            margin-bottom: 60px;
            font-weight: 300;
        }

        .quick-links {
            display: flex;
            flex-direction: column;
            gap: 12px;
            max-width: 280px;
        }

        .quick-link {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 14px 18px;
            background: rgba(168, 213, 168, 0.25);
            border-radius: 6px;
            color: white;
            font-weight: 500;
            width: 100px;
            font-size: 15px;
            cursor: pointer;
            transition: background 0.3s;
        }

        .quick-link:hover {
            background: rgba(168, 213, 168, 0.35);
        }

        .quick-link-icon {
            width: 35px;
            height: 35px;
            background: #9dc87f;
            border-radius: 6px;
            flex-shrink: 0;
        }

        /* Booking Form */
        .booking-form {
            background: #1a5c6f;
            padding: 35px 35px 40px;
            border-radius: 0px 0px 10px 10px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }

        .booking-form h3 {
            color: white;
            font-size: 1.6rem;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 600;
        }

        .form-group {
            margin-bottom: 15px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            height: 80px;
            padding: 14px 16px;
            border: none;
            border-radius: 5px;
            background: #e8e8e8;
            font-size: 14px;
            font-family: 'Arial', sans-serif;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 110px;
        }

        .book-btn {
            width: 100%;
            padding: 14px;
            background: #9dc87f;
            border: none;
            border-radius: 5px;
            color: #1a4d4d;
            font-size: 1.05rem;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
            margin-top: 8px;
        }

        .book-btn:hover {
            background: #8fc58f;
        }

        /* Circles Section */
        .circles-container {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 200px;
            pointer-events: none;
        }

        .curved-line {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .curved-line svg {
            width: 100%;
            height: 100%;
        }

        .circle {
            position: absolute;
            border-radius: 50%;
            bottom: 0;
        }

        .circle-1 {
            width: 50px;
            height: 50px;
            background: #a8d5a8;
            left: 20%;
            bottom: 110px;
        }

        .circle-2 {
            width: 70px;
            height: 70px;
            background: #2d7a7a;
            left: 38%;
            bottom: 35px;
        }

        .circle-3 {
            width: 65px;
            height: 65px;
            background: #1a4d4d;
            right: 32%;
            bottom: 85px;
        }

        .circle-4 {
            width: 55px;
            height: 55px;
            background: #9dc87f;
            right: 12%;
            bottom: 130px;
        }

        .container {
            position: fixed;
            top: 55%;
            left: 80%;
            transform: translate(-50%, -50%);
            width: min(90vw, 90vh);
            height: min(90vw, 90vh);
            max-width: 500px;
            max-height: 500px;
            pointer-events: none;
            z-index: 5;
        }

        .orbit {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            border-width: min(3vw, 30px);
            border-style: solid;
        }

        .outer-orbit {
            width: 100%;
            height: 100%;
            border-color: #b8b8b8;
            animation: rotate 8s linear infinite;
        }

        .inner-orbit {
            width: 60%;
            height: 60%;
            border-color: #8bc68b;
            animation: rotate 6s linear infinite;
        }

        .dot {
            position: absolute;
            border-radius: 50%;
            transform: translate(-50%, -50%);
        }

        .light-green {
            width: min(4vw, 40px);
            height: min(4vw, 40px);
            background-color: #8bc68b;
        }

        .dark-blue {
            width: min(3.5vw, 35px);
            height: min(3.5vw, 35px);
            background-color: #1a5f7a;
        }

        /* Outer orbit dots */
        .outer-dot-1 {
            top: 0;
            left: 65%;
        }

        .outer-dot-2 {
            top: 65%;
            left: 0;
        }

        .outer-dot-3 {
            top: 80%;
            right: 0;
        }

        /* Inner orbit dots */
        .inner-dot-1 {
            top: 95%;
            left: 20%;
        }

        .inner-dot-2 {
            top: 5%;
            left: 30%;
        }

        .inner-dot-3 {
            top: 12%;
            right: 2%;
        }
                .ser-container {
            width: 100%;
            max-width: 1920px;
        }

        .cards-wrapper {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 0;
            background: #8DB88F;
            
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .card {
            background: #8DB88F;
            padding: 40px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            
        }

        .card:last-child {
            border-right: none;
        }

        .card:hover {
            background: #7CA67E;
            transform: translateY(-5px);
        }
        .quick-link-icon{
            width: 40px;
            height: 40px;
         
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }

        .icon-wrapper {
            width: 80px;
            height: 80px;
            background: white;
            border-radius: 20px;
            margin: 0 auto 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }

        .card:hover .icon-wrapper {
            transform: scale(1.1);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
        }

        .icon-wrapper i {
            font-size: 36px;
            color: #155e77;
        }

        .card h3 {
            color: white;
            font-size: 22px;
            font-weight: 600;
            margin: 0;
        }

                .header-container {
            position: relative;
            width: 100%;
            max-width: 1400px;
            padding: 60px 20px;
            text-align: center;
            overflow: hidden;
        }

        .background-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 8vw;
            font-weight: 900;
            color: rgba(200, 220, 230, 0.5);
            letter-spacing: 0.05em;
            white-space: nowrap;
            user-select: none;
            z-index: 1;
        }

        .main-text {
            position: relative;
            z-index: 2;
            font-size: clamp(2rem, 6vw, 4.5rem);
            font-weight: 700;
            color: #1a5f7a;
            letter-spacing: 0.02em;
            text-transform: uppercase;
        }

         /* Countdown */
        .countdown {
            background: rgba(184, 230, 160, 0.3);
            border-radius: 15px;
            padding: 30px;
            display: inline-block;
            backdrop-filter: blur(10px);
        }

        .countdown-timer {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            flex-wrap: wrap;
        }

        .countdown-item {
            text-align: center;
        }

        .countdown-number {
            background: white;
            color: #0d5e6e;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            padding: 15px 20px;
            border-radius: 10px;
            display: inline-block;
            min-width: 70px;
        }

        .countdown-separator {
            color: white;
            font-size: clamp(2rem, 4vw, 3rem);
            font-weight: 700;
            align-self: center;
        }

        .countdown-label {
            color: #0d5e6e;
            font-weight: 600;
            margin-top: 5px;
            font-size: clamp(0.8rem, 1.5vw, 1rem);
        }

        .countdown-text {
            color: white;
            text-align: center;
            font-size: clamp(0.9rem, 1.5vw, 1.1rem);
        }


        /* Tablet screens */
        @media (max-width: 768px) {
            .header-container {
                padding: 40px 15px;
            }

            .background-text {
                font-size: 10vw;
            }

            .main-text {
                font-size: clamp(1.5rem, 5vw, 3rem);
            }
        }

        /* Mobile screens */
        @media (max-width: 480px) {
            .header-container {
                padding: 30px 10px;
            }

            .background-text {
                font-size: 12vw;
                letter-spacing: 0.02em;
            }

            .main-text {
                font-size: clamp(1.2rem, 7vw, 2rem);
                letter-spacing: 0.01em;
            }
        }

        /* Large screens */
        @media (min-width: 1400px) {
            .background-text {
                font-size: 112px;
            }
        }

        /* Tablet styles */
        @media (max-width: 1024px) {
            .cards-wrapper {
                grid-template-columns: repeat(2, 1fr);
            }

            .card:nth-child(2) {
                border-right: none;
            }

            .card:nth-child(3) {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
            }

            .card:nth-child(4) {
                border-top: 1px solid rgba(255, 255, 255, 0.2);
                border-right: none;
            }
        }

        /* Mobile styles */
        @media (max-width: 640px) {
            .cards-wrapper {
                grid-template-columns: 1fr;
            }

            .card {
                border-right: none;
                border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            }

            .card:last-child {
                border-bottom: none;
            }

            .card h3 {
                font-size: 20px;
            }

            .icon-wrapper {
                width: 70px;
                height: 70px;
            }

            .icon-wrapper i {
                font-size: 32px;
            }

            body {
                padding: 10px;
            }
        }

        /* Small mobile */
        @media (max-width: 380px) {
            .card {
                padding: 30px 15px;
            }

            .card h3 {
                font-size: 18px;
            }

            .icon-wrapper {
                width: 60px;
                height: 60px;
            }

            .icon-wrapper i {
                font-size: 28px;
            }
        }

        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }

            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }

        /* Mobile adjustments */
        @media (max-width: 768px) {
            .container {
                width: min(85vw, 85vh);
                height: min(85vw, 85vh);
            }

            .orbit {
                border-width: min(2.5vw, 20px);
            }

            .light-green {
                width: min(5vw, 30px);
                height: min(5vw, 30px);
            }

            .dark-blue {
                width: min(4.5vw, 25px);
                height: min(4.5vw, 25px);
            }
        }

        /* Small mobile devices */
        @media (max-width: 480px) {
            .orbit {
                border-width: min(2vw, 15px);
            }

            .light-green {
                width: min(6vw, 25px);
                height: min(6vw, 25px);
            }

            .dark-blue {
                width: min(5.5vw, 22px);
                height: min(5.5vw, 22px);
            }
               .countdown-number {
                min-width: 50px;
                padding: 10px 15px;
            }
        }

        /* Responsive Design */
        @media (max-width: 1200px) {
            .hero-content {
                gap: 50px;
            }

            .hero-text h1 {
                font-size: 3.2rem;
            }
        }

        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                padding: 40px 5%;
            }

            .hero-text {
                padding-top: 0;
            }

            .hero-text h1 {
                font-size: 2.8rem;
            }

            .booking-form {
                max-width: 500px;
                margin: 0 auto;
            }

            .quick-links {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 80px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 30px 5%;
                box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
                transition: left 0.3s;
                gap: 25px;
            }

            .nav-links.active {
                left: 0;
            }

            .hamburger {
                display: flex;
            }

            .hero-text h1 {
                font-size: 2.3rem;
            }

            .hero-text p {
                font-size: 1.2rem;
            }

            .booking-form {
                padding: 30px 25px;
            }

            .circle-1,
            .circle-2,
            .circle-3,
            .circle-4 {
                width: 40px;
                height: 40px;
            }

            .circle-1 {
                bottom: 90px;
            }

            .circle-2 {
                width: 50px;
                height: 50px;
                bottom: 25px;
            }

            .circle-3 {
                width: 45px;
                height: 45px;
                bottom: 65px;
            }

            .circle-4 {
                bottom: 100px;
            }
             .countdown-timer {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 1.9rem;
            }

            .hero-text p {
                font-size: 1.05rem;
                margin-bottom: 40px;
            }

            .logo {
                height: 40px;
            }

            .booking-form h3 {
                font-size: 1.4rem;
            }

            .booking-form {
                padding: 25px 20px;
            }

            .quick-link {
                font-size: 14px;
                padding: 12px 15px;
            }

            .quick-link-icon {
                width: 30px;
                height: 30px;
            }
        }