/* =============================================
   ALJAURAM DIGITAL SOLUTIONS LIMITED
   Main Stylesheet
   ============================================= */

/* CSS Variables */
:root {
    --primary: #0D47D9;
    --primary-dark: #06153A;
    --primary-light: #1E88FF;
    --primary-soft: #E8F0FE;
    --secondary: #1a1a2e;
    --accent: #1E88FF;
    --accent-soft: #E3F2FD;
    --text-dark: #06153A;
    --text-muted: #334155;
    --text-light: #f8f9fa;
    --bg-light: #F8FAFC;
    --bg-white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(6,21,58,0.06);
    --shadow-md: 0 4px 20px rgba(6,21,58,0.08);
    --shadow-lg: 0 8px 40px rgba(6,21,58,0.12);
    --shadow-primary: 0 4px 20px rgba(13,71,217,0.25);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --gradient-primary: linear-gradient(135deg, #06153A 0%, #0D47D9 60%, #1E88FF 100%);
    --gradient-btn: linear-gradient(135deg, #0D47D9, #1E88FF);
}

/* Subtle background pattern */
.bg-pattern {
    background-image: radial-gradient(var(--primary-soft) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Blue glow utility */
.blue-glow {
    box-shadow: 0 0 40px rgba(13,71,217,0.15);
}

/* =============================================
   BASE STYLES
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
    padding-top: 80px;
}

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

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

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

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 600px;
}

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

.section-header .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
    padding: 15px 0;
    background: rgba(255,255,255,0.98) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #06153A;
    letter-spacing: 1px;
}

.brand-sub {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.nav-link {
    font-weight: 500;
    color: #06153A !important;
    padding: 8px 16px !important;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary) !important;
    background: var(--primary-soft);
}

.nav-link.active {
    color: var(--primary) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--gradient-btn);
    border-radius: 2px;
}

.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-sm);
    padding: 10px;
}

.dropdown-item {
    border-radius: 6px;
    padding: 8px 16px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: var(--transition);
}

.dropdown-item:hover {
    background: var(--primary-soft);
    color: var(--primary);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
    min-height: 92vh;
    background: #06153A;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(13,71,217,0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(30,136,255,0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(13,71,217,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 320' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='rgba(255,255,255,0.02)' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,186.7C960,213,1056,235,1152,224C1248,213,1344,171,1392,149.3L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-floating {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.hero-floating-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,71,217,0.12) 0%, transparent 70%);
    top: -150px;
    right: -80px;
}

.hero-floating-2 {
    width: 350px;
    height: 350px;
    border: 1px solid rgba(30,136,255,0.08);
    bottom: -100px;
    left: -100px;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 8px 22px;
    border-radius: 50px;
    color: white;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 28px;
    letter-spacing: 1px;
}

.hero-badge i {
    color: #4FA3FF;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 18px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 12px;
    font-weight: 500;
}

.hero-description {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 32px;
    line-height: 1.8;
    max-width: 520px;
}

.hero-buttons .btn {
    padding: 14px 36px;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 50px;
}

.hero-buttons .btn-primary-custom {
    background: var(--gradient-btn);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(13,71,217,0.3);
}

.hero-buttons .btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(13,71,217,0.4);
}

.hero-buttons .btn-outline-light {
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-buttons .btn-outline-light:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.5);
}

.hero-image-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper .hero-shape {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(13,71,217,0.1) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-image-wrapper .hero-shape::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(79,163,255,0.15);
    animation: pulse-ring 3s ease-in-out infinite;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.hero-image-wrapper .hero-shape i {
    font-size: 8rem;
    color: rgba(79,163,255,0.15);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    padding: 12px 28px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    font-size: 0.95rem;
}

.btn-primary-custom {
    background: var(--gradient-btn);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(13,71,217,0.25);
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,71,217,0.35);
    color: white;
}

.btn-outline-primary-custom {
    color: var(--primary);
    border: 2px solid var(--primary);
    background: transparent;
}

.btn-outline-primary-custom:hover {
    background: var(--gradient-btn);
    border-color: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(13,71,217,0.25);
}

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

.btn-success:hover {
    background: var(--gradient-btn);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(13,71,217,0.35);
    color: white;
}

.btn-outline-success {
    color: var(--primary);
    border-color: var(--primary);
}

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

.btn-light:hover {
    transform: translateY(-2px);
}

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

.btn-white:hover {
    background: var(--primary-soft);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    background: #F5F9FF;
}

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

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

.about-experience-badge {
    position: absolute;
    bottom: -20px;
    right: 10px;
    background: var(--gradient-btn);
    color: white;
    padding: 20px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 8px 30px rgba(13,71,217,0.3);
}

.about-experience-badge .number {
    font-size: 2rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.about-experience-badge .label {
    font-size: 0.85rem;
    opacity: 0.9;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: #06153A;
}

.about-text .lead {
    color: var(--primary);
    font-weight: 600;
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 25px;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.about-features .feature-item i {
    color: var(--primary);
    font-size: 1.1rem;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(30,136,255,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(13,71,217,0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.stat-icon {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: rgba(255,255,255,0.7);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 5px;
    font-family: var(--font-heading);
}

.stat-suffix {
    font-size: 1.8rem;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.75;
    font-weight: 500;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
/* =============================================
   ABOUT SECTION
   ============================================= */
.project-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

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

.project-image {
    height: 240px;
    overflow: hidden;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-image i {
    font-size: 4rem;
    color: var(--primary);
    opacity: 0.5;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.project-content {
    padding: 25px;
}

.project-content .category {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.project-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.project-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 15px;
}

.project-tech span {
    background: var(--bg-light);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonial-section {
    background: #F5F9FF;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    position: relative;
    margin: 15px;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.1;
    position: absolute;
    top: 10px;
    right: 25px;
    line-height: 1;
}

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

.testimonial-card p {
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

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

.testimonial-author .info h6 {
    font-weight: 700;
    margin-bottom: 2px;
}

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

/* Testimonial carousel nav buttons */
.testimonial-nav {
    width: 48px !important;
    height: 48px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: var(--bg-white) !important;
    border-radius: 50% !important;
    box-shadow: var(--shadow-md) !important;
    opacity: 1 !important;
    border: 1px solid rgba(0,0,0,0.04) !important;
}

.testimonial-nav i {
    font-size: 1.2rem;
    color: var(--text-dark);
}

.testimonial-nav:hover {
    background: var(--primary) !important;
    box-shadow: var(--shadow-primary) !important;
}

.testimonial-nav:hover i {
    color: white !important;
}

.testimonial-nav.carousel-control-prev {
    left: -24px !important;
}

.testimonial-nav.carousel-control-next {
    right: -24px !important;
}

@media (max-width: 767.98px) {
    .testimonial-nav {
        width: 40px !important;
        height: 40px !important;
    }
    .testimonial-nav i {
        font-size: 1rem;
    }
    .testimonial-nav.carousel-control-prev {
        left: -8px !important;
    }
    .testimonial-nav.carousel-control-next {
        right: -8px !important;
    }
}

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-card {
    text-align: center;
    padding: 32px 24px;
    border-radius: 16px;
    transition: all 0.3s ease;
    height: 100%;
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.04);
}

.why-card:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-3px);
}

.why-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-soft);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin: 0 auto 18px;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card h5 {
    font-weight: 700;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
    background: #F5F9FF;
}

.contact-info-card {
    background: var(--gradient-btn);
    color: white;
    padding: 40px;
    border-radius: var(--radius-md);
    height: 100%;
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-info-card p {
    opacity: 0.9;
    margin-bottom: 30px;
}

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

.contact-info-item .icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-info-item .text h6 {
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-info-item .text span {
    opacity: 0.85;
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-form-wrapper .form-control {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,71,217,0.1);
}

.contact-form-wrapper textarea.form-control {
    min-height: 120px;
}

/* =============================================
   BLOG CARDS
   ============================================= */
.blog-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: var(--bg-white);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

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

.blog-image {
    height: 220px;
    overflow: hidden;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-image i {
    font-size: 3.5rem;
    color: var(--primary);
    opacity: 0.4;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 25px;
}

.blog-content .blog-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.blog-content .blog-meta span i {
    margin-right: 5px;
}

.blog-content h5 {
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h5 a {
    color: var(--text-dark);
}

.blog-content h5 a:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-content .btn-link {
    color: var(--primary);
    font-weight: 600;
    padding: 0;
    text-decoration: none;
}

.blog-content .btn-link:hover {
    gap: 5px;
}

/* =============================================
   PAGE BANNER
   ============================================= */
.page-banner {
    background: var(--gradient-primary);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-banner h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
}

.page-banner p {
    color: rgba(255,255,255,0.7);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto;
}

.page-banner .breadcrumb {
    justify-content: center;
    background: transparent;
    margin-bottom: 0;
}

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

.page-banner .breadcrumb-item.active {
    color: white;
}

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

/* =============================================
   TEAM CARDS
   ============================================= */
.team-card {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
    height: 100%;
}

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

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 3rem;
    color: var(--primary);
    overflow: hidden;
}

.team-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h5 {
    font-weight: 700;
    margin-bottom: 5px;
}

.team-card .position {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--gradient-btn);
    color: white;
}

/* =============================================
   VALUES SECTION
   ============================================= */
.value-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.value-card:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.value-card .icon {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.value-card h5 {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =============================================
   TRAVEL FORM
   ============================================= */
.travel-form-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px;
    border: 1px solid rgba(0,0,0,0.04);
}

.travel-form-card .form-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.travel-form-card .form-control,
.travel-form-card .form-select {
    padding: 12px 16px;
    border: 1px solid #e0e0e0;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}

.travel-form-card .form-control:focus,
.travel-form-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(13,71,217,0.1);
}

.travel-form-card .nav-tabs .nav-link {
    border: none;
    color: var(--text-muted);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
}

.travel-form-card .nav-tabs .nav-link.active {
    color: var(--primary);
    background: var(--primary-soft);
}

/* =============================================
   NEWSLETTER
   ============================================= */
.newsletter-section {
    background: #06153A;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(13,71,217,0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(30,136,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.newsletter-section h3 {
    font-family: var(--font-heading);
    color: white;
    font-weight: 700;
}

.newsletter-section p {
    color: rgba(255,255,255,0.8);
}

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

.newsletter-form .form-control {
    padding: 14px 20px;
    border: none;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 14px 30px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: var(--gradient-btn);
    color: white;
    border: none;
    font-weight: 600;
}

.newsletter-form .btn:hover {
    background: var(--gradient-btn);
    opacity: 0.9;
    color: white;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    background: #06153A;
    color: white;
    padding: 80px 0 30px;
}

.footer-brand .brand-text {
    font-size: 1.8rem;
    color: white;
}

.footer-brand .brand-sub {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

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

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.6);
    font-size: 0.95rem;
}

.footer-contact li i {
    color: var(--primary);
    margin-top: 4px;
    width: 16px;
}

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

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

.footer-social {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 40px 0 20px;
}

.footer-copyright {
    color: rgba(255,255,255,0.4);
    font-size: 0.9rem;
}

/* =============================================
   BLOG SINGLE PAGE
   ============================================= */
.blog-single .post-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.blog-single .bg-primary-soft img {
    max-height: 500px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.blog-single .post-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.blog-single .post-meta span {
    margin-right: 20px;
}

.blog-single .post-content {
    line-height: 1.9;
    font-size: 1.05rem;
    color: #444;
}

.blog-single .post-content h2,
.blog-single .post-content h3 {
    font-family: var(--font-heading);
    margin-top: 30px;
    margin-bottom: 15px;
}

.sidebar-widget {
    background: var(--bg-light);
    padding: 25px;
    border-radius: var(--radius-md);
    margin-bottom: 30px;
}

.sidebar-widget h5 {
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.sidebar-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary);
}

/* =============================================
   TOAST NOTIFICATIONS
   ============================================= */
.toast-container {
    position: fixed;
    top: 90px;
    right: 20px;
    z-index: 9999;
}

.toast-custom {
    background: white;
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--primary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease;
    min-width: 300px;
}

.toast-custom.error {
    border-left-color: #dc3545;
}

.toast-custom .toast-icon {
    font-size: 1.3rem;
}

.toast-custom.success .toast-icon {
    color: var(--primary);
}

.toast-custom.error .toast-icon {
    color: #dc3545;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* =============================================
   PAGE HEADER
   ============================================= */
.page-header {
    padding: 40px 0;
    background: var(--bg-light);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

/* =============================================
   RESPONSIVE DESIGN
   ============================================= */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
    .hero-image-wrapper .hero-shape {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-top: 70px;
    }

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

    .hero-section {
        min-height: auto;
        padding: 100px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image-wrapper {
        display: none;
    }

    .about-image-wrapper {
        padding-right: 0;
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .blog-single .post-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 767.98px) {
    .section-padding {
        padding: 50px 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

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

    .hero-floating-1, .hero-floating-2 {
        display: none;
    }

    .hero-buttons .btn {
        padding: 12px 28px;
        font-size: 0.9rem;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .stat-item .stat-number {
        font-size: 2.2rem;
    }

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

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

    .contact-form-wrapper {
        padding: 25px;
    }

    .contact-info-card {
        padding: 25px;
    }

    .travel-form-card {
        padding: 25px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .team-card {
        padding: 25px;
    }

    .navbar-brand .brand-text {
        font-size: 1.2rem;
    }


}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.7rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .hero-buttons .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .testimonial-card {
        padding: 25px;
    }
}

/* =============================================
   DARK MODE
   ============================================= */
/* =============================================
   ADDITIONAL UTILITIES
   ============================================= */
.text-primary-custom {
    color: var(--primary);
}

.bg-primary-soft {
    background: var(--primary-soft);
}

.glass-effect {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.rounded-custom {
    border-radius: var(--radius-md);
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-lg);
}

/* Loading spinner */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

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

/* Form floating label style */
.form-floating-custom {
    position: relative;
    margin-bottom: 20px;
}

.form-floating-custom .form-control {
    padding-top: 24px;
    padding-bottom: 8px;
}

.form-floating-custom label {
    position: absolute;
    top: 12px;
    left: 16px;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
    pointer-events: none;
}

/* Page transitions */
.fade-in {
    animation: fadeIn 0.6s ease;
}

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

/* Blog search */
.search-form .input-group {
    box-shadow: var(--shadow-sm);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.search-form .form-control {
    border: 1px solid #e0e0e0;
    border-right: none;
    padding: 12px 16px;
}

.search-form .btn {
    border: 1px solid #e0e0e0;
    border-left: none;
    padding: 12px 20px;
}
