﻿body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand-mobile {
    display: none;
}

#logo {
    margin-top: -5px;
    /*margin-left: -190px;*/
}

/* Navbar Styling */
.navbar {
    background: #ffffff;
    box-shadow: 0 2px 1px rgba(247, 247, 247, 1);
    display: flex;
    align-items: center;
}

    .navbar .container-fluid,
    .navbar .container {
        display: flex;
        align-items: center;
        width: 100%;
    }

.navbar-toggler {
    order: -1;
    margin-right: auto;
    border: none;
    padding: 0.25rem 0.5rem;
}

    .navbar-toggler:focus {
        box-shadow: none;
    }

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23000000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    background-size: 100%;
    width: 1.5rem;
    height: 1.5rem;
}

.pipe {
    width: 2px;
    height: 40px;
    background-color: #000000;
}

.dropdown-toggle::after {
    border-top: 0px;
}

.navbar-brand {
    font-weight: 500;
    font-size: 1.5rem;
    color: #000000 !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .navbar-brand img {
        width: auto;
    }

.navbar-nav .nav-link {
    color: #000000 !important;
    margin: 0 10px;
    transition: color 0.3s ease;
}

    .navbar-nav .nav-link:hover {
        color: #4169E1 !important;
    }

/* Hero Section */
.hero {
    /* background: linear-gradient(90deg, #ffffff 0%, #4169E1 100%); */
    color: #1a1a1a;
    padding: 40px 20px;
    /* margin-top: 56px; */

    background-image: linear-gradient(rgba(210, 210, 210, 0.9), rgba(210, 210, 210, 0.9)), url("../images/hero-bg.jpg");
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content-mobile {
    display: none;
    align-items: center;
    gap: 50px;
}

.hero-text {
    flex: 1;
    text-align: left;
}

.hero-form {
    flex: 0.7;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    animation: slideDown 1s ease-out;
    color: black;
    text-align: left;
}

.hero .MakeInIndia {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 10px;
    color: white;
    text-align: left;
    background-color: rgb(50, 66, 87);
    border-radius: 10px;
    width: fit-content;
    padding: 5px 10px 5px 10px;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 1;
    color: #333;
    text-align: left;
}

.hero .btn {
    padding: 12px 35px;
    font-size: 1.1rem;
    margin: 10px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 60px 20px;
    background: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #0284c5;
    margin-bottom: 30px;
    font-weight: 500;
}

.about-section {
    margin-bottom: 50px;
}

    .about-section h3 {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: #333;
        margin-top: 30px;
    }

        .about-section h3:first-child {
            margin-top: 0;
        }

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

    .about-text ul {
        margin-left: 30px;
        margin-bottom: 20px;
    }

    .about-text li {
        margin-bottom: 10px;
        color: #555;
    }

    .about-text b {
        color: #333;
        font-weight: 600;
    }

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
    margin: 40px 0;
}

.team-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    margin: 40px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.value-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0284c5;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .value-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .value-card h4 {
        font-size: 1.3rem;
        font-weight: 600;
        color: #333;
        margin-bottom: 15px;
    }

    .value-card p {
        color: #666;
        line-height: 1.6;
    }

/* Pricing Section */
.pricing-section {
    padding: 60px 20px;
    background: white;
}

.pricing-content {
    max-width: 1400px;
    margin: 0 auto;
}

.pricing-header {
    text-align: center;
    margin-bottom: 50px;
}

    .pricing-header h2 {
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 10px;
        color: #333;
    }

    .pricing-header p {
        font-size: 1.1rem;
        color: #666;
    }

/* Special Pricing Block */
.special-pricing-block {
    background: linear-gradient(135deg, #f0f8ff 0%, #e7f3ff 100%);
    border: 2px solid #0284c5;
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 50px;
    box-shadow: 0 8px 30px rgba(2, 132, 197, 0.1);
}

.special-pricing-content {
    max-width: 900px;
    margin: 0 auto;
}

.special-pricing-header {
    margin-bottom: 20px;
}

.special-pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a3f 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.special-pricing-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #0284c5;
    margin: 0;
}

