/* Enhanced OneClick Insurance Styles */

:root {
    --oci-primary: #2563eb;
    --oci-primary-dark: #1d4ed8;
    --oci-primary-light: #3b82f6;
    --oci-secondary: #10b981;
    --oci-accent: #f59e0b;
    --oci-danger: #ef4444;
    --oci-dark: #1e293b;
    --oci-gray: #64748b;
    --oci-light: #f1f5f9;
    --oci-white: #ffffff;
    --oci-border: #e2e8f0;
    --oci-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --oci-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --oci-gradient: linear-gradient(135deg, var(--oci-primary), var(--oci-primary-light));
    --oci-gradient-purple: linear-gradient(135deg, #4776E6, #8E54E9);
    --oci-gradient-light: linear-gradient(135deg, #f8f9fa, #ffffff);
}

/* Top Bar */
.oneclick-top-bar {
    background: var(--oci-light);
    padding: 8px 0;
    font-size: 13px;
}

/* Hero Section Styles */
.oci-hero-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: var(--oci-gradient-light);
}

.oci-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%232563eb' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.hero-content:hover {
    transform: translateY(-5px);
}

.oneclick-section-label {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.text-gradient {
    background: var(--oci-gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero-features {
    margin: 30px 0;
}

.feature-item {
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.hero-enquiry-wrapper {
    position: relative;
    z-index: 2;
}

/* Responsive Hero Section */
@media (max-width: 991.98px) {
    .oci-hero-section {
        padding: 40px 0;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem !important;
    }
    
    .hero-desc {
        font-size: 1rem !important;
    }
    
    .feature-item {
        margin-bottom: 15px;
    }
}

.top-bar-info {
    display: flex;
    gap: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--oci-gray);
}

.info-item i {
    color: var(--oci-primary);
}

.top-bar-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
}

.top-bar-link {
    color: var(--oci-gray);
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: color 0.3s;
}

.top-bar-link:hover {
    color: var(--oci-primary);
}

/* Modern Header */
.oneclick-header {
    position: sticky;
    top: 0;
    background: white;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    /* padding: 10px 0; */
    transition: all 0.3s ease;
}

.oneclick-header.scrolled {
    padding: 5px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
}

.brand-logo-image {
    width: 160px;
    transition: all 0.3s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--oci-gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.2);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--oci-dark);
    line-height: 1;
}

.brand-tagline {
    font-size: 11px;
    color: var(--oci-gray);
    font-weight: 500;
}

/* Navigation */
.navbar-nav .nav-link {
    font-weight: 600;
    color: var(--oci-dark) !important;
    padding: 10px 14px !important;
    border-radius: 8px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
}

