@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
	 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            overflow: hidden;
            height: 100vh;
            background: #000080;
        }

        .container {
            position: relative;
            width: 100%;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        .background-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url("clipperbckg.jpg");
			background-size: cover;
            background-position: center;
            z-index: -2;
        }

        .background-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
            z-index: -1;
        }

        .content {
            text-align: center;
            z-index: 10;
            position: relative;
            max-width: 90%;
        }

        .logo {
            margin-bottom: 8rem;
            animation: fadeInUp 1.5s ease-out;
        }

        .logo-img {
			width: 25%;
            color: white;
            position: relative;
            display: inline-block;
        }

        .main-heading {
            font-size: clamp(4rem, 10vw, 7rem);
            font-weight: 600;
            letter-spacing: 0.2em;
            color: #191970;
            text-transform: uppercase;
            margin-bottom:4rem;
            line-height: 1;
            animation: fadeInUp 1.8s ease-out;
        }

        .sub-heading {
            font-size: clamp(1.2rem, 3vw, 2rem);
            font-weight: 300;
            letter-spacing: 0.15em;
            color: rgba(255, 255, 255, 0.9);
            text-transform: uppercase;
            line-height: 1.4;
            animation: fadeInUp 2.1s ease-out;
        }

        /* Floating particles animation */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .particle {
            position: absolute;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        .particle:nth-child(1) {
            left: 20%;
            animation-delay: 0s;
            width: 4px;
            height: 4px;
        }

        .particle:nth-child(2) {
            left: 40%;
            animation-delay: 5s;
            width: 6px;
            height: 6px;
        }

        .particle:nth-child(3) {
            left: 70%;
            animation-delay: 10s;
            width: 3px;
            height: 3px;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(60px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            from {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            to {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        /* Responsive design */
        @media (max-width: 1200px) {
            .content {
                max-width: 95%;
            }
            
            .logo {
                margin-bottom: 2rem;
            }
            
            .main-heading {

                margin-bottom: 1.5rem;
            }
        }

        @media (max-width: 768px) {
            .logo {
                margin-bottom: 1.5rem;
            }
            
            .main-heading {
                margin-bottom: 1rem;
            }
            
            .logo-img {
                letter-spacing: 0.2em;
            }
            
            .main-heading {
                letter-spacing: 0.1em;
            }
            
            .sub-heading {
                letter-spacing: 0.1em;
            }
        }

        @media (max-width: 480px) {
            .content {
                padding: 0 1rem;
            }
			
			.logo-img {
				width: 40%;
				padding-bottom: 10%;
			}
			
			.main-heading{
				padding-bottom: 10%;
			}
        }

        /* High resolution displays (2K and above) */
        @media (min-width: 2048px) {
            .logo-img {
                font-size: 10rem;
            }
            
            .main-heading {
                font-size: 8rem;
            }
            
            .sub-heading {
                font-size: 2.5rem;
            }
            
            .logo {
                margin-bottom: 4rem;
            }
            
            .main-heading {
                margin-bottom: 3rem;
            }
        }

        /* Ultra-wide displays */
        @media (min-aspect-ratio: 21/9) {
            .content {
                max-width: 70%;
            }
        }

