/* ========================================
   KIRANA MITRA - GLOBAL STYLES
   Primary Color: #cde7ed
   Secondary Color: #f45905
   ======================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #cde7ed;
    --secondary-color: #f45905;
    --accent-color: #d64a00;
    --text-dark: #333333;
    --text-light: #ffffff;
    --footer-dark: #1a1a1a;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* ========================================
   HEADER 1 - Top Bar
   ======================================== */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* ========================================
   HEADER 1 - Top Bar
   ======================================== */
.header-top {
    width: 100%;
    background: linear-gradient(135deg, #00215b, #f45905);
    color: #ffffff;
    padding: 10px 0;
    font-weight: 500;
    font-size: 14px;
}

.header-top-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.header-right.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s;
}

.social-icons a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

@media (max-width: 768px) {
    .header-top-content {
        justify-content: center;
        text-align: center;
    }
}

/* ========================================
   HEADER 2 - Navigation Bar
   ======================================== */
/* ========================================
   HEADER 2 - Navigation Bar
   ======================================== */
.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all var(--transition-speed);
}

.navbar.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar-logo img {
    height: 60px;
    width: auto;
    transition: transform var(--transition-speed);
}

.navbar-logo img:hover {
    transform: scale(1.05);
}

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color var(--transition-speed);
    padding: 8px 0;
    display: block;
}

.navbar-menu a:hover {
    color: var(--secondary-color);
}

/* Navbar Button */
/* Navbar Button */
.navbar-btn {
    background-color: #f45905;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 50px;
    font-weight: 600 !important;
    transition: all var(--transition-speed);
    text-align: center;
    margin-left: 10px;
}

.navbar-btn:hover {
    background-color: #00215b !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(244, 89, 5, 0.3);
}

@media (max-width: 768px) {
    .navbar-btn {
        margin-left: 0;
        margin-top: 10px;
    }
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle::after {
    content: '▼';
    font-size: 10px;
    transition: transform var(--transition-speed);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    min-width: 200px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-speed);
    list-style: none;
    padding: 10px 0;
    border-radius: 4px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    color: var(--text-dark);
}

.dropdown-menu a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

/* Mobile Menu Toggle */
.navbar-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.navbar-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all var(--transition-speed);
}

/* ========================================
   HERO SLIDER
   ======================================== */
.hero-slider {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-slider {
        height: 400px;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slider-slide.active {
    opacity: 1;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-text {
    color: white;
    text-align: center;
    max-width: 800px;
    padding: 20px;
}

.slider-text h1 {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slider-text p {
    font-size: 20px;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.slider-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all var(--transition-speed);
}

.slider-btn:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: var(--secondary-color);
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 24px;
    transition: all var(--transition-speed);
    z-index: 10;
    box-shadow: none;
}

.slider-arrow:hover {
    background-color: transparent;
    transform: translateY(-50%) scale(1.2);
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all var(--transition-speed);
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.2);
}

/* ========================================
   FOOTER 1 - Main Footer
   ======================================== */
.footer-main {
    background-color: #00215b;
    color: var(--text-light);
    padding: 50px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

/* Footer Column 1 - Logos */
.footer-logos {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

.footer-logo-item img {
    max-width: 100%;
    height: auto;
}

/* Footer Column 2 - Contact Info */
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #f45905;
    padding: 20px;
    border-radius: 8px;
}

.footer-contact h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--text-light);
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-speed);
}

.footer-contact a:hover {
    color: white;
}

/* Footer Column 3 - Catalog Request Form */
.footer-form {
    background-color: transparent;
    padding: 20px;
    border-radius: 8px;
}

.footer-form h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.footer-form form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form input,
.footer-form textarea {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-family: inherit;
}

.footer-form textarea {
    resize: vertical;
    min-height: 80px;
}

.captcha-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 5px 0;
}

.captcha-field label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.captcha-field input {
    padding: 8px !important;
    background-color: rgba(255, 255, 255, 0.9);
}

.footer-form button {
    padding: 12px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--transition-speed);
}

.footer-form button:hover {
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   FOOTER 2 - Copyright
   ======================================== */
.footer-bottom {
    background: linear-gradient(90deg, #00215b 0%, #f45905 100%);
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 60px 20px;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: all var(--transition-speed);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 90px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 90px);
        background-color: white;
        flex-direction: column;
        padding: 20px;
        transition: left var(--transition-speed);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }



    .navbar-menu.active {
        left: 0;
    }

    .navbar-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .slider-text h1 {
        font-size: 32px;
    }

    .slider-text p {
        font-size: 16px;
    }

    .slider-arrow {
        padding: 10px 15px;
        font-size: 18px;
    }
}

/* ========================================
   ANIMATIONS
   ======================================== */
/* ========================================
   ANIMATIONS (Intersection Observer)
   ======================================== */

/* Base state for animated elements */
.fade-in,
.slide-in-left,
.slide-in-right,
.slide-in-up,
.fly-in {
    opacity: 0;
    transition: all 1s ease-out;
}

/* FADE IN */
.fade-in {
    transform: translateY(20px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* SLIDE IN LEFT */
.slide-in-left {
    transform: translateX(-50px);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* SLIDE IN RIGHT */
.slide-in-right {
    transform: translateX(50px);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* SLIDE IN UP */
.slide-in-up {
    transform: translateY(50px);
}

.slide-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* FLY IN (Scale Effect) */
.fly-in {
    transform: scale(0.8);
}


/* ========================================
   CUSTOM FOOTER CONTACT STYLES (Global)
   ======================================== */
.custom-footer-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.fc-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.fc-icon {
    min-width: 40px;
    text-align: center;
}

.fc-icon i {
    font-size: 24px;
    color: white;
    transform: rotate(90deg);
}

.fc-text {
    display: flex;
    flex-direction: column;
}

.fc-label {
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 4px;
    font-weight: 500;
}

.fc-value {
    font-size: 18px;
    font-weight: 700;
    color: white;
}

.fc-socials {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.fc-socials a {
    width: 45px;
    height: 45px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white !important;
    text-decoration: none;
    font-size: 20px;
    transition: all 0.3s ease;
    background-color: transparent;
    box-shadow: none;
}

.fc-socials a i {
    display: block;
    line-height: 1;
    color: inherit;
}

.fc-socials a:hover {
    background-color: white;
    color: #f45905 !important;
    border-color: white;
    transform: translateY(-3px);
}


@media (max-width: 768px) {
    .custom-footer-contact {
        align-items: flex-start;
    }
}

/* ========================================
   FLOATING WHATSAPP BUTTON (Global Overlay)
   ======================================== */
.whatsapp-float-btn {
    right: auto !important;
    left: 20px !important;
    bottom: 20px !important;
}