:root {
      --primary-blue: #2563eb;
      --primary-dark: #1e40af;
      --accent-orange: #f59e0b;
      --accent-teal: #0d9488;
      --accent-purple: #7c3aed;
      --text-dark: #1f2937;
      --text-light: #6b7280;
      --bg-white: #ffffff;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    body { background: var(--bg-white); color: var(--text-dark); font-family: 'Inter', 'Poppins', system-ui, sans-serif; overflow-x: hidden; }
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: #e5e7eb; }
    ::-webkit-scrollbar-thumb { background: var(--primary-blue); border-radius: 10px; }

    .navbar-glass { background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(18px); border-bottom: 1px solid rgba(37, 99, 235, 0.2); box-shadow: 0 2px 20px rgba(0,0,0,0.05); }
    .navbar-brand { font-weight: 800; font-size: 1.9rem; background: linear-gradient(135deg, var(--primary-blue), var(--accent-orange), var(--accent-teal)); -webkit-background-clip: text; background-clip: text; color: transparent !important; }
    .nav-link {
    font-weight: 500;
    margin: 0;
    border-radius: 40px;
    transition: 0.2s;
    color: #fff !important;
    cursor: pointer;
    padding: 0 !important;
    background: transparent !important;
    display: inline-block;
}

.nav-link.dropdown-toggle {
    padding: 8px 10 !important;
}

/* The actual clickable/hoverable text area */
.nav-link {
    padding: 8px 16px !important;
    display: inline-block;
    width: auto;
}

  /* Remove hover effect from the li padding area */
.nav-item {
    display: inline-flex;
    align-items: center;
}

.nav-link:hover {
    background: var(--primary-blue);
    color: white !important;
}
    .btn-primary-glow { background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple)); border: none; font-weight: 600; padding: 10px 28px; border-radius: 40px; box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3); transition: 0.3s; color: white; }
    .btn-primary-glow:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4); }

    /* Full Page Dropdown */
    /* .fullpage-dropdown { position: fixed; top: 70px; left: 0; width: 100%; background: rgba(255, 255, 255, 0.98); backdrop-filter: blur(24px); border-top: 1px solid rgba(37, 99, 235, 0.3); border-bottom: 1px solid rgba(37, 99, 235, 0.2); box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); z-index: 1050; padding: 2rem 0; animation: fadeSlideDown 0.4s ease forwards; display: none; max-height: 85vh; overflow-y: auto; }
     */

    /* Full Page Dropdown - Appears Directly Below Navbar */
.fullpage-dropdown { 
    position: absolute;  /* Changed from fixed to absolute */
    left: 0; 
    width: 100%; 
    background: rgba(255, 255, 255, 0.98); 
    backdrop-filter: blur(24px); 
    border-top: 1px solid rgba(37, 99, 235, 0.3); 
    border-bottom: 1px solid rgba(37, 99, 235, 0.2); 
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.15); 
    z-index: 1050; 
    padding: 2rem 0; 
    
    /* Hidden state */
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    
    /* Smooth transition */
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    
    max-height: 85vh; 
    overflow-y: auto; 
    pointer-events: none;
}

/* Visible state */
.fullpage-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}
    
    @keyframes fadeSlideDown { from { opacity: 0; transform: translateY(-30px); } to { opacity: 1; transform: translateY(0); } }
    .close-fullpage { position: absolute; top: 16px; right: 30px; font-size: 2rem; cursor: pointer; color: var(--primary-blue); background: rgba(0,0,0,0.08); width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
    .close-fullpage:hover { color: var(--accent-orange); transform: scale(1.1); }
    .dropdown-column { flex: 1; min-width: 180px; margin-bottom: 1.5rem; }
    .dropdown-column h5 { color: var(--primary-blue); font-weight: 700; border-left: 3px solid var(--accent-orange); padding-left: 12px; margin-bottom: 1.2rem; }
    .dropdown-column a { display: block; color: var(--text-dark); text-decoration: none; padding: 8px 0; transition: 0.2s; font-size: 0.95rem; }
    .dropdown-column a:hover { color: var(--primary-blue); transform: translateX(8px); }
    .sub-dropdown { margin-left: 15px; border-left: 1px dashed rgba(37, 99, 235, 0.3); padding-left: 12px; margin-top: 6px; }
    .sub-dropdown a { font-size: 0.85rem; padding: 4px 0; color: var(--text-light); }
    .dropdown-carousel-buttons { display: flex; justify-content: center; gap: 1.5rem; margin-top: 2rem; padding: 1rem 0; border-top: 1px solid rgba(37, 99, 235, 0.2); }
    .carousel-nav-btn { background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1)); border: 1px solid var(--primary-blue); color: var(--primary-blue); padding: 12px 28px; border-radius: 60px; font-weight: 600; transition: 0.3s; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; }
    .carousel-nav-btn:hover { background: var(--primary-blue); color: white; transform: scale(1.02); }
    .carousel-indicator-dots { display: flex; justify-content: center; gap: 12px; align-items: center; }
    .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(37, 99, 235, 0.3); transition: 0.2s; cursor: pointer; }
    .dot.active { background: var(--accent-orange); width: 28px; border-radius: 10px; }
    .carousel-slide-container { overflow: hidden; position: relative; }
    .carousel-track { display: flex; transition: transform 0.5s ease-in-out; will-change: transform; }
    .carousel-slide { flex: 0 0 100%; padding: 0 1rem; }
    .columns-wrapper { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: space-between; }

    /* Hero Carousel */
    /* .hero-carousel-item { height: 85vh; min-height: 600px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; }
    .hero-carousel-item::before { content: ""; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.92)); z-index: 1; }
    .hero-caption { position: relative; z-index: 5; text-align: center; max-width: 800px; margin-top: 150px !important; animation: fadeInUp 1s ease; }
     */

    /* Hero Carousel - No Opacity Overlay */
