/* ==========================================================================
   1. GLOBAL SYSTEM RESETS & VARIABLES
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght=300;400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8fbff;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

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

.text-center {
    text-align: center;
}
img{
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   2. REUSABLE UI BUTTONS SYSTEM
   ========================================================================== */
.btn, .btn-blue, .btn-outline, .about-btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary, .btn-blue, .about-btn {
    background: #2563eb;
    color: #fff;
}

.btn-primary:hover, .btn-blue:hover, .about-btn:hover {
    background-color: #0046e0;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, .25);
}

.btn-outline {
    border: 2px solid #cbd5e1;
    color: #0a2540;
    background: #fff;
}

.btn-outline:hover {
    border-color: #2563eb;
    background-color: #fff;
    color: #2563eb;
}
/* ==========================================================================
   1.1 HEADER STYLING
   ========================================================================== */
.main-header {
    background: #ffffff;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:12px;
}

/* Brand Branding & Logo Layout */
.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.5px;
}

.logo-text .logo-red {
    color: #ef4444; /* Vivid Red matching modern palettes */
}

/* Navigation System Links */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    color: #334155;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.nav-link:hover, 
.nav-link.active {
    color: #2563eb;
}

.nav-link i {
    font-size: 12px;
    opacity: 0.8;
}

/* Custom Header Button Tweaks */
.header-btn {
    padding: 12px 24px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
}

.menu-toggle{
    display: none;
}

/* ==========================================================================
   3. HERO SECTION
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 0;
    background: radial-gradient(circle at top left, rgba(0, 102, 255, .12), transparent 45%), #f8fbff;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.subtitle {
    color: #2563eb;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 72px;
    line-height: 1.05;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: #2563eb;
}

.hero-content p {
    max-width: 600px;
    color: #64748b;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

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

.stat {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat i {
    color: #2563eb;
    font-size: 22px;
}

.stat h4 {
    font-size: 18px;
    color: #0f172a;
}

.stat span {
    color: #64748b;
    font-size: 14px;
}

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

.hero-image img {
    width: 100%;
    max-width: 700px;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
}

/* Floating Animations */
.floating-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #fff;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
    font-size: 30px;
    animation: float 4s ease-in-out infinite;
}

