/* Custom CSS Variables */
:root {
    --primary-color: #1e40af;
    --secondary-color: #3b82f6;
    --accent-color: #60a5fa;
    --dark-blue: #1e3a8a;
    --light-blue: #dbeafe;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
}

/* General Styles */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    position: relative;
    overflow-y: auto;
}

/* Hide scrollbar for webkit browsers */
html::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

body::-webkit-scrollbar {
    width: 0px;
    background: transparent;
}

/* Hide scrollbar for Firefox */
html {
    scrollbar-width: none;
}

body {
    scrollbar-width: none;
}

/* Hide all scrollbars universally */
*::-webkit-scrollbar {
    width: 0px !important;
    height: 0px !important;
    background: transparent !important;
}

* {
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

/* Ensure dropdown is always visible */
.dropdown-menu {
    z-index: 10000 !important;
}

.dropdown-menu.show {
    z-index: 10000 !important;
}

/* Header Styles */
.navbar-brand img {
    height: 45px;
    width: auto;
}

.navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    overflow-x: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.navbar.scrolled {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9) !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--accent-color) !important;
}

.nav-link.active {
    color: var(--accent-color) !important;
    font-weight: 600;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.dropdown-menu .dropdown-item.active {
    background-color: var(--accent-color);
    color: white !important;
}

/* Dropdown menu styles - Desktop */
.dropdown-menu {
    background: white;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem 0;
    margin-top: 0.5rem;
    min-width: 280px;
    position: absolute;
    z-index: 10000 !important;
    display: none;
    left: 0;
    top: 100%;
}

.dropdown-menu.show {
    display: block !important;
}

/* Desktop hover functionality */
@media (min-width: 992px) {
    .dropdown:hover .dropdown-menu {
        display: block !important;
    }
    
    .dropdown:hover .dropdown-toggle {
        color: var(--accent-color) !important;
    }
    
    .dropdown {
        position: relative;
    }
    
    /* Desktop dropdown positioning */
    .dropdown-menu {
        position: absolute !important;
        left: 0 !important;
        top: 100% !important;
        width: auto !important;
        min-width: 280px !important;
        background: white !important;
        border-radius: 12px !important;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    }
}

.dropdown-menu .dropdown-item:hover {
    background-color: rgba(96, 165, 250, 0.1);
    color: var(--accent-color) !important;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 10px 28px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: var(--gradient-primary);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow-x: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
}

/* Product Hero */
.product-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, #ffffff 100%);
    padding: 140px 0 80px;
}

.breadcrumb {
    background: none;
    margin-bottom: 2rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary-color);
    text-decoration: none;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

/* Cards */
.card {
    border: none;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.feature-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
}

