 :root {
            --primary: #036799;
            --grey: #b7b8ba;
            --white: #ffffff;
            --text-dark: #0a1b24;
            --text-muted: #64748b;
            --bg-light: #f8fafc;
        }
* {margin: 0;padding: 0;box-sizing: border-box;}
body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.6;
            background-color: var(--white);
        }

        h1, h2, h3 {
            font-family: 'Exo 2', sans-serif;
            font-weight: 700;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Nav */
        nav {
            height: 70px;
            background: rgba(255, 255, 255, 0.9);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid #e2e8f0;
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            display: flex;
            align-items: center;
        }

        .nav-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
        }

.logo {font-size: 24px;font-weight: 700;color: var(--primary);text-decoration: none;font-family: 'Exo 2', sans-serif;display:flex;align-content: center;}
.logo span{display:inline-block;align-self:center;}

        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 14px;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .btn {
            padding: 10px 24px;
            border-radius: 6px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-block;
            border: none;
            font-size:13px;text-align:center;
        }

        .btn-primary {
            background: var(--primary);
            color: var(--white);
            box-shadow: 0 4px 14px 0 rgba(3, 103, 153, 0.2);
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(3, 103, 153, 0.3);
        }

        /* Hero */
        .hero {
            padding: 160px 0 100px;
            background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
            overflow: hidden;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-text h1 {
            font-size: 56px;
            line-height: 1.1;
            margin-bottom: 24px;
        }

        .hero-text h1 span {
            color: var(--primary);
        }

        .hero-text p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
            max-width: 500px;
        }

.hero-image {position: relative;text-align:center;}
.hero-image img {max-width: 100%;height:350px;border-radius: 20px;box-shadow: 0 20px 40px rgba(0,0,0,0.1);}

        /* Pricing */
        .pricing {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-title h2 {
            font-size: 36px;
            margin-bottom: 16px;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            transition: transform 0.3s;
        }

        .card:hover {
            transform: translateY(-10px);
        }

        .card.featured {
            border: 2px solid var(--primary);
            position: relative;
        }

        .badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: var(--primary);
            color: var(--white);
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
        }

        .price {
            font-size: 48px;
            font-weight: 700;
            margin: 20px 0;
            font-family: 'Exo 2', sans-serif;
        }

        .price span {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .features-list {
            list-style: none;
            margin-bottom: 30px;
        }

        .features-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
        }

        .features-list li::before {
            content: "\f00c";
            font-family: "Line Awesome Free";
            font-weight: 900;
            color: var(--primary);
            font-size: 16px;
        }

        /* Features Section */
        .features {
            padding: 100px 0;
            background: var(--white);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
        }

        .feature-item {
            text-align: center;
            padding: 20px;
        }

        .feature-icon {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 20px;
            display: inline-block;
            width: 80px;
            height: 80px;
            line-height: 80px;
            background: rgba(3, 103, 153, 0.05);
            border-radius: 50%;
            transition: all 0.3s;
        }

        .feature-item:hover .feature-icon {
            background: var(--primary);
            color: var(--white);
            transform: translateY(-5px);
        }

        .feature-item h3 {
            font-size: 20px;
            margin-bottom: 12px;
        }

        .feature-item p {
            color: var(--text-muted);
            font-size: 15px;
        }

        /* Support Section */
        .support {
            padding: 100px 0;
            background: var(--bg-light);
        }

        .support-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 40px;
        }

        .support-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            text-align: center;
            transition: all 0.3s;
        }

        .support-card:hover {
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transform: translateY(-5px);
        }

        .support-card i {
            font-size: 40px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .support-card h3 {
            margin-bottom: 15px;
        }

        .support-card p {
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        /* Footer */
        footer {
            padding: 80px 0 40px;
            background: #0f172a;
            color: #94a3b8;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 60px;
            margin-bottom: 60px;
        }

        .footer-logo {
            color: var(--white);
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 20px;
            display: block;
            text-decoration: none;
        }

        .footer-col h4 {
            color: var(--white);
            margin-bottom: 24px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 12px;
        }

        .footer-links a {
            color: inherit;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--white);
        }
		/* Contact Section */
        .contact-page {
            padding: 160px 0 100px;
            background: var(--bg-light);
            min-height: 100vh;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .contact-info h1 {
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--text-dark);
        }

        .contact-info p {
            font-size: 18px;
            color: var(--text-muted);
            margin-bottom: 40px;
        }

        .info-cards {
            display: grid;
            gap: 20px;
        }

        .info-card {
            background: var(--white);
            padding: 24px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            display: flex;
            gap: 20px;
            align-items: flex-start;
        }

        .info-card i {
            font-size: 24px;
            color: var(--primary);
            background: rgba(3, 103, 153, 0.1);
            padding: 12px;
            border-radius: 8px;
        }

        .info-card h4 {
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .info-card p {
            margin-bottom: 0;
            font-size: 14px;
            color: var(--text-muted);
        }

        .contact-form-container {
            background: var(--white);
            padding: 48px;
            border-radius: 16px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
        }

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

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            font-size: 14px;
            color: var(--text-dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 1px solid #e2e8f0;
            border-radius: 8px;
            font-family: inherit;
            font-size: 15px;
            transition: all 0.3s;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(3, 103, 153, 0.1);
        }

        .form-group textarea {
            height: 150px;
            resize: vertical;
        }
        /* Plans Section */
        .plans-hero {
            padding: 140px 0 60px;
            background: var(--white);
            text-align: center;
            border-bottom: 1px solid #e2e8f0;
        }
        .plans-hero h1 {
            font-size: 48px;
            margin-bottom: 16px;
        }

        .plans-hero p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        .plans-section {
            padding: 80px 0;
        }

        .plans-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .plan-card {
            background: var(--white);
            padding: 40px;
            border-radius: 12px;
            border: 1px solid #e2e8f0;
            display: flex;
            flex-direction: column;
            transition: all 0.3s;
        }

        .plan-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }

        .plan-header {
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f1f5f9;
        }

        .plan-type {
            font-size: 12px;
            font-weight: 700;
            color: var(--primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
            display: block;
        }

        .plan-name {
            font-size: 24px;
            margin-bottom: 16px;
        }

        .plan-price {
            font-size: 40px;
            font-weight: 700;
            font-family: 'Exo 2', sans-serif;
        }

        .plan-price span {
            font-size: 16px;
            color: var(--text-muted);
            font-weight: 400;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 40px;
            flex-grow: 1;
        }

        .plan-features li {
            margin-bottom: 12px;
            font-size: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .plan-features li i {
            color: #10b981;
            font-weight: 900;
        }
        .alert{padding:5px;border-radius:5px;}
        .alert.alert-success{background: #C2F3C2;border: 2px solid #90EE90;}
        .mb-2{margin-bottom:2rem;}
        @media (max-width: 768px) {
            .hero-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }
            .hero-text h1 { font-size: 40px; }
            .hero-text p { margin-left: auto; margin-right: auto; }
            .nav-links { display: none; }
        }
        @media (max-width: 968px) {
            .contact-grid {
                grid-template-columns: 1fr;
            }
            .contact-info {
                text-align: center;
            }
            .info-card {
                text-align: left;
            }
        }