.special-pricing-subtitle {
    font-size: 1.1rem;
    color: #333;
    margin: 15px 0 30px 0;
    line-height: 1.6;
}

.special-pricing-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

@media (max-width: 768px) {
    .special-pricing-details {
        grid-template-columns: 1fr;
    }
}

.pricing-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid #4caf50;
}

.detail-icon {
    font-size: 1.5rem;
    color: #4caf50;
    font-weight: bold;
    flex-shrink: 0;
}

.detail-text {
    color: #333;
    font-size: 0.95rem;
    line-height: 1.5;
}

    .detail-text strong {
        color: #0284c5;
        font-weight: 600;
    }

.special-pricing-footer {
    text-align: center;
    color: #0284c5;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 2px dashed #0284c5;
}

.calculator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Column - Input Controls */
.calculator-controls {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.controls-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    border-bottom: 2px solid #0284c5;
    padding-bottom: 15px;
}

.container-section {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    transition: border-color 0.3s ease;
}

    .container-section:hover {
        border-color: #0284c5;
    }

.container-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.container-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.remove-container-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

    .remove-container-btn:hover {
        background: #c82333;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 600;
        color: #333;
        margin-bottom: 8px;
        font-size: 0.95rem;
    }

.slider-container {
    display: none;
}

    .slider-container input[type="range"] {
        flex: 1;
        height: 8px;
        border-radius: 5px;
        background: linear-gradient(to right, #d2daf0 0%, #0284c5 100%);
        outline: none;
        -webkit-appearance: none;
        cursor: pointer;
    }

        .slider-container input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #0284c5;
            cursor: pointer;
            box-shadow: 0 2px 8px rgba(2, 132, 197, 0.4);
            border: 2px solid white;
            transition: all 0.2s ease;
        }

            .slider-container input[type="range"]::-webkit-slider-thumb:active {
                width: 26px;
                height: 26px;
                box-shadow: 0 4px 15px rgba(2, 132, 197, 0.6);
            }

        .slider-container input[type="range"]::-moz-range-track {
            background: transparent;
            border: none;
        }

        .slider-container input[type="range"]::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: #0284c5;
            cursor: pointer;
            border: 2px solid white;
            box-shadow: 0 2px 8px rgba(2, 132, 197, 0.4);
            transition: all 0.2s ease;
        }

            .slider-container input[type="range"]::-moz-range-thumb:active {
                width: 26px;
                height: 26px;
                box-shadow: 0 4px 15px rgba(2, 132, 197, 0.6);
            }

.slider-value {
    min-width: 100px;
    background: white;
    padding: 8px 12px;
    border-radius: 5px;
    border: 2px solid #0284c5;
    color: #0284c5;
    font-weight: 600;
    text-align: center;
    font-size: 0.9rem;
}

