/* =========================
   GOOGLE FONTS
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@500;600;700;800&display=swap');

/* =========================
   ROOT VARIABLES
========================= */
:root {
    --primary: #F76209;
    --secondary: #071A52;
    --accent: #FFD166;
    --dark: #0B1120;
    --dark-light: #121A2C;
    --white: #ffffff;
    --text: #CBD5E1;
    --heading: #F8FAFC;
    --border: rgba(255, 255, 255, .08);
    --shadow: 0 10px 40px rgba(0, 0, 0, .25);
    --radius: 18px;
    --transition: .4s ease;
}

/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
}

/* =========================
   CUSTOM SCROLLBAR
========================= */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #08101f;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 30px;
}

/* =========================
   TYPOGRAPHY
========================= */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--heading);
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

section {
    padding: 120px 0;
}

/*==========================
TOP HEADER
===========================*/
.top-header {
    background: #091321;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.top-left, .top-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.top-right {
    justify-content: flex-end;
}

.top-header a, .top-header span {
    color: #d7d7d7;
    font-size: 14px;
}

.top-header i {
    color: #f76209;
    margin-right: 8px;
}

.dot {
    width: 15px;
    height: 15px;
    background: #18d26e;
    display: inline-block;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.5s infinite;
}

/*==========================
NAVBAR
===========================*/
#mainNavbar {
    position: sticky;
    top: 0;
    z-index: 999;
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);
    transition: .4s;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.navbar {
    padding: 18px 0;
}

.navbar-brand {
    color: #050303;
    font-size: 34px;
    font-weight: 800;
}

.navbar-brand span {
    color: #f76209;
}

.navbar-nav {
    gap: 18px;
}

.nav-link {
    color: #000000;
    font-weight: 500;
    position: relative;
    transition: .35s;
}

.nav-link:hover,
.nav-link.active {
    color: #f76209;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #f76209;
    transition: .35s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 15px;
}

.resume-btn {
    background-color: #f76209;
    padding: 12px 28px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, .15);
    color: #ffffff;
    transition: .3s;
}

.resume-btn:hover {
    background: #fff;
    color: #000;
    border-color: #f76209;
}

.hire-btn {
    padding: 12px 30px;
    border-radius: 50px;
    background: #f76209;
    color: #fff;
    transition: .35s;
}

.hire-btn:hover {
    background: #ff812d;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 98, 9, .35);
}

.navbar-toggler {
    color: #000;
    font-size: 32px;
}

/* Dynamic Sticky State */
#mainNavbar.sticky {
    background: rgba(6, 15, 28, .95);
    padding: 10px 0;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .35);
}

#mainNavbar.sticky .nav-link {
    color: #fff;
}

#mainNavbar.sticky .navbar-brand {
    color: #fff;
}

#mainNavbar.sticky .navbar-toggler {
    color: #fff;
}

/* ANIMATION */
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: .4; }
    100% { transform: scale(1); opacity: 1; }
}

/* MOBILE RESPONSIVE NAV */
@media(max-width:991px) {
    .navbar-collapse {
        margin-top: 20px;
        padding: 25px;
        background: #091321;
        border-radius: 20px;
    }

    .nav-link {
        color: #fff !important;
    }

    .nav-buttons {
        margin-top: 20px;
        flex-direction: column;
    }

    .resume-btn, .hire-btn {
        text-align: center;
    }
}

/*==========================
PRELOADER
==========================*/
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #081120;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.loader {
    width: 65px;
    height: 65px;
    border: 5px solid rgba(255, 255, 255, .08);
    border-top: 5px solid #F76209;
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

/*==========================
BACK TO TOP
==========================*/
#backTop {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 55px;
    height: 55px;
    background: #F76209;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: .35s;
    z-index: 999;
}

#backTop.show {
    opacity: 1;
    visibility: visible;
}

#backTop:hover {
    transform: translateY(-6px);
}

/*=============================
 HERO
=============================*/
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(247, 98, 9, .25), transparent 30%),
                radial-gradient(circle at 80% 20%, rgba(80, 120, 255, .15), transparent 35%),
                radial-gradient(circle at 60% 80%, rgba(255, 255, 255, .05), transparent 30%),
                #081120;
    z-index: -3;
}

.hero-subtitle {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(247, 98, 9, .12);
    color: #f76209;
    border: 1px solid rgba(247, 98, 9, .35);
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    min-height: 45px;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.9;
    max-width: 560px;
}

.hero-btn {
    display: flex;
    gap: 18px;
    margin-top: 40px;
}

.btn-main {
    background: var(--primary);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    transition: .35s;
}

