@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  overflow-x: hidden;
  width: 100%;
}
body {
  font-family: "Poppins", sans-serif;
}
a {
  display: inline-block;
  text-decoration: none;
}

ul {
  list-style-type: none;
  padding: 0;
}

.container {
  max-width: 1350px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2964FF, #80A3FF);
    padding: 140px 0;
    text-align: center;
    color: white;
    margin-top: 120px;
    
}

.hero-title {
    font-size: 65px;
    margin-bottom: 25px;
    font-weight: 500;
}

.breadcrumb {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}
/* Checkout Section */
.checkout-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Payment Summary Card */
.payment-summary-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    height: fit-content;
    position: sticky;
    top: 100px;
    border: 1px solid #00000015;
}

.summary-header {
    padding: 25px;
    border-bottom: 1px solid #e9ecef;
}

.summary-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.summary-body {
    padding: 25px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    font-size: 15px;
}

.summary-row .label {
    color: #000000;
    font-weight: 500;
    font-size: 15px;
}

.summary-row .value {
    font-weight: 500;
    color: #000000;
}

.strikethrough {
    text-decoration: line-through;
    color: #00000080;
    margin-right: 10px;
}

.current {
    color: #333;
}

.total-row {
    margin-top: 10px;
    padding-top: 18px;
    border-top: 1px solid #e9ecef;
}

.final-amount {
    padding: 25px;
    border-top: 2px solid #e9ecef;
    background: #f8f9fa;
    border-radius: 0 0 12px 12px;
}

.amount-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.amount-label {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
}

.amount-value {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
}

.btn-breakups {
    background: transparent;
    border: none;
    color: #000000;
    font-size: 14px;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
}

/* Payment Methods Card */
.payment-methods-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.payment-card{
    max-width: 140.78px;
}
.payment-card>img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.section-title {
    font-size: 34px;
    font-weight: 700;
    color: #00000099;
    margin-bottom: 30px;
}





.payment-icons:hover {
    border-color: #4169ff;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(65, 105, 255, 0.2);
}

.payment-options {
    margin-bottom: 30px;
}

.payment-option {
    margin-bottom: 20px;
}

.payment-option input[type="radio"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4169ff;
}

.payment-option label {
    font-size: 22px;
    font-weight: 600;
    color: #000000CC;
    cursor: pointer;
}

.option-description {
    margin-left: 30px;
    margin-top: 8px;
    color: #000000CC;
    font-size: 20px;
    background-color: #EFEFEF;
    line-height: 1.5;
    padding: 10px;
}

.terms-checkbox {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.terms-checkbox input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4169ff;
}

.terms-checkbox label {
    font-size: 20px;
    color: #666;
    cursor: pointer;
}

.terms-link {
    color: #EF2424;
    text-decoration: none;
    font-weight: 500;
}

.terms-link:hover {
    text-decoration: underline;
}

.btn-pay-now {
    width: 100%;
    background: #85ACF5;
    color: white;
    border: none;
    padding: 18px;
    border-radius: 10px;
    font-size: 28px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 105, 255, 0.4);
}

/* Newsletter Section */
.newsletter-section {
    background: #000;
    padding: 60px 0;
    text-align: center;
}

.newsletter-title {
    color: #6b8cff;
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 600;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 18px 25px;
    border: none;
    border-radius: 10px 0 0 10px;
    font-size: 16px;
    outline: none;
}

.btn-subscribe {
    background: #4169ff;
    color: white;
    border: none;
    padding: 18px 35px;
    border-radius: 0 10px 10px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-subscribe:hover {
    background: #2d4dd4;
}

/* Footer */
.footer {
    background: #000;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    height: 45px;
}

.footer-description {
    color: #999;
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: #1a1a1a;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-links a:hover {
    background: #4169ff;
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #6b8cff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: #999;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4169ff;
}

.contact-info a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #4169ff;
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}


/* Responsive Design */
@media (max-width: 1024px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
    
    .payment-summary-card {
        position: relative;
        top: 0;
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .search-box {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .payment-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-card{
        margin: 0 0 15px;
    }
    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-input,
    .btn-subscribe {
        border-radius: 10px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .payment-cards {
        grid-template-columns: 1fr;
    }

    .payment-methods-card {
        padding: 25px;
    }

    .section-title {
        font-size: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-right .btn-signin {
        display: none;
    }
}