.navbar-nav .nav-link:hover {
    background: var(--oci-light);
    color: var(--oci-primary) !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link i {
    font-size: 13px;
}

/* Mega Menu */
.mega-dropdown .mega-menu {
    width: 580px;
    padding: 25px;
    border: none;
    box-shadow: var(--oci-shadow-lg);
    border-radius: 12px;
    margin-top: 8px;
    animation: fadeInDown 0.3s ease;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-title {
    color: var(--oci-primary);
    font-weight: 700;
    margin-bottom: 12px;
    padding-bottom: 6px;
    border-bottom: 2px solid var(--oci-light);
    font-size: 15px;
}

.mega-menu-list {
    list-style: none;
    padding: 0;
}

.mega-menu-list li {
    margin-bottom: 6px;
}

.mega-menu-list a {
    color: var(--oci-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 5px 0;
    display: block;
    transition: all 0.3s;
    font-size: 12px;
}

.mega-menu-list a:hover {
    color: var(--oci-primary);
    padding-left: 8px;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.oneclick-btn-signin {
    background: var(--oci-light);
    color: var(--oci-primary);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.oneclick-btn-signin:hover {
    background: var(--oci-primary-light);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.oneclick-btn-primary {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

/* Hero Section */
.oneclick-hero-section {
    background-color: #fff;
    padding: 20px 0;
}

.oneclick-hero-section.compact-hero {
    padding: 20px 0;
    background-color: #fff;
}

.min-vh-50 {
    min-height: 50vh;
}

.oneclick-hero-section.bg-white {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 20px 0; /* Reduced padding */
    overflow: hidden;
    position: relative;
    height: 370px;
}

.oneclick-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: var(--oci-primary);
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
    margin-bottom: 20px;
    transform: translateY(0);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.oneclick-hero-title {
    font-size: 2.5rem; /* Reduced font size */
    font-weight: 800;
    line-height: 1.1;
    color: var(--oci-dark);
    margin-bottom: 16px;
}

.oneclick-text-gradient {
    background: linear-gradient(135deg, var(--oci-primary), #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oneclick-hero-subtitle {
    font-size: 1rem; /* Reduced font size */
    color: var(--oci-gray);
    line-height: 1.5;
    margin-bottom: 20px; /* Reduced margin */
    max-width: 90%;
}

.oneclick-hero-features {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.pulse-btn {
    position: relative;
    overflow: hidden;
    transform: translateY(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.pulse-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(37, 99, 235, 0.3);
}

.pulse-btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%, -50%);
    transform-origin: 50% 50%;
}

.pulse-btn:hover::after {
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% { transform: scale(0.1, 0.1) translate(-50%, -50%); opacity: 0; }
    50% { opacity: 0.3; }
    100% { transform: scale(8, 8) translate(-50%, -50%); opacity: 0; }
}

.oneclick-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oneclick-feature-icon {
    width: 50px;
    height: 50px;
    background: var(--oci-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.oneclick-feature-text {
    display: flex;
    flex-direction: column;
}

.feature-number {
    font-size: 18px;
    font-weight: 800;
    color: var(--oci-dark);
    line-height: 1;
}

.feature-label {
    font-size: 13px;
    color: var(--oci-gray);
    font-weight: 500;
}

.oneclick-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.oneclick-btn-large {
    padding: 16px 28px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.oneclick-btn-primary {
    background: var(--oci-gradient);
    border: none;
    color: white;
}

.oneclick-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
    color: white;
}

.oneclick-btn-outline {
    background: white;
    border: 2px solid var(--oci-primary);
    color: var(--oci-primary);
}

.oneclick-btn-outline:hover {
    background: var(--oci-primary);
    color: white;
    transform: translateY(-2px);
}

/* Hero Slider */
.oneclick-hero-slider {
    position: relative;
}

.heroSwiper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--oci-shadow-lg);
    height: 316px;
}

.oneclick-slider-card {
    position: relative;
    height: 350px; /* Reduced height */
    overflow: hidden;
}

.oneclick-slider-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px;
    color: white;
}

.slider-overlay h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.slider-overlay p {
    font-size: 16px;
    margin-bottom: 12px;
    opacity: 0.9;
}

.slider-badge {
    background: var(--oci-secondary);
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
}


/* Hero Slider Enhancements */
.heroSwiper .swiper-button-next,
.heroSwiper .swiper-button-prev {
    color: white;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.heroSwiper .swiper-button-next:after,
.heroSwiper .swiper-button-prev:after {
    font-size: 16px;
}

.heroSwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.7;
}
/* Quick Quote Section */
.oneclick-quote-section {
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.oneclick-quote-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--oci-shadow-lg);
    border: 1px solid var(--oci-border);
}

.quote-title {
    text-align: center;
    font-weight: 700;
    color: var(--oci-dark);
    margin-bottom: 30px;
}

.oneclick-form-control {
    border: 2px solid var(--oci-border);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.oneclick-form-control:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Products Section */
.oneclick-products-section {
    padding: 80px 0;
}

.oneclick-section-label {
    background: var(--oci-gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 15px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.oneclick-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--oci-dark);
    margin-bottom: 16px;
}

.oneclick-section-desc {
    font-size: 1.1rem;
    color: var(--oci-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Products Section */
.oneclick-products-section {
    padding: 60px 0;
    background: #f8fafc;
}

.products-main-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--oci-dark);
    margin-bottom: 0;
}

/* Product Cards */
.product-card-link {
    text-decoration: none;
    display: block;
}

.oci-product-card {
    background: white;
    border-radius: 14px;
    padding: 20px 15px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    height: 130px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
}

.oci-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--oci-primary);
}

/* Product Badges */
.product-badge {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    padding: 4px 10px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    color: white;
    white-space: nowrap;
}

.green-badge { background: #10b981; }
.blue-badge { background: #3b82f6; }
.pink-badge { background: #f472b6; }

/* Icon Boxes */
.product-icon-box {
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 18px;
    color: white;
}

/* Icon Colors */
.purple-icon { background: #8b5cf6; }
.red-icon { background: #ef4444; }
.yellow-icon { background: #f59e0b; }
.gray-icon { background: #6b7280; }
.green-icon { background: #10b981; }
.orange-icon { background: #f97316; }
.blue-icon { background: #3b82f6; }
.pink-icon { background: #ec4899; }
.teal-icon { background: #14b8a6; }
.gold-icon { background: #eab308; }
.sky-icon { background: #0ea5e9; }
.indigo-icon { background: #6366f1; }
.cyan-icon { background: #06b6d4; }
.violet-icon { background: #8b5cf6; }

/* Product Title */
.product-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--oci-dark);
    line-height: 1.3;
    margin: 0;
}

/* View All Button */
.oci-view-all-btn {
    display: inline-block;
    padding: 12px 30px;
    background: var(--oci-primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.oci-view-all-btn:hover {
    background: var(--oci-primary-dark);
    color: white;
    transform: translateY(-2px);
}

/* Insurance Calculator Styles */
.oneclick-calculator-section {
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    padding: 60px 0;
}

.calculator-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
}

.calculator-tabs {
    display: flex;
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.calc-tab-btn {
    flex: 1;
    background: none;
    border: none;
    padding: 15px;
    font-weight: 600;
    color: #495057;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.calc-tab-btn:hover {
    color: var(--oci-primary);
}

.calc-tab-btn.active {
    color: var(--oci-primary);
    background-color: #fff;
}

.calc-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--oci-gradient);
}

.calculator-content {
    padding: 30px;
    position: relative;
}

.calc-tab-content {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.calc-tab-content.active {
    display: block;
}

.calculator-content .form-group {
    margin-bottom: 20px;
}

.calculator-content label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #495057;
}

.calculator-content .form-select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 15px;
    color: #495057;
    transition: border-color 0.3s ease;
    background-color: #fff;
}

.calculator-content .form-select:focus {
    border-color: var(--oci-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.calculator-result {
    display: none;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.05));
    border-radius: 10px;
    text-align: center;
}

.calculator-result.show {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

.result-content h4 {
    color: #495057;
    margin-bottom: 15px;
}

.premium-amount {
    font-size: 36px;
    font-weight: 700;
    color: var(--oci-primary);
    margin-bottom: 10px;
}

.premium-period {
    font-size: 16px;
    font-weight: normal;
    color: #6c757d;
}

.result-note {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enquiry Form in Hero Section */
.hero-enquiry-wrapper {
    position: relative;
    z-index: 10;
}

.hero-enquiry-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--oci-border);
    transition: all 0.3s ease;
    height: 100%;
}

.hero-enquiry-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.hero-form-header {
    background: var(--oci-gradient);
    padding: 15px 20px;
    color: white;
    text-align: center;
}

.hero-form-header h4 {
    margin: 0;
    font-weight: 700;
    font-size: 1.2rem;
}

.hero-form-body {
    padding: 20px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .oci-product-card {
        height: 110px;
        padding: 15px 10px;
    }
    
    .product-icon-box {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .product-title {
        font-size: 11px;
    }
    
    .product-badge {
        font-size: 8px;
        padding: 3px 8px;
    }
    
    .products-main-title {
        font-size: 1.8rem;
    }
    
    .hero-enquiry-form {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .oci-product-card {
        height: 100px;
        padding: 12px 8px;
    }
    
    .product-icon-box {
        width: 30px;
        height: 30px;
        font-size: 12px;
        margin-bottom: 8px;
    }
    
    .product-title {
        font-size: 10px;
    }
}


/* Stats Section */
.oneclick-stats-section {
    background: var(--oci-light);
    padding: 80px 0;
}

.oneclick-stat-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--oci-shadow);
    transition: all 0.3s;
    height: 100%;
}

.oneclick-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--oci-shadow-lg);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--oci-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 28px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--oci-primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--oci-gray);
    font-weight: 600;
}

/* Testimonials */
.oneclick-testimonials-section {
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: var(--oci-shadow);
    margin: 20px;
}

.testimonial-stars {
    color: var(--oci-accent);
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--oci-dark);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-name {
    color: var(--oci-dark);
    font-size: 16px;
}

.author-location {
    color: var(--oci-gray);
    font-size: 14px;
}

/* Newsletter */
.oneclick-newsletter-section {
    background: #0c7481;
    color: white;
    padding: 50px 0;
}

.newsletter-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.newsletter-form .input-group {
    max-width: 500px;
    margin-left: auto;
}

.newsletter-form .form-control {
    border: none;
    padding: 16px 20px;
    border-radius: 10px 0 0 10px;
}

.newsletter-form .btn {
    border-radius: 0 10px 10px 0;
    padding: 16px 24px;
    background: white;
    color: var(--oci-primary);
    border: none;
    font-weight: 600;
}

/* Footer */
.oneclick-footer {
    background: var(--oci-dark);
    color: white;
}

.footer-main {
    border-bottom: 1px solid #374155;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-desc {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 20px 0;
}

.cert-badge {
    margin-right: 12px;
    border-radius: 6px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 12px;
}

.contact-item i {
    color: var(--oci-primary);
    font-size: 18px;
    width: 20px;
    margin-top: 4px;
}

.contact-item strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-item p {
    color: #cbd5e1;
    margin: 0;
    font-size: 14px;
}

.footer-bottom {
    background: #0f172a;
    color: #94a3b8;
}

.footer-social {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end;
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: #1e293b;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--oci-primary);
    color: white;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 992px) {
    .navbar-nav .nav-link {
        padding: 8px 12px !important;
        font-size: 13px;
    }
    
    .mega-dropdown .mega-menu {
        width: 100%;
        padding: 20px;
    }
    
    .oneclick-btn-signin, .oneclick-btn-primary {
        padding: 7px 14px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .oneclick-header {
        padding: 8px 0;
    }
    
    .brand-logo-image {
        width: 140px !important;
    }
    
    .oneclick-hero-title {
        font-size: 2.5rem;
    }
    
    .oneclick-hero-features {
        flex-direction: column;
        gap: 16px;
    }
    
    .oneclick-hero-actions {
        flex-direction: column;
    }
    
    .oneclick-btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .mega-dropdown .mega-menu {
        width: 100%;
        margin: 0;
        border-radius: 0;
        padding: 15px;
    }
    
    .navbar-collapse {
        background: white;
        padding: 15px;
        border-radius: 10px;
        box-shadow: var(--oci-shadow-lg);
        margin-top: 10px;
    }
    
    .header-actions {
        margin-top: 15px;
        flex-direction: row;
        justify-content: center;
    }
    
    .footer-social {
        justify-content: flex-start;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .brand-logo-image {
        width: 120px !important;
    }
    
    .navbar-toggler {
        padding: 4px 8px;
        font-size: 1rem;
    }
    
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .oneclick-btn-signin, .oneclick-btn-primary {
        width: 100%;
        justify-content: center;
    }
}


/* About Us Page Styles */
.oci-page-header {
    background: linear-gradient(135deg, var(--oci-primary), var(--oci-primary-dark));
    color: white;
    padding: 60px 0 40px;
}

.oci-breadcrumb {
    margin-bottom: 20px;
}

.oci-breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
}

.oci-breadcrumb span {
    margin: 0 10px;
    color: rgba(255,255,255,0.6);
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin: 0;
}

/* About Hero */
.oci-about-hero {
    padding: 80px 0;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.2;
}

.about-desc {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--oci-gray);
    margin-bottom: 40px;
}

.about-stats {
    display: flex;
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--oci-primary);
    margin-bottom: 8px;
}

.stat-item p {
    font-size: 14px;
    color: var(--oci-gray);
    font-weight: 600;
    margin: 0;
}

/* MVV Section */
.oci-mvv-section {
    background: var(--oci-light);
}

.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--oci-dark);
    margin-bottom: 16px;
}

.mvv-card {
    background: white;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--oci-gradient);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: white;
    font-size: 32px;
}

.mvv-card h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--oci-dark);
}

.mvv-card p {
    color: var(--oci-gray);
    line-height: 1.6;
    margin: 0;
}

.values-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.values-list li {
    padding: 8px 0;
    color: var(--oci-gray);
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.values-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--oci-primary);
    font-weight: 700;
}

/* Feature Cards */
.feature-card {
    text-align: center;
    padding: 30px 20px;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--oci-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--oci-dark);
}

.feature-card p {
    color: var(--oci-gray);
    line-height: 1.5;
    margin: 0;
}

/* Awards Section */
.oci-awards {
    background: var(--oci-light);
}

.award-item {
    padding: 30px 20px;
}

.award-icon {
    width: 60px;
    height: 60px;
    background: var(--oci-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: white;
    font-size: 20px;
}

.award-item h6 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--oci-dark);
}

.award-item p {
    color: var(--oci-gray);
    font-size: 14px;
    margin: 0;
}

/* CTA Section */
.oci-cta {
    background: var(--oci-gradient);
    color: white;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 1.2rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

.btn-outline-primary {
    border-color: white;
    color: white;
}

.btn-outline-primary:hover {
    background: white;
    color: var(--oci-primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Popup Form */
.oneclick-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.oneclick-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.oneclick-popup-form {
    background: white;
    padding: 30px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s ease;
}

.oneclick-popup-form.active {
    transform: translateY(0);
    opacity: 1;
}

.oneclick-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--oci-gray);
    cursor: pointer;
    transition: color 0.3s;
}

.oneclick-popup-close:hover {
    color: var(--oci-danger);
}

.oneclick-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--oci-dark);
    margin-bottom: 20px;
    text-align: center;
}

.oneclick-popup-form .form-group {
    margin-bottom: 20px;
}

.oneclick-popup-form label {
    font-weight: 600;
    color: var(--oci-dark);
    margin-bottom: 8px;
    display: block;
}

.oneclick-popup-form .form-control {
    border: 2px solid var(--oci-border);
    padding: 12px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
}

.oneclick-popup-form .form-control:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.oneclick-popup-form .btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
}

/* Auto-Appearing Form Styles */
.auto-form {
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10000;
}

.auto-form.active {
    transform: translateY(0);
    opacity: 1;
}

.popup-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
    padding: 25px 30px;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 5px solid rgba(255, 255, 255, 0.2);
}

.popup-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--oci-primary);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-35px);
    border: 5px solid rgba(255, 255, 255, 0.2);
    margin-bottom: -10px;
}

.popup-subtitle {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 14px;
}

.auto-form .oneclick-popup-title {
    color: white;
    margin-bottom: 5px;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.auto-form form {
    padding: 30px;
    background: white;
}

.form-disclaimer {
    text-align: center;
    margin-top: 15px;
    color: var(--oci-gray);
    font-size: 12px;
}

.form-disclaimer a {
    color: var(--oci-primary);
    text-decoration: none;
    font-weight: 600;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--oci-primary);
}

.input-with-icon .form-control {
    padding-left: 45px;
    border-radius: 10px;
    border: 2px solid var(--oci-border);
    height: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.input-with-icon .form-control:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.pulse-btn {
    position: relative;
    overflow: hidden;
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    margin-top: 10px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    transition: all 0.3s ease;
}

.pulse-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.pulse-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 50%;
    transform: scale(1);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(20);
        opacity: 0;
    }
}

