/* ============================================
   PRATIBHA ENTERPRISES - TITAN WORLD
   WATCH STORE WEBSITE
   Color Palette: Primary #6367FF | Secondary #8494FF
                  Light BG #C9BEFF | Accent #FFDBFD
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    color: #2d2d2d;
    overflow-x: hidden;
}

/* ========== NAVBAR STYLES ========== */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(99, 103, 255, 0.08);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-brand i {
    font-size: 1.8rem;
    color: #6367FF;
}

.navbar-brand div {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.navbar-brand span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d2d2d;
}

.navbar-brand small {
    font-size: 0.7rem;
    color: #6367FF;
    font-weight: 500;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #2d2d2d;
    margin: 0 0.25rem;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #6367FF;
}

.navbar-nav .nav-link.active {
    color: #6367FF;
    background: rgba(99, 103, 255, 0.1);
    border-radius: 8px;
}

.navbar-toggler {
    border: none;
    background: rgba(99, 103, 255, 0.1);
    padding: 0.5rem 0.75rem;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

/* ========== BUTTON STYLES ========== */
.btn-primary {
    background: #6367FF;
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #4a4fd9;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 103, 255, 0.3);
}

.btn-outline-primary {
    border: 2px solid #6367FF;
    color: #6367FF;
    background: transparent;
    padding: 10px 26px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #6367FF;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(99, 103, 255, 0.2);
}

/* ========== HERO SECTION ========== */
.hero-section {
    background: linear-gradient(135deg, #C9BEFF 0%, #FFDBFD 100%);
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 103, 255, 0.15);
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #6367FF;
    margin-bottom: 1rem;
}

.hero-content h1 .text-primary {
    color: #6367FF !important;
}

.hero-image {
    text-align: center;
}

.hero-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 40px;
    padding: 20px;
    display: inline-block;
}

.hero-card i {
    font-size: 6rem;
    color: #6367FF;
    margin: 0 15px;
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: #666;
    font-size: 1rem;
}

.text-center .section-title:after {
    left: 50%;
    transform: translateX(-50%);
}

/* ========== FEATURE CARDS ========== */
.features-section {
    padding: 80px 0;
    background: #fff;
}

