body {
    background-color: #0f1115;
    color: white;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

section {
    padding: 100px 0;
}

.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Background Image Layer */
.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: url("assets/hero-bg.jfif") center/cover no-repeat;

    filter: blur(4px);
    opacity: 0.75; /* faint look */
    z-index: 1;
}

/* Dark Overlay for readability */
.hero-section::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(15,17,21,0.75); /* dark overlay */
    z-index: 2;
}

/* Content above background */
.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 48px;
    font-weight: bold;
    color: #ffffff;
}

.hero-subtitle {
    margin-top: 20px;
    font-size: 16px;
    color: #cfcfcf;
    line-height: 1.8;
}

.hero-buttons .btn {
    padding: 12px 25px;
    font-size: 16px;
}

/* Gradient Navbar */


.navbar {
    background: rgba(15,17,21,0.6);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.navbar .nav-link {
    color: #ffffff;
    font-weight: 500;
    margin-left: 15px;
}

.navbar .nav-link:hover {
    color: #ff6a00;
}

.navbar-brand {
    font-size: 22px;
    letter-spacing: 1px;
}

.about-section {
    background-color: #111318;
}

.section-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.about-text {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 15px;
}

.about-box {
    background: #1c1f26;
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}

.about-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.services-section {
    background-color: #0f1115;
}

.service-card {
    background: #1c1f26;
    padding: 25px;
    border-radius: 12px;
    height: 100%;
    transition: 0.3s;
}

.service-card h4 {
    margin-bottom: 15px;
}

.service-card p {
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.7;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}

.portfolio-section {
    background-color: #111318;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.portfolio-item img {
    width: 100%;
    transition: 0.4s;
    border-radius: 10px;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: 0.4s;
    font-weight: bold;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.contact-section {
    background-color: #0f1115;
}

.contact-form input,
.contact-form textarea {
    background: #1c1f26;
    border: none;
    color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #aaa;
}

.contact-form .btn {
    padding: 12px;
    font-weight: bold;
}

.footer {
    background: #111318;
    padding: 30px 0;
    color: #ccc;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;

    background: linear-gradient(90deg, #ff6a00, #ff3c00, #ffb347);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    margin-top: 25px;
    font-size: 17px;
    color: #d0d0d0;
    line-height: 1.9;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons .btn-primary {
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    border: none;
}

.hero-buttons .btn-primary:hover {
    box-shadow: 0 0 15px rgba(255, 106, 0, 0.7);
}

.hero-buttons .btn-success:hover {
    box-shadow: 0 0 15px rgba(0, 255, 140, 0.6);
}

.hero-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    margin: 10px auto;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    border-radius: 5px;
}

.about-section {
    background: linear-gradient(180deg, #111318, #0f1115);
    padding-top: 80px;
    padding-bottom: 80px;
}

.section-subtitle {
    color: #aaa;
    max-width: 700px;
    margin: auto;
}

.about-text {
    color: #cfcfcf;
    line-height: 1.8;
    font-size: 15px;
}

.about-image img {
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
}

.about-card {
    background: #1c1f26;
    padding: 18px;
    border-radius: 10px;
    transition: 0.3s;
    height: 100%;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.6);
}

.about-card h5 {
    margin-bottom: 6px;
}

.about-card p {
    font-size: 14px;
    color: #bbb;
}

/* About Section Typography Upgrade */

#about .section-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#about .about-text {
    font-size: 16px;
    line-height: 1.9;
    letter-spacing: 0.4px;
    color: #d6d6d6;
}

#about .section-subtitle {
    font-size: 16px;
    color: #a0a0a0;
    letter-spacing: 1px;
    font-style: italic;
}

#about .about-text::first-letter {
    font-size: 28px;
    font-weight: bold;
    color: #ff6a00;
}

#about .about-card h5 {
    font-weight: 600;
    letter-spacing: 0.5px;
    color: #ffffff;
}

#about .about-text {
    text-shadow: 0 0 2px rgba(255,255,255,0.05);
}

/* SERVICES HEADING DECORATION */

#services .section-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#services p.text-secondary {
    font-size: 16px;
    color: #a5a5a5;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: auto;
}

#services .service-card h4 {
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    color: #ffffff;
}

#services .service-card p {
    font-size: 14.5px;
    line-height: 1.8;
    color: #cfcfcf;
    letter-spacing: 0.3px;
}

#services .service-card p::first-line {
    color: #ffffff;
    font-weight: 500;
}

#services .service-card {
    text-shadow: 0 0 2px rgba(255,255,255,0.04);
}

/* PORTFOLIO HEADING */

#portfolio .section-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
#portfolio p.text-secondary {
    font-size: 16px;
    color: #a8a8a8;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: auto;
}
.portfolio-overlay {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.portfolio-overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.portfolio-overlay {
    text-shadow: 0 0 5px rgba(255, 106, 0, 0.3);
}

.portfolio-item:hover .portfolio-overlay {
    transform: scale(1.05);
    transition: 0.3s;
}

/* CONTACT HEADING */

#contact .section-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;

    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#contact p.text-secondary {
    font-size: 16px;
    color: #a8a8a8;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: auto;
}

.contact-form input,
.contact-form textarea {
    font-size: 15px;
    letter-spacing: 0.4px;
    line-height: 1.6;
    border-radius: 8px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
    letter-spacing: 0.5px;
}

.contact-form .btn {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

#contact .btn-success,
#contact .btn-warning {
    font-weight: 600;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.footer h4 {
    font-weight: 700;
    letter-spacing: 1px;
    color: #ffffff;
}

.footer p {
    font-size: 14px;
    letter-spacing: 0.4px;
    color: #bfbfbf;
}

.video-grid{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:25px;
}

.video-grid video{
width:100%;
border-radius:15px;
box-shadow:0 10px 30px rgba(0,0,0,0.4);
}

/* Mobile responsive */
@media(max-width:768px){
.video-grid{
grid-template-columns:1fr;
}
}

/* ===== VIDEO HEADING SAME AS PORTFOLIO ===== */
#videos .section-title {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: linear-gradient(90deg, #ff6a00, #ff3c00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

#videos .text-secondary {
    font-size: 16px;
    color: #a8a8a8;
    letter-spacing: 0.5px;
    max-width: 700px;
    margin: 10px auto 40px;
}

/* ===== VIDEO GRID ===== */
.video-grid{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:25px;
}

/* ===== VIDEO CARD ===== */
.video-item{
position:relative;
overflow:hidden;
border-radius:15px;
}

/* video style */
.video-item video{
width:100%;
display:block;
border-radius:15px;
}

/* ===== OVERLAY SAME AS PORTFOLIO ===== */
.video-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
font-size:18px;
font-weight:600;
letter-spacing:1px;
text-transform:uppercase;

background:linear-gradient(90deg, #ff6a00, #ff3c00);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

background-color:rgba(0,0,0,0.5);
opacity:0;
transition:0.3s;

text-shadow:0 0 5px rgba(255,106,0,0.3);
}

/* hover effect */
.video-item:hover .video-overlay{
opacity:1;
transform:scale(1.05);
}

/* ===== RESPONSIVE ===== */
@media(max-width:768px){
.video-grid{
grid-template-columns:1fr;
}
}