/* Responsive styles for auto-appearing form */
@media (max-width: 576px) {
    .auto-form {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .popup-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        transform: translateY(-30px);
    }
    
    .auto-form .oneclick-popup-title {
        font-size: 20px;
    }
    
    .popup-subtitle {
        font-size: 13px;
    }
    
    .auto-form form {
        padding: 20px;
    }
}

/* Sign In Popup Specific Styles */
.signin-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.signin-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
}

/* Loading Spinner Styles */
.loading-spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 123, 255, 0.2);
    border-radius: 50%;
    border-top-color: #007bff;
    animation: spin 1s ease-in-out infinite;
}

/* OneClick Loader Styles */
.oneclick-loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10001;
}

.oneclick-spinner {
    font-size: 3rem;
    color: #2563eb;
    animation: spin 2s linear infinite;
}

.signin-popup-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
}

.signin-popup.active .signin-popup-content {
    transform: translateY(0) scale(1);
    opacity: 1;
    animation: popup-glow 2s infinite alternate;
}

@keyframes popup-glow {
    0% {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    }
    100% {
        box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
    }
}

.signin-popup-header {
    background: linear-gradient(135deg, #2563eb, #3b82f6, #60a5fa);
    padding: 30px 30px 25px;
    color: white;
    text-align: center;
    position: relative;
    border-bottom: 5px solid rgba(255, 255, 255, 0.2);
}

.signin-popup-icon {
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--oci-primary);
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-35px);
    border: 5px solid rgba(255, 255, 255, 0.2);
    margin-bottom: -10px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(-35px);
    }
    50% {
        transform: translateY(-45px);
    }
    100% {
        transform: translateY(-35px);
    }
}