.feature-card {
    background: white;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(99, 103, 255, 0.15);
    border-color: #6367FF;
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #6367FF10, #8494FF10);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 2.2rem;
    color: #6367FF;
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* ========== PRODUCT CARDS ========== */
.products-section {
    padding: 80px 0;
}

.bg-light-custom {
    background: #C9BEFF20;
}

.product-card {
    background: white;
    padding: 25px;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(99, 103, 255, 0.12);
}

.product-img {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #C9BEFF40, #FFDBFD40);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.product-img i {
    font-size: 4rem;
    color: #6367FF;
}

.product-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-card p {
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.product-card .price {
    font-weight: 700;
    color: #6367FF;
    font-size: 1rem;
}

/* ========== CTA SECTION ========== */
.cta-section {
    padding: 60px 0;
}

.cta-wrapper {
    background: linear-gradient(135deg, #6367FF, #8494FF);
    border-radius: 30px;
    padding: 50px;
    text-align: center;
    color: white;
}

.cta-wrapper h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-wrapper p {
    margin-bottom: 25px;
    opacity: 0.9;
}

.cta-wrapper .btn-primary {
    background: white;
    color: #6367FF;
}

.cta-wrapper .btn-primary:hover {
    background: #FFDBFD;
    transform: translateY(-3px);
}

/* ========== PAGE HEADER ========== */
.page-header {
    background: linear-gradient(135deg, #C9BEFF, #FFDBFD);
    padding: 100px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
}

/* ========== ABOUT PAGE ========== */
.about-main {
    padding: 80px 0;
}

.about-image-wrapper {
    background: linear-gradient(135deg, #C9BEFF40, #FFDBFD40);
    border-radius: 30px;
    padding: 20px;
    text-align: center;
}

.about-image-wrapper i {
    font-size: 12rem;
    color: #6367FF;
}

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f8f9fa;
    padding: 12px 20px;
    border-radius: 50px;
}

.highlight-item i {
    font-size: 1.5rem;
    color: #6367FF;
}

.highlight-item strong {
    display: block;
    font-size: 1rem;
}

.highlight-item small {
    font-size: 0.75rem;
    color: #666;
}

.branch-card, .mission-card {
    background: white;
    padding: 30px;
    border-radius: 24px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.branch-card:hover, .mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 103, 255, 0.1);
}

.branch-card i, .mission-card i {
    font-size: 2.5rem;
    color: #6367FF;
    margin-bottom: 15px;
}

/* ========== SERVICES PAGE ========== */
.services-page {
    padding: 80px 0;
}

.service-category {
    margin-bottom: 60px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(99, 103, 255, 0.12);
}

.service-card i {
    font-size: 2.5rem;
    color: #6367FF;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-card p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.service-features {
    background: #C9BEFF20;
    padding: 50px;
    border-radius: 30px;
    margin-top: 40px;
}

.service-features i {
    font-size: 2rem;
    color: #6367FF;
    margin-bottom: 10px;
}

.service-features h5 {
    font-size: 1rem;
    font-weight: 500;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding: 80px 0;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 25px;
    font-weight: 600;
}

.form-control {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: #6367FF;
    box-shadow: 0 0 0 3px rgba(99, 103, 255, 0.1);
}

.branch-details h3 {
    margin-bottom: 25px;
    font-weight: 600;
}

.branch-box {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.branch-box h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #6367FF;
}

.branch-box p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #6367FF10;
    padding: 8px 18px;
    border-radius: 40px;
    color: #6367FF;
    text-decoration: none;
    font-weight: 500;
    margin-bottom: 15px;
    transition: all 0.3s ease;
}

.phone-link:hover {
    background: #6367FF;
    color: white;
}

.map-container {
    margin-top: 15px;
    border-radius: 16px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 200px;
    border: 0;
}

/* ========== FOOTER ========== */
.footer {
    background: #1a1a2e;
    color: #aaa;
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer h5 {
    color: white;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer h5 i {
    color: #6367FF;
    margin-right: 8px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer ul li a:hover {
    color: #6367FF;
    padding-left: 5px;
}

.social-links a {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    color: white;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #6367FF;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ========== RESPONSIVE STYLES ========== */
@media (max-width: 991px) {
    .hero-section {
        min-height: auto;
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        margin-top: 40px;
    }
    
    .hero-card i {
        font-size: 4rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .about-image-wrapper i {
        font-size: 8rem;
    }
    
    .cta-wrapper {
        padding: 30px;
    }
    
    .cta-wrapper h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar-brand span {
        font-size: 1rem;
    }
    
    .feature-card, .product-card, .service-card {
        margin-bottom: 0;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
    
    .service-features {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .hero-buttons .btn-outline-primary {
        margin-left: 0;
    }
    
    .about-highlights {
        flex-direction: column;
    }
    
    .highlight-item {
        justify-content: center;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}
/* new css  */
.product-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C9BEFF;
    border-radius: 10px;
    overflow: hidden;
}

.product-img img {
    max-height: 100%;
    max-width: 100%;
    transition: 0.3s;
}

.product-card:hover img {
    transform: scale(1.05);
}


/* Logo Image */
.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

/* Logo Text */
.logo-text span {
    display: block;
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
}

.logo-text small {
    display: block;
    font-size: 12px;
    color: #6367FF;
}

/* Spacing */
.navbar-brand {
    gap: 10px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .logo-img {
        height: 35px;
    }

    .logo-text span {
        font-size: 14px;
    }

    .logo-text small {
        font-size: 11px;
    }
}

/* Footer Logo Alignment */
.footer-logo {
    gap: 10px;
}

/* Logo Image */
.footer-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-logo-img {
        height: 30px;
    }
}

.branch-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.map-container iframe {
    width: 100%;
    height: 200px;   /* same height for both */
    border: 0;
    border-radius: 10px;
}

/* Optional: equal card height */
.branch-box {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.branch-box a {
    color: #6c757d;   /* Bootstrap grey */
    text-decoration: none;
}

.branch-box a:hover {
    color: #6367FF;   /* hover color */
}