.btn-main:hover {
    transform: translateY(-6px);
    color: #fff;
    box-shadow: 0 15px 35px rgba(247, 98, 9, .4);
}

.btn-outline-main {
    border: 2px solid rgba(255, 255, 255, .15);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    transition: .35s;
}

.btn-outline-main:hover {
    background: #fff;
    color: #000;
}

.hero-social {
    display: flex;
    gap: 15px;
    margin-top: 45px;
}

.hero-social a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border);
    backdrop-filter: blur(15px);
    transition: .35s;
}

.hero-social a:hover {
    background: var(--primary);
    transform: translateY(-8px);
}

.hero-image {
    position: relative;
    text-align: center;
    z-index: 5;
}

.circle {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f76209, #ffb347);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    opacity: .15;
    animation: rotateCircle 15s linear infinite;
    z-index: 1;
}

.profile-image {
    position: relative;
    width: 420px;
    animation: float 4s ease-in-out infinite;
    z-index: 2;
}

.floating-card {
    position: absolute;
    width: 170px;
    padding: 18px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 25px 40px rgba(0, 0, 0, .25);
    z-index: 10 !important;
}

.floating-card i {
    font-size: 34px;
    color: var(--primary);
    margin-bottom: 10px;
}

.card-one { top: 30px; left: 10px; animation: float 5s infinite; }
.card-two { right: 0; top: 180px; animation: float 6s infinite; }
.card-three { left: 70px; bottom: 0; animation: float 7s infinite; }

.scroll-down {
    position: absolute;
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
}

.scroll-down span {
    width: 26px;
    height: 45px;
    display: block;
    border: 2px solid #fff;
    border-radius: 30px;
    position: relative;
}