.signin-popup-title {
    color: white;
    margin-bottom: 5px;
    font-size: 28px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.signin-popup-subtitle {
    margin-bottom: 0;
    opacity: 0.9;
    font-size: 16px;
}

.signin-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    color: white;
    font-size: 20px;
    cursor: pointer;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.signin-popup-close:hover {
    opacity: 1;
    transform: rotate(90deg);
}

.signin-popup-body {
    padding: 30px;
    background: white;
}

.signin-tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.signin-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.signin-popup-body .form-group {
    margin-bottom: 20px;
}

.signin-popup-body label {
    font-weight: 600;
    color: var(--oci-dark);
    margin-bottom: 8px;
    display: block;
}

.signin-popup-body .input-with-icon {
    position: relative;
}

.signin-popup-body .input-with-icon i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--oci-primary);
}

.signin-popup-body .input-with-icon .form-control {
    padding-left: 45px;
    border-radius: 10px;
    border: 2px solid var(--oci-border);
    height: 50px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.signin-popup-body .input-with-icon .form-control:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.signin-btn {
    width: 100%;
    padding: 12px;
    font-weight: 600;
    font-size: 16px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border: none;
    border-radius: 10px;
    height: 50px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.signin-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 0;
    border-radius: 50%;
    transform: scale(1);
    animation: signin-pulse 2s infinite;
}

@keyframes signin-pulse {
    0% {
        transform: scale(0);
        opacity: 1;
    }
    100% {
        transform: scale(30);
        opacity: 0;
    }
}

/* OTP Input Styles */
.otp-inputs {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    justify-content: center;
}

.otp-input {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    border: 2px solid var(--oci-border);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    background: #f8fafc;
}

.otp-input:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
    background: white;
}

