/* Reset and Base Styles */
:root {
    --primary-color: #ff6600;
    --secondary-color: #ff8533;
    --accent-color: #ff6600;
    --text-color: #1f2937;
    --light-text: #6b7280;
    --background: #ffffff;
    --light-background: #f0f5ff;
    --border-color: #e5e7eb;
    --gradient-start: #ff6600;
    --gradient-end: #ff8533;
    --success-color: #22c55e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--text-color);
    color: white;
    padding: 10px 0;
    font-size: 14px;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
    margin-right: 20px;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--accent-color);
}

.login-btn {
    background: var(--accent-color);
    padding: 5px 10px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.login-btn:hover {
    background: white;
}

/* Header */
header {
    background: var(--background);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo h1 {
    font-size: 24px;
    color: var(--text-color);
    text-decoration: none;
}

.logo a {
    text-decoration: none;
}

.logo span {
    color: var(--accent-color);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
}

/* Navigation Styles */
nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 30px;
    position: relative;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: flex;
    align-items: center;
}

nav ul li a:hover {
    color: var(--primary-color);
}

/* Dropdown Menu Styles */
.domain-menu,
.hosting-menu,
.marketing-menu {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    padding: 8px 0;
    display: flex;
    flex-direction: column;
}

nav ul li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    width: 100%;
}

.dropdown-menu li a {
    padding: 12px 20px;
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    border-left: 3px solid transparent;
    width: 100%;
    text-align: left;
}

.dropdown-menu li a:hover {
    background: rgba(255, 102, 0, 0.05);
    color: var(--primary-color);
    border-left: 3px solid var(--primary-color);
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        z-index: 100;
        padding: 80px 20px;
        transition: left 0.3s ease;
        width: 100%;
        overflow-y: auto;
    }

    nav ul.show {
        display: flex;
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.2rem;
        justify-content: center;
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 102, 0, 0.05);
        margin: 10px 0;
        display: none;
        width: 100%;
        padding: 0;
    }

    .domain-menu.active .dropdown-menu,
    .hosting-menu.active .dropdown-menu,
    .marketing-menu.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 12px 30px;
        justify-content: center;
        text-align: center;
        border-left: none;
        border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-color);
    cursor: pointer;
    padding: 5px;
    z-index: 101;
    position: relative;
}

.mobile-menu-btn i {
    transition: transform 0.3s ease;
}

.mobile-menu-btn.active i::before {
    content: '\f00d';
}

/* Domain Search Bar */
.domain-search-bar {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.domain-search-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.domain-prices-wrapper {
    display: flex;
    gap: 20px;
    flex: 1;
}

.domain-price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 20px;
    border-right: 1px solid var(--border-color);
    flex: 1;
}

.domain-price-item:last-child {
    border-right: none;
}

.domain-price-item .domain {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.domain-price-item .price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.domain-search-box {
    flex: 1;
    display: flex;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.domain-search-box input {
    flex: 1;
    padding: 15px 25px;
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: 8px 0 0 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.domain-search-box input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.domain-search-box button {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0 10px;
    font-weight: 600;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
}

.domain-search-box button:hover {
    background: var(--secondary-color);
}

.hero {
    background: #FAFAFB;
    padding: 60px 0 0px; /* Top padding 60px, left/right 0, bottom 30px */
    position: relative;
    overflow: hidden;
}
.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--light-text);
    margin-bottom: 30px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    animation: float 6s ease-in-out infinite;
}

.promo-tag {
    background: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.get-started-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.get-started-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.terms {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-top: 15px;
}

/* Hosting Plans */
.hosting-plans {
    padding: 100px 0;
    background: var(--light-background);
    position: relative;
}

.hosting-plans h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--text-color);
}

.subtitle {
    text-align: center;
    color: var(--light-text);
    max-width: 600px;
    margin: 0 auto 40px;
}

/* Pricing Toggle */
.pricing-toggle-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 40px auto;
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    padding: 6px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: fit-content;
    position: relative;
}

.toggle-btn {
    border: none;
    background: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 1rem;
}

.toggle-btn.active {
    background: linear-gradient(145deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.2);
}

.toggle-btn:hover:not(.active) {
    background: rgba(255, 102, 0, 0.1);
}

.save-badge {
    background: linear-gradient(145deg, #22c55e, #16a34a);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    margin-left: 8px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(34, 197, 94, 0.2);
    }
}

.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding: 20px;
}

.plan {
    background: var(--background);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.plan:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--primary-color);
}

.plan h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.plan p {
    color: var(--light-text);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.popular {
    border: 2px solid var(--primary-color);
    background: linear-gradient(to bottom, #ffffff, #f8faff);
}

.popular-tag {
    background: var(--primary-color);
    color: white;
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.price {
    margin: 8px 0;
    font-size: 1.1rem;
    color: var(--light-text);
}

.price .amount {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-color);
    line-height: 1;
}

.price.hidden {
    display: none;
}

.choose-plan {
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    margin: 20px 0;
    transition: all 0.3s ease;
    width: 100%;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.2);
}

.choose-plan:hover {
    background: #ea580c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(249, 115, 22, 0.3);
}

.features {
    list-style: none;
    text-align: left;
    margin: 30px 0;
}

.features li {
    margin: 15px 0;
    color: var(--light-text);
    display: flex;
    align-items: center;
    font-size: 1rem;
}

.features i {
    color: #00c853;
    margin-right: 12px;
    font-size: 1.2rem;
    background: rgba(0, 200, 83, 0.1);
    padding: 6px;
    border-radius: 50%;
}

.see-all-features {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 20px;
    width: 100%;
}

.see-all-features:hover {
    background: var(--primary-color);
    color: white;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--background);
    margin: 5% auto;
    padding: 40px;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    font-size: 2rem;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    color: var(--light-text);
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    background: rgba(0,0,0,0.1);
    color: var(--text-color);
}

