/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #186266;
    --primary-dark: #135052;
    --accent-color: #96ca32;
    --accent-dark: #7aa328;
    --text-primary: #1a1a1a;
    --text-secondary: #6C7A89;
    --text-light: #9aa5b3;
    --bg-primary: #ffffff;
    --bg-secondary: #f5f7f9;
    --bg-dark: #0a0a0a;
    --gradient-primary: linear-gradient(135deg, #186266 0%, #96ca32 100%);
    --gradient-accent: linear-gradient(135deg, #96ca32 0%, #7aa328 100%);
    --gradient-teal: linear-gradient(135deg, #186266 0%, #1d7a7e 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(24, 98, 102, 0.3);
    --shadow-glow-green: 0 0 40px rgba(150, 202, 50, 0.3);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Floating "Designed for India" Tag */
.floating-india-tag {
    position: fixed;
    top: 90px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    z-index: 999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.floating-india-tag:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

.floating-india-tag .india-flag-icon {
    flex-shrink: 0;
    display: block;
    border-radius: 2px;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.footer-logo {
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Buttons */
.cta-button {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    text-decoration: none;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-md);
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button .arrow {
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f0f5f5 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 95, 96, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-accent);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    animation: bounce 2s ease-in-out infinite;
}

.hero-badge.india-badge {
    background: var(--gradient-primary);
    animation-delay: 0.5s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.india-flag-icon {
    flex-shrink: 0;
    display: block;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.hero-description {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    margin-top: 32px;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.8s ease-out 0.2s both;
}

.product-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(24, 98, 102, 0.3));
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.device-mockup {
    position: relative;
    width: 400px;
    height: 300px;
}

.device-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 350px;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.2;
    filter: blur(40px);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.1); }
}

.device-frame {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
    padding: 24px;
    z-index: 1;
}

.device-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #186266 0%, #96ca32 100%);
    border-radius: 8px;
    opacity: 0.8;
    position: relative;
    overflow: hidden;
}

.device-screen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 2px,
        rgba(255, 255, 255, 0.03) 2px,
        rgba(255, 255, 255, 0.03) 4px
    );
}

.power-indicator {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 12px;
    height: 12px;
    background: #96ca32;
    border-radius: 50%;
    box-shadow: 0 0 10px #96ca32;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

/* What It Is Section */
.what-it-is {
    padding: 80px 0;
    background: var(--bg-primary);
}

.what-it-is-title {
    font-size: 42px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    color: var(--text-primary);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.intro-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 900px;
    margin: 0 auto 24px;
}

.intro-text:last-child {
    margin-bottom: 0;
}

.intro-text.highlight {
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 32px;
    margin-bottom: 24px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Use Cases Section */
.use-cases {
    padding: 80px 0;
    background: var(--bg-primary);
}

/* Circular Carousel */
.carousel-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    perspective: 1200px;
}

.carousel-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 420px;
    position: relative;
    overflow: hidden;
}

.carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.carousel-card {
    position: absolute;
    width: 300px;
    height: 350px;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.6s ease, opacity 0.6s ease, width 0.6s ease, height 0.6s ease;
    perspective: 1000px;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -175px;
    transform-style: preserve-3d;
    transform-origin: center center;
}

.carousel-card:hover {
    box-shadow: var(--shadow-lg);
}

.carousel-card.flipped {
    border-left: 4px solid var(--accent-color);
}

.carousel-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.1s ease-in-out;
    transform-style: preserve-3d;
}

.carousel-card.flipped .card-inner {
    transform: rotateY(180deg);
}

.carousel-card .card-front,
.carousel-card .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
}

.carousel-card .card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    border: none;
    font-size: 32px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: var(--shadow-lg);
}

.carousel-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.carousel-prev {
    left: 20px;
}

.carousel-next {
    right: 20px;
}

.carousel-btn span {
    line-height: 1;
    font-weight: 300;
}

/* Shared Card Styles */
.card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 16px;
}

.card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.card-image {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 95, 96, 0.05) 0%, rgba(51, 204, 51, 0.05) 100%);
    border-radius: 12px;
    margin-bottom: 24px;
}

.carousel-card.hero-card .card-image {
    height: 220px;
}

.use-case-icon {
    font-size: 64px;
    display: block;
}

.carousel-card .use-case-icon {
    font-size: 48px;
}

.use-case-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.use-case-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.use-case-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    flex: 1;
    display: flex;
    align-items: center;
    text-align: left;
}

.flip-hint {
    font-size: 12px;
    color: var(--text-light);
    margin-top: auto;
    padding-top: 16px;
    font-style: italic;
    opacity: 0.7;
}

.card-back .flip-hint {
    text-align: center;
}

