/**
Theme Name: prowmedia-child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. Astra offers plenty of sidebar options and widget areas giving you a full control for customizations. Furthermore, we have included special features and templates so feel free to choose any of your favorite page builder plugin to create pages flexibly. Some of the other features: # WooCommerce Ready # Responsive # Compatible with major plugins # Translation Ready # Extendible with premium addons # Regularly updated # Designed, Developed, Maintained & Supported by Brainstorm Force. Looking for a perfect base theme? Look no further. Astra is fast, fully customizable and beautiful theme!
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: prowpark-child
Template: astra
*/

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillicMedium.woff2') format('woff2'),
         url('assets/fonts/FuturaCyrillicMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillic-Bold.woff2') format('woff2'),
         url('assets/fonts/FuturaCyrillic-Bold.woff') format('woff');
    font-weight: 700; /* better than bold */
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillicLight.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillicLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic Book';
    src: url('assets/fonts/FuturaCyrillicBook.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillicBook.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic';
    src: url('assets/fonts/FuturaCyrillicHeavy.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillicHeavy.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic Demi';
    src: url('assets/fonts/FuturaCyrillic-Demi.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillic-Demi.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Futura Cyrillic Extra';
    src: url('assets/fonts/FuturaCyrillic-ExtraBold.woff2') format('woff2'),
        url('assets/fonts/FuturaCyrillic-ExtraBold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


        :root {
            --navy: #0A2540;
            --deep-blue: #0B4A7D;
            --bright-blue: #156481;
            --sky-blue: #5DADE2;
            --light-blue: #AED6F1;
            --accent: #00D4FF;
        }

        * {
            margin: 0;
            padding: 0;
        }

        body {
            font-family: 'Outfit', -apple-system, sans-serif;
            color: var(--navy);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid #E8ECF0;
            padding: 1rem 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            font-weight: 700;
            font-size: 1.5rem;
        }

        .logo-diamond {
            width: 45px;
            height: 45px;
            transform: rotate(45deg);
            background: linear-gradient(135deg, var(--sky-blue), var(--deep-blue));
            position: relative;
            overflow: hidden;
        }

        .logo-diamond::before,
        .logo-diamond::after {
            content: '';
            position: absolute;
            background: white;
            opacity: 0.5;
        }

        .logo-diamond::before {
            top: 50%;
            left: 50%;
            width: 1px;
            height: 120%;
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .logo-diamond::after {
            top: 50%;
            left: 50%;
            width: 120%;
            height: 1px;
            transform: translate(-50%, -50%) rotate(-45deg);
        }

        .prow-text {
            color: var(--navy);
        }

        .media-text {
            color: var(--bright-blue);
        }

        .nav-link {
            color: #3A4A5B !important;
            font-weight: 500;
            margin: 0 0.5rem;
            position: relative;
            transition: color 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--bright-blue);
            transition: width 0.3s ease;
        }

        .nav-link:hover {
            color: var(--bright-blue) !important;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .btn-primary-custom {
            background: linear-gradient(135deg, var(--bright-blue), var(--deep-blue));
            border: none;
            color: white !important;
            padding: 0.75rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 119, 204, 0.2);
        }

        .btn-primary-custom:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(0, 119, 204, 0.3);
            color: white;
        }

        /* Hero Section */
        .hero {
            min-height: 90vh;
            background: linear-gradient(135deg, #F8FAFB 0%, #E3F2FD 100%);
            position: relative;
            overflow: hidden;
            padding-top: 100px;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            opacity: 0.03;
            background-image: 
                repeating-linear-gradient(45deg, var(--bright-blue) 0px, var(--bright-blue) 1px, transparent 1px, transparent 20px),
                repeating-linear-gradient(-45deg, var(--bright-blue) 0px, var(--bright-blue) 1px, transparent 1px, transparent 20px);
        }

        .hero-diamond {
            position: absolute;
            transform: rotate(45deg);
            background: linear-gradient(135deg, var(--sky-blue), var(--bright-blue));
            opacity: 0.08;
            animation: float 20s ease-in-out infinite;
        }

        .hero-diamond-1 {
            width: 300px;
            height: 300px;
            top: 10%;
            right: -100px;
        }

        .hero-diamond-2 {
            width: 200px;
            height: 200px;
            bottom: 15%;
            left: -50px;
            animation-delay: -7s;
        }

        .hero-diamond-3 {
            width: 150px;
            height: 150px;
            top: 60%;
            right: 15%;
            animation-delay: -14s;
        }

        @keyframes float {
            0%, 100% { transform: rotate(45deg) translateY(0px); }
            50% { transform: rotate(45deg) translateY(-30px); }
        }

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

        .hero h1 {
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            font-weight: 800;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            letter-spacing: -0.03em;
        }

        .gradient-text {
            background: linear-gradient(135deg, var(--bright-blue), var(--deep-blue));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero .tagline {
            font-size: 1.3rem;
            color: #3A4A5B;
            margin-bottom: 2rem;
        }

        .service-tag {
            display: inline-block;
            padding: 0.5rem 1.2rem;
            background: white;
            border: 1px solid #E8ECF0;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
            color: #3A4A5B;
            margin: 0.25rem;
            transition: all 0.3s ease;
            font-family: 'JetBrains Mono', monospace;
        }

        .service-tag:hover {
            border-color: var(--bright-blue);
            color: var(--bright-blue);
            transform: translateY(-2px);
        }

        .btn-secondary-custom {
            background: white;
            color: var(--navy);
            border: 2px solid #D1D9E0;
            padding: 1rem 2.5rem;
            border-radius: 10px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-secondary-custom:hover {
            border-color: var(--bright-blue);
            color: var(--bright-blue);
            transform: translateY(-3px);
        }

        .diamond-grid {
            position: relative;
            width: 350px;
            height: 350px;
            margin: 0 auto;
        }

        .grid-diamond {
            position: absolute;
            width: 160px;
            height: 160px;
            transform: rotate(45deg);
            background: linear-gradient(135deg, rgba(93, 173, 226, 0.15), rgba(11, 74, 125, 0.15));
            border: 2px solid rgba(0, 119, 204, 0.3);
            transition: all 0.4s ease;
            animation: pulse 3s ease-in-out infinite;
        }

        .grid-diamond:nth-child(1) {
            top: 0;
            left: 50%;
            transform: translate(-50%, 0) rotate(45deg);
        }

        .grid-diamond:nth-child(2) {
            top: 50%;
            right: 0;
            transform: translate(0, -50%) rotate(45deg);
            animation-delay: 0.3s;
        }

        .grid-diamond:nth-child(3) {
            bottom: 0;
            left: 50%;
            transform: translate(-50%, 0) rotate(45deg);
            animation-delay: 0.6s;
        }

        .grid-diamond:nth-child(4) {
            top: 50%;
            left: 0;
            transform: translate(0, -50%) rotate(45deg);
            animation-delay: 0.9s;
        }

        .grid-diamond:nth-child(5) {
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) rotate(45deg);
            background: linear-gradient(135deg, var(--bright-blue), var(--deep-blue));
            border: none;
            animation-delay: 1.2s;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 0.8; }
        }

        /* Section Styles */
        .section-label {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--bright-blue);
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 1rem;
            font-family: 'JetBrains Mono', monospace;
        }

        .section-title {
            font-size: clamp(2rem, 5vw, 3rem);
            font-weight: 800;
            color: var(--navy);
            letter-spacing: -0.02em;
            margin-bottom: 1rem;
        }

        .section-description {
            font-size: 1.2rem;
            color: #3A4A5B;
            line-height: 1.7;
        }

        /* Stat Cards */
        .stat-card {
            padding: 2rem;
            background: #F8FAFB;
            border-radius: 12px;
            border-left: 4px solid var(--bright-blue);
            height: 100%;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.95rem;
            color: #3A4A5B;
            font-weight: 500;
        }

        /* Service Cards */
        .service-card {
            padding: 3rem 2rem;
            background: white;
            border-radius: 16px;
            border: 1px solid #E8ECF0;
            height: 100%;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--bright-blue), var(--deep-blue));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(10, 37, 64, 0.1);
            border-color: var(--bright-blue);
        }

        .service-card:hover::before {
            transform: scaleX(1);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--sky-blue), var(--bright-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            transform: rotate(5deg);
            transition: transform 0.4s ease;
            margin-bottom: 1.5rem;
        }

        .service-card:hover .service-icon {
            transform: rotate(0deg) scale(1.1);
        }

        .service-link {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--bright-blue);
            font-weight: 600;
            text-decoration: none;
            transition: gap 0.3s ease;
        }

        .service-link:hover {
            gap: 1rem;
        }

        /* Studio Section */
        .studio-section {
            background: var(--navy);
            color: white;
            position: relative;
            overflow: hidden;
        }

        .studio-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(0, 119, 204, 0.1) 0%, transparent 70%);
            animation: float 25s ease-in-out infinite;
        }

        .highlight {
            color: var(--accent);
        }

        .feature-item {
            display: flex;
            align-items: start;
            gap: 1rem;
            margin-bottom: 1rem;
        }

        .feature-icon {
            width: 40px;
            height: 40px;
            background: rgba(0, 212, 255, 0.15);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature-text {
            font-size: 0.95rem;
            color: var(--light-blue);
        }

        /* Gallery */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 12px;
            cursor: pointer;
            height: 300px;
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(10, 37, 64, 0.8) 0%, transparent 100%);
            display: flex;
            align-items: flex-end;
            padding: 1.5rem;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-title {
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
            margin: 0;
        }

        /* Contact Cards */
        .contact-card {
            padding: 2.5rem 2rem;
            background: #F8FAFB;
            border-radius: 16px;
            text-align: center;
            transition: all 0.3s ease;
            height: 100%;
        }

        .contact-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 35px rgba(10, 37, 64, 0.08);
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--bright-blue), var(--deep-blue));
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
        }

        .contact-card h3 {
            font-size: 1.2rem;
            color: var(--navy);
            margin-bottom: 0.5rem;
        }

        .contact-card a {
            font-size: 1.1rem;
            color: var(--bright-blue);
            text-decoration: none;
            font-weight: 600;
        }

        .contact-card a:hover {
            text-decoration: underline;
        }

        /* Footer */
        footer {
            background: var(--navy);
            color: white;
            padding: 3rem 0;
        }

        .footer-logo {
            font-size: 1.3rem;
            font-weight: 700;
        }

        .footer-media {
            color: var(--accent);
        }

        .footer-info {
            font-size: 0.9rem;
            color: var(--light-blue);
            line-height: 1.6;
        }

        /* Modal Styles */
        .modal-content {
            background: transparent;
            border: none;
        }

        .modal-body {
            padding: 0;
        }

        .modal-body img {
            width: 100%;
            border-radius: 8px;
        }


a.btn.btn-warning.btn-lg.px-5.py-3 {
    background: #156481;
    border-color: #156481;
    color: #fff;
}

/* Desktop hover dropdown */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
        margin-top: 0;
    }

    .navbar .dropdown-menu {
        margin-top: 0;
    }
}


@media (max-width:767px) {

header .custom-logo-link img {
    max-width: 105px;
    width: 177px;
}

.stat-number {
    font-size: 2rem;

}

}