.icon-1 { top: 40px; left: 30px; color: #95bf47; }
.icon-2 { right: 20px; top: 90px; color: #21759b; }
.icon-3 { bottom: 70px; right: 0; color: #2563eb; }
.icon-4 { left: 70px; bottom: 120px; color: #111827; }

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

/* ==========================================================================
   4. ABOUT SECTION
   ========================================================================== */
.about-section {
    padding: 120px 0;
    background: #ffffff;
}

.about-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: stretch;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 30px;
    display: block;
    object-fit: cover;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.team-card {
    position: absolute;
    left: 25px;
    bottom: 25px;
    background: #2563eb;
    color: #fff;
    padding: 22px 25px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 220px;
    box-shadow: 0 20px 40px rgba(37, 99, 235, .25);
}

.team-card .icon { font-size: 34px; }
.team-card h4 { font-size: 18px; margin-bottom: 4px; }
.team-card p { font-size: 15px; opacity: .9; }

.section-tag {
    color: #2563eb;
    font-weight: 700;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 18px;
}

.about-content h2 {
    font-size: 56px;
    line-height: 1.15;
    color: #081f4d;
    font-weight: 800;
    margin-bottom: 25px;
}

.about-content p {
    color: #6b7280;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 17px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 40px;
    margin: 40px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: #111827;
}

.feature i {
    color: #2563eb;
    font-size: 20px;
}

/* ==========================================================================
   5. SERVICES SECTION
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background: #f8fafc;
}

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

.section-title span {
    display: block;
    color: #2563eb;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-title h2 {
    font-size: 42px;
    color: #0f172a;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-title p {
    color: #64748b;
    font-size: 15px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 30px 22px;
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.service-icon { margin-bottom: 20px; }
.service-icon img { width: 50px; height: 50px; object-fit: contain; }
.service-card h3 { font-size: 24px; color: #111827; margin-bottom: 15px; line-height: 1.3; }
.service-card p { font-size: 14px; line-height: 1.7; color: #6b7280; margin-bottom: 20px; }

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 25px;
    flex: 1;
}

.service-card ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    color: #475569;
    font-size: 14px;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #2563eb;
    font-weight: bold;
}

.service-card a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}

.service-card a:hover { color: #1d4ed8; }

/* ==========================================================================
   6. HOW WE WORK TIMELINE PROCESS
   ========================================================================== */
.process-section {
    padding: 100px 0;
    background: linear-gradient(90deg, #001d4a 0%, #002f77 50%, #001d4a 100%);
    overflow: hidden;
}

.process-title {
    text-align: center;
    margin-bottom: 70px;
}

.process-title span {
    display: block;
    color: #2f7cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.process-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.process-wrapper {
    position: relative;
}

.process-line {
    position: absolute;
    top: 32px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed rgba(73, 130, 255, .45);
    z-index: 1;
}


.process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    position: relative;
    z-index: 2;
}

.process-item {
    text-align: center;
    color: #fff;
    padding: 0 10px;
}

.process-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #0d5bff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 0 0 6px rgba(13, 91, 255, .15), 0 10px 25px rgba(13, 91, 255, .35);
}

.process-icon i { color: #fff; font-size: 24px; }
.step-number { display: block; font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.process-item h3 { font-size: 22px; font-weight: 600; line-height: 1.3; margin-bottom: 12px; color: #fff; }
.process-item p { font-size: 14px; line-height: 1.7; color: rgba(255, 255, 255, .75); margin: 0; }

/* ==========================================================================
   7. PORTFOLIO RECENT PROJECTS
   ========================================================================== */
.portfolio-header-layout {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}
.portfolio-thumbnail-placeholder img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.portfolio-title-group { text-align: left; }

.portfolio-title-group span {
    color: #0d5bff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.portfolio-title-group h2 { font-size: 42px; color: #0a2540; font-weight: 800; margin: 0 0 10px 0; }
.portfolio-title-group p { color: #666; margin: 0; font-size: 15px; }

.portfolio-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.portfolio-card-item {
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: left;
}

.portfolio-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.portfolio-thumbnail-placeholder {
    height: 210px;
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-bottom: 1px solid #e2e8f0;
}

.portfolio-body-content { padding: 24px; }
.portfolio-body-content h3 { font-size: 18px; color: #0a2540; margin: 0 0 10px 0; font-weight: 700; }
.portfolio-body-content p { font-size: 14px; color: #666; margin: 0; line-height: 1.6; }

/* ==========================================================================
   8. STATS BANNER BAR
   ========================================================================== */
.stats-banner-row {
    background-color: #0d5bff;
    color: #fff;
    padding: 45px 0;
}

.stats-banner-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-metric-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-align: left;
}

.stat-metric-card i { font-size: 32px; opacity: 0.9; }
.stat-val {
    min-width: 150px;
}
.stat-val h3 { font-size: 32px; font-weight: 800; margin: 0; line-height: 1.2; }
.stat-val p { font-size: 13px; margin: 4px 0 0 0; color: rgba(255, 255, 255, 0.85); }

/* ==========================================================================
   9. TESTIMONIALS (OWL SLIDER OVERRIDES)
   ========================================================================== */
.testimonials-section { background-color: #fff; }
.section-header-centered { margin-bottom: 50px; }

.section-header-centered span {
    color: #0d5bff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.section-header-centered h2 { font-size: 42px; color: #0a2540; font-weight: 800; margin: 0; }

.testimonial-carousel-card {
    background-color: #f8fafc;
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    text-align: left;
    margin: 15px 10px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.testimonial-stars { color: #f1c40f; font-size: 15px; margin-bottom: 20px; }
.testimonial-carousel-card .quote-text { font-size: 14px; line-height: 1.7; color: #475569; margin-bottom: 25px; }
.profile-meta-row { display: flex; align-items: center; gap: 12px; }
.author-avatar-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.author-avatar-placeholder { width: 60px; height: 60px; background-color: #cbd5e1; border-radius: 50%; overflow: hidden;}
.author-info-block h4 { font-size: 14px; color: #0a2540; margin: 0; font-weight: 700; }
.author-info-block p { font-size: 12px; color: #64748b; margin: 2px 0 0 0; }

/* Customizing Owl Engine Slider Dots */
.owl-theme .owl-dots .owl-dot span {
    width: 8px;
    height: 8px;
    background: #cbd5e1;
    transition: all 0.3s;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #0d5bff;
    width: 24px;
}

/* ==========================================================================
   10. CALL TO ACTION SECTION
   ========================================================================== */
.conversion-cta-section {
    background: url('/assets/images/background.png');
    border-top: 1px solid #e2e8f0;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center bottom;
}

.conversion-grid-split {
    width: 90%;
    max-width: max-content;
    margin: 0 auto;
}

.conversion-grid-split h2 { font-size: 42px; color: #0a2540; font-weight: 800; margin: 0 0 15px 0; line-height: 1.2; }

.conversion-grid-split p {
    color: #666;
    font-size: 16px;
    margin: 0 0 35px 0;
    max-width: 540px;
}

.cta-button-cluster {
    display: flex;
    gap: 15px;
}
div#lightbox {
    display: flex;
    flex-direction: column-reverse;
}
header i.fas.fa-chevron-down {
    display: none;
}

/* ==========================================================================
   12. FOOTER LAYOUT SYSTEM
   ========================================================================== */
.main-footer-section {
    background-color: #001a3d; /* Rich dark navy background */
    color: #ffffff;
    padding: 80px 0 0 0;
    font-size: 14px;
}

.footer-grid-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 60px;
}

.footer-col h3 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    position: relative;
}

/* Brand Identity Styling inside Footer */
.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.footer-logo-text .logo-red {
    color: #ef4444;
}

.footer-tagline {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Social Media Circular Buttons */
.footer-social-links {
    display: flex;
    gap: 12px;
}

.footer-social-links a {
    width: 36px;
    height: 36px;
    background: #1e3a8a; /* Deep blue icon background */
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.25s ease, transform 0.25s ease;
}

.footer-social-links a:hover {
    background: #2563eb;
    transform: translateY(-3px);
}

/* Standard Footer Navigation Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease, padding-left 0.2s ease;
    display: inline-block;
}

.footer-links-list li a:hover {
    color: #2563eb;
    padding-left: 4px;
}

/* Contact Details Layout with Icons */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #cbd5e1;
}

.footer-contact-list li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-contact-list li a:hover {
    color: #2563eb;
}

.contact-icon {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #3b82f6; /* Accent blue for icons */
    flex-shrink: 0;
}

/* Bottom Copy Bar System */
.footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 25px 0;
}

.footer-copyright-bar p {
    color: #94a3b8;
    font-size: 13px;
    margin: 0;
}

/* ==========================================================================
   13. FOOTER RESPONSIVE ADJUSTMENTS
   ========================================================================== */

/* ==========================================================================
   11. GLOBAL RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media(max-width: 1200px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    
    .process-grid {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 50px;
    }
    
    .process-line { display: none; }
    
    .conversion-grid-split p { margin-left: auto; margin-right: auto; }
    .cta-button-cluster { justify-content: center;  }
}

@media(max-width: 992px) {
    .hero .container, .about-section .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p { margin: auto auto 40px; }
    .hero-buttons, .hero-stats { justify-content: center; }
    .hero-content h1 { font-size: 52px; }
    .about-content h2,.conversion-grid-split h2{ font-size: 32px; }
    .about-features { grid-template-columns: 1fr; }
    
    .stats-banner-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 30px;
    }
    
    .portfolio-header-layout {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
 

.footer-grid-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    .conversion-cta-section{
        background-size: cover;
      
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: 0;
        cursor: pointer;
        background: #2563eb;
        height: 45px;
        width: 45px;
        align-items: center;
        justify-content: center;
    }

    .menu-toggle span {
        width: 25px;
        height: 3px;
        background: #FFF;
        display: block;
    }

    .nav-menu {
        display: none;
    }

    .nav-menu.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        width: 100%;
        top: 100%;
        left: 0;
        background: #fff;
        padding: 20px;
        border-top: 1px solid #2563eb;
        align-items: normal;
        gap: 14px;
    }
.header-action {
    display: flex;
    align-items: center;
    gap: 12px;
}


    
}

@media(max-width: 768px) {
    .hero { padding: 60px 0; }
    .hero-content h1 { font-size: 40px; }
    .hero-content p { font-size: 16px; }
    .floating-icon { width: 55px; height: 55px; font-size: 24px; }
    
    .about-section { padding: 80px 0; }
    .about-content h2 { font-size: 32px; }
    .team-card { min-width: 180px; padding: 18px; }
    
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .section-title h2, .process-title h2 { font-size: 42px; }
    
    .process-section { padding: 80px 0; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }

   
}

@media(max-width: 576px) {
    .services-grid, .process-grid, .stats-banner-grid { grid-template-columns: 1fr; }
    .services-section { padding: 70px 0; }
    .section-title h2, .process-title h2 { font-size: 28px; }
     .main-footer-section {
        padding: 60px 0 0 0;
    }
    .footer-grid-container {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-col h3 {
        margin-bottom: 15px;
    }
    .cta-button-cluster {
    
    flex-wrap: wrap;
    justify-content: flex-start;
}
.hero-stats{
    gap: 12px;
}
.stat {
    text-align: left;
    flex: 1;
    min-width: 45%;
    background: #ffff;
        padding: 7px;
        box-shadow: 0 30px 80px rgba(0, 0, 0, .12);
        border-radius: 10px;
}

.hero-image img, .about-image img {
        aspect-ratio: 1 / 1.5;
        object-fit: cover;
    }
 

a.btn-blue.header-btn {
          width: 0px;
        position: relative;
        overflow: hidden;
        background: transparent;
    }
  a.btn-blue.header-btn:after {
    content: "\f590";
    font-family: "Font Awesome 6 Free";
    font-size: 26px;
    position: absolute;
    color: #0d5bff;
    width: 100%;
    height: 100%;
    left: 0;
    align-content: center;
    text-align: center;
    background: #fff;
}
    
}