.input-group-slider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

    .input-group-slider input[type="range"] {
        flex: 1;
        min-width: 200px;
        height: 10px;
        border-radius: 5px;
        background: linear-gradient(to right, #d2daf0 0%, #0284c5 100%);
        outline: none;
        -webkit-appearance: none;
        cursor: pointer;
        padding: 0;
    }

        .input-group-slider input[type="range"]::-webkit-slider-runnable-track {
            height: 10px;
            border-radius: 5px;
            background: linear-gradient(to right, #d2daf0 0%, #0284c5 100%);
            border: none;
        }

        .input-group-slider input[type="range"]::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #0284c5;
            cursor: grab;
            box-shadow: 0 2px 10px rgba(2, 132, 197, 0.5);
            border: 3px solid white;
            margin-top: -7px;
        }

            .input-group-slider input[type="range"]::-webkit-slider-thumb:active {
                cursor: grabbing;
                box-shadow: 0 4px 18px rgba(2, 132, 197, 0.8);
            }

        .input-group-slider input[type="range"]::-moz-range-track {
            background: linear-gradient(to right, #d2daf0 0%, #0284c5 100%);
            border: none;
            border-radius: 5px;
            height: 10px;
        }

        .input-group-slider input[type="range"]::-moz-range-thumb {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: #0284c5;
            cursor: grab;
            border: 3px solid white;
            box-shadow: 0 2px 10px rgba(2, 132, 197, 0.5);
        }

            .input-group-slider input[type="range"]::-moz-range-thumb:active {
                cursor: grabbing;
                box-shadow: 0 4px 18px rgba(2, 132, 197, 0.8);
            }

        .input-group-slider input[type="range"]::-moz-range-progress {
            background: #0284c5;
            border-radius: 5px;
            height: 10px;
        }

    .input-group-slider input[type="number"] {
        min-width: 70px;
        max-width: 80px;
        padding: 8px 10px;
        border-radius: 5px;
        border: 2px solid #0284c5;
        font-weight: 600;
        font-size: 0.9rem;
        text-align: center;
    }

        .input-group-slider input[type="number"]:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(2, 132, 197, 0.2);
        }

.storage-item {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    margin-bottom: 12px;
}

.storage-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.storage-type {
    font-weight: 600;
    color: #333;
}

.remove-storage-btn {
    background: #dc3545;
    color: white;
    border: none;
    padding: 3px 10px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    transition: background 0.3s ease;
}

    .remove-storage-btn:hover {
        background: #c82333;
    }

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .checkbox-group input[type="checkbox"] {
        width: 18px;
        height: 18px;
        cursor: pointer;
        accent-color: #0284c5;
    }

    .checkbox-group label {
        margin: 0;
        font-weight: normal;
        cursor: pointer;
        color: #555;
    }

.add-compute-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.add-container-btn, .add-storage-btn, .add-vm-btn {
    background: #0284c5;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 0;
}

    .add-container-btn:hover, .add-storage-btn:hover {
        background: #025a9a;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(2, 132, 197, 0.4);
    }

.add-vm-btn {
    background: #10b981;
}

    .add-vm-btn:hover {
        background: #059669;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(16, 185, 129, 0.4);
    }

.add-storage-btn {
    margin-top: 10px;
}

/* Right Column - Price Summary */
.price-summary {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 25px;
    border-bottom: 2px solid #0284c5;
    padding-bottom: 15px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.95rem;
}

    .price-item:last-child {
        border-bottom: none;
    }

.price-item-label {
    color: #555;
}

.price-item-value {
    color: #333;
    font-weight: 600;
}

.price-item.container-item {
    background: #f0f4ff;
    padding: 12px;
    border-radius: 5px;
    margin: 10px 0;
}

    .price-item.container-item .price-item-label {
        font-weight: 600;
        color: #0284c5;
    }

.total-price {
    background: linear-gradient(135deg, #0284c5 0%, #025a9a 100%);
    color: white;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
}

.total-label {
    font-size: 0.95rem;
    opacity: 0.9;
    margin-bottom: 8px;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 700;
}

.total-currency {
    font-size: 1rem;
    font-weight: 600;
}

.total-period {
    font-size: 0.85rem;
    opacity: 0.85;
    margin-top: 8px;
}

.get-started-btn {
    width: 100%;
    background: linear-gradient(135deg, #0284c5 0%, #0284c5 100%);
    border: none;
    color: white;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 15px;
}

    .get-started-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(2, 132, 197, 0.4);
        color: white;
        text-decoration: none;
    }

.pricing-note {
    background: #e7f3ff;
    border-left: 4px solid #0284c5;
    padding: 15px;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #333;
}

/* Early Access Form */
.early-access-form {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

    .early-access-form h2 {
        color: #333;
        font-size: 2.5rem;
        margin-bottom: 0px;
        text-align: center;
        font-weight: 600;
    }

    .early-access-form .top-text {
        color: #0284c5;
        font-size: 0.95rem;
        text-align: center;
        background-color: #0284c51a;
        width: fit-content;
        border-radius: 10px;
        padding: 5px 10px 5px 10px;
        margin: auto;
        font-weight: 600;
        margin-bottom: 10px;
    }

.form-footertext {
    color: black !important;
    font-size: 0.9rem !important;
    text-align: center;
    margin: auto;
    margin-top: 15px;
    margin-bottom: 0px !important;
    width: fit-content;
}

.early-access-form .form-subtitle {
    color: black;
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 15px;
}

.early-access-form .form-group {
    margin-bottom: 20px;
}

.early-access-form .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

    .early-access-form .form-control:focus {
        border-color: #4169E1;
        box-shadow: 0 0 0 0.2rem rgba(65, 105, 225, 0.25);
    }

    .early-access-form .form-control::placeholder {
        color: #aaa;
    }

.early-access-form .form-check {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.early-access-form .form-check-input {
    margin-top: 4px;
    cursor: pointer;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    transition: border-color 0.3s ease, background-color 0.3s ease;
}

    .early-access-form .form-check-input:hover {
        border-color: #0284c5;
    }

    .early-access-form .form-check-input:checked {
        background-color: #0284c5;
        border-color: #0284c5;
    }

.early-access-form .form-check-label {
    cursor: pointer;
    user-select: none;
}

    .early-access-form .form-check-label a {
        color: #0284c5;
        text-decoration: underline;
        transition: color 0.3s ease;
    }

        .early-access-form .form-check-label a:hover {
            color: #025a9a;
        }

/* Modal Styling */
.modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #f8f9fa;
    border-bottom: 2px solid #e0e0e0;
    border-radius: 10px 10px 0 0;
}

.modal-title {
    color: #333;
    font-weight: 600;
    font-size: 1.5rem;
}

.modal-body {
    padding: 25px;
    color: #555;
    line-height: 1.8;
}

    .modal-body h6 {
        color: #0284c5;
        font-weight: 600;
        margin-top: 20px;
        margin-bottom: 10px;
        font-size: 1.05rem;
    }

        .modal-body h6:first-child {
            margin-top: 0;
        }

    .modal-body p {
        margin-bottom: 15px;
        text-align: justify;
    }

    .modal-body ul {
        margin-left: 20px;
        margin-bottom: 15px;
    }

        .modal-body ul li {
            margin-bottom: 8px;
            color: #555;
        }

.modal-footer {
    background-color: #f8f9fa;
    border-top: 2px solid #e0e0e0;
    border-radius: 0 0 10px 10px;
}

.modal-body .btn-close {
    filter: brightness(0) saturate(100%) invert(45%) sepia(52%) saturate(360%) hue-rotate(182deg) brightness(100%) contrast(91%);
}

.early-access-form .btn-waitlist {
    width: 100%;
    background: linear-gradient(135deg, #0284c5 0%, #0284c5 100%);
    border: none;
    color: white;
    padding: 14px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .early-access-form .btn-waitlist:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(65, 105, 225, 0.4);
        color: white;
        text-decoration: none;
    }

    .early-access-form .btn-waitlist:active {
        transform: translateY(0);
    }

.early-access-form .form-message {
    margin-top: 15px;
    padding: 5px;
    margin-bottom: 16px;
    border-radius: 5px;
    text-align: center;
    display: none;
}

    .early-access-form .form-message.success {
        background-color: #d4edda;
        color: #155724;
        border: 1px solid #c3e6cb;
        display: block;
    }

    .early-access-form .form-message.error {
        background-color: #f8d7da;
        color: #721c24;
        border: 1px solid #f5c6cb;
        display: block;
    }

/* Limited Time Badge */
.limited-time-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-align: center;
}

/* Date Highlight */
.date-highlight {
    color: #0284c5 !important;
}

.superscript {
    font-size: 0.75em;
    vertical-align: super;
    color: #0284c5;
}

/* Info Boxes */
.info-box {
    border-radius: 10px;
    padding: 10px;
    margin: 10px 0;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.info-box-icon {
    font-size: 24px;
    flex-shrink: 0;
    min-width: 30px;
    text-align: center;
}

.info-box-content {
    flex: 1;
}

    .info-box-content strong {
        display: block;
        font-size: 14px;
        margin-bottom: 4px;
    }

    .info-box-content small {
        display: block;
        font-size: 12px;
        line-height: 1.5;
    }

.info-box-yellow {
    background-color: #ffffbb;
    border: 1px solid #ffff00;
    color: #333;
}

.info-box-blue {
    background-color: #e7f3ff;
    border: 1px solid #b3d9ff;
    color: #0284c5;
}

    .info-box-blue .info-box-content strong {
        color: #0284c5;
    }

    .info-box-blue .info-box-content small {
        color: #555;
    }

.info-box-red {
    background-color: #ffe7e7;
    border: 1px solid #ffb3b3;
    color: #d32f2f;
}

    .info-box-red .info-box-content strong {
        color: #d32f2f;
    }

    .info-box-red .info-box-content small {
        color: #555;
    }

.info-box-green {
    background-color: #e8f5e9;
    border: 1px solid #c8e6c9;
    color: #388e3c;
}

    .info-box-green .info-box-content strong {
        color: #388e3c;
    }

    .info-box-green .info-box-content small {
        color: #555;
    }

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /*gap: 15px;*/
    margin: 20px 0;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #f8f9fa;
}

    .features h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #333;
    }

.feature-card {
    text-align: center;
    padding: 20px 20px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    /* background: linear-gradient(135deg, #4169E1 0%, #1e40af 100%); */
    background-color: #d2daf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 40px 20px;
    background: white;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-image {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    padding: 50px 20px;
    background-color: #f8f9fa;
}

    .features h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #333;
    }

.feature-card {
    text-align: center;
    padding: 20px 20px;
    background: rgb(255, 255, 255);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    }

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: #d2daf0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin: 20px 0;
    color: #333;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* Linux Variants Section */
.linux-variants {
    padding: 50px 20px;
    background: white;
}

    .linux-variants h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #333;
    }

.variant-card {
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

    .variant-card:hover {
        border-color: #0284c5;
        box-shadow: 0 10px 30px rgba(2, 132, 197, 0.15);
        transform: translateY(-5px);
    }

.variant-logo {
    font-size: 3rem;
    margin-bottom: 15px;
}

.variant-card h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.variant-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.variant-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.variant-tag {
    background: #f0f0f0;
    color: #0284c5;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Container Tiers Section */
.container-tiers {
    padding: 50px 20px;
    background-color: #f8f9fa;
}

    .container-tiers h2 {
        text-align: center;
        font-size: 2.5rem;
        font-weight: 700;
        margin-bottom: 60px;
        color: #333;
    }

.tier-card {
    background: white;
    border-radius: 10px;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    position: relative;
    transition: all 0.3s ease;
}

    .tier-card.popular {
        border: 2px solid #0284c5;
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(2, 132, 197, 0.2);
    }

.tier-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #0284c5 0%, #0284c5 100%);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.tier-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: 600;
}

.tier-description {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.tier-specs {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.tier-spec {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    color: #555;
}

    .tier-spec:last-child {
        border-bottom: none;
    }

.spec-label {
    font-weight: 600;
    color: #333;
}

.spec-value {
    color: #0284c5;
    font-weight: 500;
}

.tier-use-case {
    background: #f0f8ff;
    padding: 15px;
    border-left: 4px solid #0284c5;
    border-radius: 5px;
    margin-top: 20px;
}

    .tier-use-case strong {
        color: #0284c5;
    }

/* Customization Section */
.customization {
    padding: 50px 20px;
    background: white;
}

.customization-content {
    max-width: 1200px;
    margin: 0 auto;
}

.customization h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    color: #333;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.customization-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    border-left: 4px solid #0284c5;
}

    .customization-item h3 {
        color: #0284c5;
        font-size: 1.3rem;
        margin-bottom: 15px;
        font-weight: 600;
    }

    .customization-item p {
        color: #555;
        line-height: 1.7;
    }

    .customization-item ul {
        list-style: none;
        padding: 0;
        margin: 15px 0 0 0;
    }

    .customization-item li {
        color: #555;
        padding: 8px 0;
        border-bottom: 1px solid #e0e0e0;
    }

        .customization-item li:last-child {
            border-bottom: none;
        }

        .customization-item li:before {
            content: "✓ ";
            color: #0284c5;
            font-weight: bold;
            margin-right: 8px;
        }

/* LXC Info Section */
.lxc-info {
    padding: 50px 20px;
    background-color: #f8f9fa;
}

.lxc-info-content {
    max-width: 1200px;
    margin: 0 auto;
}

.lxc-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.lxc-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.lxc-benefit {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

    .lxc-benefit h3 {
        color: #0284c5;
        font-size: 1.2rem;
        margin-bottom: 12px;
        font-weight: 600;
    }

    .lxc-benefit p {
        color: #555;
        line-height: 1.7;
    }

/* Footer */
footer {
    background: linear-gradient(135deg, #333 0%, #444 100%);
    color: white;
    padding: 40px 20px 40px;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-decoration: none;
    transition: color 0.3s ease;
}

    .footer-section a:hover {
        color: #4169E1;
    }

.footer-section ul {
    list-style: none;
    padding: 0;
}

    .footer-section ul li {
        margin-bottom: 10px;
    }

        .footer-section ul li a {
            color: rgba(255, 255, 255, 0.8);
        }

.footer-divider {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 40px;
    padding-top: 30px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(65, 105, 225, 0.3);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.3s ease;
    }

        .social-links a:hover {
            background: #4169E1;
        }

/* Dropdown Menu Styling */
.nav-item.dropdown .nav-link::after {
    content: '▼';
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-item.dropdown .nav-link[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    min-width: 200px;
}

    .dropdown-menu .dropdown-item {
        color: #000000 !important;
        padding: 10px 20px;
        transition: all 0.3s ease;
        border-left: 3px solid transparent;
    }

        .dropdown-menu .dropdown-item:hover {
            background-color: #f8f9fa;
            color: #0284c5 !important;
            border-left-color: #0284c5;
        }

        .dropdown-menu .dropdown-item.active,
        .dropdown-menu .dropdown-item:active {
            background-color: #f0f8ff;
            color: #0284c5 !important;
            border-left-color: #0284c5;
        }

@media (max-width: 1366px) {

    .navbar-brand {
        display: none;
    }

    .navbar-brand-mobile {
        display: block;
    }

    .logo-mobile {
        float: right;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero .MakeInIndia {
        margin: auto;
        margin-bottom: 10px;
    }

     .hero-content {
        flex-direction: column-reverse;
        gap: 30px;
    }

    .hero-text,
    .hero-form {
        flex: 1 100%;
    }

    .hero h1 {
        font-size: 2.5rem;
        text-align: center;
    }

    .hero p {
        text-align: center;
    }

    .early-access-form {
        max-width: 100%;
    }
}


/* Responsive Design */
@media (max-width: 1200px) {
    .calculator-wrapper {
        grid-template-columns: 1fr;
    }

    .price-summary {
        position: relative;
        top: 0;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-header h2 {
        font-size: 1.8rem;
    }

    .calculator-controls {
        padding: 20px;
    }

    .price-summary {
        padding: 20px;
    }

    .container-section {
        padding: 15px;
    }

    .total-amount {
        font-size: 2rem;
    }

    .input-group-slider {
        gap: 8px;
    }

        .input-group-slider input[type="range"] {
            min-width: 150px;
        }

        .input-group-slider input[type="number"] {
            min-width: 60px;
            max-width: 70px;
            padding: 6px 8px;
            font-size: 0.85rem;
        }

    .slider-value {
        min-width: 75px;
        padding: 6px 8px;
        font-size: 0.8rem;
    }
}
