/* =====================================
   Precision Direct to Film Apparel
   Main Stylesheet
====================================== */

:root{
    --navy:#07192d;
    --navy-light:#0d2747;
    --blue:#00AEEF;
    --gold:#F6C000;
    --magenta:#EC3B83;
    --white:#ffffff;
    --gray:#cfd8e3;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--navy);
    color:var(--white);
}

/* ===========================
   Navigation
=========================== */

.custom-nav{

    background:rgba(7,25,45,.88);

    backdrop-filter:blur(15px);

    transition:.3s;

    padding:12px 0;

}

.navbar-brand img{
    height:110px;
    transition:.3s;
}

.nav-link {
    margin: 0 12px;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    color: #ffffff !important;
}

.nav-link:hover{

    color:var(--blue)!important;

}

.btn-warning{

    background:var(--gold);

    border:none;

    color:#07192d;

    font-weight:700;

    border-radius:40px;

    padding:12px 28px;

}

.btn-warning:hover{

    transform:translateY(-3px);

}

/* ===========================
   Hero
=========================== */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:

    radial-gradient(circle at top left,
    rgba(0,174,239,.25),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(236,59,131,.20),
    transparent 40%),

    radial-gradient(circle at top right,
    rgba(246,192,0,.18),
    transparent 35%),

    linear-gradient(
    180deg,
    #07192d,
    #081f38);

    overflow:hidden;

    padding-top:120px;

}

.hero-small{

    color:var(--gold);

    letter-spacing:3px;

    font-weight:700;

}

.hero h1{

    font-family:'Oswald',sans-serif;

    font-size:64px;

    margin:20px 0;

    line-height:1.1;

}

.hero p{

    color:var(--gray);

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

    flex-wrap:wrap;

}

.btn-primary{

    background:var(--blue);

    border:none;

    border-radius:40px;

    padding:16px 34px;

}

.btn-primary:hover{

    background:#0997cf;

}

.btn-outline-light{

    border-radius:40px;

    padding:16px 34px;

}

.hero-logo{
    max-width:650px;
    width:100%;
}

/* ===========================
   Coming Soon Section
=========================== */

.coming-soon{

    padding:100px 0;

    text-align:center;

    background:#0d2747;

}

.coming-soon h2{

    font-family:'Oswald',sans-serif;

    font-size:48px;

    margin-bottom:20px;

}

.coming-soon p{

    color:var(--gray);

    font-size:20px;

}

/* ===========================
   Footer
=========================== */

footer{

    padding:35px;

    background:#04111f;

    text-align:center;

}

footer p{

    margin:8px;

    color:#b8c6d6;

}

/* ===========================
   Animation
=========================== */

@keyframes floatLogo{

0%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

100%{

transform:translateY(0);

}

}

/* ===========================
   Responsive
=========================== */

@media(max-width:992px){

.hero{

text-align:center;

padding:150px 0 80px;

}

.hero h1{

font-size:46px;

}

.hero-buttons{

justify-content:center;

}

.hero-logo{

margin-top:60px;

max-width:350px;

}

.navbar-brand img{

height:55px;

}

}/*============================
Services
============================*/

.services{

padding:110px 0;

background:#07192d;

}

.section-title{

text-align:center;

margin-bottom:70px;

}

.section-title h2{

font-size:56px;

font-family:'Oswald',sans-serif;

margin-bottom:15px;

}

.section-title p{

color:#cfd8e3;

font-size:20px;

max-width:700px;

margin:auto;

}

.service-card{

background:#102847;

padding:45px 35px;

border-radius:22px;

text-align:center;

height:100%;

transition:.35s;

border:1px solid rgba(255,255,255,.06);

}

.service-card:hover{

transform:translateY(-12px);

border-color:#00AEEF;

box-shadow:0 25px 60px rgba(0,174,239,.18);

}

.service-card i{

font-size:55px;

color:#F6C000;

margin-bottom:25px;

display:block;

}

.service-card h3{

font-size:30px;

margin-bottom:18px;

font-family:'Oswald',sans-serif;

}

