/* 
 * WANEXA EXIMS PRIVATE LIMITED - Main Stylesheet
 * Brand Theme: Premium, Luxury, Modern Corporate, International Business
 */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Libre+Baskerville:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap" rel="stylesheet');

:root {
    --primary-color: #0A2E73;
    --secondary-color: #1565C0;
    --accent-color: #F57C00;
    --success-color: #2E7D32;
    --bg-color: #F8FAFC;
    --text-color: #222222;
    --text-muted: #64748B;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.4);
    --card-shadow: 0 10px 30px rgba(10, 46, 115, 0.05);
    --hover-shadow: 0 20px 40px rgba(10, 46, 115, 0.12);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Poppins', sans-serif;
}

/* --- Base & Reset --- */
body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--accent-color);
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--accent-color);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* --- Scroll Progress Bar --- */
.scroll-progress-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    z-index: 10000;
    background: transparent;
}

.scroll-progress-bar {
    height: 100%;
    background: linear-gradient(to right, var(--secondary-color), var(--accent-color));
    width: 0%;
}

/* --- Sticky Navbar --- */
.navbar-custom {
    background-color: white;
    padding: 20px 0;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.navbar-custom.scrolled {
    background-color: rgb(255 255 255);
    backdrop-filter: blur(10px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    height: 90px;
}

.navbar-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
    color: var(--white) !important;
}

.navbar-brand img{
    width: 30%;
}




.navbar-brand span {
    color: var(--accent-color);
}

.navbar-nav .nav-link {
    font-weight: 900;
    font-size: 0.95rem;
    color: rgb(0 0 0 / 85%) !important;
    padding: 8px 16px !important;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-smooth);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 32px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--accent-color) !important;
}

/* Navbar Inside Subpages (Forces solid background initially or scrolled colors) */
body.subpage .navbar-custom {
    background-color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body.subpage .navbar-custom.scrolled {
    background-color: rgba(254, 254, 254, 0.98);
}

/* --- Buttons --- */
.btn-premium {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition-smooth);
    letter-spacing: 0.2px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-premium-primary {
    background-color: var(--accent-color);
    color: var(--white);
    border: 2px solid var(--accent-color);
}

.btn-premium-primary:hover {
    background-color: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(245, 124, 0, 0.2);
}

.btn-premium-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-premium-outline:hover {
    background-color: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.btn-premium-dark {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-premium-dark:hover {
    background-color: transparent;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(10, 46, 115, 0.15);
}

/* --- Hero Section (Home) --- */
.hero-section {
    position: relative;
    padding: 220px 0 160px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 46, 115, 0.95) 0%, rgba(21, 101, 192, 0.8) 100%);
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 25px;
}

.hero-desc {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 650px;
}

/* Floating Animation */
.floating-img {
    animation: float 6s ease-in-out infinite;
    z-index: 2;
    position: relative;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border-right: 15px solid #f57c00;
    background-color: #f57c00;
    height: 380px;
}

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

/* --- Subpage Banner --- */
.subpage-banner {
    position: relative;
    padding: 160px 0 100px;
    background-size: cover;
    background-position: center;
    background-color: var(--primary-color);
    color: var(--white);
}

.subpage-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 46, 115, 0.9) 0%, rgba(21, 101, 192, 0.75) 100%);
}

.subpage-banner-content {
    position: relative;
    z-index: 2;
}

.subpage-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.breadcrumb-custom {
    display: flex;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumb-custom li {
    font-weight: 500;
}

.breadcrumb-custom a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb-custom a:hover {
    color: var(--accent-color);
}

.breadcrumb-custom li.active {
    color: var(--white);
}

/* --- Sections Shared --- */
.section-padding {
    padding: 100px 0;
}

.section-bg {
    background-color: #F1F5F9;
}

.section-subtitle {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: inline-block;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 20px;
    position: relative;
}

.section-title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin-bottom: 50px;
    border-radius: 2px;
}

.section-title-line.center {
    margin: 0 auto 50px;
}

