/* ============================================
   PRIYA ALUMINIUM - Design System
   Premium Blue Theme with Gradients
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    /* Primary Blue Palette */
    --primary-900: #0a1628;
    --primary-800: #0f2140;
    --primary-700: #142d58;
    --primary-600: #1a3f7a;
    --primary-500: #2563eb;
    --primary-400: #3b82f6;
    --primary-300: #60a5fa;
    --primary-200: #93c5fd;
    --primary-100: #dbeafe;
    --primary-50: #eff6ff;

    /* Accent */
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --accent-dark: #0891b2;

    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #142d58 40%, #1e40af 100%);
    --gradient-primary: linear-gradient(135deg, #1e40af, #3b82f6);
    --gradient-accent: linear-gradient(135deg, #2563eb, #06b6d4);
    --gradient-dark: linear-gradient(180deg, #0a1628, #1a3f7a);
    --gradient-card: linear-gradient(145deg, #ffffff 0%, #eff6ff 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(30, 64, 175, 0.7) 100%);
    --gradient-cta: linear-gradient(135deg, #0f2140, #2563eb, #06b6d4);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 14px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    --shadow-blue: 0 8px 30px rgba(37, 99, 235, 0.25);
    --shadow-card: 0 4px 20px rgba(10, 22, 40, 0.08);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50%;
}

/* ---------- Base Reset & Typography ---------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-700);
    background-color: var(--white);
    overflow-x: hidden;
}

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

h1 {
    font-size: 3.2rem;
}

h2 {
    font-size: 2.4rem;
}

h3 {
    font-size: 1.6rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

a {
    text-decoration: none;
    color: var(--primary-500);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-400);
}

img {
    max-width: 100%;
    height: auto;
}

/* ---------- Utility Classes ---------- */
.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.bg-light-blue {
    background-color: var(--primary-50);
}

.bg-gradient-hero {
    background: var(--gradient-hero);
}

.bg-gradient-dark {
    background: var(--gradient-dark);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge-label {
    display: inline-block;
    background: var(--primary-100);
    color: var(--primary-500);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--gray-500);
}

.section-header.text-white .badge-label {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
}

.section-header.text-white h2 {
    color: var(--white);
}

.section-header.text-white p {
    color: rgba(255, 255, 255, 0.7);
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    padding: 14px 36px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-blue);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.35);
    color: var(--white);
}

.btn-outline-custom {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 34px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

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

.btn-outline-blue {
    background: transparent;
    color: var(--primary-500);
    border: 2px solid var(--primary-500);
    padding: 12px 34px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-outline-blue:hover {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-blue);
}

/* ---------- Navbar ---------- */
.navbar-main {
    background: transparent;
    padding: 18px 0;
    transition: all var(--transition-base);
    z-index: 1050;
}

.navbar-main.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

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

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

.navbar-main .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.92rem;
    padding: 8px 18px !important;
    transition: color var(--transition-fast);
    position: relative;
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 18px;
    right: 18px;
    height: 2px;
    background: var(--accent-light);
    transform: scaleX(0);
    transition: transform var(--transition-base);
    border-radius: 2px;
}

.navbar-main .nav-link:hover,
.navbar-main .nav-link.active {
    color: var(--white);
}

.navbar-main .nav-link:hover::after,
.navbar-main .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-main .navbar-toggler {
    border: none;
    color: var(--white);
    font-size: 1.3rem;
    padding: 4px 8px;
}

.navbar-main .navbar-toggler:focus {
    box-shadow: none;
}

.navbar-main .btn-nav-contact {
    background: var(--gradient-accent);
    color: var(--white);
    border: none;
    padding: 8px 24px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    transition: all var(--transition-base);
}

.navbar-main .btn-nav-contact:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(6, 182, 212, 0.3);
    color: var(--white);
}

/* ---------- Hero Section ---------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    /* background: var(--gradient-hero); */
    background: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--accent-light);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 .highlight {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.15rem;
    max-width: 520px;
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat-item h3 {
    color: var(--white);
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.hero-stat-item h3 span {
    color: var(--accent-light);
}

.hero-stat-item p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
    margin: 0;
}

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

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.hero-image .floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    padding: 16px 22px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 3s ease-in-out infinite;
}

