/*
Theme Name: 914Digital
Theme URI: https://914digital.com
Description: Bootstrap 25
Author: 914Digital
Author URI: https://914digital.com
Version: 1.0
License: MIT License
License URI: http://opensource.org/licenses/MIT
*/

/* ==========================================================================
   TABLE OF CONTENTS
   ==========================================================================
   1. Fonts & Base Styles
   2. Typography & Links
   3. Buttons (Global)
   4. Navigation
   5. Mobile Menu
   6. Hero Sections
   7. Services
   8. Our Work / Portfolio
   9. Contact Page
   10. About Page
   11. Blog Section
   12. Tech Stack Section
   13. Login Modal
   14. Cart Dropdown
   15. Forms
   16. Utilities
   17. Footer
   ========================================================================== */

/* ==========================================================================
   1. FONTS & BASE STYLES
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Muli:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    background-color: #fff;
    font-family: 'Muli', sans-serif;
    scroll-behavior: smooth;
    padding-top: 80px;
}

img {
    max-width: 100%;
    height: auto;
}

/* ==========================================================================
   2. TYPOGRAPHY & LINKS
   ========================================================================== */

a {
    text-decoration: none;
}

h1 {
  font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   3. BUTTONS (GLOBAL)
   ========================================================================== */

.btn-cta-banner {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-banner:hover {
    background: #fff;
    color: #2877db;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
}

.btn-cta-banner i {
    transition: transform 0.3s ease;
}

.btn-cta-banner:hover i {
    transform: translateX(5px);
}

/* ==========================================================================
   4. NAVIGATION
   ========================================================================== */

/* Admin Bar Fix */
.admin-bar .navbar {
    top: 32px;
}

.admin-bar .service-hero {
    margin-top: 0;
}

@media (max-width: 782px) {
    .admin-bar .navbar {
        top: 46px;
    }
}

/* Main Navbar */
.navbar {
    background: #2877db;
    font-family: 'Poppins', sans-serif;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 15px 0 0 0;
}

.navbar.scrolled {
    background: #2877db !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    padding: 10px 0 0 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 15px;
    padding-bottom: 15px;
}

.navbar.scrolled .container {
    padding-top: 0;
    padding-bottom: 10px;
}

/* Logo */
.navbar-brand {
    flex-shrink: 0;
    z-index: 10;
    margin-right: auto;
}

.navbar-brand img {
    width: 175px;
}

/* Menu */
.navbar-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.navbar-menu .navbar-nav {
    display: flex;
    flex-direction: row;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar-menu .navbar-nav .nav-item {
    margin: 0 15px;
}

.navbar-menu .navbar-nav .nav-item a,
.navbar-menu .navbar-nav .nav-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    color: #fff !important;
    text-decoration: none;
    padding: 5px 0;
    display: block;
    border-bottom: 2px solid transparent;
}

.navbar-menu .navbar-nav .nav-item a:hover,
.navbar-menu .navbar-nav .nav-link:hover,
.navbar-menu .navbar-nav .current_page_item .nav-link {
    color: #ccc !important;
    border-bottom: 2px solid;
}

/* Right Side (Phone + Icons) */
.navbar-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    z-index: 10;
}

.navbar-phone {
    flex-shrink: 0;
}

.navbar-phone .phone-btn {
    color: #ffffff;
    background: transparent;
    border: 2px solid #2877db;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 300;
    display: inline-block;
}

.navbar-phone .phone-btn:hover {
    color: #fff;
    background: #2877db;
    border-color: #2877db;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 119, 219, 0.4);
}

.navbar-phone .phone-btn i {
    margin-right: 8px;
}

/* Navbar Icons */
.navbar-icons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-icon {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.navbar-icon:hover {
    color: #ccc;
    transform: translateY(-2px);
}

/* Navigation Responsive */
@media (max-width: 1199px) {
    .navbar-phone .phone-btn {
        padding: 6px 12px;
        font-size: 14px;
    }

    .navbar-phone .phone-btn i {
        display: none;
    }

    .navbar-menu .navbar-nav .nav-item {
        margin: 0 8px;
    }

    .navbar-menu .navbar-nav .nav-item a,
    .navbar-menu .navbar-nav .nav-link {
        font-size: 14px;
    }

    .navbar-right {
        gap: 10px;
    }
}

@media (min-width: 992px) {
    .mobile-menu-toggle,
    .mobile-menu-overlay,
    .mobile-icons {
        display: none !important;
    }
}

/* ==========================================================================
   5. MOBILE MENU
   ========================================================================== */

/* Toggle Button */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    position: relative;
    z-index: 1001;
    margin-left: 15px;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle:hover .hamburger-line {
    background-color: #ccc;
}

/* Mobile Icons */
.mobile-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: auto;
}

.mobile-icon {
    color: #fff;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    position: relative;
}

.mobile-icon:hover {
    color: #2877db;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    font-family: 'Poppins', sans-serif;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

/* Header */
.mobile-menu-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 25px;
    border-bottom: none;
}

.mobile-logo {
    display: none;
}

.mobile-logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, color 0.3s ease;
}

.mobile-menu-close:hover {
    color: #2877db;
    transform: rotate(90deg);
}

/* Content */
.mobile-menu-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0 20px;
}

/* Phone */
.mobile-menu-phone {
    text-align: center;
    padding: 0 0 15px 0;
    margin-bottom: 0;
    border-bottom: none;
}

.mobile-phone-btn {
    display: inline-block;
    color: #2877db;
    background: transparent;
    border: 2px solid #2877db;
    padding: 12px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.mobile-phone-btn:hover {
    background: #2877db;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(40, 119, 219, 0.4);
}

.mobile-phone-btn i {
    margin-right: 10px;
}

/* User Links - Above Nav */
.mobile-menu-user {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 10px 30px 15px;
    margin: 0;
    border: none;
}

.mobile-menu-user .mobile-account-link,
.mobile-menu-user .mobile-logout-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    padding: 6px 0;
}

.mobile-menu-user .mobile-account-link:hover,
.mobile-menu-user .mobile-logout-link:hover {
    color: #2877db;
}