/* Waitlist Section */
.waitlist {
    padding: 100px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.waitlist::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.waitlist-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.waitlist-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.waitlist-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.waitlist-form {
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-input {
    flex: 1;
    min-width: 250px;
    padding: 16px 20px;
    font-size: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
}

.form-input:focus::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-submit {
    padding: 16px 32px;
    background: white;
    color: var(--primary-color);
    font-weight: 700;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.form-message {
    margin-top: 16px;
    padding: 12px;
    border-radius: 8px;
    font-weight: 500;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background: rgba(0, 255, 0, 0.2);
    border: 1px solid rgba(0, 255, 0, 0.4);
}

.form-message.error {
    background: rgba(255, 0, 0, 0.2);
    border: 1px solid rgba(255, 0, 0, 0.4);
}

.waitlist-note {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--bg-dark);
    color: white;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-text {
    font-size: 14px;
    opacity: 0.7;
}

.footer-copyright {
    margin-top: 16px;
}

.footer-copyright-text {
    font-size: 14px;
    opacity: 0.8;
    margin: 8px 0;
}

.footer-contact-item {
    margin-top: 16px;
    font-size: 14px;
    opacity: 0.7;
}

.footer-contact-item p {
    margin: 4px 0;
}

.footer-copyright-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 8px;
    transition: color 0.3s ease;
}

.footer-copyright-link:hover {
    color: white;
    text-decoration: underline;
}

/* Modal Styles */
.modal {
    display: none !important;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
}

.modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: var(--bg-primary);
    margin: auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 90vh;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    position: relative;
}

.modal.show .modal-content {
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--gradient-primary);
    color: white;
    border-radius: 16px 16px 0 0;
}

.modal-header h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    color: white;
}

.modal-close {
    background: none;
    border: none;
    font-size: 36px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.modal-body {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
}

.modal-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 24px;
    margin-bottom: 12px;
}

.modal-body h3:first-of-type {
    margin-top: 0;
}

.modal-body p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.modal-body ul {
    margin: 16px 0;
    padding-left: 24px;
}

.modal-body li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.modal-body a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.modal-body a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.modal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Unsubscribe Modal Styles */
.unsubscribe-form .form-group {
    margin-top: 24px;
}

.unsubscribe-form .form-input {
    background: #f5f7f9;
    border: 2px solid #e0e0e0;
    color: var(--text-primary);
    min-width: 250px;
}

.unsubscribe-form .form-input::placeholder {
    color: #9aa5b3;
}

.unsubscribe-form .form-input:focus {
    border-color: var(--primary-color);
    background: white;
    outline: none;
}

.unsubscribe-form .form-submit {
    background: var(--primary-color);
    color: white;
}

.unsubscribe-form .form-submit:hover {
    background: var(--accent-color);
}

.unsubscribe-loading {
    text-align: center;
    padding: 40px 20px;
}

.unsubscribe-loading p {
    color: var(--text-secondary);
    font-size: 18px;
}

.unsubscribe-success,
.unsubscribe-already {
    padding: 20px 0;
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-image {
        max-height: 300px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .waitlist-title {
        font-size: 36px;
    }
    
    .carousel-card.hero-card {
        width: 320px;
        height: 350px;
        margin-left: -160px;
        margin-top: -190px;
    }
    
    
    .carousel-card.hero-card .use-case-title {
        font-size: 28px;
    }
    
    .carousel-card.hero-card .use-case-subtitle {
        font-size: 20px;
    }
    
    .carousel-card.hero-card .use-case-description {
        font-size: 16px;
    }
    
    .carousel-wrapper {
        height: 350px;
    }
    
    .carousel-card {
        width: 260px;
        height: 300px;
        margin-left: -130px;
        margin-top: -150px;
    }
}

@media (max-width: 640px) {
    .intro-text {
        font-size: 18px;
    }
    
    .what-it-is-title {
        font-size: 32px;
    }
    
    .form-group {
        flex-direction: column;
    }
    
    .form-input {
        min-width: 100%;
    }
    
    .form-submit {
        width: 100%;
    }
    
    .carousel-card .card-image {
        height: 140px;
    }
    
    .carousel-container {
        padding: 40px 0;
    }
    
    .carousel-wrapper {
        height: 380px;
    }
    
    .carousel-card {
        width: 240px;
        height: 320px;
        margin-left: -120px;
        margin-top: -140px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }
    
    .carousel-prev {
        left: 10px;
    }
    
    .carousel-next {
        right: 10px;
    }
    
    .nav-cta {
        padding: 8px 16px;
        font-size: 14px;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .footer-logo {
        height: 28px;
    }
    
    .floating-india-tag {
        top: 80px;
        right: 10px;
        padding: 5px 5px;
        font-size: 15px;
    }
    
    .floating-india-tag .india-flag-icon {
        width: 14px;
        height: 10px;
    }
    
    .modal-content {
        width: 95%;
        max-height: 95vh;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-body h3 {
        font-size: 18px;
    }
    
    .modal-body p,
    .modal-body li {
        font-size: 15px;
    }
}