.otp-input.filled {
    background: rgba(37, 99, 235, 0.05);
    border-color: var(--oci-primary);
    color: var(--oci-primary);
}

.resend-otp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
    font-size: 14px;
}

.resend-otp button {
    background: none;
    border: none;
    color: var(--oci-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.resend-otp button:hover:not(:disabled) {
    color: var(--oci-primary-dark);
    text-decoration: underline;
}

.resend-otp button:disabled {
    color: var(--oci-gray);
    cursor: not-allowed;
    opacity: 0.7;
}

.signin-tabs {
    display: flex;
    border-bottom: 1px solid var(--oci-border);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.signin-tab {
    flex: 1;
    text-align: center;
    padding: 15px;
    cursor: pointer;
    font-weight: 600;
    color: var(--oci-gray);
    position: relative;
    transition: all 0.3s ease;
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.signin-tab:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 130, 246, 0.05);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    z-index: -1;
}

.signin-tab:hover:before {
    transform: translateY(0);
}

.signin-tab.active {
    color: var(--oci-primary);
    font-weight: 700;
}

.signin-tab.active:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--oci-primary);
    animation: tab-slide 0.3s ease-out;
}

@keyframes tab-slide {
    0% {
        transform: scaleX(0);
    }
    100% {
        transform: scaleX(1);
    }
}
    border-radius: 3px 3px 0 0;
}