.mobile-menu-user .mobile-account-link i,
.mobile-menu-user .mobile-logout-link i {
    width: 20px;
    text-align: center;
}

/* Navigation */
.mobile-nav {
    display: block;
    margin-top: 0;
    flex-grow: 0;
}

/* Menu List */
.mobile-menu-list {
    list-style: none;
    padding: 0 30px;
    margin: 0;
    width: 100%;
}

.mobile-menu-list li {
    opacity: 0;
    transform: translateX(30px);
    animation: slideInMenu 0.5s forwards;
    margin: 0;
    padding: 0;
}

.mobile-menu-overlay.active .mobile-menu-list li:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(6) { animation-delay: 0.35s; }
.mobile-menu-overlay.active .mobile-menu-list li:nth-child(7) { animation-delay: 0.4s; }

@keyframes slideInMenu {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-menu-list li a,
.mobile-menu-list li a.nav-link {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    padding: 10px 0;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu-list li a::after {
    display: none;
}

.mobile-menu-list li a:hover,
.mobile-menu-list li a.current-menu-item {
    color: #2877db;
}

/* Submenu */
.mobile-menu-list li .sub-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.mobile-menu-list li .sub-menu li a {
    font-size: 18px;
    font-weight: 400;
    padding: 8px 0;
}

/* Footer */
.mobile-menu-footer {
    display: none;
}

/* Body State */
body.mobile-menu-open {
    overflow: hidden;
}

/* Mobile Menu Responsive */
@media (max-width: 768px) {
    .mobile-menu-list li a,
    .mobile-menu-list li a.nav-link {
        font-size: 20px;
    }

    .mobile-phone-btn {
        font-size: 16px;
        padding: 10px 25px;
    }
}

@media (max-width: 480px) {
    .mobile-menu-list li a,
    .mobile-menu-list li a.nav-link {
        font-size: 18px;
    }

    .mobile-menu-header {
        padding: 15px 20px;
    }

    .mobile-menu-content {
        padding: 0 15px;
    }
}

/* ==========================================================================
   6. HERO SECTIONS
   ========================================================================== */

/* --- Hero Banner (Basic) --- */
.hero-banner {
    background-color: #000;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    padding: 80px 0;
    position: sticky;
    top: 0;
    overflow: hidden;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
    position: relative;
    z-index: 10;
}

.hero-subheadline {
    font-family: 'Muli', sans-serif;
    font-size: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #2877db;
    color: #2877db;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: #2877db;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.4);
}

/* --- Animated Grid --- */
.hero-grid-container {
    position: relative;
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    right: -100px;
}

.hero-grid {
    position: relative;
    z-index: 1;
}

.grid-box {
    background: #fff;
    border: 1px solid rgb(40 119 219 / 35%);
    position: relative;
    transition: all 0.8s ease;
    z-index: 1;
}

.grid-box.active {
    border-color: #fff;
    border-width: 2px;
    box-shadow: 0 0 20px rgba(40, 119, 219, 0.6), inset 0 0 20px rgba(40, 119, 219, 0.2);
    background: rgba(40, 119, 219, 0.1);
    animation: pulse 4s ease-in-out infinite;
    background-color: #2877db;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
}

/* --- Animated Hero --- */
.animated-hero {
    position: sticky;
    top: 0;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #040624;
    display: flex;
    align-items: center;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
}

.animated-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2877db;
    z-index: 1;
}

.animated-hero .container {
    position: relative;
    z-index: 2;
}

.animated-hero-content {
    color: #fff;
    position: relative;
    z-index: 10;
}

/* Eyebrow */
.hero-eyebrow {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 10;
}

.hero-eyebrow.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.eyebrow-line {
    width: 60px;
    height: 2px;
    background: #fff;
    margin-right: 15px;
}

/* Main Headline */
.hero-main-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 99px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #fff;
    position: relative;
    z-index: 10;
}

.headline-line {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.headline-line.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.accent-char {
    color: #fff;
    font-weight: 300;
}

/* Description */
.hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 22px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-description.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Video Button */
.hero-video-button {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-video-button.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.video-play-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    text-decoration: none;
}

.video-play-btn::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 1px solid rgba(40, 119, 219, 0.3);
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.video-play-btn:hover {
    background: #2877db;
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(40, 119, 219, 0.6);
}

.video-play-btn .play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 4px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    z-index: 2;
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 10px;
}

