.elementor-7 .elementor-element.elementor-element-5d07b9b{--display:flex;}.elementor-7 .elementor-element.elementor-element-43217cc{margin:-48px 0px calc(var(--kit-widget-spacing, 0px) + 0px) 0px;}@media(max-width:767px){.elementor-7 .elementor-element.elementor-element-43217cc{margin:92px -1px calc(var(--kit-widget-spacing, 0px) + -1px) -1px;}}/* Start custom CSS for html, class: .elementor-element-43217cc *//* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #f8fff8 0%, #e8f5e8 50%, #d4f0d4 100%);
    height: 100vh;
    overflow: hidden;
    position: relative;
}

/* Background Elements */
.background-elements {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-leaf {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #1E761C;
    border-radius: 50% 0 50% 0;
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.leaf-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(45deg);
}

.leaf-2 {
    top: 20%;
    right: 15%;
    animation-delay: 2s;
    transform: rotate(-30deg);
}

.leaf-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 4s;
    transform: rotate(60deg);
}

.leaf-4 {
    bottom: 20%;
    right: 10%;
    animation-delay: 6s;
    transform: rotate(-15deg);
}

.leaf-5 {
    top: 60%;
    left: 50%;
    animation-delay: 1s;
    transform: rotate(90deg);
}

.organic-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, #1E761C, #2a8a2a);
    opacity: 0.1;
    animation: rotate 20s linear infinite;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: -75px;
    right: -75px;
    animation-delay: 0s;
}