.signin-tab-content {
    display: none;
    animation: fadeIn 0.5s;
}

.signin-tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.phone-input-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.phone-input-group .country-code {
    width: 80px;
    margin-right: 10px;
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--oci-border);
}

.phone-input-group .form-control {
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--oci-border);
    font-size: 16px;
    transition: all 0.3s ease;
}

.phone-input-group .form-control:focus,
.country-code:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.password-input-group {
    position: relative;
    margin-bottom: 15px;
}

.password-input-group .form-control {
    height: 50px;
    border-radius: 10px;
    border: 2px solid var(--oci-border);
    padding-right: 45px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.password-input-group .form-control:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.toggle-password {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--oci-gray);
    z-index: 10;
    font-size: 18px;
    transition: all 0.3s ease;
}

.toggle-password:hover {
    color: var(--oci-primary);
}

.signin-btn {
    height: 50px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    border: none;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.signin-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
    background: linear-gradient(135deg, #1d4ed8, #2563eb);
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.otp-input {
    width: 50px;
    height: 50px;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    border-radius: 10px;
    border: 2px solid var(--oci-border);
    transition: all 0.3s ease;
}

.otp-input:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Responsive styles for sign-in popup */
@media (max-width: 576px) {
    .signin-popup {
        max-width: 90%;
        margin: 0 auto;
    }
    
    .signin-popup-title {
        font-size: 20px;
    }
    
    .signin-popup-subtitle {
        font-size: 13px;
    }
    
    .signin-popup-body {
        padding: 20px;
    }
    
    .otp-input {
        width: 40px;
        height: 45px;
        font-size: 18px;
    }
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 14px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 6px;
}

.form-check-input {
    width: 16px;
    height: 16px;
    accent-color: var(--oci-primary);
}

.form-check-label {
    margin: 0;
    font-weight: 500;
    color: var(--oci-gray);
}

.forgot-password {
    color: var(--oci-primary);
    text-decoration: none;
    font-weight: 500;
}

.forgot-password:hover {
    text-decoration: underline;
}

.signin-footer {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--oci-gray);
}

.signin-footer a {
    color: var(--oci-primary);
    font-weight: 600;
    text-decoration: none;
}

.signin-footer a:hover {
    text-decoration: underline;
}

.otp-input-container {
    display: flex;
    gap: 8px;
    justify-content: space-between;
    margin-bottom: 15px;
}

.otp-input {
    width: 40px;
    height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--oci-border);
    border-radius: 8px;
    transition: all 0.3s;
}

.otp-input:focus {
    border-color: var(--oci-primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.resend-otp {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

#otpTimer {
    color: var(--oci-gray);
}

#resendOtpBtn {
    background: none;
    border: none;
    color: var(--oci-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
}

#resendOtpBtn:disabled {
    color: var(--oci-gray);
    cursor: not-allowed;
}

.signin-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Animation for popup */
@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.oneclick-popup-form.active {
    animation: slideInUp 0.5s ease forwards;
}