.hero-carousel-item { 
    height: 50vh; 
    min-height: 400px; 
    background-size: cover; 
    background-position: center; 
    position: relative; 
    display: flex; 
    /* align-items: center;  */
}

/* Remove the white overlay completely - COMMENT OUT OR DELETE */
/* .hero-carousel-item::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: linear-gradient(135deg, rgba(255,255,255,0.85), rgba(255,255,255,0.92)); 
    z-index: 1; 
} */

/* Optional: Add a dark overlay if text is not readable */
.hero-carousel-item::before { 
    content: ""; 
    position: absolute; 
    inset: 0; 
    background: rgba(0, 0, 0, 0.4);  /* Dark transparent overlay for better text readability */
    z-index: 1; 
}

.hero-caption { 
    position: relative; 
    z-index: 5; 
    text-align: center; 
    max-width: 800px; 
    margin-top: 30px !important; 
    animation: fadeInUp 1s ease; 
}

/* Make text white/light for better contrast on dark background */
.hero-caption h1 {
    color: white !important;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.hero-caption .lead {
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-caption h2 {
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}

.hero-caption p {
    color: white !important;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}
    
    @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
    .hero-caption h1 { font-size: 2.5rem; font-weight: 800; background: linear-gradient(135deg, var(--primary-blue), #12220f, var(--accent-teal)); -webkit-background-clip: text; background-clip: text; color: transparent; }
    .hero-caption .lead { font-size: 1.3rem; margin-bottom: 2rem; color: var(--text-dark); }
    
    .carousel-control-prev-icon, .carousel-control-next-icon { background-color: var(--primary-blue); border-radius: 50%; padding: 20px; transition: 0.3s; }
      
    /* Tech Cards - Clickable */
    .tech-card { background: var(--bg-white); border-radius: 28px; padding: 1.5rem; text-align: center; transition: all 0.3s; border: 1px solid #e5e7eb; height: 100%; box-shadow: 0 4px 12px rgba(0,0,0,0.05); cursor: pointer; }
    .tech-card:hover { transform: translateY(-8px); border-color: var(--primary-blue); box-shadow: 0 20px 35px -10px rgba(37, 99, 235, 0.2); }
    .tech-logo { font-size: 2.5rem; margin-bottom: 0.75rem; display: inline-block; }
    .tech-stack-group { margin-bottom: 2rem; }
    .section-title { font-size: 2.2rem; font-weight: 700; margin-bottom: 2rem; position: relative; display: inline-block; color: var(--text-dark); }
    .section-title:after { content: ''; position: absolute; bottom: -10px; left: 0; width: 60%; height: 3px; background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple)); border-radius: 3px; }

    /* Custom Section Styles */
    #whatespace-bckgrnd-soft-dev { background: linear-gradient(135deg, #f0f9ff, #e0f2fe); padding: 40px 0; }
    #leadining-soft-dev { background: linear-gradient(135deg, #eff6ff, #e0e7ff); padding: 1px 0; }
    #services-soft-dev { background: linear-gradient(135deg, #fef3c7, #fde68a); padding: 60px 0; }
    #leadining-soft-dev h1 { color: #102e70; text-align: center; padding: 1px; margin-bottom: 10px; font-weight: 700; }
    .leadining-soft-dev-p p { font-size: 1.1rem; line-height: 1.7; color: var(--text-dark); }
    .estd_year h4, .clients_count h4, .projects_delivered h4, .client_retentions_rate h4 { color: var(--primary-blue); font-weight: 700; }
    .mission_critical h3 { text-align: center; color: var(--accent-orange); font-size: 28px; font-weight: 700; padding: 30px; }
    .mission_critical p { color: var(--text-dark); font-size: 1.1rem; }
    .faster_time h4, .delivery_cost h4, .planning_time h4 { font-size: 18px; font-weight: 700; padding: 10px; }
    .faster_time h4 { color: #059669; }
    .delivery_cost h4 { color: var(--primary-blue); }
    .planning_time h4 { color: #d97706; }
    .dedicated_prdct_team { background: white; padding: 30px; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .dedicated_prdct_team h3 { text-align: center; color: var(--primary-blue); font-size: 28px; font-weight: 700; }
    .industries_we_Serve { background: white; padding: 30px; border-radius: 28px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); }
    .industries_we_Serve h3 { text-align: center; color: #2a4683; font-size: 55px; font-weight: 800; }
    
    .industry-btn { background: none; border: none; color: #134970; font-weight: 500; padding: 5px 12px; border-radius: 1px; transition: 0.2s; border-color: #ff0000; border-style: solid; border-width: 1px; margin: 5px; min-width: 200px; }
    .industry-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-2px); }

    .industry-content { display: none; margin-top: 20px; padding: 20px; background: linear-gradient(135deg, #f8fafc, #f1f5f9); border-radius: 1px; border-left: 4px solid var(--primary-blue); border-bottom: 4px solid #f90000; min-height: 600px; }
    .industry-content.active { display: block; animation: fadeSlide 0.4s ease; }

    /* Our Services Button Styles */
    .service-btn-group { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 20px 0; }
    .service-btn { background: linear-gradient(135deg, #fff, #f8fafc); border: 1px solid var(--primary-blue); color: var(--primary-blue); font-weight: 500; padding: 8px 16px; border-radius: 40px; transition: 0.3s; cursor: pointer; }
    .service-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-2px); }

    /* Responsive Images */
    .img-responsive { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
    
    /* Software Development Services */
    .software-services-section { background: linear-gradient(135deg, #f8fafc, #eff6ff); padding: 60px 0; }
    .development-btn { background: linear-gradient(135deg, #fff, #f8fafc); border: 1px solid var(--primary-blue); color: var(--primary-blue); font-weight: 500; margin: 5px; padding: 8px 20px; border-radius: 40px; transition: 0.3s; }
    .development-btn:hover { background: var(--primary-blue); color: white; transform: translateY(-2px); }
    .development-content { display: none; margin-top: 30px; padding: 25px; background: white; border-radius: 24px; border-left: 5px solid var(--accent-orange); box-shadow: 0 10px 30px rgba(0,0,0,0.08); animation: fadeSlide 0.4s ease; }
    .development-content.active { display: block; }

    /* Next Steps Section */
    .next-steps-section { background: linear-gradient(135deg, #1e293b, #0f172a); position: relative; overflow: hidden; }
    .next-steps-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" opacity="0.05"><path fill="none" d="M10,10 L90,10 M10,20 L90,20 M10,30 L90,30 M10,40 L90,40 M10,50 L90,50 M10,60 L90,60 M10,70 L90,70 M10,80 L90,80 M10,90 L90,90" stroke="white" stroke-width="0.5"/></svg>'); background-repeat: repeat; pointer-events: none; }
    .step-card { background: rgba(255,255,255,0.1); backdrop-filter: blur(10px); border-radius: 24px; padding: 1.5rem; margin: 1rem 0; transition: all 0.3s; border: 1px solid rgba(255,255,255,0.2); }
    .step-card:hover { transform: translateX(10px); background: rgba(255,255,255,0.2); border-color: var(--accent-orange); }
    .step-number { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple)); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: bold; color: white; margin-bottom: 1rem; }

    /* Media Recording */
    .record-btn { background: linear-gradient(135deg, #ef4444, #dc2626); border: none; color: white; padding: 10px 20px; border-radius: 50px; transition: 0.3s; }
    .record-btn:hover { transform: scale(1.02); box-shadow: 0 4px 15px rgba(239,68,68,0.4); }
    .file-preview { margin-top: 10px; padding: 10px; background: #f1f5f9; border-radius: 12px; font-size: 0.85rem; }

    /* Footer Styles */
    .footer-modern { background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%); position: relative; overflow: hidden; color: #e2e8f0; }
    .footer-modern::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" opacity="0.03"><circle cx="20" cy="20" r="2" fill="white"/><circle cx="50" cy="50" r="3" fill="white"/><circle cx="80" cy="30" r="2" fill="white"/><circle cx="40" cy="80" r="2" fill="white"/><circle cx="90" cy="70" r="1.5" fill="white"/></svg>'); background-repeat: repeat; pointer-events: none; }
    .footer-modern h5 { color: white; font-weight: 700; margin-bottom: 1.5rem; position: relative; display: inline-block; }
    .footer-modern h5:after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal)); border-radius: 3px; }
    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 12px; transition: all 0.3s ease; }
    .footer-links li a { color: #cbd5e1; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
    .footer-links li a:hover { color: var(--accent-orange); transform: translateX(5px); }
    .footer-links li i { margin-right: 8px; color: var(--accent-teal); font-size: 0.85rem; }
    .social-icons { display: flex; gap: 15px; margin-top: 20px; }
    .social-icons a { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; transition: all 0.3s ease; text-decoration: none; }
    .social-icons a:hover { background: var(--accent-orange); transform: translateY(-5px); color: white; }
    .footer-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 30px 0 20px; }
    .copyright { text-align: center; color: #94a3b8; font-size: 0.9rem; }
    
    @media (max-width: 768px) {
      .hero-caption h1 { font-size: 1.8rem; }
      .hero-caption .lead { font-size: 1rem; }
      .hero-carousel-item { height: 70vh; min-height: 500px; }
      .columns-wrapper { flex-direction: column; }
      .footer-modern .row > div { margin-bottom: 30px; }
      .industries_we_Serve h3 { font-size: 2rem; }
      .industry-btn { min-width: auto; font-size: 0.8rem; }
      .service-btn { font-size: 0.7rem; padding: 5px 10px; }
    }

    /* Modal Styles */
    .tech-modal .modal-content { background: linear-gradient(135deg, #fff, #f8fafc); border-radius: 28px; border: none; }
    .tech-modal-header { 
      background: linear-gradient(135deg, #0a2154, var(--accent-purple)); 
      color: white; 
      /* border-radius: 28px 28px 0 0;  */
      padding: 1.5rem; 
    }
    .tech-logo-large { font-size: 4rem; margin-bottom: 1rem; }

    @keyframes fadeSlide { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
      
    .why-companies-work-with-us { background-color: #165618; padding: 60px 0; color: #ffffff; }
    .why-companies-work-with-us h2 { color: var(--accent-orange); margin-bottom: 1rem; }
    .why-companies-work-with-us p { color: #cbd5e1; }

    .software-service-content {
      min-height:200px;
      background-color: #e4f1d4;
      text-align: center;
      border-radius: 15px;
      border-left: 5px solid #122d4e;
      padding: 10px;
      margin-top: 50px;
      margin-left: 200px;
      margin-right: 200px;
      border-right: 5px solid #122d4e;
      margin-top:50px;
      margin-bottom:50px;
    }

    .software-service-content h5 {
      font-size: 3.25rem;
      font-weight: 700;
    }



    /* Industries We Serve Section - Modern & Eye-Catching */
    .industries-section {
        background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
        position: relative;
        overflow: visible;
        padding: 30px 0;
    }
    
    .industries-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" opacity="0.05"><circle cx="20" cy="20" r="3" fill="%232563eb"/><circle cx="80" cy="40" r="2" fill="%237c3aed"/><circle cx="50" cy="80" r="2.5" fill="%23f59e0b"/><circle cx="90" cy="70" r="1.5" fill="%230d9488"/></svg>');
        background-repeat: repeat;
        pointer-events: none;
    }
    
    .industries-header {
        text-align: center;
        margin-bottom: 50px;
    }
    
    .industries-header h2 {
        font-size: 2.8rem;
        font-weight: 800;
        background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        margin-bottom: 15px;
    }
    
    .industries-header p {
        font-size: 1.2rem;
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }
    
    /* Industry Cards Grid */
    .industry-cards-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 25px;
        margin-bottom: 40px;
        position: relative;
        z-index: 1;
    }
    
    .industry-card {
        background: white;
        border-radius: 24px;
        padding: 25px 20px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        border: 1px solid rgba(37, 99, 235, 0.1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        position: relative;
        overflow: hidden;
    }
    
    .industry-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }
    
    .industry-card:hover::before {
        transform: scaleX(1);
    }
    
    .industry-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 35px -12px rgba(37, 99, 235, 0.25);
        border-color: var(--primary-blue);
    }
    
    .industry-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
        display: inline-block;
        color: var(--primary-blue);
    }
    
    .industry-name {
        font-size: 1.1rem;
        font-weight: 600;
        margin: 0;
        color: var(--text-dark);
    }
    
    /* Custom Toast/Popup Styles - FIXED AND VISIBLE */
    .custom-toast {
        position: fixed;
        bottom: 30px;
        left: 50%;
        transform: translateX(-50%);
        background: white;
        border-radius: 16px;
        padding: 20px;
        width: 450px;
        max-width: 90vw;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
        z-index: 10000;
        display: none;
        border-left: 5px solid var(--primary-blue);
        transition: all 0.3s ease;
    }
    
    .custom-toast.show {
        display: block;
        animation: slideUp 0.3s ease;
    }
    
    @keyframes slideUp {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(20px);
        }
        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }
    
    .toast-header {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        padding-bottom: 10px;
        border-bottom: 2px solid #eef2ff;
    }
    
    .toast-icon {
        font-size: 1.8rem;
    }
    
    .toast-title {
        font-size: 1.1rem;
        font-weight: 700;
        color: var(--text-dark);
        margin: 0;
    }
    
    .toast-close {
        margin-left: auto;
        background: none;
        border: none;
        font-size: 1.2rem;
        cursor: pointer;
        color: #999;
        transition: 0.2s;
    }
    
    .toast-close:hover {
        color: #333;
    }
    
    .toast-description {
        color: var(--text-light);
        line-height: 1.5;
        margin-bottom: 12px;
        font-size: 0.85rem;
    }
    
    .toast-features {
        margin-bottom: 12px;
    }
    
    .toast-feature {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 5px 0;
        font-size: 0.8rem;
        color: var(--text-dark);
    }
    
    .toast-feature i {
        color: var(--accent-teal);
        width: 16px;
    }
    
    .toast-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--primary-blue);
        font-weight: 600;
        font-size: 0.8rem;
        text-decoration: none;
        padding: 8px 16px;
        background: #eef2ff;
        border-radius: 40px;
        transition: all 0.3s ease;
        margin-top: 8px;
    }
    
    .toast-link:hover {
        background: var(--primary-blue);
        color: white;
        gap: 12px;
    }
    
    /* Mobile Responsive */
    @media (max-width: 768px) {
        .industries-section {
            padding: 50px 0;
        }
        
        .industries-header h2 {
            font-size: 2rem;
        }
        
        .industry-cards-grid {
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 15px;
        }
        
        .industry-card {
            padding: 15px 10px;
        }
        
        .industry-icon {
            font-size: 1.8rem;
        }
        
        .industry-name {
            font-size: 0.85rem;
        }
        
        .custom-toast {
            width: 320px;
            padding: 15px;
            bottom: 20px;
        }
    }
    
    @media (max-width: 480px) {
        .industry-cards-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .custom-toast {
            width: 280px;
            padding: 12px;
        }
        
        .toast-title {
            font-size: 0.9rem;
        }
    }

    
    
    .bg-theme-colored {
        background-color: #002E5B !important;
    }

    .header-top {
    padding: 0;
}

.header-top .widget {
    margin-top: 14px;
    line-height: 2rem;
    margin-bottom: 0;
}

.text-white {
    color: #fff !important;
}


    .p-0 {
        padding-bottom: 21px !important;
    }

    .bg-light {
        background-color: #f5f5f5 !important;
    }

    a img {
      border: none;
    }

    img {
        max-width: 100%;
    }

    img {
        vertical-align: middle;
    }



    

.fa.pull-left {
    margin-right: .3em;
}

.pull-right {
    float: right;
    color: #fff;
}

.text-theme-colored2 {
    color: #F21B51 !important;
}
.mt-5 {
    margin-top: 5px !important;
}
:active, :focus {
    outline: none !important;
}

.font-32 {
    font-size: 32px !important;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.pull-left {
    float: left !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none;
}

.text-right {
    text-align: right;
}

.header-top .widget ul li {
    margin-bottom: 0;
    padding-bottom: 0;
}

.list-inline>li {
    display: inline-block;
    padding-right: 30px;
}

.pl-10 {
    padding-left: 10px !important;
}

.font-13 {
    font-size: 13px !important;
}

.font-12 {
    font-size: 12px !important;
}

/* Active Navigation Tab Styles */
.nav-item.active .nav-link {
    background: #8B0000 !important;  /* Dark Red */
    color: #fff !important;
    border-radius: 40px;
}

.nav-item.active .nav-link .nav-text {
    color: white !important;
}

/* Remove the inline style from your HTML and use this class instead */
.nav-item.active {
    background: transparent;
}

 /* Services Carousel Styles - 3 Items at a Time */
.services-carousel-section {
    background: linear-gradient(135deg, #f8fafc, #eff6ff);
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.services-carousel-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" opacity="0.03"><circle cx="20" cy="20" r="3" fill="%232563eb"/><circle cx="80" cy="40" r="2" fill="%237c3aed"/><circle cx="50" cy="80" r="2.5" fill="%23f59e0b"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}

.services-carousel {
    position: relative;
    padding: 20px 0;
}

.services-carousel .carousel-inner {
    padding: 20px 0;
}

.services-carousel .carousel-item {
    transition: transform 0.6s ease-in-out;
}

.services-carousel .carousel-item .row {
    margin: 0 -12px;
}

.services-carousel .carousel-item [class*="col-"] {
    padding: 0 12px;
}

/* Service Card Styles */
.service-carousel-card {
    position: relative;
    border-radius: 0px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    height: 380px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.service-carousel-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

/* Dark Overlay for Text Readability */
.service-carousel-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.75));
    z-index: 1;
    transition: all 0.4s ease;
}

.service-carousel-card:hover::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.65));
}

/* Card Content */
.service-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    color: white;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.service-carousel-card:hover .service-card-content {
    transform: translateY(-5px);
}

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

.service-card-description {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    color: rgba(255,255,255,0.9);
}

.service-carousel-card:hover .service-card-description {
    opacity: 1;
    transform: translateY(0);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 24px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    border-radius: 40px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
}

.service-carousel-card:hover .service-card-link {
    opacity: 1;
    transform: translateY(0);
}

.service-card-link:hover {
    gap: 12px;
    background: linear-gradient(90deg, var(--accent-purple), var(--primary-blue));
    transform: translateY(-2px);
}

/* Carousel Controls */
.services-carousel .carousel-control-prev,
.services-carousel .carousel-control-next {
    width: 45px;
    height: 45px;
    background: var(--primary-blue);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.services-carousel .carousel-control-prev {
    left: -60px;
}

.services-carousel .carousel-control-next {
    right: -60px;
}

.services-carousel .carousel-control-prev:hover,
.services-carousel .carousel-control-next:hover {
    opacity: 1;
    background: var(--accent-purple);
}

.services-carousel .carousel-control-prev-icon,
.services-carousel .carousel-control-next-icon {
    background-size: 60%;
}

/* Carousel Indicators */
.services-carousel .carousel-indicators {
    bottom: -50px;
}

.services-carousel .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary-blue);
    opacity: 0.3;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.services-carousel .carousel-indicators button.active {
    opacity: 1;
    background: var(--accent-orange);
    width: 25px;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 1200px) {
    .services-carousel .carousel-control-prev {
        left: -40px;
    }
    .services-carousel .carousel-control-next {
        right: -40px;
    }
}

@media (max-width: 992px) {
    .services-carousel .carousel-control-prev,
    .services-carousel .carousel-control-next {
        display: none;
    }
    
    .service-carousel-card {
        height: 320px;
        margin-bottom: 20px;
    }
    
    .service-card-title {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .service-carousel-card {
        height: 280px;
        margin-bottom: 15px;
    }
    
    .service-card-content {
        padding: 20px;
    }
    
    .service-card-title {
        font-size: 1.1rem;
    }
    
    .service-card-description {
        font-size: 0.8rem;
    }
    
    .service-card-link {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}


/* Technology Arsenal Section - Service Box Style */
.tech-arsenal-section {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 30px 0;
    position: relative;
}

.tech-arsenal-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-arsenal-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tech-arsenal-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 3px;
}

.tech-arsenal-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Service Box Styles */
.service-box {
    position: relative;
    border-bottom: 3px solid transparent;
    border-top: 0px;
    transition: all 0.3s ease;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.border-1px {
    border: 1px solid #eeeeee !important;
}

.bg-white {
    background-color: #fff !important;
}

.icon-box {
    position: relative;
}

.icon-box.iconbox-theme-colored .icon.icon-dark {
    background-color: #002E5B;
    color: #fff;
}

.icon-box .icon {
    display: inline-block;
    height: 70px;
    margin-bottom: 0px;
    width: 70px;
    text-align: center;
    transition: 0.3s;
    line-height: 70px;
    border-radius: 8px;
}

.border-left-theme-colored2-3px {
    border-left: 3px solid #F21B51 !important;
}

.p-30 {
    padding: 30px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mr-0 {
    margin-right: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.pull-left {
    float: left !important;
}

.icon-box .icon-box-details {
    margin-left: 90px;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.m-0 {
    margin: 0px !important;
}

.text-gray {
    color: #808080 !important;
}

.icon-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    cursor: pointer;
    display: inline-block;
    position: relative;
}

.icon-box-title:hover {
    color: var(--primary-blue);
}

/* Learn More Link */
.learn-more-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--accent-purple);
    transform: translateX(5px);
}

/* Centered Modal Popup Styles */
.tech-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.tech-modal-overlay.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.tech-modal-content {
    background: white;
    /* border-radius: 20px; */
    width: 450px;
    max-width: 90vw;
    padding: 0;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.3);
    animation: slideIn 0.3s ease;
    border-top: 4px solid var(--primary-blue);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tech-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #eef2ff;
}

.tech-modal-header h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.tech-modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #999;
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.tech-modal-close:hover {
    color: #333;
    background: #f0f0f0;
}

.tech-modal-body {
    padding: 25px;
}

.tech-modal-body p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 768px) {
    .tech-arsenal-section {
        padding: 30px 0;
    }
    
    .tech-arsenal-header h2 {
        font-size: 1.8rem;
    }
    
    .icon-box .icon {
        height: 55px;
        width: 55px;
        line-height: 55px;
    }
    
    .icon-box .icon i {
        font-size: 24px;
    }
    
    .icon-box .icon-box-details {
        margin-left: 70px;
    }
    
    .p-30 {
        padding: 20px !important;
    }
    
    .icon-box-title {
        font-size: 1rem;
    }
    
    .tech-modal-content {
        width: 90vw;
    }
    
    .tech-modal-header {
        padding: 15px 20px;
    }
    
    .tech-modal-body {
        padding: 20px;
    }
}


/* ============================================
   PROJECT SECTION STYLES
   ============================================ */

/* Section Background */
.bg-lighter {
    background-color: #f7f7f7 !important;
}

section {
    position: relative;
}

section > .container,
section > .container-fluid {
    padding-top: 1px;
    padding-bottom: 1px;
}

/* ============================================
   SECTION TITLE
   ============================================ */
.section-title {
    text-align: center;
    margin-bottom: 30px;
}

.section-title .row {
    display: flex;
    justify-content: center;
}

.section-title p {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
}

/* Typography */
.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.text-theme-colored2 {
    color: #F21B51 !important;
}

.text-white {
    color: #fff !important;
}

.text-gray-darkgray {
    color: #a9a9a9 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

/* Underline Effect - Double Line Centered */
.line-bottom-double-line-centered {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 15px;
    display: inline-block;
}

.line-bottom-double-line-centered:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 3px;
}

.line-bottom-double-line-centered:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-blue);
    border-radius: 3px;
}

/* ============================================
   PORTFOLIO FILTER
   ============================================ */
.portfolio-filter {
    margin-bottom: 30px;
}

.portfolio-filter a {
    display: inline-block;
    padding: 8px 25px;
    margin: 0 5px 10px 0;
    border: 1px solid #ddd;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
}

.portfolio-filter a:hover,
.portfolio-filter a.active {
    background: var(--primary-blue);
    color: #fff;
    border-color: var(--primary-blue);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-isotope {
    margin: 0 -5px;
}

.gallery-isotope.grid-3 .gallery-item {
    width: 33.3333%;
    float: left;
    padding-right: 5px;
    padding-bottom: 5px;
}

.gallery-isotope.gutter .gallery-item {
    padding-right: 5px;
    padding-bottom: 5px;
}

.gallery-item {
    transition: all 0.4s ease;
}

/* ============================================
   BOX HOVER EFFECT
   ============================================ */
.box-hover-effect {
    display: inline-block;
    vertical-align: middle;
    width: 100%;
}

.box-hover-effect .effect-wrapper {
    position: relative;
    overflow: hidden;
    margin: 0;
    width: 100%;
}

.box-hover-effect .effect-wrapper .thumb {
    position: relative;
    overflow: hidden;
    backface-visibility: hidden;
    transform: scale(1);
    transition: all 0.4s ease;
}

.box-hover-effect:hover .effect-wrapper .thumb {
    transform: scale(1.05);
}

.img-fullwidth {
    width: 100% !important;
    display: block;
}

/* Overlay Shade */
.box-hover-effect .effect-wrapper .overlay-shade {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.5s ease;
}

.box-hover-effect:hover .effect-wrapper .overlay-shade {
    opacity: 1;
}

/* Text Holder */
.box-hover-effect .effect-wrapper .text-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 13;
    opacity: 0;
    text-align: center;
    width: 80%;
    transition: all 0.3s ease;
}

.box-hover-effect:hover .effect-wrapper .text-holder {
    opacity: 1;
}

.box-hover-effect .effect-wrapper .text-holder .title {
    color: #fff;
}

.box-hover-effect .effect-wrapper .text-holder h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Icons Holder */
.box-hover-effect .effect-wrapper .icons-holder {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 13;
    opacity: 0;
    transition: all 0.4s ease;
}

.box-hover-effect:hover .effect-wrapper .icons-holder {
    opacity: 1;
    bottom: 30px;
}

.styled-icons {
    display: inline-block;
}

.styled-icons.icon-sm a {
    font-size: 13px;
    height: 30px;
    line-height: 30px;
    margin: 2px 7px 2px 0;
    width: 30px;
}

.styled-icons.icon-circled a {
    border-radius: 50%;
}

.styled-icons.icon-dark a {
    background-color: #333333;
    color: #eeeeee;
    display: block;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.icon-theme-colored.icon-dark a {
    background-color: #002E5B;
    color: #fff;
}

.styled-icons a:hover {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

/* Hover Link (invisible clickable area) */
.box-hover-effect .effect-wrapper .hover-link {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    background: none !important;
    color: transparent !important;
    display: block;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 992px) {
    .gallery-isotope.grid-3 .gallery-item {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .gallery-isotope.grid-3 .gallery-item {
        width: 100%;
    }
}



/* Technology Arsenal - Flip Card Styles */
.tech-arsenal-section {
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    padding: 30px 0;
    position: relative;
}

.tech-arsenal-header {
    text-align: center;
    margin-bottom: 50px;
}

.tech-arsenal-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.tech-arsenal-header h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    border-radius: 3px;
}

.tech-arsenal-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 20px auto 0;
}

/* Flip Card Container */
.flip-card {
    background-color: transparent;
    height: 220px;
    perspective: 1000px;
    cursor: pointer;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

/* Front and Back faces */
.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
}

/* Front face - Original Service Box */
.flip-card-front {
    background: white;
    border: 1px solid #eeeeee;
    padding: 30px;
}

.flip-card-front .icon {
    display: inline-block;
    height: 70px;
    width: 70px;
    text-align: center;
    line-height: 70px;
    border-radius: 8px;
    background-color: #002E5B;
    color: #fff;
    border-left: 3px solid #F21B51;
    float: left;
    margin-right: 0;
    margin-top: 5px;
}

.flip-card-front .icon-box-details {
    margin-left: 90px;
}

.flip-card-front .icon-box-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.flip-card-front .text-gray {
    color: #808080 !important;
}

.learn-more-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.learn-more-link:hover {
    color: var(--accent-purple);
    transform: translateX(5px);
}

/* Back face - Image */
.flip-card-back {
    transform: rotateY(180deg);
    background: #002E5B;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #eeeeee;
}

.flip-card-back img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flip-card-back .back-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    text-align: center;
}

.flip-card-back .back-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: white;
}

.flip-card-back .back-content p {
    font-size: 0.8rem;
    opacity: 0.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .flip-card {
        height: 200px;
    }
    
    .flip-card-front {
        padding: 20px;
    }
    
    .flip-card-front .icon {
        height: 55px;
        width: 55px;
        line-height: 55px;
    }
    
    .flip-card-front .icon i {
        font-size: 24px;
    }
    
    .flip-card-front .icon-box-details {
        margin-left: 70px;
    }
    
    .flip-card-front .icon-box-title {
        font-size: 1rem;
    }
}

/* ============================================
   FOOTER
   ============================================ */
.footer-modern {
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    color: #e2e8f0;
}
.footer-modern::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" opacity="0.03"><circle cx="20" cy="20" r="2" fill="white"/><circle cx="50" cy="50" r="3" fill="white"/><circle cx="80" cy="30" r="2" fill="white"/><circle cx="40" cy="80" r="2" fill="white"/><circle cx="90" cy="70" r="1.5" fill="white"/></svg>');
    background-repeat: repeat;
    pointer-events: none;
}
.footer-modern h5 { color: white; font-weight: 700; margin-bottom: 1.5rem; position: relative; display: inline-block; }
.footer-modern h5:after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal)); border-radius: 3px; }

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; transition: all 0.3s ease; }
.footer-links li a { color: #cbd5e1; text-decoration: none; transition: all 0.3s ease; display: inline-block; }
.footer-links li a:hover { color: var(--accent-orange); transform: translateX(5px); }
.footer-links li i { margin-right: 8px; color: var(--accent-teal); font-size: 0.85rem; }

.social-icons { display: flex; gap: 15px; margin-top: 20px; }
.social-icons a {
    width: 42px;
    height: 42px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}
.social-icons a:hover { background: var(--accent-orange); transform: translateY(-5px); color: white; }

.footer-divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 30px 0 20px; }
.copyright { text-align: center; color: #94a3b8; font-size: 0.9rem; }

/* ============================================
   RESPONSIVE IMAGES
   ============================================ */
.img-responsive {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
}



/* ============================================
   FIX: RESPONSIVE UPPER HEADER
   ============================================ */
@media (max-width: 768px) {
    .header-top .widget {
        font-size: 12px !important;
        line-height: 1.6rem !important;
        text-align: center !important;
        margin-top: 5px !important;
    }
    
    .header-top .pull-right {
        float: none !important;
        text-align: center !important;
    }
    
    .header-top .list-inline {
        text-align: center !important;
        margin-top: 5px !important;
    }
    
    .header-top .list-inline > li {
        padding: 0 10px !important;
    }
    
    .header-top .widget span {
        font-size: 12px !important;
        padding: 5px 10px !important;
    }
    
    .header-top .text-right {
        text-align: center !important;
    }
    
    .header-middle .widget {
        text-align: center !important;
        margin-bottom: 10px !important;
    }
    
    .header-middle .widget .pull-left {
        float: none !important;
        display: inline-block !important;
    }
    
    .header-middle .widget img {
        max-width: 180px !important;
        height: auto !important;
    }
    
    .header-middle .font-32 {
        font-size: 22px !important;
    }
    
    .header-middle .font-13 {
        font-size: 11px !important;
    }
    
    .header-middle .font-12 {
        font-size: 10px !important;
    }
    
    .header-middle .text-right {
        text-align: center !important;
    }
    
    .header-middle .sm-text-center {
        text-align: center !important;
    }
    
    .header-middle .sm-display-block {
        display: inline-block !important;
        float: none !important;
    }
    
    .header-middle .sm-pull-none {
        float: none !important;
    }
}

@media (max-width: 480px) {
    .header-top .widget {
        font-size: 10px !important;
        line-height: 1.3rem !important;
    }
    
    .header-top .widget span {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
    
    .header-middle .widget img {
        max-width: 140px !important;
    }
    
    .header-middle .font-32 {
        font-size: 18px !important;
    }
    
    .header-middle .font-13 {
        font-size: 10px !important;
    }
}




    



    


    



    
