html,body{
    font-family: "Montserrat", sans-serif;
}
h1,h2,h3,h4,h5,h6{
    font-family: "Montserrat", sans-serif;
}
p{
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
}
a{
    font-family: "Montserrat", sans-serif;
    text-decoration: none;
}
.section{
    padding: 64px 0px;
}
.main-heading{
    font-size: 30px;
    font-weight: 700;
    color: #000;
}
.text-para{
  font-size: 16px;
  color: #555;
}

.navbar{
  padding: 0;
}
.navbar-brand img{
  width: 110px;
}


@media all and (min-width: 992px) {
  .navbar .nav-item .dropdown-menu {
    display: none;
  }
  .navbar .nav-item:hover .dropdown-menu {
    display: block;
  }
  .navbar .nav-item .dropdown-menu {
    margin-top: 0;
  }
}



:root {
    --primary-blue: #09458e;
    --secondary-blue: #2e9ff0;
    --gradient-primary: linear-gradient(135deg, #09458e 0%, #2e9ff0 100%);
    --transition-smooth: all 0.3s ease;
}

/* ========== GLOBAL STYLES ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    overflow-x: hidden;
    background: linear-gradient(to bottom right, #ffffff 0%, rgba(46, 159, 240, 0.05) 50%, #ffffff 100%);
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-bg {
    background: var(--gradient-primary);
}

.bestSelling .owl-stage-outer{
  padding: 30px 0px !important;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(180deg) scale(1.2);
    }
    to {
        transform: rotate(360deg) scale(1);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== HEADER STYLES ========== */
.header-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: var(--transition-smooth);
    animation: fadeInUp 0.5s ease;
}

.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.nav-link-custom {
    color: #4b5563;
    font-weight: 500;
    padding: 24px 16px !important;
    transition: var(--transition-smooth);
}

.nav-link-custom:hover {
    color: var(--secondary-blue);
}

.btn-gradient {
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    padding: 0.625rem 1.5rem;
    border-radius: 50px;
    border: none;
    transition: var(--transition-smooth);
}

.btn-gradient:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(46, 159, 240, 0.3);
}

.dropdown-menu-custom {
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    margin-top: 0.5rem;
}

.dropdown-item-custom {
    padding: 0.75rem 1rem;
    font-weight: 500;
    color: #4b5563;
    transition: var(--transition-smooth);
}

.dropdown-item-custom:hover {
    background: linear-gradient(90deg, rgba(9, 69, 142, 0.1) 0%, rgba(46, 159, 240, 0.1) 100%);
    color: var(--secondary-blue);
}

/* ========== HERO SECTION ========== */
.hero-section {
    padding-top: 8rem;
    padding-bottom: 5rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-decoration {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.hero-bg-1 {
    top: -10rem;
    right: -10rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(46, 159, 240, 0.2) 0%, transparent 100%);
    animation: rotate360 20s linear infinite;
}

.hero-bg-2 {
    bottom: -10rem;
    left: -10rem;
    width: 24rem;
    height: 24rem;
    background: linear-gradient(135deg, rgba(9, 69, 142, 0.2) 0%, transparent 100%);
    animation: rotate360 25s linear infinite reverse;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, rgba(9, 69, 142, 0.1) 0%, rgba(46, 159, 240, 0.1) 100%);
    border-radius: 50px;
    border: 1px solid rgba(46, 159, 240, 0.2);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #6b7280;
}

.hero-btn-primary {
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(46, 159, 240, 0.3);
    transition: var(--transition-smooth);
}

.hero-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(46, 159, 240, 0.4);
}

.hero-btn-secondary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-blue);
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid rgba(9, 69, 142, 0.2);
    transition: var(--transition-smooth);
}