.scroll-down span::before {
    content: "";
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 8px;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

@keyframes rotateCircle {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes scroll {
    0% { opacity: 0; top: 8px; }
    50% { opacity: 1; }
    100% { opacity: 0; top: 26px; }
}

/*=========================================
ABOUT SECTION
=========================================*/
.about-section {
    position: relative;
    padding: 120px 0;
    background: #08111f;
    overflow: hidden;
}

.section-heading {
    margin-bottom: 40px;
}

.section-heading .subtitle {
    color: #f76209;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.section-heading h2 {
    font-size: 35px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 25px;
}

.section-heading p {
    color: #bfc8d6;
    font-size: 17px;
    line-height: 1.9;
}

.about-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.image-wrapper {
    width: 420px;
    height: 520px;
    border-radius: 30px;
    overflow: hidden;
    background: #111d30;
    border: 1px solid rgba(255, 255, 255, .08);
    box-shadow: 0 25px 60px rgba(0, 0, 0, .35);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.experience-card {
    position: absolute;
    right: -10px;
    bottom: 40px;
    width: 180px;
    padding: 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    box-shadow: 0 20px 45px rgba(0, 0, 0, .3);
}

.experience-card h2 {
    color: #f76209;
    font-size: 48px;
    margin-bottom: 8px;
}

.experience-card span {
    color: #fff;
    font-size: 15px;
}

.about-skill-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.skill-item {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    padding: 18px 20px;
    border-radius: 15px;
    color: #fff;
    transition: .35s;
}

.skill-item i {
    color: #f76209;
    margin-right: 10px;
}

.skill-item:hover {
    transform: translateY(-8px);
    border-color: #f76209;
    background: rgba(247, 98, 9, .08);
}

.about-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 10px;
}

.info-card {
    padding: 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.info-card:hover {
    transform: translateY(-8px);
    border-color: #f76209;
}

.info-card small {
    color: #f76209;
    display: block;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-card h6 {
    color: #fff;
    font-size: 17px;
    margin: 0;
}

.about-counter {
    display: flex;
    gap: 20px;
    margin: 45px 0;
    flex-wrap: wrap;
}

.counter-box {
    flex: 1;
    min-width: 140px;
    background: linear-gradient(135deg, #121d30, #0b1424);
    border-radius: 20px;
    padding: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box h3 {
    font-size: 42px;
    color: #f76209;
    margin-bottom: 10px;
}

.counter-box span {
    color: #d5dbe5;
}

.about-btn {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Responsive & Mobile Fixes */
@media(max-width:991px) {
    .hero-section { padding-top: 140px; text-align: center; }
    .hero-content p { margin: 0 auto; }
    .hero-btn, .hero-social { justify-content: center; }
    .circle { width: 320px; height: 320px; }
    .profile-image { width: 280px; }
    .floating-card { padding: 12px; width: 140px; }
    .card-one { top: -10px; left: 0px; }
    .card-two { right: 0px; top: 120px; }
    .card-three { left: 10px; bottom: -20px; }
    .hero-content h1 { font-size: 40px; }
    .hero-content h2 { font-size: 24px; }
    .image-wrapper { width: 340px; height: 430px; }
    .experience-card { right: 50%; transform: translateX(50%); bottom: -25px; }
    .about-skill-list, .about-info { grid-template-columns: 1fr; }
    .about-counter, .about-btn { justify-content: center; }
}

/*=====================================
 EXPERIENCE
======================================*/
.experience-section {
    padding: 120px 0;
    background: #0d1628;
}

.exp-card {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    transition: .35s;
}

.exp-card:hover {
    transform: translateY(-10px);
    border-color: #f76209;
    box-shadow: 0 20px 45px rgba(247, 98, 9, .15);
}

.highlight-card {
    background: linear-gradient(135deg, #f76209, #ff944d);
}

.highlight-card h1, .highlight-card h5, .highlight-card p {
    color: #fff;
}

.badge-year {
    display: inline-block;
    background: #f76209;
    color: #fff;
    padding: 8px 18px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-size: 14px;
}

.exp-card h3 { color: #fff; margin-bottom: 10px; }
.exp-card h6 { color: #f76209; margin-bottom: 20px; }
.exp-card p { color: #c6d0df; line-height: 1.8; }

.tech-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
}

.tech-list span {
    padding: 10px 18px;
    border-radius: 50px;
    background: rgba(247, 98, 9, .12);
    color: #f76209;
    font-size: 14px;
}

.exp-card h2 { color: #f76209; font-size: 60px; margin-bottom: 15px; }
.exp-card small { color: #d2d8e3; font-size: 18px; display: block; }

/*=================================
SKILLS
=================================*/
.skills-section {
    background: #081120;
    padding: 120px 0;
}

.skill-card {
    height: 100%;
    padding: 35px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    transition: .35s;
}

.skill-card:hover {
    transform: translateY(-10px);
    border-color: #f76209;
    box-shadow: 0 20px 50px rgba(247, 98, 9, .18);
}

.skill-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 42px;
    margin-bottom: 25px;
    color: #fff;
}

.html { background: #e44d26; }
.css { background: #264de4; }
.js { background: #f7df1e; color: #000; }
.php { background: #777bb4; }
.wp { background: #21759b; }
.bs { background: #7952b3; }
.db { background: #0f9d58; }
.el { background: #92003b; }

.skill-card h4 { color: #fff; margin-bottom: 12px; }
.skill-card p { color: #b8c2d3; margin-bottom: 30px; line-height: 1.8; }
.skill-footer span { color: #fff; font-weight: 700; }

.progress-line {
    margin-top: 12px;
    height: 8px;
    background: rgba(255, 255, 255, .08);
    border-radius: 30px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #f76209, #ff9a57);
    border-radius: 30px;
}

/*=============================
SERVICES
=============================*/
.services-section {
    background: #0c1424;
    padding: 120px 0;
}

.service-card {
    height: 100%;
    padding: 40px 30px;
    border-radius: 24px;
    background: #131d31;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 4px;
    background: #f76209;
    transition: .4s;
}

.service-card:hover::before { width: 100%; }
.service-card:hover { transform: translateY(-12px); border-color: #f76209; box-shadow: 0 25px 60px rgba(247, 98, 9, .18); }

.service-icon {
    width: 75px;
    height: 75px;
    border-radius: 18px;
    background: rgba(247, 98, 9, .12);
    color: #f76209;
    font-size: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-card h4 { color: #fff; margin-bottom: 18px; }
.service-card p { color: #b8c2d3; line-height: 1.8; margin-bottom: 25px; }
.service-card a { color: #f76209; font-weight: 600; }
.service-card a i { margin-left: 8px; transition: .3s; }
.service-card:hover a i { transform: translateX(8px); }

/*==============================
PORTFOLIO
==============================*/
.portfolio-section {
    background: #081120;
    padding: 120px 0;
}

.portfolio-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.portfolio-filter button {
    padding: 12px 25px;
    border: none;
    border-radius: 50px;
    background: #131d31;
    color: #fff;
    transition: .3s;
}

.portfolio-filter button.active, .portfolio-filter button:hover {
    background: #f76209;
}

.portfolio-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.portfolio-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(7, 16, 29, .9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    opacity: 0;
    transition: .4s;
    padding: 30px;
}

.portfolio-card:hover img { transform: scale(1.08); }
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay span { color: #f76209; margin-bottom: 10px; }
.portfolio-overlay h4 { color: #fff; margin-bottom: 10px; }
.portfolio-overlay p { color: #c4cfde; }

.portfolio-btns {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.portfolio-btns a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f76209;
    color: #fff;
}

/*=============================
WHY SECTION
=============================*/
.why-section {
    padding: 120px 0;
    background: #0c1628;
}

.section-title { color: #fff; font-size: 46px; margin: 20px 0; }
.section-desc { color: #bfc8d6; line-height: 1.9; margin-bottom: 40px; }

.why-grid { display: grid; gap: 20px; }

.why-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: #141f35;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.why-item:hover { transform: translateY(-8px); border-color: #f76209; }

.why-item i {
    width: 65px;
    height: 65px;
    background: #f76209;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.why-item h5 { color: #fff; margin-bottom: 10px; }
.why-item p { color: #bfc8d6; margin: 0; }

.stats-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.stat-box {
    padding: 45px 20px;
    text-align: center;
    background: linear-gradient(135deg, #131d31, #1b2942);
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.stat-box:hover {
    transform: translateY(-10px);
    border-color: #f76209;
    box-shadow: 0 20px 40px rgba(247, 98, 9, .15);
}

.stat-box h2 { color: #f76209; font-size: 56px; margin-bottom: 10px; }
.stat-box span { color: #fff; font-size: 18px; }

/*=============================
TESTIMONIALS
=============================*/
.testimonial-card {
    background: #131d31;
    border-radius: 22px;
    padding: 35px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .4s;
    height: 100%;
}

.testimonial-card:hover { transform: translateY(-10px); border-color: #F76209; }

.testimonial-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #F76209;
    margin-bottom: 20px;
}

.testimonial-card h4 { color: #fff; }
.testimonial-card span { color: #F76209; }
.testimonial-card p { color: #bfc8d6; margin-top: 20px; line-height: 1.8; }
.stars { color: #ffc107; font-size: 18px; margin-top: 15px; }
.swiper-pagination-bullet-active { background: #F76209; }

/*=========================
CONTACT
=========================*/
.contact-section {
    background: #081120;
    padding: 120px 0;
}

.contact-info { display: flex; flex-direction: column; gap: 25px; }

.contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: #131d31;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: .35s;
}

.contact-card:hover { transform: translateY(-8px); border-color: #F76209; }

.contact-card i {
    width: 65px;
    height: 65px;
    background: #F76209;
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.contact-card h5 { color: #fff; }
.contact-card p { color: #bfc8d6; margin: 0; }

.social-icons { display: flex; gap: 15px; }

.social-icons a {
    width: 50px;
    height: 50px;
    background: #131d31;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.social-icons a:hover { background: #F76209; }

.contact-form {
    background: #131d31;
    padding: 40px;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, .08);
}

.form-control {
    background: #0d1728;
    border: none;
    color: #fff;
    padding: 15px 20px;
}

.form-control:focus {
    background: #0d1728;
    color: #fff;
    box-shadow: none;
    border: 1px solid #F76209;
}

.form-control::placeholder { color: #8d98aa; }
textarea { resize: none; }

/*==================================
FOOTER SECTION CSS
==================================*/

.footer-section {
    background: #060d19;
    padding: 90px 0 30px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #F76209, #ff944d, #F76209);
}

/* Logo */
.footer-logo {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo span {
    color: #F76209;
}

.footer-widget p {
    color: #bfc8d6;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* Headings */
.footer-widget h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 35px;
    height: 3px;
    background: #F76209;
    border-radius: 2px;
}

/* Lists */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 12px;
}

.footer-widget ul li a {
    color: #bfc8d6;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-widget ul li a i {
    font-size: 10px;
    color: #F76209;
    transition: transform 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #F76209;
    transform: translateX(5px);
}

/* Social Media */
.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #131d31;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    transition: all 0.35s ease;
    text-decoration: none;
}

.footer-social a:hover {
    background: #F76209;
    border-color: #F76209;
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(247, 98, 9, 0.3);
}

/* Contact Info */
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #bfc8d6;
    font-size: 15px;
    margin-bottom: 15px;
}

.footer-contact li i {
    color: #F76209;
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact li a {
    color: #bfc8d6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact li a:hover {
    color: #F76209;
}

/* Divider & Bottom */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 40px 0 25px;
}

.footer-bottom p {
    color: #8d98aa;
    font-size: 14px;
}

/* Scroll To Top */
.scroll-top {
    width: 45px;
    height: 45px;
    background: #F76209;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.35s ease;
}

.scroll-top:hover {
    background: #fff;
    color: #F76209;
    transform: translateY(-5px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}