.hero-image .floating-card.card-1 {
    top: 15%;
    right: -15%;
    animation-delay: 0s;
}

.hero-image .floating-card.card-2 {
    bottom: 20%;
    left: -10%;
    animation-delay: 1.5s;
}

.hero-image .floating-card .fc-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.hero-image .floating-card .fc-text h5 {
    font-size: 0.92rem;
    margin: 0;
    color: var(--primary-800);
}

.hero-image .floating-card .fc-text p {
    font-size: 0.78rem;
    margin: 0;
    color: var(--gray-400);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ---------- Features / About Preview ---------- */
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    text-align: center;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-md);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--primary-500);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.feature-card h4 {
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.93rem;
    margin: 0;
}

/* ---------- About Section ---------- */
.about-img-wrapper {
    position: relative;
}

.about-img-wrapper img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-img-wrapper .experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-blue);
}

.about-img-wrapper .experience-badge h3 {
    color: var(--white);
    font-size: 2.2rem;
    margin: 0;
    line-height: 1;
}

.about-img-wrapper .experience-badge p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin: 0;
}

.about-list {
    list-style: none;
    padding: 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
    color: var(--gray-700);
}

.about-list li i {
    color: var(--primary-500);
    font-size: 1rem;
    width: 28px;
    height: 28px;
    background: var(--primary-50);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Product Cards ---------- */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
    border: 1px solid var(--gray-100);
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.product-card .product-img {
    position: relative;
    overflow: hidden;
    height: 240px;
}

.product-card .product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.product-card:hover .product-img img {
    transform: scale(1.08);
}

.product-card .product-img .product-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.product-card:hover .product-img .product-overlay {
    opacity: 1;
}

.product-card .product-img .product-overlay a {
    color: var(--white);
    font-size: 1.2rem;
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.product-card .product-img .product-overlay a:hover {
    background: var(--white);
    color: var(--primary-500);
    border-color: var(--white);
}

.product-card .product-body {
    padding: 25px;
}

.product-card .product-body h4 {
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.product-card:hover .product-body h4 {
    color: var(--primary-500);
}

.product-card .product-body p {
    font-size: 0.92rem;
    margin-bottom: 18px;
}

.product-card .product-body .btn-link-arrow {
    color: var(--primary-500);
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-base);
}

.product-card .product-body .btn-link-arrow:hover {
    gap: 12px;
}

/* ---------- Stats / Counter Section ---------- */
.stats-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-item .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.4rem;
    color: var(--accent-light);
}

.stat-item h3 {
    color: var(--white);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.stat-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ---------- Gallery ---------- */
.gallery-item {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    /* height: 280px; */
    height: auto !important;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-overlay);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-overlay i {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.gallery-item .gallery-overlay p {
    color: var(--white);
    font-weight: 600;
    margin: 0;
}

/* ---------- Clients / Testimonials ---------- */
.client-logo {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    height: 120px;
}

.client-logo:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.client-logo img {
    max-height: 50px;
    filter: grayscale(100%);
    opacity: 0.5;
    transition: all var(--transition-base);
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.testimonial-card .stars {
    color: #f59e0b;
    margin-bottom: 15px;
}

.testimonial-card .quote {
    font-size: 1rem;
    font-style: italic;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-card .client-info {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card .client-info img {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-card .client-info h5 {
    font-size: 0.95rem;
    margin: 0;
}

.testimonial-card .client-info p {
    font-size: 0.82rem;
    margin: 0;
    color: var(--gray-400);
}

/* ---------- CTA Section ---------- */
.cta-section {
    background: var(--gradient-cta);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    pointer-events: none;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.cta-section h2 {
    color: var(--white);
    font-size: 2.5rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
}

/* ---------- Page Banner (inner pages) ---------- */
.page-banner {
    background: var(--gradient-hero);
    /* padding: 160px 0 80px; */
    padding: 100px 0 40px;
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.page-banner .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
}

.page-banner .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-fast);
}

.page-banner .breadcrumb-item a:hover {
    color: var(--white);
}

.page-banner .breadcrumb-item.active {
    color: var(--accent-light);
}

.page-banner .breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Contact ---------- */
.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.contact-info-card .ci-icon {
    width: 65px;
    height: 65px;
    border-radius: var(--radius-full);
    background: var(--primary-50);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: var(--primary-500);
    transition: all var(--transition-base);
}

.contact-info-card:hover .ci-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

.contact-info-card h5 {
    margin-bottom: 8px;
}

.contact-info-card p {
    font-size: 0.93rem;
    margin: 0;
}

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-100);
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-size: 0.95rem;
    color: var(--gray-700);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--primary-400);
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

.contact-form .form-label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 6px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--primary-900);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 80px;
}

.footer h5 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 3px;
}

.footer p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
}

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

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

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.93rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links li a:hover {
    color: var(--accent-light);
    padding-left: 6px;
}