.shape-2 {
    width: 100px;
    height: 100px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

/* Container - Fixed to ensure all content is visible */
.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Logo Section - Positioned at top */
.logo-section {
    margin-bottom: 0.5rem !important;
    margin-top: 0.25rem;
    animation: fadeInDown 1s ease-out;
    flex-shrink: 0;
}

.logo {
    max-width: 180px !important; /* Reduced from 360px (half) */
    height: auto;
    filter: drop-shadow(0 8px 15px rgba(30, 118, 28, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Main content area - Takes remaining space */
.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 800px;
    gap: 2rem; /* Increased from 1.5rem for more spacing */
}

/* Headline Section - Reduced spacing */
.headline-section {
    margin-bottom: 1rem;
    max-width: 700px;
    margin-top: 0;
}

.main-headline {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #1E761C;
    line-height: 1.1;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
}

.headline-word {
    display: inline-block;
    margin: 0 0.2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease-out forwards;
}

.headline-word:nth-child(1) { animation-delay: 0.6s; }
.headline-word:nth-child(2) { animation-delay: 0.8s; }
.headline-word:nth-child(3) { animation-delay: 1.0s; }
.headline-word:nth-child(4) { animation-delay: 1.2s; }
.headline-word:nth-child(5) { animation-delay: 1.4s; }
.headline-word:nth-child(6) { animation-delay: 1.6s; }

.subheadline {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: #4a4a4a;
    font-weight: 400;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
    max-width: 500px;
    margin: 0 auto;
}

/* Countdown Section - Reduced spacing */
.countdown-section {
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

.countdown-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    min-width: 60px;
}

.countdown-number {
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 800;
    color: #1E761C;
    background: linear-gradient(135deg, #ffffff, #f0f8f0);
    padding: 0.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(30, 118, 28, 0.2);
    margin-bottom: 0.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.countdown-number::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.countdown-number:hover::before {
    left: 100%;
}

.countdown-number:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 118, 28, 0.3);
}

.countdown-label {
    font-size: 0.7rem;
    font-weight: 500;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.countdown-separator {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 700;
    color: #1E761C;
    margin-top: -0.25rem;
}

/* Signup Section - Reduced spacing */
.signup-section {
    margin-bottom: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
}

.signup-form {
    max-width: 400px;
    margin: 0 auto;
}

.input-group {
    display: flex;
    gap: 0.3rem;
    background: #ffffff;
    border-radius: 30px;
    padding: 0.3rem;
    box-shadow: 0 6px 20px rgba(30, 118, 28, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.input-group:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 118, 28, 0.3);
}

.input-group input {
    flex: 1;
    border: none;
    outline: none;
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
    background: transparent;
    color: #333;
}

.input-group input::placeholder {
    color: #999;
    transition: color 0.3s ease;
}

.input-group input:focus::placeholder {
    color: #1E761C;
}

.signup-btn {
    background: linear-gradient(135deg, #1E761C, #2a8a2a);
    color: white;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    position: relative;
    overflow: hidden;
    font-size: 0.9rem;
}

.signup-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.signup-btn:hover::before {
    left: 100%;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(30, 118, 28, 0.4);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.signup-btn:hover .btn-icon {
    transform: translateX(2px);
}

/* Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.tiffin-box {
    position: absolute;
    animation: floatTiffin 6s ease-in-out infinite;
}

.tiffin-1 {
    top: 20%;
    right: 15%;
    animation-delay: 0s;
}

.tiffin-2 {
    bottom: 25%;
    left: 10%;
    animation-delay: 3s;
}

.tiffin-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 4px 12px rgba(30, 118, 28, 0.3));
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes floatTiffin {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
}

/* Responsive Design - Mobile First Approach */
@media (max-width: 768px) {
    .container {
        padding: 0.5rem 1rem;
        height: 100vh;
    }
    
    .logo-section {
        margin-bottom: 0.125rem !important; /* Reduced from 0.25rem */
        margin-top: 0.125rem;
    }
    
    .logo {
        max-width: 140px !important; /* Reduced from 280px (half) */
    }
    
    .main-content {
        padding: 4em 0.5rem !important;
        gap: 2rem !imporatnt;
        justify-content:start;
    }
    
    .headline-section {
        margin-bottom: 0.75rem;
        margin-top: 0;
    }
    
    .main-headline {
        font-size: 1.8rem !important; /* Increased from 1.4rem */
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .subheadline {
        font-size: 1.1rem !important; /* Increased from 0.85rem */
        margin-bottom: 0;
    }
    
    .countdown-section {
        margin-bottom: 0.75rem;
    }
    
    .countdown-container {
        gap: 0.25rem;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
    }
    
    .countdown-item {
        min-width: 40px;
        flex-shrink: 0;
    }
    
    .countdown-number {
        padding: 0.5rem;
        font-size: 1.6rem !important; /* Increased from 1.3rem */
    }
    
    .countdown-label {
        font-size: 0.85rem !important; /* Increased from 0.75rem */
    }
    
    .countdown-separator {
        font-size: 1.6rem !important; /* Increased from 1.3rem */
        margin-top: -0.125rem;
        flex-shrink: 0;
    }
    
    .signup-section {
        margin-bottom: 0.5rem;
    }
    
    .input-group {
        flex-direction: column;
        border-radius: 20px;
        gap: 0.125rem;
    }
    
    .signup-btn {
        border-radius: 20px;
        padding: 0.5rem 1rem;
        font-size: 1.1rem !important; /* Increased font size */
    }
    
    .input-group input {
        font-size: 1.1rem !important; /* Increased from default */
    }
    
    .tiffin-svg {
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.25rem 0.75rem;
    }
    
    .logo-section {
        margin-bottom: 0.1rem !important; /* Reduced from 0.125rem */
        margin-top: 0.125rem;
    }
    
    .logo {
        max-width: 120px !important; /* Reduced from 240px (half) */
    }
    
    .main-content {
        padding: 4em 0.5rem !important;
        gap: 2rem !imporatnt;
        justify-content:start;
    }
    
    .headline-section {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    
    .main-headline {
        font-size: 1.8rem !important; /* Increased from 1.2rem */
        line-height: 1.1;
        margin-bottom: 0.375rem;
    }
    
    .subheadline {
        font-size: 1rem !important; /* Increased from 0.8rem */
        margin-bottom: 0;
    }
    
    .countdown-section {
        margin-bottom: 0.5rem;
    }
    
    .countdown-container {
        gap: 0.125rem;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        width: 100%;
        max-width: 240px;
    }
    
    .countdown-item {
        min-width: 35px;
        flex: 0 0 auto;
        text-align: center;
    }
    
    .countdown-number {
        padding: 0.4rem 0.2rem;
        font-size: 1.5rem !important; /* Increased from 1.2rem */
        min-width: 40px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .countdown-label {
        font-size: 0.75rem !important; /* Increased from 0.65rem */
        margin-top: 0.125rem;
    }
    
    .countdown-separator {
        font-size: 1.3rem !important; /* Increased from 1rem */
        margin-top: -0.125rem;
        flex: 0 0 auto;
        padding: 0 0.025rem;
    }
    
    .signup-section {
        margin-bottom: 0.375rem;
    }
    
    .input-group {
        padding: 0.125rem;
    }
    
    .input-group input {
        padding: 0.5rem 0.6rem;
        font-size: 1rem !important; /* Increased from 0.8rem */
    }
    
    .signup-btn {
        padding: 0.5rem 0.8rem;
        font-size: 1rem !important; /* Increased from 0.8rem */
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .logo {
        max-width: 100px !important; /* Reduced from 200px (half) */
    }
    
    .logo-section {
        margin-bottom: 0.075rem !important; /* Further reduced */
    }
    
    .main-content {
        padding: 2em 0.5rem !important;
        gap: 2rem !imporatnt;
        justify-content:start;
    }
    
    .headline-section {
        margin-bottom: 0.375rem;
    }
    
    .main-headline {
        font-size: 1.4rem !important; /* Increased from default */
        margin-bottom: 0.375rem;
    }
    
    .subheadline {
        font-size: 0.95rem !important; /* Increased from default */
    }
    
    .countdown-section {
        margin-bottom: 0.375rem;
    }
    
    .signup-section {
        margin-bottom: 0.375rem;
    }
    
    .countdown-container {
        gap: 0.1rem;
        max-width: 220px;
    }
    
    .countdown-item {
        min-width: 30px;
    }
    
    .countdown-number {
        padding: 0.3rem 0.15rem;
        font-size: 1.3rem !important; /* Increased from 1.1rem */
        min-width: 35px;
        height: 30px;
    }
    
    .countdown-label {
        font-size: 0.7rem !important; /* Increased from 0.6rem */
    }
    
    .countdown-separator {
        font-size: 1.1rem !important; /* Increased from 0.9rem */
        padding: 0 0.02rem;
    }
    
    .input-group input {
        font-size: 0.95rem !important; /* Increased from default */
    }
    
    .signup-btn {
        font-size: 0.95rem !important; /* Increased from default */
    }
}

/* Tablet Responsive */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0.75rem 1.5rem;
    }
    
    .logo-section {
        margin-bottom: 0.75rem;
        margin-top: 0.5rem;
    }
    
    .logo {
        max-width: 160px !important; /* Reduced from 320px (half) */
    }
    
    .headline-section {
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .main-headline {
        font-size: 2rem;
    }
    
    .countdown-section {
        margin-bottom: 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1200px) {
    .container {
        padding: 1rem 2.5rem;
    }
    
    .logo-section {
        margin-bottom: 1rem;
        margin-top: 0.75rem;
    }
    
    .logo {
        max-width: 220px !important; /* Reduced from 440px (half) */
    }
    
    .headline-section {
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
}

/* Extra Large Desktop */
@media (min-width: 1400px) {
    .container {
        padding: 1.25rem 3rem;
    }
    
    .logo-section {
        margin-bottom: 1.25rem;
        margin-top: 1rem;
    }
    
    .logo {
        max-width: 250px !important; /* Reduced from 500px (half) */
    }
    
    .headline-section {
        margin-bottom: 2rem;
        margin-top: 0;
    }
}

/* Disable scrolling completely */
html, body {
    overflow: hidden;
    scroll-behavior: auto;
}

/* Remove scrollbar */
::-webkit-scrollbar {
    display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
}/* End custom CSS */