.service-card p{

color:#cfd8e3;

line-height:1.8;

}/*============================
General Sections
============================*/

section{
    scroll-margin-top:100px;
}/*============================
General Sections
============================*/

section{
    scroll-margin-top:100px;
}

/*============================
About Page
============================*/

.about-section{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:160px 20px 100px;

    background:

    radial-gradient(circle at top left,
    rgba(0,174,239,.20),
    transparent 35%),

    radial-gradient(circle at bottom right,
    rgba(236,59,131,.15),
    transparent 40%),

    radial-gradient(circle at top right,
    rgba(246,192,0,.15),
    transparent 35%),

    linear-gradient(
    180deg,
    #07192d,
    #081f38);

}

.about-container{

    max-width:950px;

    width:90%;

    text-align:center;

}

.about-container h1{

    font-family:'Oswald',sans-serif;

    font-size:4.5rem;

    color:var(--white);

    margin-bottom:20px;

    text-transform:uppercase;

    letter-spacing:2px;

}

.divider{

    width:150px;

    height:5px;

    background:var(--gold);

    border-radius:50px;

    margin:0 auto 50px;

}

.about-container p{

    color:var(--gray);

    font-size:1.45rem;

    line-height:2;

    margin-bottom:40px;

    font-weight:300;

}

/*============================
Responsive About Page
============================*/

@media(max-width:992px){

.about-section{

padding:140px 25px 80px;

}

.about-container h1{

font-size:3.2rem;

}

.about-container p{

font-size:1.2rem;

line-height:1.8;

}

}

@media(max-width:576px){

.about-container{

width:95%;

}

.about-container h1{

font-size:2.5rem;

}

.about-container p{

font-size:1.05rem;

}

}/*==================================
Navigation
==================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

}

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

    max-width:1300px;

    margin:auto;

    padding:18px 30px;

    background:rgba(7,25,45,.95);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

.logo img{

    height:75px;

}

.nav-links{

    list-style:none;

    display:flex;

    gap:35px;

}

.nav-links a{

    color:white;

    text-decoration:none;

    font-size:18px;

    font-weight:500;

    transition:.3s;

}

.nav-links a:hover{

    color:var(--gold);

}

.quote-btn{

    background:var(--gold);

    color:#07192d;

    text-decoration:none;

    padding:12px 28px;

    border-radius:40px;

    font-weight:700;

    transition:.3s;

}

.quote-btn:hover{

    transform:translateY(-3px);

}main{
    padding-top:120px;
}/*============================
Contact Page
============================*/

.about-container a{

    color: var(--gold);

    text-decoration: none;

    font-weight: 600;

}

.about-container a:hover{

    color: var(--blue);

}

.about-container strong{

    color: white;

    font-size: 1.25rem;

}/*=================================
Quote Page
=================================*/

.quote-section{

padding:160px 20px 80px;

min-height:100vh;

background:
radial-gradient(circle at top left,
rgba(0,174,239,.18),
transparent 35%),

radial-gradient(circle at bottom right,
rgba(236,59,131,.12),
transparent 40%),

linear-gradient(180deg,#07192d,#081f38);

}

.quote-container{

max-width:900px;

margin:auto;

text-align:center;

}

.quote-container h1{

font-family:'Oswald',sans-serif;

font-size:4rem;

margin-bottom:20px;

}

.quote-container p{

font-size:1.25rem;

color:var(--gray);

margin-bottom:50px;

}

form{

text-align:left;

}

.form-row{

display:flex;

gap:20px;

margin-bottom:25px;

}

.form-group{

flex:1;

display:flex;

flex-direction:column;

}

.form-group label{

margin-bottom:8px;

font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

padding:16px;

border:none;

border-radius:12px;

font-size:16px;

background:#ffffff;

color:#222;

}

.form-group textarea{

resize:vertical;

}

.submit-btn{

margin-top:30px;

width:100%;

padding:18px;

font-size:20px;

font-weight:700;

background:var(--gold);

color:#07192d;

border:none;

border-radius:50px;

cursor:pointer;

transition:.3s;

}

.submit-btn:hover{

background:var(--blue);

color:white;

}

@media(max-width:768px){

.form-row{

flex-direction:column;

}

.quote-container h1{

font-size:3rem;

}

}/* Hero Quote Button */

.hero-quote-btn{

    display:inline-block;

    background:var(--blue);

    color:var(--white);

    text-decoration:none;

    padding:16px 34px;

    border-radius:40px;

    font-weight:700;

    font-size:18px;

    transition:.3s;

}

.hero-quote-btn:hover{

    background:#0997cf;

    color:var(--gold);

    transform:translateY(-3px);

}.service-card{

    height:100%;

}

.service-card p{

    min-height:110px;

}/*=================================
Gallery Page
=================================*/

.gallery-section{

    padding:100px 0;

    background:#07192d;

}

.gallery-card{

    position:relative;

    overflow:hidden;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(0,0,0,.30);

    transition:.35s;

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-card img{

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.4s;

}

.gallery-card:hover img{

    transform:scale(1.08);

}

.gallery-title{

    position:absolute;

    bottom:0;

    left:0;

    width:100%;

    background:rgba(7,25,45,.90);

    color:white;

    padding:18px;

    text-align:center;

    font-family:'Oswald',sans-serif;

    font-size:24px;

    letter-spacing:1px;

}/*==============================
Gallery
==============================*/

.gallery-section{

    padding:100px 0;

    background:#07192d;

}

.gallery-img{

    width:100%;

    height:350px;

    object-fit:cover;

    cursor:pointer;

    transition:.35s;

}

.gallery-img:hover{

    transform:scale(1.05);

}

.gallery-card:hover{

    transform:translateY(-8px);

}

.gallery-img{

    width:100%;

    height:320px;

    object-fit:cover;

    cursor:pointer;

    transition:.4s;

}

.gallery-card:hover .gallery-img{

    transform:scale(1.08);

}



#lightboxImage{

    max-height:85vh;

    border-radius:15px;

}

.modal-content{

    background:transparent;

}/* ======================================
   Mobile Navigation
====================================== */

.navbar-toggler{
    border:2px solid #00AEEF;
    border-radius:12px;
    padding:10px 12px;
    background:rgba(255,255,255,.08);
    transition:.3s;
}

.navbar-toggler:hover{
    background:#00AEEF;
}

.navbar-toggler:focus{
    box-shadow:none;
}

.navbar-toggler-icon{
    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='3' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}/* ===================================
   Reviews Page Styling
   Precision Direct To Film Apparel
=================================== */


/* Prevent fixed navbar overlap */
.reviews-hero,
.reviews-section,
.review-form-section {
    position: relative;
}



/* =========================
   Reviews Hero
========================= */


.reviews-hero {

    background:
    linear-gradient(
        135deg,
        #061a33 0%,
        #081f3f 50%,
        #111827 100%
    );

    padding: 150px 0 90px;

    text-align:center;

}


.reviews-hero .hero-small {

    display:inline-block;

    color:#ffc107;

    font-size:.9rem;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:20px;

}



.reviews-hero h1 {

    color:#ffffff;

    font-family:'Oswald', sans-serif;

    font-size:clamp(2.5rem,5vw,4rem);

    font-weight:700;

    margin-bottom:20px;

}



.reviews-hero p {

    max-width:800px;

    margin:auto;

    color:#cbd5e1;

    font-size:1.1rem;

}





/* =========================
   Reviews Section
========================= */


.reviews-section {

    background:#070b12;

}



.review-card {


    height:100%;

    background:

    linear-gradient(
        180deg,
        #151d2b 0%,
        #101722 100%
    );


    border-radius:20px;

    padding:35px 30px;


    border:1px solid rgba(255,255,255,.08);


    transition:.3s ease;


    box-shadow:
    0 15px 35px rgba(0,0,0,.25);

}



.review-card:hover {


    transform:translateY(-8px);


    border-color:#ffc107;


    box-shadow:
    0 20px 45px rgba(0,0,0,.45);


}



.stars {

    color:#ffc107;

    font-size:1.3rem;

    letter-spacing:3px;

    margin-bottom:20px;

}



.review-card h3 {


    color:#ffffff;

    font-size:1.4rem;

    font-weight:700;

    margin-bottom:5px;


}



.review-title {


    color:#94a3b8;

    font-size:.95rem;

    margin-bottom:20px;


}



.review-card p {


    color:#e2e8f0;

    line-height:1.8;

}





/* =========================
   Review Form
========================= */


.review-form-section {


    background:#0a0f17;

}



.review-form {


    max-width:750px;

    margin:auto;


    background:

    linear-gradient(
        180deg,
        #111827,
        #0f172a
    );


    padding:45px;


    border-radius:25px;


    border:1px solid rgba(255,255,255,.08);


    box-shadow:
    0 20px 40px rgba(0,0,0,.35);


}



.review-form h2 {


    text-align:center;


    color:white;


    font-family:'Oswald',sans-serif;


    font-size:2.3rem;


    margin-bottom:15px;


}



.review-form > p {


    text-align:center;


    color:#94a3b8;


    margin-bottom:30px;


}



.review-form form {


    display:grid;

    gap:18px;


}



.review-form input,
.review-form select,
.review-form textarea {


    width:100%;


    background:#070b12;


    color:white;


    border:1px solid rgba(255,255,255,.1);


    border-radius:12px;


    padding:16px;


    font-family:'Poppins',sans-serif;


}



.review-form textarea {


    min-height:150px;

    resize:vertical;


}



.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {


    outline:none;


    border-color:#ffc107;


    box-shadow:
    0 0 0 3px rgba(255,193,7,.15);


}



.review-form button {


    border:none;


    border-radius:50px;


    padding:17px;


    background:#ffc107;


    color:#000;


    font-weight:700;


    font-size:1rem;


    transition:.3s ease;


}



.review-form button:hover {


    background:#ffcd38;


    transform:translateY(-3px);


    box-shadow:
    0 10px 25px rgba(255,193,7,.25);


}





/* =========================
   Mobile
========================= */


@media(max-width:768px){


.review-hero {

    padding-top:120px;

}


.review-form {

    padding:30px 20px;

}


}.service-icon-img {

    width:55px;

    height:55px;

    object-fit:contain;

    margin-bottom:25px;

}.nav-link .bi-facebook {
    font-size: 1.4rem;
    color: #00AEEF;
    transition: 0.3s;
}

.nav-link .bi-facebook:hover {
    color: #F6C000;
}.facebook-connect {
    margin-left: 0;
    margin-right: 90px;
    text-align: center;
}

.facebook-connect .bi-facebook {
    font-size: 2.5rem;
    color: #00AEEF;
    display: block;
    line-height: .8;
    transition: .3s ease;
}

.facebook-connect span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #F6C000;
    display: block;
    margin-top: 8px;
    font-family: 'Poppins', sans-serif;
    white-space: nowrap;
}

.facebook-connect:hover .bi-facebook {
    color: #F6C000;
    transform: scale(1.15);
}

.facebook-connect:hover span {
    color: #ffffff;
}.navbar .container-fluid {
    display: flex;
    align-items: center;
}

/* Facebook side */
.facebook-connect {
    text-align: center;
}

.facebook-connect a {
    text-decoration: none;
}

.facebook-connect .bi-facebook {
    font-size: 3.5rem;
    color: #00AEEF;
    display: block;
    line-height: .8;
    transition: .3s ease;
}

.facebook-connect span {
    display: block;
    font-size: .75rem;
    color: #F6C000;
    font-weight: 600;
}

.facebook-connect:hover .bi-facebook {
    color: #F6C000;
    transform: scale(1.1);
}


/* Center navigation */
.navbar-nav {
    flex: 1;
    justify-content: center;
}

.nav-link {
    margin: 0 8px;
}


/* Quote button */
.quote-button {
    margin-left: auto;
}.quote-button .btn {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 8px 12px;
}.quote-button .btn {
    background-color: #F6C000 !important;
    color: #07192d !important;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    padding: 8px px;
    border-radius: 6px;
}

.quote-button .btn:hover {
    background-color: #00AEEF !important;
    color: #ffffff !important;
}