.video-modal-close:hover {
    color: #2877db;
    transform: rotate(90deg);
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    background: #000;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Hero Responsive */
@media (max-width: 1200px) {
    .hero-main-headline {
        font-size: 74px;
    }
}

@media (max-width: 1199px) {
    .hero-headline {
        font-size: 52px;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        min-height: auto;
        padding: 60px 0;
    }

    .hero-banner,
    .animated-hero {
        position: relative;
        top: auto;
    }

    .hero-grid-container {
        height: 400px;
    }

    .hero-headline {
        font-size: 42px;
    }

    .hero-subheadline {
        font-size: 20px;
    }

    .hero-main-headline {
        font-size: 52px;
    }

    .animated-hero {
        padding: 60px 0;
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .hero-headline {
        font-size: 36px;
        margin-bottom: 15px;
    }

    .hero-subheadline {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-grid-container {
        height: auto;
        min-height: 400px;
    }

    .hero-banner {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-main-headline {
        font-size: 42px;
    }

    .hero-description {
        font-size: 16px;
    }

    .video-play-btn {
        width: 60px;
        height: 60px;
    }

    .video-play-btn .play-icon svg {
        width: 18px;
        height: 18px;
    }

    .animated-hero {
        padding: 40px 0;
        min-height: auto;
    }

    .animated-hero-content {
        padding-right: 30px;
        background-color: #2877db;
    }
}

@media (max-width: 575px) {
    .hero-headline {
        font-size: 32px;
    }

    .hero-subheadline {
        font-size: 14px;
    }

    .hero-banner {
        padding: 30px 0;
    }

    .hero-main-headline {
        font-size: 32px;
        margin-bottom: 20px;
    }

    .hero-eyebrow {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .eyebrow-line {
        width: 0px;
        margin-right:0;
    }

    .hero-description {
        font-size: 17px;
        margin-bottom: 30px;
    }

    .animated-hero {
        padding: 30px 0;
    }

    .animated-hero-content {
        padding-right: 20px;
    }
}

/* ==========================================================================
   7. SERVICES
   ========================================================================== */

/* --- Services Section (Homepage) --- */
.services-section {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.services-header {
    margin-bottom: 60px;
}

.services-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-headline.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-subheadline {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.services-subheadline.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.services-grid {
    margin-top: 40px;
    justify-content: center;
}

/* Service Card */
.service-card {
    position: relative;
    height: 100%;
    min-height: 280px;
}

.service-card-inner {
    position: relative;
    height: 100%;
    padding: 30px 20px;
    background: transparent;
    border-radius: 12px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 1;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 3px solid #2877db;
    border-radius: 12px;
    clip-path: polygon(0 0, 0 0, 0 0, 0 0);
    transition: clip-path 1s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 2;
    pointer-events: none;
}

.service-card.draw-in::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.service-card .service-icon,
.service-card .service-title,
.service-card .service-description,
.service-card .service-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.service-card.draw-in .service-icon {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.service-card.draw-in .service-title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.service-card.draw-in .service-description {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.service-card.draw-in .service-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.85s;
}

.service-icon {
    font-size: 42px;
    color: #2877db;
    margin-bottom: 20px;
    transition: all 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-title {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
    transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.service-description {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.7);
    margin-bottom: 20px;
    flex-grow: 1;
    transition: color 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease, opacity 0.5s ease, transform 0.5s ease;
}

.service-btn:hover {
    background: #1f5fa8;
    color: #fff;
    transform: translateX(5px);
}

.service-btn i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-btn:hover i {
    transform: translateX(5px);
}

.service-card:hover .service-card-inner {
    background: rgba(40, 119, 219, 0.05);
    transform: translateY(-5px);
}

/* Services Footer */
.services-footer {
    margin-top: 50px;
}

.btn-services-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 35px;
    background: transparent;
    border: 2px solid #000;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-services-all:hover {
    background: #2877db;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
}

.btn-services-all i {
    transition: transform 0.3s ease;
}

.btn-services-all:hover i {
    transform: translateX(5px);
}

/* --- Single Service Hero --- */
.service-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: #000;
    padding: 150px 0 100px;
    overflow: hidden;
}

.service-hero-icon {
    font-size: 48px;
    color: #2877db;
    margin-bottom: 20px;
}

.service-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.2;
}

.service-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0;
    line-height: 1.6;
}

/* --- Single Service Content --- */
.service-content {
    position: relative;
    z-index: 10;
    background: #fff;
    margin-top: 350px;
    padding: 50px 0;
}

.service-content-inner {
    font-family: 'Muli', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.service-content-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px;
}

.service-content-inner h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 30px 0 15px;
}

.service-content-inner p {
    margin-bottom: 20px;
}

.service-content-inner ul,
.service-content-inner ol {
    margin: 20px 0;
    padding-left: 25px;
}

.service-content-inner li {
    margin-bottom: 10px;
}

/* --- Service Sidebar --- */
.service-sidebar {
    position: sticky;
    top: 120px;
}

.service-cta-box {
    background: linear-gradient(135deg, #2877db 0%, #1f5fa8 100%);
    padding: 35px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.service-cta-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}

.service-cta-box p {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
}

.btn-service-cta {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: #fff;
    color: #2877db;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-service-cta:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

/* Other Services */
.service-other {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
}

.service-other h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e9ecef;
}

.service-other-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-other-list li {
    margin-bottom: 12px;
}

.service-other-list li:last-child {
    margin-bottom: 0;
}

.service-other-list a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
}

.service-other-list a:hover {
    background: #2877db;
    color: #fff;
    transform: translateX(5px);
}

.service-other-list a i {
    font-size: 16px;
    color: #2877db;
    width: 20px;
    transition: color 0.3s ease;
}

.service-other-list a:hover i {
    color: #fff;
}

/* --- Service CTA Banner --- */
.service-cta-banner {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    padding: 80px 0;
    position: relative;
    z-index: 10;
}

.service-cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.service-cta-banner p {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* --- Service Features --- */
.feature-icon {
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 28px;
}

.feature-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.feature-content p {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* --- Services Page --- */
.services-page-hero {
    background: #2877db;
    padding: 60px 0;
}

.services-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.services-page-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.services-page-list {
    padding: 80px 0;
    background: #fff;
}

.service-page-card {
    display: flex;
    gap: 25px;
    padding: 35px;
    background: #f8f9fa;
    border-radius: 12px;
    text-decoration: none;
    height: 100%;
    transition: all 0.3s ease;
}

.service-page-card:hover {
    background: #fff;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.service-page-icon {
    flex-shrink: 0;
    width: 70px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page-icon i {
    font-size: 40px;
    color: #1266d0;
}

.service-page-content {
    flex: 1;
}

.service-page-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.service-page-card:hover .service-page-card-title {
    color: #2877db;
}

.service-page-card-desc {
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

.service-page-link {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2877db;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-page-link i {
    transition: transform 0.3s ease;
}

.service-page-card:hover .service-page-link i {
    transform: translateX(5px);
}

/* Services Page CTA */
.services-page-cta {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    padding: 80px 0;
}

.services-page-cta h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.services-page-cta p {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-services-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-services-cta:hover {
    background: #fff;
    color: #2877db;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
}

.btn-services-cta i {
    transition: transform 0.3s ease;
}

.btn-services-cta:hover i {
    transform: translateX(5px);
}

/* Services Responsive */
@media (max-width: 991px) {
    .services-section {
        padding: 80px 0;
    }

    .services-headline {
        font-size: 42px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .service-card {
        min-height: 260px;
    }

    .service-hero {
        padding: 120px 0 80px;
    }

    .service-hero-title {
        font-size: 42px;
    }

    .service-hero-icon {
        font-size: 48px;
    }

    .service-content {
        padding: 60px 0;
    }

    .service-sidebar {
        position: static;
        margin-top: 50px;
    }

    .service-cta-banner h2 {
        font-size: 28px;
    }

    .service-cta-banner .text-lg-end {
        margin-top: 30px;
    }

    .services-page-title {
        font-size: 36px;
    }

    .services-page-list {
        padding: 60px 0;
    }

    .service-page-card {
        padding: 25px;
    }

    .service-page-card-title {
        font-size: 20px;
    }

    .services-page-cta h2 {
        font-size: 28px;
    }

    .services-page-cta .text-lg-end {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .services-headline {
        font-size: 36px;
    }

    .services-subheadline {
        font-size: 16px;
    }

    .service-card {
        min-height: 240px;
    }

    .service-card-inner {
        padding: 25px 15px;
    }

    .service-icon {
        font-size: 36px;
    }

    .service-title {
        font-size: 20px;
    }

    .service-description {
        font-size: 14px;
    }

    .service-hero {
        padding: 100px 0 60px;
    }

    .service-hero-title {
        font-size: 32px;
    }

    .service-hero-description {
        font-size: 16px;
    }

    .service-hero-icon {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .service-cta-banner {
        padding: 60px 0;
        text-align: center;
    }

    .service-cta-banner h2 {
        font-size: 24px;
    }

    .service-content {
        margin-top: 300px;
    }

    .services-page-hero {
        padding: 50px 0;
    }

    .services-page-title {
        font-size: 32px;
    }

    .services-page-description {
        font-size: 16px;
    }

    .service-page-card {
        flex-direction: column;
        gap: 20px;
        padding: 25px;
    }

    .service-page-icon {
        width: 60px;
        height: 60px;
    }

    .service-page-icon i {
        font-size: 24px;
    }

    .services-page-cta {
        padding: 60px 0;
        text-align: center;
    }

    .services-page-cta h2 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .services-headline {
        font-size: 32px;
    }

    .service-card-inner {
        padding: 20px 15px;
    }

    .service-card {
        min-height: 220px;
    }
}

/* ==========================================================================
   8. OUR WORK / PORTFOLIO
   ========================================================================== */

/* --- Our Work Section (Homepage) --- */
.our-work-section {
    background: #001125;
    padding: 100px 0;
    position: relative;
    z-index: 10;
}

.our-work-header {
    padding-right: 40px;
}

.our-work-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.our-work-tagline {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.btn-our-work {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #2877db;
    color: #2877db;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-our-work:hover {
    background: #2877db;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
}

.btn-our-work i {
    transition: transform 0.3s ease;
}

.btn-our-work:hover i {
    transform: translateX(5px);
}

/* Work Grid */
.our-work-grid {
    margin: 0;
}

.work-item {
    display: block;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.work-image {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.work-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.work-item:hover .work-image img {
    transform: scale(1.05);
    filter: brightness(0.3);
}

.work-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 30px;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-logo {
    max-width: 180px;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: 0.1s;
}

.work-item:hover .work-logo {
    transform: translateY(0);
    opacity: 1;
}

.work-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
    transition-delay: 0.1s;
}

.work-item:hover .work-title {
    transform: translateY(0);
    opacity: 1;
}

/* --- Work Page (Archive) --- */
.work-hero {
    background: #2877db;
    padding: 80px 0;
}

.work-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.work-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

.btn-work-filter {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-work-filter:hover {
    background: transparent;
    color: #ccc;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
    border: 2px solid !important;
}

/* Active Filters */
.work-active-filters {
    background: #f8f9fa;
    padding: 0;
}

.active-filters-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 0;
    flex-wrap: wrap;
}

.active-filters-label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.active-filters-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: #2877db;
    color: #fff;
    font-family: 'Muli', sans-serif;
    font-size: 13px;
    border-radius: 20px;
}

.filter-tag button {
    background: none;
    border: none;
    color: #fff;
    cursor: pointer;
    padding: 0;
    font-size: 14px;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.filter-tag button:hover {
    opacity: 1;
}

.clear-all-filters {
    background: none;
    border: none;
    color: #2877db;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    transition: color 0.3s ease;
}

.clear-all-filters:hover {
    color: #1f5fa8;
    text-decoration: underline;
}

/* Work Grid Section */
.work-grid-section {
    padding: 80px 0;
    background: #fff;
}

.work-grid-item {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.work-grid-item.hidden {
    display: none;
}

.work-grid-item.fade-out {
    opacity: 0;
    transform: scale(0.95);
}

/* No Results */
.no-results-message {
    text-align: center;
    padding: 80px 20px;
}

.no-results-message i {
    font-size: 60px;
    color: #ddd;
    margin-bottom: 20px;
}

.no-results-message h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.no-results-message p {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #666;
}

.no-results-message button {
    background: none;
    border: none;
    color: #2877db;
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

/* Work CTA Banner */
.work-cta-banner {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    padding: 80px 0;
}

.work-cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.work-cta-banner p {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Filter Offcanvas */
.filter-offcanvas {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    width: 380px !important;
}

.filter-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 30px;
}

.filter-offcanvas .offcanvas-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
}

.filter-offcanvas .offcanvas-body {
    padding: 30px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-group-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2877db;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.filter-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    padding-left: 32px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
}

.filter-checkbox:hover {
    color: #fff;
}

.filter-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.filter-checkbox .checkmark {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.filter-checkbox:hover .checkmark {
    border-color: #2877db;
}

.filter-checkbox input:checked ~ .checkmark {
    background: #2877db;
    border-color: #2877db;
}

.filter-checkbox .checkmark:after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.filter-label {
    flex: 1;
}

.filter-count {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 10px;
}

.offcanvas-footer {
    display: flex;
    gap: 15px;
    padding: 20px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-clear-filters {
    flex: 1;
    padding: 14px 20px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-clear-filters:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.btn-apply-filters {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 20px;
    background: #2877db;
    border: none;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-apply-filters:hover {
    background: #1f5fa8;
    transform: translateY(-2px);
}

/* --- Portfolio Single --- */
.portfolio-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
    background: #000;
}

.admin-bar .portfolio-hero {
    top: 32px;
    height: calc(100vh - 32px);
}

@media (max-width: 782px) {
    .admin-bar .portfolio-hero {
        top: 46px;
        height: calc(100vh - 46px);
    }
}

.portfolio-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.portfolio-hero-image {
    width: 100%;
    height: 100%;
}

.portfolio-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.portfolio-hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.portfolio-hero-logo {
    margin-bottom: 30px;
}

.portfolio-hero-logo img {
    max-width: 320px;
    max-height: 100px;
    width: auto;
    height: auto;
}

.portfolio-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}

.portfolio-hero-button {
    margin-top: 10px;
}

.btn-portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: transparent;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: 2px solid;
}

.btn-portfolio-link:hover {
    background: #fff;
    color: #2877db;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
}

/* Back to Portfolio Button */
.btn-back-portfolio {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border: 2px solid #2680EB;
    color: #2680EB;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-back-portfolio:hover {
    background: transparent;
    color: #2680EB;
    opacity: 0.7;
}

/* Scroll Indicator */
.portfolio-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    text-decoration: none;
}

.scroll-arrow {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 2s ease-in-out infinite;
    transition: all 0.3s ease;
}

.scroll-arrow i {
    color: #fff;
    font-size: 20px;
    transition: color 0.3s ease;
}

.portfolio-scroll-indicator:hover .scroll-arrow {
    border-color: #2877db;
    background: rgba(40, 119, 219, 0.2);
}

.portfolio-scroll-indicator:hover .scroll-arrow i {
    color: #2877db;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Back to Portfolio Navigation */
.portfolio-back-nav {
    position: fixed;
    top: 137px;
    left: 105px;
    z-index: 100;
}

.portfolio-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.portfolio-back-link:hover {
    color: #eee;
}

.portfolio-back-link svg {
    transition: transform 0.3s ease;
}

.portfolio-back-link:hover svg {
    transform: translateX(-4px);
}

/* Hide when scrolled past hero */
.portfolio-back-nav.hidden {
    opacity: 0;
    pointer-events: none;
}

/* Responsive */
@media (max-width: 767px) {
    .portfolio-back-nav {
        top: 125px;
        left: 20px;
    }
}

/* Portfolio Content */
.portfolio-content {
    position: relative;
    z-index: 10;
    margin-top: 100vh;
    background: #fff;
    padding: 80px 0;
}

.portfolio-content-inner {
    font-family: 'Muli', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.portfolio-content-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px;
}

.portfolio-content-inner p {
    margin-bottom: 20px;
}

/* Portfolio Sidebar */
.portfolio-sidebar {
    position: sticky;
    top: 120px;
}

.portfolio-meta {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.portfolio-meta:last-child {
    border-bottom: none;
}

.portfolio-meta h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.portfolio-meta a {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #2877db;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: color 0.3s ease;
}

.portfolio-meta a:hover {
    color: #1f5fa8;
}

.portfolio-meta ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.portfolio-meta ul li {
    margin-bottom: 5px;
}

/* Portfolio Gallery */
.portfolio-gallery {
    position: relative;
    z-index: 10;
    padding: 0 0 60px;
}

.gallery-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.gallery-item {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.gallery-thumb {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #e9ecef;
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover .gallery-thumb img {
    transform: scale(1.1);
    filter: brightness(0.6);
}

/* Gallery Animated Circles */
.gallery-item::before,
.gallery-item::after,
.gallery-thumb::before,
.gallery-thumb::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
}

.gallery-item::before {
    width: 40px;
    height: 40px;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.gallery-item::after {
    width: 70px;
    height: 70px;
    transition: transform 0.5s ease 0.1s, opacity 0.3s ease 0.1s;
}

.gallery-thumb::before {
    width: 100px;
    height: 100px;
    transition: transform 0.5s ease 0.2s, opacity 0.3s ease 0.2s;
}

.gallery-thumb::after {
    width: 130px;
    height: 130px;
    transition: transform 0.5s ease 0.3s, opacity 0.3s ease 0.3s;
}

.gallery-item:hover::before,
.gallery-item:hover::after,
.gallery-item:hover .gallery-thumb::before,
.gallery-item:hover .gallery-thumb::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Other Projects */
.portfolio-other {
    position: relative;
    z-index: 10;
    background: #fff;
    padding: 80px 0;
    border-top:1px solid #eee;
}

.other-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #2877db;
    margin-bottom: 40px;
}

/* Portfolio CTA Banner */
.portfolio-cta-banner {
    position: relative;
    z-index: 10;
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    padding: 80px 0;
}

.portfolio-cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.portfolio-cta-banner p {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Portfolio Responsive */
@media (max-width: 991px) {
    .our-work-section {
        padding: 80px 0;
    }

    .our-work-header {
        padding-right: 0;
        text-align: center;
        margin-bottom: 50px;
    }

    .our-work-headline {
        font-size: 36px;
    }

    .work-hero {
        padding: 60px 0;
    }

    .work-hero-title {
        font-size: 36px;
    }

    .work-hero .text-lg-end {
        margin-top: 30px;
    }

    .work-cta-banner h2 {
        font-size: 28px;
    }

    .work-cta-banner .text-lg-end {
        margin-top: 30px;
    }

    .portfolio-hero .text-lg-end {
        text-align: left !important;
        margin-top: 30px;
    }

    .portfolio-hero-title {
        font-size: 36px;
    }

    .portfolio-content {
        padding: 60px 0;
    }

    .portfolio-sidebar {
        position: static;
        margin-top: 50px;
    }

    .portfolio-gallery {
        padding: 60px 0;
    }

    .portfolio-other {
        padding: 60px 0;
    }

    .portfolio-cta-banner h2 {
        font-size: 28px;
    }

    .portfolio-cta-banner .text-lg-end {
        margin-top: 30px;
    }

    .portfolio-hero-logo img {
        max-width: 250px;
    }
}

@media (max-width: 767px) {
    .our-work-section {
        padding: 60px 0;
    }

    .our-work-headline {
        font-size: 32px;
    }

    .our-work-tagline {
        font-size: 15px;
    }

    .work-logo {
        max-width: 140px;
        max-height: 60px;
    }

    .work-hero {
        padding: 50px 0;
    }

    .work-hero-title {
        font-size: 32px;
    }

    .work-hero-description {
        font-size: 16px;
    }

    .filter-offcanvas {
        width: 100% !important;
    }

    .work-grid-section {
        padding: 60px 0;
    }

    .work-cta-banner {
        padding: 60px 0;
        text-align: center;
    }

    .work-cta-banner h2 {
        font-size: 24px;
    }

    .portfolio-hero-logo img {
        max-width: 200px;
    }

    .portfolio-hero-title {
        font-size: 28px;
    }

    .portfolio-scroll-indicator {
        bottom: 30px;
    }

    .scroll-arrow {
        width: 40px;
        height: 40px;
    }

    .scroll-arrow i {
        font-size: 18px;
    }

    .gallery-headline,
    .other-headline {
        font-size: 26px;
    }

    .portfolio-cta-banner {
        padding: 60px 0;
        text-align: center;
    }

    .portfolio-cta-banner h2 {
        font-size: 24px;
    }
}

/* ==========================================================================
   9. CONTACT PAGE
   ========================================================================== */

.contact-hero {
    background: #2877db;
    padding: 60px 0;
}

.contact-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.contact-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.contact-content {
    padding: 80px 0;
    background: #fff;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-form-wrapper .gform_wrapper {
    margin: 0;
}

.contact-form-wrapper .gfield {
    margin-bottom: 20px;
}

.contact-form-wrapper .gfield_label {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: 'Muli', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form-wrapper input:focus,
.contact-form-wrapper textarea:focus,
.contact-form-wrapper select:focus {
    outline: none;
    border-color: #2877db;
    box-shadow: 0 0 0 3px rgba(40, 119, 219, 0.1);
}

.contact-form-wrapper textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form-wrapper .gform_button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form-wrapper .gform_button:hover {
    background: #1f5fa8;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(40, 119, 219, 0.3);
}

/* Contact Info */
.contact-info {
    padding-left: 20px;
}

.contact-info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-icon i {
    font-size: 20px;
    color: #000;
}

.contact-info-details h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.contact-info-details a,
.contact-info-details p {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #333;
    text-decoration: none;
    margin: 0;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.contact-info-details a:hover {
    color: #2877db;
}

/* Social Links */
.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.contact-social a {
    width: 45px;
    height: 45px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-social a:hover {
    background: #2877db;
    color: #fff;
    transform: translateY(-3px);
}

/* Contact Responsive */
@media (max-width: 991px) {
    .contact-hero-title {
        font-size: 36px;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-info {
        padding-left: 0;
        margin-top: 50px;
    }
}

@media (max-width: 767px) {
    .contact-hero {
        padding: 50px 0;
    }

    .contact-hero-title {
        font-size: 32px;
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .contact-form-wrapper {
        padding: 25px;
    }
}

/* ==========================================================================
   10. ABOUT PAGE
   ========================================================================== */

.about-hero {
    background: #2877db;
    padding: 60px 0;
}

.about-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.about-hero-description {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    line-height: 1.6;
}

.about-content {
    padding: 80px 0;
    background: #fff;
}

.about-content-inner {
    font-family: 'Muli', sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #333;
}

.about-content-inner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 50px 0 20px;
}

.about-content-inner h2:first-child {
    margin-top: 0;
}

.about-content-inner h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 40px 0 15px;
}

.about-content-inner p {
    margin-bottom: 20px;
}

.about-content-inner ul,
.about-content-inner ol {
    margin: 20px 0;
    padding-left: 25px;
}

.about-content-inner li {
    margin-bottom: 10px;
}

.about-content-inner img {
    border-radius: 8px;
    margin: 30px 0;
}

.about-content-inner blockquote {
    border-left: 4px solid #2877db;
    padding-left: 25px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
}

/* About Sections */
.about-section {
    padding: 40px;
    margin-bottom: 30px;
    border-radius: 12px;
}

.about-section-alt {
    background: #f8f9fa;
}

.about-section h2 {
    margin-top: 0;
}

.about-section p:last-child {
    margin-bottom: 0;
}

/* About CTA Banner */
.about-cta-banner {
    background: #000;
    padding: 80px 0;
}

.about-cta-banner h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.about-cta-banner p {
    font-family: 'Muli', sans-serif;
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* About Home Section */
.home-about.about-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
    border-radius: 0;
    margin-bottom: 0;
}

.home-about .about-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.home-about .about-image img {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.home-about .about-image::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid #2877db;
    border-radius: 8px;
    z-index: -1;
}

.home-about .about-content {
    padding-left: 50px;
}

.home-about .about-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 25px;
    line-height: 1.2;
}

.home-about .about-text {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 35px;
}

.home-about .about-text p {
    margin-bottom: 20px;
}

.home-about .about-text p:last-child {
    margin-bottom: 0;
}

.home-about .btn-about {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: #2877db;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-about .btn-about:hover {
    background: #1f5fa8;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 119, 219, 0.3);
}

.home-about .btn-about i {
    transition: transform 0.3s ease;
}

.home-about .btn-about:hover i {
    transform: translateX(5px);
}

/* About Responsive */
@media (max-width: 991px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-content-inner h2 {
        font-size: 28px;
    }

    .about-content-inner h3 {
        font-size: 22px;
    }

    .about-cta-banner h2 {
        font-size: 28px;
    }

    .about-cta-banner .text-lg-end {
        margin-top: 30px;
    }

    .home-about.about-section {
        padding: 80px 0;
    }

    .home-about .about-content {
        padding-left: 0;
        margin-top: 50px;
    }

    .home-about .about-headline {
        font-size: 36px;
    }

    .home-about .about-image::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 50px 0;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-content-inner {
        font-size: 16px;
    }

    .about-content-inner h2 {
        font-size: 24px;
        margin: 40px 0 15px;
    }

    .about-content-inner h3 {
        font-size: 20px;
    }

    .about-cta-banner {
        padding: 60px 0;
        text-align: center;
    }

    .about-cta-banner h2 {
        font-size: 24px;
    }

    .about-section {
        padding: 25px;
        margin-bottom: 20px;
    }

    .home-about.about-section {
        padding: 60px 0;
    }

    .home-about .about-headline {
        font-size: 30px;
    }

    .home-about .about-text {
        font-size: 15px;
    }

    .home-about .about-content {
        margin-top: 40px;
    }
}

/* ==========================================================================
   11. BLOG SECTION
   ========================================================================== */

.home-blog.blog-section {
    padding: 100px 0;
    background: #f8f9fa;
    position: relative;
    z-index: 2;
}

.home-blog .blog-header {
    margin-bottom: 50px;
}

.home-blog .blog-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #222;
    margin-bottom: 15px;
}

.home-blog .blog-description {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Blog Card */
.home-blog .blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.home-blog .blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.home-blog .blog-card-link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-blog .blog-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.home-blog .blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.home-blog .blog-card:hover .blog-card-image img {
    transform: scale(1.1);
}

.home-blog .blog-card-no-image {
    background: linear-gradient(135deg, #000000 0%, #001a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-blog .blog-card-no-image i {
    font-size: 48px;
    color: rgba(255, 255, 255, 0.3);
}

.home-blog .blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-blog .blog-card-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #222;
    margin-bottom: 12px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.home-blog .blog-card:hover .blog-card-title {
    color: #2877db;
}

.home-blog .blog-card-excerpt {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.home-blog .blog-card-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #2877db;
    transition: all 0.3s ease;
}

.home-blog .blog-card-read-more i {
    transition: transform 0.3s ease;
}

.home-blog .blog-card:hover .blog-card-read-more i {
    transform: translateX(5px);
}

/* View All Button */
.home-blog .blog-view-all {
    margin-top: 50px;
}

.home-blog .btn-blog-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 35px;
    background: transparent;
    border: 2px solid #222;
    color: #222;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-blog .btn-blog-all:hover {
    background: #222;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.home-blog .btn-blog-all i {
    transition: transform 0.3s ease;
}

.home-blog .btn-blog-all:hover i {
    transform: translateX(5px);
}

/* Blog Responsive */
@media (max-width: 991px) {
    .home-blog.blog-section {
        padding: 80px 0;
    }

    .home-blog .blog-headline {
        font-size: 36px;
    }

    .home-blog .blog-header {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .home-blog.blog-section {
        padding: 60px 0;
    }

    .home-blog .blog-headline {
        font-size: 30px;
    }

    .home-blog .blog-description {
        font-size: 15px;
    }

    .home-blog .blog-card-title {
        font-size: 18px;
    }

    .home-blog .blog-view-all {
        margin-top: 30px;
    }
}

/* ==========================================================================
   12. TECH STACK SECTION
   ========================================================================== */

.home-tech.tech-section {
    padding: 80px 0;
    background: #001125;
    position: relative;
    z-index: 10;
}

.home-tech .tech-header {
    margin-bottom: 50px;
}

.home-tech .tech-headline {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.home-tech .tech-description {
    font-family: 'Muli', sans-serif;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.home-tech .tech-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.home-tech .tech-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.home-tech .tech-logo-item i {
    font-size: 48px;
    transition: all 0.3s ease;
}

.home-tech .tech-logo-item:hover {
    color: #2877db;
    transform: translateY(-5px);
}

.home-tech .tech-logo-item.tech-logo-img img {
    height: 40px;
    width: auto;
    opacity: 0.4;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.home-tech .tech-logo-item.tech-logo-img:hover img {
    opacity: 1;
}

/* Tech Responsive */
@media (max-width: 991px) {
    .home-tech.tech-section {
        padding: 60px 0;
    }

    .home-tech .tech-headline {
        font-size: 30px;
    }

    .home-tech .tech-logos {
        gap: 30px 40px;
    }

    .home-tech .tech-logo-item i {
        font-size: 40px;
    }

    .home-tech .tech-logo-item.tech-logo-img img {
        height: 32px;
    }
}

@media (max-width: 767px) {
    .home-tech.tech-section {
        padding: 50px 0;
    }

    .home-tech .tech-headline {
        font-size: 26px;
    }

    .home-tech .tech-description {
        font-size: 15px;
    }

    .home-tech .tech-logos {
        gap: 25px 35px;
    }

    .home-tech .tech-logo-item i {
        font-size: 36px;
    }

    .home-tech .tech-logo-item.tech-logo-img img {
        height: 28px;
    }
}

/* ==========================================================================
   13. LOGIN MODAL
   ========================================================================== */

.login-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.login-modal.active {
    display: flex;
}

.login-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.login-modal-content {
    position: relative;
    width: 90%;
    max-width: 450px;
    background: #fff;
    border-radius: 8px;
    z-index: 2;
    padding: 40px;
}

.login-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: #333;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 5px;
}

.login-modal-close:hover {
    color: #2877db;
    transform: rotate(90deg);
}

.login-modal-tabs {
    display: flex;
    margin-bottom: 30px;
    border-bottom: 2px solid #eee;
}

.login-tab {
    flex: 1;
    padding: 15px;
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #999;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.login-tab.active {
    color: #2877db;
    border-bottom-color: #2877db;
}

.login-form-container {
    display: none;
}

.login-form-container.active {
    display: block;
}

.login-form .form-group {
    margin-bottom: 20px;
}

.login-form label {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.login-form input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.login-form input:focus {
    outline: none;
    border-color: #2877db;
}

.login-form .btn-submit {
    width: 100%;
    padding: 12px;
    background: #2877db;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-form .btn-submit:hover {
    background: #1f5fa8;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(40, 119, 219, 0.4);
}

.login-form .btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.login-form .forgot-password {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #2877db;
    text-decoration: none;
}

.login-form .forgot-password:hover {
    text-decoration: underline;
}

body.modal-open {
    overflow: hidden;
}

/* ==========================================================================
   14. CART DROPDOWN
   ========================================================================== */

.cart-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 350px;
    max-height: 400px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    margin-top: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.navbar-icon.cart-icon {
    position: relative;
}

.navbar-icon.cart-icon:hover .cart-dropdown,
.cart-dropdown:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cart-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
}

.cart-dropdown-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cart-items {
    max-height: 250px;
    overflow-y: auto;
}

.cart-item {
    display: flex;
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
}

.cart-item-price {
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    color: #2877db;
}

.cart-empty {
    padding: 40px 20px;
    text-align: center;
    font-family: 'Muli', sans-serif;
    color: #999;
}

.cart-dropdown-footer {
    padding: 20px;
    border-top: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.cart-dropdown .btn-view-cart {
    display: block;
    width: 100%;
    padding: 12px;
    background: #2877db;
    color: #fff;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cart-dropdown .btn-view-cart:hover {
    background: #1f5fa8;
}

/* Cart Badge */
.cart-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #103698;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* ==========================================================================
   15. FORMS
   ========================================================================== */

/* Form Messages */
.form-message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    font-family: 'Muli', sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.form-message-success {
    background: rgba(46, 204, 113, 0.15);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: #2ecc71;
}

.form-message-error {
    background: rgba(231, 76, 60, 0.15);
    border: 1px solid rgba(231, 76, 60, 0.3);
    color: #e74c3c;
}

/* ==========================================================================
   16. UTILITIES
   ========================================================================== */

/* Scroll to Top */
.scrollup {
    width: 40px;
    height: 40px;
    position: fixed;
    bottom: 50px;
    right: 30px;
    display: none;
    text-indent: -9999px;
    background-image: url(img/angle-up.svg);
    background-size: 19px;
    z-index: 9999999999;
    background-color: #2877db;
    color: #fff;
    background-repeat: no-repeat;
    background-position: center;
    padding: 20px;
    border-radius:5px;
}

/* ==========================================================================
   17. Product Page (Single)
   ========================================================================== */

/* Back Navigation */
.sp-back-nav {
    margin-bottom: 30px;
}

.sp-back-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sp-back-link:hover {
    color: #1a73e8;
}

.sp-back-link svg {
    transition: transform 0.3s ease;
}

.sp-back-link:hover svg {
    transform: translateX(-4px);
}

/* Scroll Down Indicator */
.sp-scroll-indicator {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #1a73e8;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.sp-scroll-indicator:hover {
    color: #0d47a1;
}

.sp-scroll-indicator svg {
    width: 40px;
    height: 40px;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(6px);
    }
    60% {
        transform: translateY(3px);
    }
}

/* Demo Card */
.sp-demo-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    margin-top: 20px;
}

.sp-demo-card .sp-card-header {
    margin-bottom: 12px;
}

.sp-demo-card .sp-card-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sp-demo-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0 0 16px;
    line-height: 1.5;
}

/* Download Modal Styles */
#downloadModal .modal-content {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
}

#downloadModal .modal-header {
    background: linear-gradient(135deg, #1a73e8 0%, #0d47a1 100%);
    color: #fff;
    border: none;
    padding: 24px 24px 20px;
    position: relative;
}

#downloadModal .modal-header-content {
    flex: 1;
}

#downloadModal .modal-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 4px;
}

#downloadModal .modal-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

#downloadModal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
    position: absolute;
    top: 16px;
    right: 16px;
}

#downloadModal .btn-close:hover {
    opacity: 1;
}

#downloadModal .modal-body {
    padding: 24px;
}

/* Gravity Form Styling inside modal */
#downloadModal .gform_wrapper {
    margin: 0;
}

#downloadModal .gform_wrapper .gfield {
    margin-bottom: 16px;
}

#downloadModal .gform_wrapper .gfield_label {
    font-weight: 500;
    font-size: 14px;
    color: #1a1a2e;
    margin-bottom: 6px;
}

#downloadModal .gform_wrapper input[type="text"],
#downloadModal .gform_wrapper input[type="email"] {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 15px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

#downloadModal .gform_wrapper input[type="text"]:focus,
#downloadModal .gform_wrapper input[type="email"]:focus {
    outline: none;
    border-color: #1a73e8;
    box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

#downloadModal .gform_wrapper .gform_button,
#downloadModal .gform_wrapper input[type="submit"] {
    width: 100%;
    padding: 14px 24px;
    background: #1a73e8;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

#downloadModal .gform_wrapper .gform_button:hover,
#downloadModal .gform_wrapper input[type="submit"]:hover {
    background: #1557b0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26,115,232,0.35);
}

#downloadModal .gform_wrapper .gfield_required {
    color: #ef4444;
}

#downloadModal .gform_wrapper .validation_message {
    color: #ef4444;
    font-size: 13px;
    margin-top: 4px;
}

#downloadModal .gform_wrapper .gform_confirmation_message {
    text-align: center;
    padding: 20px;
}

/* Hide hidden fields */
#downloadModal .gform_wrapper .gfield_visibility_hidden {
    display: none;
}

/* Responsive */
@media (max-width: 767px) {
    .sp-scroll-indicator {
        bottom: 20px;
    }
}

/* ==========================================================================
   18. FOOTER
   ========================================================================== */

.site-footer {
    background: #04040f;
    color: #fff;
    position:relative;
    z-index: 99;
}

/* Footer Main */
.footer-main {
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

/* Brand Column */
.footer-brand {
    padding-right: 40px;
}

.footer-logo img {
    height: 32px;
    width: auto;
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 14px;
    line-height: 1.6;
    color: #94a3b8;
    margin: 0 0 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    color: #fff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* Footer Nav Columns */
.footer-nav h4,
.footer-contact h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
    margin: 0 0 20px;
}

.footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

/* Contact Column */
.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-phone:hover {
    color: #2563eb;
}

.footer-phone svg {
    color: #2563eb;
}

.footer-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #94a3b8;
    text-decoration: none;
    margin-top: 12px;
    transition: color 0.3s ease;
}

.footer-email:hover {
    color: #fff;
}

.footer-email svg {
    color: #2563eb;
}

/* View All Link */
.view-all-link {
    color: #2563eb !important;
    font-weight: 500;
}

.view-all-link:hover {
    color: #3b82f6 !important;
}

/* Footer Bottom / Copyright */
.footer-bottom {
    background: #04040f;
    padding: 20px 0;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    font-size: 13px;
    color: #64748b;
    margin: 0;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 13px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #94a3b8;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px 30px;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px 20px;
    }
    
    .footer-contact {
        grid-column: 1 / -1;
        text-align: center;
        align-items: center;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-nav h4,
    .footer-contact h4 {
        margin-bottom: 16px;
    }
}