/* --- Cards (Glassmorphism & Corporate) --- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(21, 101, 192, 0.2);
}

.premium-card {
    background-color: var(--white);
    border: none;
    border-radius: 16px;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--hover-shadow);
}

.card-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgb(245 124 0 / 0%) 0%, rgb(246 131 13) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16397a;
    font-size: 1.75rem;
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}




.products-preview .btn-premium-dark {
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #f57c00;
}


.products-preview .text-primary {
    --bs-text-opacity: 1;
    color: rgb(245 124 0) !important;
}

.products-preview .rounded-pill {
    border-radius: var(--bs-border-radius-pill) !important;
    background-color: #133676;
    color: white;
}





.about-preview .text-primary {
    --bs-text-opacity: 1;
    color: rgb(0 0 0) !important;
    font-size: 18px;
    font-weight: bold !important;
    background-color: #f57c0054;
    padding: 18px;
    border-radius: 20px;
   
}


.about-preview{
overflow: hidden;
}
 



.premium-card:hover .card-icon-container,
.glass-card:hover .card-icon-container {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    transform: scale(1.1) rotate(5deg);
}

/* --- Scroll Reveal Classes --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Home: Highlights & Features --- */
.highlight-card {
    padding: 35px 30px;
}


.highlights{
    padding-top: 80px;
    width: 100%;
    position: relative;
    overflow: hidden;
}