/* Partners Slider */
.partners-slider-container {
    height: 80px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.partners-slider {
    animation: slide-infinite 30s linear infinite;
    white-space: nowrap;
    width: max-content;
    min-width: 100%;
}

.partner-item {
    display: inline-flex;
    width: 150px;
    height: 80px;
}

.partner-logo {
    max-height: 60px;
    max-width: 120px;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

@keyframes slide-infinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partners-slider-container:hover .partners-slider {
    animation-play-state: paused;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
}

.footer .form-control {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 8px;
}

.footer .form-control::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.footer .form-control:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 0.2rem rgba(96, 165, 250, 0.25);
    color: white;
}

/* Make In India */
.make-in-india {
    background: linear-gradient(135deg, #ff9933 0%, #ffffff 50%, #138808 100%);
    padding: 40px 0;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-gradient {
    background: var(--gradient-primary);
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Container and Layout Fixes */
.container, .container-fluid {
    overflow-x: hidden;
    max-width: 100%;
}

.row {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
}

.row > * {
    padding-left: 12px;
    padding-right: 12px;
}

/* Prevent any element from exceeding viewport width */
*, *::before, *::after {
    box-sizing: border-box;
    max-width: 100%;
}

/* Section-level overflow prevention - only horizontal */
section, .section-padding, .hero-section, .container-fluid {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Row and column overflow fixes - only horizontal */
.row {
    overflow-x: hidden;
    max-width: 100%;
}

.col, [class*="col-"] {
    overflow-x: hidden;
    word-wrap: break-word;
}

img, svg, video, canvas, audio, iframe, embed, object {
    max-width: 100%;
    height: auto;
}

/* Specific overflow fixes - only horizontal */
.hero-section {
    overflow-x: hidden;
    width: 100%;
}

.section-padding {
    overflow-x: hidden;
    width: 100%;
}

.navbar .container {
    max-width: 100%;
    overflow-x: hidden;
    padding-left: 15px;
    padding-right: 15px;
}

.navbar-nav {
    overflow-x: hidden;
    flex-wrap: nowrap;
}

.navbar-collapse {
    overflow-x: hidden;
}

.footer {
    overflow-x: hidden;
    width: 100%;
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
}

.stat-card {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Section Titles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* AI Section */
.ai-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow-x: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffffff" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.ai-feature {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.ai-feature:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Responsive Design */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1140px;
    }
    
    .hero-section h1 {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
}

/* Medium to Large tablets (992px to 1199px) */
@media (max-width: 1199px) {
    .hero-section h1 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
}

/* Tablets (768px to 991px) */
@media (max-width: 991px) {
    .hero-section {
        min-height: 85vh;
        padding: 120px 0 60px;
        text-align: center;
    }
    
    .hero-section h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .ai-feature {
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }
    
    /* Navbar adjustments */
    .navbar-nav {
        text-align: center;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
    }
    
    /* Mobile dropdown positioning */
    .dropdown-menu {
        position: static !important;
        float: none;
        width: 100%;
        margin-top: 0;
        background-color: rgba(15, 23, 42, 0.95);
        border: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
        left: auto !important;
        top: auto !important;
        transform: none !important;
    }
    
    .dropdown-menu.show {
        display: block !important;
    }
    
    /* Ensure dropdown appears below the toggle */
    .nav-item.dropdown {
        position: relative;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.9) !important;
        padding: 0.75rem 1.5rem;
    }
    
    .dropdown-item:hover {
        background-color: rgba(96, 165, 250, 0.2) !important;
    }
}

/* Small tablets and large phones (576px to 767px) */
@media (max-width: 767px) {
    .hero-section {
        min-height: 75vh;
        padding: 100px 0 50px;
    }
    
    .hero-section h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }
    
    .hero-section .lead {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .section-padding {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .feature-card h4 {
        font-size: 1.3rem;
    }
    
    .feature-card h5 {
        font-size: 1.2rem;
    }
    
    .ai-feature {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Button adjustments */
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .btn {
        margin-bottom: 0.5rem;
    }
    
    /* Card image adjustments */
    .feature-card img {
        max-height: 200px !important;
    }
    
    /* Partner logos */
    .partner-item {
        width: 120px;
    }
    
    .partner-logo {
        max-height: 50px;
        max-width: 100px;
    }
    
    .partners-slider {
        animation-duration: 25s;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer .row > div {
        margin-bottom: 2rem;
    }
}

/* Mobile phones (up to 575px) */
@media (max-width: 575px) {
    /* Additional overflow prevention for mobile */
    body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
        overflow-x: hidden;
    }
    
    .row {
        margin-left: -10px !important;
        margin-right: -10px !important;
        max-width: calc(100% + 20px);
    }
    
    .row > * {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .hero-section {
        min-height: 70vh;
        padding: 80px 0 40px;
        overflow-x: hidden;
        width: 100%;
    }
    
    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
    }
    
    .hero-section .display-3 {
        font-size: 1.8rem !important;
    }
    
    .hero-section .lead {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .section-padding {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .feature-card {
        padding: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .ai-feature {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .ai-feature h4 {
        font-size: 1.1rem;
    }
    
    .ai-feature p {
        font-size: 0.85rem;
    }
    
    /* Button adjustments */
    .btn-lg {
        padding: 0.625rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn {
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
    }
    
    /* Card image adjustments */
    .feature-card img {
        max-height: 160px !important;
    }
    
    /* Partner logos */
    .partner-item {
        width: 100px;
    }
    
    .partner-logo {
        max-height: 40px;
        max-width: 80px;
    }
    
    .partners-slider {
        animation-duration: 20s;
    }
    
    /* Footer adjustments */
    .footer {
        padding: 30px 0 15px;
    }
    
    .footer h5 {
        font-size: 1.1rem;
    }
    
    .footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    /* Navbar brand */
    .navbar-brand img {
        height: 35px;
    }
    
    /* Product hero adjustments */
    .product-hero {
        padding: 120px 0 60px;
    }
    
    .product-hero h1 {
        font-size: 1.75rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* Extra small devices (up to 350px) */
@media (max-width: 350px) {
    body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .hero-section h1 {
        font-size: 1.6rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .section-title {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .feature-card {
        padding: 0.875rem;
    }
    
    .feature-card img {
        max-height: 140px !important;
    }
    
    .btn-lg {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
        white-space: nowrap;
    }
    
    .partner-item {
        width: 90px;
    }
    
    .partner-logo {
        max-height: 35px;
        max-width: 70px;
    }
    
    .navbar-brand img {
        height: 32px;
    }
}

/* Universal overflow prevention */
@media (max-width: 768px) {
    /* Ensure no element causes horizontal overflow */
    .d-flex.gap-3,
    .d-flex.flex-wrap.gap-3 {
        gap: 0.5rem !important;
    }
    
    .btn {
        margin-right: 0.25rem;
        margin-bottom: 0.5rem;
        flex-shrink: 0;
    }
    
    /* Text wrapping for long words */
    h1, h2, h3, h4, h5, h6, p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
    
    /* Prevent button text from expanding beyond container */
    .btn {
        max-width: 100%;
        white-space: normal;
        text-align: center;
    }
    
    .btn-lg {
        max-width: 100%;
        padding: 0.625rem 1rem;
    }
}

/* ===== FRESH NAVBAR STYLES - NO CONFLICTS ===== */

/* Custom Navbar Container */
.custom-navbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 0.8rem 0;
}

.custom-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.custom-nav-brand img {
    height: 45px;
    width: auto;
}

/* Navigation Links Container */
.custom-nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.custom-nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Individual Nav Links */
.custom-nav-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    padding: 0.5rem 0;
    position: relative;
}

.custom-nav-link:hover {
    color: var(--accent-color);
}

.custom-nav-link.active {
    color: var(--accent-color);
    font-weight: 600;
}

.custom-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 1px;
}

/* Custom Dropdown */
.custom-dropdown {
    position: relative;
}

.custom-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.custom-dropdown:hover .custom-dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 1rem;
    min-width: 320px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 10000;
}

.custom-dropdown:hover .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Dropdown Sections */
.custom-dropdown-section {
    margin-bottom: 1rem;
}

.custom-dropdown-header {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.custom-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.75rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 0.25rem;
}

.custom-dropdown-item:hover {
    background-color: rgba(96, 165, 250, 0.1);
    color: var(--accent-color);
    transform: translateX(5px);
}

.custom-dropdown-item i {
    color: var(--accent-color);
    width: 16px;
}

.custom-dropdown-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.1);
    margin: 1rem 0;
}

/* CTA Button */
.custom-btn-primary {
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.custom-btn-primary:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-2px);
}

/* Mobile Toggle Button */
.custom-nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.custom-nav-toggle span {
    width: 25px;
    height: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .custom-nav-toggle {
        display: flex;
    }
    
    .custom-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 23, 42, 0.98);
        flex-direction: column;
        padding: 2rem 1rem;
        gap: 1rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px);
        transition: all 0.3s ease;
    }
    
    .custom-nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .custom-nav-links {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .custom-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.1);
        margin-top: 1rem;
        display: none;
    }
    
    .custom-dropdown.active .custom-dropdown-menu {
        display: block;
    }
    
    .custom-dropdown-item {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .custom-dropdown-item:hover {
        background-color: rgba(96, 165, 250, 0.2);
        color: white;
    }
    
    .custom-dropdown-header {
        color: var(--accent-color);
    }
}

/* Blog Content Styling */
.blog-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4,
.blog-content h5,
.blog-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-content h1 {
    font-size: 2.5rem;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.blog-content h2 {
    font-size: 2rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.3rem;
}

.blog-content h3 {
    font-size: 1.5rem;
}

.blog-content h4 {
    font-size: 1.3rem;
}

.blog-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-content ul,
.blog-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-content li {
    margin-bottom: 0.5rem;
}

.blog-content blockquote {
    border-left: 4px solid var(--primary-color);
    background: var(--light-blue);
    padding: 1rem 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.blog-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 1.5rem 0;
}

.blog-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
}

.blog-content th,
.blog-content td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #e5e7eb;
}

.blog-content th {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.blog-content tr:nth-child(even) {
    background: #f8fafc;
}

.blog-content a {
    color: var(--primary-color);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.blog-content a:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--secondary-color);
}

.blog-content code {
    background: #f1f5f9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    color: var(--primary-color);
}

.blog-content pre {
    background: #1f2937;
    color: #f9fafb;
    padding: 1.5rem;
    border-radius: 8px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

.blog-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

.blog-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 3rem 0;
    border-radius: 1px;
}

/* Job Content Styling */
.job-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
}

.job-content h1,
.job-content h2,
.job-content h3,
.job-content h4,
.job-content h5,
.job-content h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.job-content h2 {
    font-size: 1.5rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 0.3rem;
}

.job-content h3 {
    font-size: 1.3rem;
}

.job-content ul,
.job-content ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.job-content li {
    margin-bottom: 0.3rem;
}

.job-content p {
    margin-bottom: 1rem;
}

.job-content strong {
    color: var(--primary-color);
    font-weight: 600;
}