.footer .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.footer .contact-item i {
    color: var(--accent-light);
    margin-top: 4px;
}

.footer .contact-item p {
    margin: 0;
}

.footer .social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all var(--transition-base);
}

.footer .social-links a:hover {
    background: var(--gradient-accent);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    margin-top: 50px;
}

.footer-bottom p {
    font-size: 0.88rem;
    margin: 0;
}

/* ---------- Back to Top ---------- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--shadow-blue);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 999;
    cursor: pointer;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.4);
}

/* ---------- Hero Slider (Swiper) ---------- */
.hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 600px;
}

.hero-slider .swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}

.hero-slider .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 22, 40, 0.92) 0%, rgba(20, 45, 88, 0.85) 20%, rgba(30, 64, 175, 0.1) 40%);
    z-index: 1;
}

.hero-slider .swiper-slide .container {
    position: relative;
    z-index: 2;
}

.hero-slider .swiper-pagination {
    bottom: 30px !important;
}

.hero-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
}

.hero-slider .swiper-pagination-bullet-active {
    background: var(--accent-light);
    width: 35px;
    border-radius: 6px;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
    color: rgba(255, 255, 255, 0.7);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
    font-size: 1.1rem;
    font-weight: 700;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
    h1 {
        font-size: 2.4rem;
    }

    h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .section-padding {
        padding: 70px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .navbar-main .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        border-radius: var(--radius-md);
        padding: 20px;
        margin-top: 10px;
    }
}

@media (max-width: 767.98px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.7rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-stat-item {
        flex: 0 0 45%;
    }

    .section-padding {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .page-banner {
        padding: 140px 0 60px;
    }

    .page-banner h1 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .stat-item h3 {
        font-size: 2rem;
    }
}

/* ---------- Preloader ---------- */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--primary-900);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-light);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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



/* Adjust Navbar for mobile View */

@media (max-width: 768px) {

    /* Element | https://priya.test/ */

    #carouselExampleAutoplaying {
        margin-top: 80px !important;
    }

    /* Element | https://priya.test/ */

    #mainNavbar {
        background: black !important;
    }

}

@media (max-width: 450px) {

    /* Element | https://priya.test/ */

    #carouselExampleAutoplaying {
        margin-top: 90px !important;
    }

    /* Element | https://priya.test/ */

    #mainNavbar {
        background: black !important;
    }

}

@media (max-width: 350px) {

    /* Element | https://priya.test/ */

    #carouselExampleAutoplaying {
        margin-top: 120px !important;
    }

    /* Element | https://priya.test/ */

    #mainNavbar {
        background: black !important;
    }

}


/* Inline | https://priya.test/about.html */

.dropdown-item:hover {
  background: linear-gradient(135deg, #2b3c57 0%, #142d58 40%, #1e40af 100%);
  color: white;
}

.dropdown-item.dropdown-toggle.nav-link.show:visited {
}

.dropdown-item.dropdown-toggle.nav-link.show:visited {
}

.dropdown-item.dropdown-toggle.nav-link.show:focus:focus-visible:active {
  color: white;
}

/* bootstrap.min.css | https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css */

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show {
  /* color: var(--bs-navbar-active-color); */
  color: rgb(255, 255, 255);
}