/* --- Home: Statistics Counter Section --- */
.stats-section {
    background: linear-gradient(89deg, var(--primary-color) 100%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

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

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 10px;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Home: Global Trade Process Timeline --- */
.process-timeline {
    position: relative;
    padding: 30px 0;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color), var(--accent-color));
    transform: translateX(-50%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 0px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: 50%;
    top: 20px;
    width: 40px;
    height: 40px;
    background-color: var(--accent-color);
    border: 4px solid var(--white);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 10;
    box-shadow: 0 0 15px rgba(245, 124, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.timeline-content {
    width: 45%;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--card-shadow);
    position: relative;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content::after {
    content: '';
    position: absolute;
    top: 25px;
    width: 0;
    height: 0;
    border-style: solid;
}

.timeline-item:nth-child(odd) .timeline-content::after {
    right: -10px;
    border-width: 10px 0 10px 10px;
    border-color: transparent transparent transparent var(--white);
}

.timeline-item:nth-child(even) .timeline-content::after {
    left: -10px;
    border-width: 10px 10px 10px 0;
    border-color: transparent var(--white) transparent transparent;
}

.timeline-step {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 5px;
}

.timeline-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* --- Home: Testimonials --- */
.testimonial-card {
    padding: 40px 30px;
    text-align: left;
}

.testimonial-quote {
    font-size: 1.05rem;
    color: var(--text-color);
    font-style: italic;
    margin-bottom: 25px;
    position: relative;
}

.testimonial-quote::before {
    content: '"';
    font-size: 4rem;
    color: rgba(10, 46, 115, 0.08);
    position: absolute;
    left: -15px;
    top: -25px;
    font-family: serif;
}

.testimonial-client {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.client-info h5 {
    margin: 0;
    font-size: 1rem;
    color: var(--primary-color);
}

.client-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.rating-stars {
    color: #FFC107;
    margin-bottom: 15px;
}

/* --- Testimonials Slider styling --- */
.testimonials-slider-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 20px 0 40px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonial-slide {
    flex-shrink: 0;
    width: 33.3333%; /* Default to 3 slides per view on desktop */
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-slide .premium-card {
    height: 100%;
    margin-bottom: 0;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 35px;
}

.slider-arrow {
    background-color: var(--white);
    color: var(--primary-color);
    border: 1px solid rgba(10, 46, 115, 0.1);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(10, 46, 115, 0.05);
    transition: var(--transition-smooth);
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(10, 46, 115, 0.15);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(10, 46, 115, 0.2);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: var(--transition-smooth);
}

.slider-dot.active {
    width: 24px;
    border-radius: 4px;
    background-color: var(--accent-color);
}

/* --- Call To Action (CTA) --- */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(7 7 7) 0%, rgb(3 3 3 / 69%) 100%), url(https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1200&q=80);
    background-size: cover;
    background-position: center;
    /* background-blend-mode: overlay; */
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-desc {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* --- Products Page Components --- */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-img-wrapper {
    position: relative;
    overflow: hidden;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    background-color: #e2e8f0;
}

.product-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* transition: var(--transition-smooth); */
}


.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-card .card-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #f57c00 !important;
}
.product-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Product Specifications Accordion/List */
.product-specs {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px dashed rgba(0, 0, 0, 0.08);
}

.spec-item {
    font-size: 0.85rem;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-color);
}

.spec-val {
    color: var(--text-muted);
}

/* Filter Controls */
.filter-btn {
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    border: 1px solid rgba(10, 46, 115, 0.15);
    background-color: var(--white);
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(10, 46, 115, 0.15);
}

.search-input-group {
    background-color: var(--white);
    border-radius: 50px;
    padding: 4px 6px;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.search-input-group .form-control {
    border: none;
    padding-left: 15px;
    font-size: 0.95rem;
}

.search-input-group .form-control:focus {
    box-shadow: none;
}

.search-input-group .btn {
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
}

/* --- Services Page Components --- */
.service-detail-card {
    padding: 40px 30px;
}

/* --- About Page Components --- */
.value-card {
    padding: 35px 25px;
    text-align: center;
}

.value-card .card-icon-container {
    margin: 0 auto 20px;
}

.leader-card {
    overflow: hidden;
    position: relative;
    border-radius: 16px;
}

.leader-img-wrapper {
    position: relative;
    padding-top: 100%;
    background-color: #f1f5f9;
}

.leader-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.leader-info {
    padding: 25px;
    text-align: center;
    background-color: var(--white);
}

.leader-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.leader-role {
    font-size: 0.9rem;
    color: var(--accent-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.leader-contact {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.leader-contact a {
    color: var(--secondary-color);
}

/* --- Contact Page Components --- */
.contact-form-container {
    background-color: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
}

.contact-info-wrapper {
    background: linear-gradient(135deg, var(--primary-color) 0%, #051A44 100%);
    color: var(--white);
    padding: 45px;
    border-radius: 20px;
    box-shadow: var(--card-shadow);
    height: 100%;
}

.contact-info-wrapper h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-info-icon {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.contact-info-text h5 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
}

.contact-info-text p,
.contact-info-text a {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-size: 0.95rem;
}

.contact-info-text a:hover {
    color: var(--accent-color);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: 0;
}

/* --- Footer --- */
.footer-main {
    background-color: #03102C;
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 30px;
    border-top: 4px solid var(--accent-color);
}

.footer-main h5 {
    color: var(--white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-main h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-brand {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand span {
    color: var(--accent-color);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-contact-info i {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contact-info a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info a:hover {
    color: var(--accent-color);
}

.newsletter-group {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    padding: 4px;
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 8px 15px;
    font-size: 0.9rem;
    flex-grow: 1;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-input:focus {
    outline: none;
    box-shadow: none;
}

.newsletter-btn {
    border-radius: 50px !important;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

.social-icons-footer {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
}

.social-icon:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.85rem;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: var(--white) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 5px 15px rgba(245, 124, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    background-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(10, 46, 115, 0.3);
}

/* --- Floating Modal Style --- */
.modal-content-custom {
    border-radius: 20px;
    border: none;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.modal-header-custom {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 20px 25px;
    border: none;
}

.modal-header-custom .btn-close {
    filter: invert(1);
}

.modal-body-custom {
    padding: 30px 25px;
}






.image-gallery{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.gallery-item{
    width: 220px;
    height: 220px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,.15);
}

.gallery-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Tablet */
@media (max-width: 991px){
    .gallery-item{
        width: 180px;
        height: 180px;
    }
}

/* Mobile - 2 Images Per Row */
@media (max-width: 576px){

    .image-gallery{
        justify-content: space-between;
        gap: 15px;
    }

    .gallery-item{
        width: calc(50% - 8px);
        aspect-ratio: 1 / 1;
        height: auto;
    }
}




.hexagon-video {
    width: 100%;
    height: 600px;
    margin: auto;
    overflow: hidden;
    clip-path: polygon(25% 5%, 75% 5%, 100% 50%, 75% 95%, 25% 95%, 0% 50%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .25);
    border: 6px solid #fff;
    transition: .4s;
}
.hexagon-video video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hexagon-video:hover{
    transform:scale(1.05);
}

@media(max-width:768px){
    .hexagon-video{
        width:300px;
        height:340px;
    }




    .mini-card {
    background: #f57c00;
    border-radius: 50%;
    padding: 15px 15px;
    text-align: center;
    height: 150px !important;
    transition: .4s;
    border: 1px solid #ececec;
    position: relative;
    overflow: hidden;
    width: 85% !important;
    margin-left: 13px !important;
} 


.mini-card h4 {
   
    font-size: 17px;
}




}








.feature-box{
    background:linear-gradient(135deg,#0b1f3a,#133d73);
    color:#fff;
    padding:45px;
    height:100%;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.feature-tag{
    display:inline-block;
    background:#ffc107;
    color:#000;
    padding:8px 18px;

    font-weight:600;
    margin-bottom:20px;
}

.feature-box h2{
    font-size:36px;
    font-weight:700;
    margin-bottom:20px;
    color: #f57c00;
}

.feature-box p{
    opacity:.9;
    line-height:1.8;
}

.feature-list{
    list-style:none;
    padding:0;
    margin:25px 0;
}

.feature-list li{
    margin-bottom:12px;
}

.feature-list i{
    color:#ffc107;
    margin-right:10px;
}

.mini-card {
    background: #f57c00;
    border-radius: 50%;
    padding: 15px 15px;
    text-align: center;
    height: 200px;
    transition: .4s;
    border: 1px solid #ececec;
    position: relative;
    overflow: hidden;
    width: 57%;
    margin-left: 55px;
}

.mini-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:#ffc107;
}

.mini-card i {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;

}

.mini-card h4{
    font-weight:700;
    margin-bottom:15px;
    color: white;
}

.mini-card:hover{
    transform:translateY(-10px);
    box-shadow:0 15px 35px rgba(0,0,0,.15);
}

.boxesnew {
    background: linear-gradient(135deg, rgb(7 7 7) 0%, rgb(3 3 3 / 69%) 100%), url(../assets/images/banner1.jpg);
    position: relative;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    padding: 100px 0;
    width: 100%;
}




@media(max-width:991px){
       .feature-box {
        margin-bottom: 30px;
        text-align: center;
    }

.navbar-toggler {
        border: none;
        background-color: #002367;
        position: absolute;
        right: 20px;
        margin-top: 26px;
    }

.navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: none;
}

.navbar>.container {
    display: block;
}


.feature-box {
   
    padding: 30px;
   
}


}



.why-choose-us{
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, rgb(7 7 7) 0%, rgb(3 3 3 / 69%) 100%), url(../assets/images/banner1.jpg);
    background-size: cover;
      background-attachment: fixed;
    background-position: center;

    color: var(--white);
    text-align: center;
}

.why-choose-us .section-title{
    color: white;
}



.hero-video{
    width: 100%;
    height: 500px;   /* Height increase */
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.hero-video video{
    width: 100%;
    height: 100%;
    object-fit: cover;   /* Video poora container fill karega */
    display: block;
}

@media (max-width: 991px){
    .hero-video{
        height: 350px;
        margin-top: 30px;
    }
}

@media (max-width: 576px){
        .hero-video {
        height: 300px;
    }


    .hero_text .btn-premium {
        padding: 9px 16px;
        font-size: 0.95rem;
        /* padding: 20px; */
    }


    .hero_text{
        text-align: center;
    }


}








.process-section {
    background: #f57c0021;
}

.process-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    background:#fff;
    padding:22px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s;
    height:100%;
}

.process-item:hover{
    transform:translateY(-8px);
}

.process-icon{
    width:65px;
    height:65px;
    min-width:65px;
    border-radius:15px;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    color:#fff;
}

.blue .process-icon{
    background: var(--accent-color);
}

.purple .process-icon{
    background: var(--primary-color);
}

.process-content h5{
    font-size:20px;
    font-weight:700;
    margin-bottom:8px;
}

.process-content p{
    margin:0;
    color:#666;
    line-height:1.7;
}

.process-center-img{
    width:100%;
    max-width:370px;
    height:620px;
    object-fit:cover;
}

@media(max-width:991px){

    .process-center-img{
        height:350px;
        margin:30px 0;
    }

}





@media(max-width:991px){


.navbar-custom.scrolled {
   
    height: auto;
}



}   


.marquee-wrapper {
    background: linear-gradient(351deg, #14205d, #f57c00);
    padding: 15px 0;
    border-radius: 8px;
    overflow: hidden;
}

.marquee-wrapper marquee{
    color:#fff;
    font-size:20px;
    font-weight:600;
    letter-spacing:2px;
    text-transform:uppercase;
}


.gallery-section_new{
    background-color: #002367;
    overflow: hidden;
    width: 100%;
}


.footer-bottom a{
    color: var(--accent-color);
    text-align: center;
}




/* Floating Buttons */
.floating-buttons {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    pointer-events: none;
}

.floating-buttons a {
    pointer-events: auto;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.call-btn {
    background: #007bff;
}

.whatsapp-btn {
    background: #25D366;
}

.floating-buttons a:hover {
    transform: translateY(-5px) scale(1.08);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.35);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}

/* Mobile */
@media (max-width:768px){
    .floating-buttons{
        bottom:15px;
        left:15px;
        right:15px;
    }

    .floating-buttons a{
        width:55px;
        height:55px;
        font-size:22px;
    }
}