.feature-category {
    background: #f8faff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 20px;
}

.feature-category h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(79, 70, 229, 0.1);
}

#modalFeaturesList li {
    display: flex;
    align-items: center;
    margin: 15px 0;
    padding: 10px;
    background: white;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#modalFeaturesList li:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

#modalFeaturesList i {
    color: #00c853;
    margin-right: 15px;
    font-size: 1.2rem;
    background: rgba(0, 200, 83, 0.1);
    padding: 8px;
    border-radius: 50%;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--background);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background: var(--light-background);
    transition: transform 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.feature p {
    color: var(--light-text);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-background);
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--text-color);
}

.testimonialSwiper {
    padding: 30px 10px;
    overflow: visible;
}

.swiper-wrapper {
    display: flex;
    align-items: stretch;
}

.swiper-slide {
    height: auto;
}

.testimonial {
    background: var(--background);
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.stars {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial p {
    flex-grow: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 20px;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.author-info span {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    display: none !important;
}

.swiper-pagination-bullet {
    background: var(--primary-color) !important;
}

/* Footer */
footer {
    background: var(--text-color);
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 10px 0;
}

.footer-col a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-col i {
    margin-right: 10px;
    color: var(--accent-color);
}

.footer-bottom{
    display: flex;
    justify-content: flex-start; /* Equal space between divs */
    align-items: center;
    gap: 10px; /* Space between divs */
}

/* Reset Default Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Main Footer Container */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 5%;
  background: #2c394b;
}

/* Certification Image Styling */
.iso {
  width: 70px;
  height: 65px;
  border-radius: 50%;
  object-fit: contain;
  margin: 0 10px;
}

/* Text Section */
.payment-methods p {
  color: #f0f0f0;
  margin-top:10px;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0 15px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
  }

  .payment-methods p {
    font-size: 0.85rem;
    white-space: normal;
    text-align: center;
  }

/* Default Styles (All Devices) */
.iso {
  width: 60px;
  height: 55px;
  margin: 0 auto; /* Center align */
  display: block; /* Remove inline spacing */
  object-fit: contain; /* Prevent image stretching */
}

.pay {
  width: 260px;
  height: auto; /* Maintain aspect ratio */
  margin: 10px auto; /* Vertical spacing + center */
  display: block;
}

/* Mobile Optimization (max-width: 768px) */
@media (max-width: 768px) {
  .iso {
    width: 18vw; /* Responsive width */
    max-width: 55px; /* Maximum size limit */
    height: auto; /* Flexible height */
  }

  .pay {
    width: 90vw; /* 90% of viewport width */
    max-width: 280px; /* Maximum size limit */
    margin: 15px auto; /* Increased spacing */
  }

  /* Optional: Parent Container Styling */
  .parent-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 15px 0;
  }
}


}


/* new end */



/* Media Queries */
@media (max-width: 768px) {
    /* Top Bar */
    .top-left {
        display: none;
    }

    /* Header & Navigation */
    .mobile-menu-btn {
        display: block;
    }

    nav ul {
        display: none;
        position: fixed;
        top: 0;
        left: -100%;
        right: 0;
        bottom: 0;
        background: var(--background);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 100;
        padding: 80px 20px;
        transition: left 0.3s ease;
        width: 100%;
    }

    nav ul.show {
        display: flex;
        left: 0;
    }

    nav ul li {
        margin: 15px 0;
        width: 100%;
        text-align: center;
    }

    nav ul li a {
        font-size: 1.2rem;
        justify-content: center;
    }

    /* Mobile Dropdown Menu */
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 102, 0, 0.05);
        margin: 10px 0;
        display: none;
        width: 100%;
        padding: 0;
    }

    nav ul li.hosting-menu.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }

    .dropdown-menu li a {
        padding: 12px 30px;
        justify-content: center;
        text-align: center;
        border-left: none;
        border-bottom: 1px solid rgba(255, 102, 0, 0.1);
    }

    .dropdown-menu li:last-child a {
        border-bottom: none;
    }

    /* Domain Search Bar */
    .domain-search-bar .container {
        flex-direction: column;
        gap: 20px;
    }

    .domain-prices-wrapper {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        position: relative;
        padding-bottom: 15px;
    }

    .domain-prices-wrapper::-webkit-scrollbar {
        display: none;
    }

    .domain-prices-wrapper::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, 
            var(--primary-color) 0%, 
            var(--secondary-color) 50%,
            var(--primary-color) 100%
        );
        opacity: 0.3;
    }

    .domain-price-item {
        flex: 0 0 auto;
        min-width: 100px;
        border-right: 1px solid var(--border-color);
        padding: 10px 15px;
        
    }

    @keyframes slideHint {
        0%, 100% { transform: translateX(0); }
        50% { transform: translateX(10px); }
    }

    .domain-price-item:last-child {
        border-right: none;
        padding-right: 20px;
    }

    .domain-search-box {
        width: 100%;
        max-width: none;
        padding: 0 10px;
    }

    /* Hero Section */
    .hero {
        padding: 40px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 80%;
        
    }
    
}
@media only screen and (max-width: 768px){
    html,
    body{
    width:100%;
    overflow-x:hidden;
    }
}



/* Existing button styles को बनाये रखने के लिए */
.choose-plan {
    display: inline-block;
    padding: 12px 30px;
    background: #FF6600;
    color: white !important;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font: inherit;
}

.choose-plan:hover {
    background: #FF6600;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* पुराने button elements के लिए backward compatibility */
button.choose-plan {
    display: inline-block;
    padding: 12px 30px;
}