.hero-btn-secondary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(9, 69, 142, 0.1) 0%, rgba(46, 159, 240, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-container {
    position: relative;
    aspect-ratio: 1;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-controls {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 10;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-btn:hover {
    background: white;
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    width: 32px;
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* ========== SECTION STYLES ========== */
.section-padding {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(90deg, rgba(9, 69, 142, 0.1) 0%, rgba(46, 159, 240, 0.1) 100%);
    border-radius: 50px;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* ========== DEVICE CARDS ========== */
.device-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
    height: 100%;
}

.device-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.device-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.device-icon:hover {
    animation: rotate360 0.6s ease;
}

.device-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.device-description {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

/* ========== PHONE CARDS ========== */
.phone-card {
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
    min-width: 280px;
}

.phone-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.phone-image-placeholder {
    width: 100%;
    height: 192px;
    background: linear-gradient(135deg, rgba(9, 69, 142, 0.1) 0%, rgba(46, 159, 240, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    overflow: hidden;
}

.phone-device {
    width: 128px !important;
    height: 160px;
    background: var(--gradient-primary);
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.phone-card:hover .phone-device {
    transform: scale(1.1) rotate(5deg);
}

.phone-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.phone-storage {
    font-size: 0.875rem;
    color: #6b7280;
}

.phone-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.scrollable-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.scrollable-container::-webkit-scrollbar {
    display: none;
}

/* ========== BRAND CARDS ========== */
.brand-card {
    background: white;
    border-radius: 16px;
    padding: 10px;
    border: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
    min-height: 128px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.brand-card:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.brand-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.brand-card:hover .brand-overlay {
    opacity: 0.9;
}

.brand-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
}

.brand-card:hover .brand-name {
    color: white;
}

/* ========== STEP CARDS ========== */
.step-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e5e7eb;
    transition: var(--transition-smooth);
    text-align: center;
    height: 100%;
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(9, 69, 142, 0.15);
    border-color: rgba(46, 159, 240, 0.3);
}

.step-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 96px;
    height: 96px;
    background: var(--gradient-primary);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border: 4px solid white;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
}

.step-description {
    color: #6b7280;
    line-height: 1.6;
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid #e5e7eb;
    transition: var(--transition-smooth);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.feature-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover .feature-overlay {
    opacity: 0.1;
}

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-card:hover .feature-icon {
    animation: rotate360 0.6s ease;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #6b7280;
}

/* ========== CTA SECTION ========== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-bg {
    background: linear-gradient(135deg, #09458e 0%, #2e9ff0 50%, #09458e 100%);
    border-radius: 0;
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border-radius: 50px;
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-btn-primary {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-blue);
    font-weight: 700;
    border-radius: 50px;
    border: none;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
}

.cta-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    font-weight: 700;
    border-radius: 50px;
    border: 2px solid white;
    transition: var(--transition-smooth);
}

.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.trust-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* ========== FOOTER STYLES ========== */
.footer-main {
    background: white;
    border-top: 1px solid #e5e7eb;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
}

.footer-link {
    color: #4b5563;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-block;
}

.footer-link:hover {
    color: var(--secondary-blue);
    transform: translateX(4px);
}

.social-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    transform: scale(1.2) translateY(-2px);
    box-shadow: 0 10px 20px rgba(46, 159, 240, 0.3);
}

.whatsapp-float {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
    z-index: 999;
    transition: var(--transition-smooth);
    animation: float 3s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.5);
}

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .cta-title {
        font-size: 1.75rem;
    }
}

@media (min-width: 992px) {
    .cta-bg {
        border-radius: 24px;
    }
}

.form-container {
    width: 100%;
    padding: 4px;
    background: linear-gradient(135deg, #09458e 0%, #2e9ff0 100%);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-inner {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 32px;
}

.form-header {
    text-align: center;
    margin-bottom: 24px;
}

.sub-heading {
    font-size: 18px;
    font-weight: 600;
    color: #2e9ff0;
    margin-bottom: 0;
}

.trust-badge {
    background: linear-gradient(135deg, #09458e 0%, #2e9ff0 100%);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(9, 69, 142, 0.2);
}

.form-label-custom {
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    font-size: 14px;
}

.label-emoji {
    margin-right: 6px;
}

.form-control-custom {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control-custom:focus {
    border-color: #2e9ff0;
    box-shadow: 0 0 0 0.2rem rgba(46, 159, 240, 0.15);
    outline: none;
}

.form-select-custom {
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-select-custom:focus {
    border-color: #2e9ff0;
    box-shadow: 0 0 0 0.2rem rgba(46, 159, 240, 0.15);
    outline: none;
}

.textarea-custom {
    min-height: 100px;
    resize: vertical;
}

.error-message {
    color: #dc3545;
    font-size: 12px;
    margin-top: 4px;
    display: none;
}

.error-message.show {
    display: block;
}

.form-control-error {
    border-color: #dc3545;
}

.form-control-error:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.15);
}

.submit-button {
    background: linear-gradient(135deg, #09458e 0%, #2e9ff0 100%);
    border: none;
    color: white;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(9, 69, 142, 0.3);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(9, 69, 142, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}

.submit-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.mb-custom-20 {
    margin-bottom: 20px;
}

.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 16px;
    border-radius: 8px;
    text-align: center;
    display: none;
    margin-bottom: 16px;
    border: 1px solid #c3e6cb;
}

.success-message.show {
    display: block;
}

.success-icon {
    font-size: 48px;
    margin-bottom: 12px;
}

.success-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

.success-text {
    font-size: 14px;
    margin-bottom: 0;
}

@media (max-width: 576px) {
    .form-inner {
        padding: 24px 20px;
    }

    .sub-heading {
        font-size: 16px;
    }

    .trust-badge {
        font-size: 11px;
        padding: 10px 12px;
    }
}
/* Form Design */



@media only screen and (max-width: 680px) {
  .section {
    padding: 44px 0px;
  }
  .main-heading{
      font-size: 22px;
  }
  .banner-area{
      padding: 40px 0px;
  }
  .banner-title{
      font-size: 24px;
      line-height: normal;
  }
  .nav-link{
    padding: 10px 10px !important;
    border-bottom: 1px solid #ddd;
  }
  .service-card .service-title{
    font-size: 20px;
  }
  .hero{
      position: relative;
      top: unset;
      left: unset;
      transform: unset;
      width: 100%; /* adjust as needed */
      z-index: 5;
    }
    .hero:after{
      content:""; position:absolute; inset:0; pointer-events:none;
      background: radial-gradient(40rem 18rem at 50% 5%, rgba(255, 255, 255, .06), transparent 40%), linear-gradient(180deg, rgba(255, 176, 70, .35), #212529);
    }
}