:root {
            --light-grey: #f8f9fc;
            --primary-blue: #247bfb;
            --accent-blue: #0558e0;
        }
        
        * { font-family: 'Poppins', system-ui, sans-serif; }
        
        body {
            background: var(--light-grey);
            color: #222;
            overflow-x: hidden;
        }
        
        .navbar {
    background: rgba(3, 7, 44, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.25);
    padding: 1rem 0;
}
        
        .navbar.scrolled {
            padding: 0.75rem 0;
    background: rgba(3, 7, 44, .92);
        }
        
        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 2.45rem;
            font-weight: 700;
            letter-spacing: -2px;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }
        
        .logo .d-letter {
            color: #60a5fa;
            position: relative;
        }
        
        .logo .d-letter::after {
            content: '✦';
            position: absolute;
            font-size: 0.65rem;
            top: -8px;
            right: -6px;
            color: #bae6fd;
            animation: sparkle 2s infinite;
        }
        
        @keyframes sparkle {
            0%, 100% { opacity: 0.7; transform: scale(0.8); }
            50% { opacity: 1; transform: scale(1.2); }
        }
        
       /* =========================================
   NAVBAR LINKS
========================================= */

.navbar .nav-link {

    font-weight: 500;

    color: #fff !important;

    position: relative;

    padding: 0.5rem 1.3rem;

    transition: all 0.35s ease;
}

/* HOVER + ACTIVE */

.navbar .nav-link:hover,
.navbar .nav-link.active {

    color: #71c7ff !important;
}

/* DESKTOP UNDERLINE */

.navbar .nav-link::after {

    content: '';

    position: absolute;

    width: 0;

    height: 3px;

    bottom: -6px;

    left: 50%;

    background: linear-gradient(
        to right,
        #60a5fa,
        #bae6fd
    );

    border-radius: 10px;

    transition: all 0.35s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {

    width: 60%;

    left: 20%;
}

/* =========================================
   MOBILE NAVBAR
========================================= */

@media(max-width:991px){

    /* MOBILE LINKS */

    .navbar .nav-link {

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding: 15px 0 !important;

        border-bottom: 1px solid rgba(255,255,255,0.08);

        font-size: 15px;
    }

    /* REMOVE DESKTOP UNDERLINE */

    .navbar .nav-link::after {

        display: none;
    }

    /* MOBILE ACTIVE EFFECT */

    .navbar .nav-link.active {

        color: #60a5fa !important;

        padding-left: 10px !important;
    }

    /* LEFT BLUE BAR */

    .navbar .nav-link.active::before {

        content: '';

        width: 4px;
        height: 22px;

        border-radius: 20px;

        background: linear-gradient(
            to bottom,
            #60a5fa,
            #247bfb
        );

        position: absolute;

        left: -12px;

        top: 50%;

        transform: translateY(-50%);
    }

    /* REMOVE BORDER LAST */

    .navbar .nav-item:last-child .nav-link {

        border-bottom: none;
    }
}

/* =========================================
   MOBILE NAVBAR
========================================= */

/* =========================================
   FINAL MOBILE NAVBAR
========================================= */

.main-logo{
    width: 230px;
}

/* TOGGLER */

.navbar-toggler{

    border: none !important;

    box-shadow: none !important;

    font-size: 1.5rem;

    z-index: 1001;
}

/* DESKTOP */

.navbar-nav{
    gap: 10px;
}

/* MOBILE */

@media(max-width:991px){

    /* NAVBAR */

    .navbar{

        padding: 14px 0;
    }

    .navbar .container{

        display: flex;
        align-items: center;
    }

    /* LOGO */

    .main-logo{

        width: 170px;
    }

    /* TOGGLER */

    .navbar-toggler{

        margin-left: auto;
    }

    /* COLLAPSE MENU */

    .navbar-collapse{

        position: absolute;

        top: 100%;
        left: 0;

        width: 100%;

        background: #08113f;

        border-radius: 0 0 24px 24px;

        padding: 20px 24px;

        margin-top: 14px;

        box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    }

    /* NAV ITEMS */

    .navbar-nav{

        gap: 0;
    }

    .navbar .nav-item{

        width: 100%;
    }

    .navbar .nav-link{

        display: block;

        padding: 14px 0 !important;

        border-bottom: 1px solid rgba(255,255,255,0.08);

        font-size: 15px;
    }

    .navbar .nav-item:last-child .nav-link{

        border-bottom: none;
    }

    /* MOBILE DROPDOWN */

    .services-dropdown .dropdown-menu{

        position: relative;

        display: block;

        opacity: 1;
        visibility: visible;

        transform: none;

        background: rgba(255,255,255,0.05);

        margin-top: 10px;

        border-radius: 18px;

        padding: 10px;

        box-shadow: none;
    }

    .services-dropdown .dropdown-item{

        padding: 12px 14px;
    }
}

/* SMALL MOBILE */

@media(max-width:576px){

    .main-logo{

        width: 145px;
    }

    .navbar-collapse{

        padding: 18px;
    }
}

        
        /* Hero */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #1a1a1c 0%, #1a1a1c 100%);
            color: white;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: url('images/hero-bg1.jpg') center/cover;
            opacity: 0.18;
            animation: heroPan 35s infinite alternate ease-in-out;
        }
        
        @keyframes heroPan {
            0% { transform: scale(1.05) translate(0, 0); }
            100% { transform: scale(1.18) translate(40px, 30px); }
        }
        
        .glow-btn {
            background: white;
            font-weight: 600;
            padding: 16px 42px;
            border-radius: 60px;
            box-shadow: 0 10px 30px rgba(255,255,255,0.3);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
			transform: translateY(-6px) scale(1.05);
            box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
        }
        
        .glow-btn:hover {
		color: var(--primary-blue);
            transform: translateY(-6px) scale(1.05);
            box-shadow: 0 25px 55px rgba(59, 130, 246, 0.4);
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 75px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-blue));
            bottom: -14px;
            left: 0;
            border-radius: 10px;
        }
        
        /* Stylish Classical Tabs */
        .nav-tabs {
            border-bottom: 4px solid #e2e8f0;
            gap: 3rem;
            justify-content: center;
        }
        
        .nav-tabs .nav-link {
            font-size: 1.35rem;
            font-weight: 600;
            color: #40464e;
            padding: 16px 0;
            position: relative;
            transition: all 0.4s ease;
        }
        
        .nav-tabs .nav-link:hover {
            color: #1e40af;
        }
        
        .nav-tabs .nav-link.active {
            color: var(--primary-blue);
            font-weight: 700;
        }
        
        .nav-tabs .nav-link:after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 5px;
            background: linear-gradient(to right, var(--primary-blue), var(--accent-blue));
            transition: width 0.4s ease;
        }
        
        .nav-tabs .nav-link.active:after {
            width: 100%;
        }
        
        .service-card {
    background: linear-gradient(135deg, #3381c7, #29517a) !important;

    border: none;
    border-radius: 24px;
    box-shadow: 0 15px 40px rgba(30, 64, 175, 0.25);

    transition: all 0.5s ease;
    height: 100%;

    color: white;
}

.service-card h4 {
    color: #f7d063;
	font-weight:500!important;
	font-size:1.4rem!important;
}

.service-card p {
    color: rgba(255,255,255,0.85) !important;
}

.service-card i {

    color: white !important;

    display: inline-block;

    transition: all 0.45s ease;

    animation: iconFloat 3.5s ease-in-out infinite;
}

/* FLOAT ANIMATION */

@keyframes iconFloat {

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-8px);
    }
}

/* HOVER EFFECT */

.service-card:hover i {

    transform: scale(1.15) rotate(-6deg);

    text-shadow:
    0 0 18px rgba(255,255,255,0.45);

    animation-play-state: paused;
}

.service-card:hover {
    transform: translateY(-15px);

    box-shadow: 0 25px 60px rgba(30, 64, 175, 0.45);

    background: linear-gradient(
        135deg,
        #1e6baf,
        #1e6baf
    ) !important;
}
        
        .bg-dark { background: #03072c; }
		
		/* SERVICES TABS */
.services-tabs .nav-tabs {
    border-bottom: 3px solid #e2e8f0;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.services-tabs .nav-link {
    border: none !important;
    background: transparent !important;
    color: #40464e !important;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 14px 8px;
    position: relative;
    transition: 0.3s ease;
}

.services-tabs .nav-link:hover {
    color: var(--primary-blue) !important;
}

.services-tabs .nav-link.active {
    color: var(--primary-blue) !important;
}

.services-tabs .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 4px;
    border-radius: 20px;
    background: linear-gradient(
        to right,
        var(--primary-blue),
        var(--accent-blue)
    );
    transition: 0.4s ease;
}

.services-tabs .nav-link.active::after {
    width: 100%;
}
.services-dropdown {
    position: relative;
}

/* DROPDOWN MENU */
.services-dropdown .dropdown-menu {

    position: absolute;
    top: 100%;
    left: 0;

    background: #141e54;
    border: none;
    border-radius: 18px;

    padding: 12px;

    min-width: 220px;

    box-shadow: 0 20px 40px rgba(0,0,0,0.25);

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all 0.35s ease;

    display: none;
}

/* SHOW ON HOVER */
.services-dropdown:hover .dropdown-menu {

    display: block;

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* MENU ITEM */
.services-dropdown .dropdown-item {

    color: #dbeafe;

    padding: 12px 16px;

    border-radius: 12px;

    font-weight: 500;

    transition: all 0.3s ease;
}

/* ITEM HOVER */
.services-dropdown .dropdown-item:hover {

    background: linear-gradient(
        135deg,
        #1e40af,
        #3b82f6
    );

    color: white;
}

/* SERVICES MENU SAME AS OTHER MENUS */
.services-dropdown > .nav-link {

    display: inline-flex;
    align-items: center;

    padding: 0.5rem 1.3rem !important;
}

/* SMALL ARROW */
.services-dropdown > .nav-link i {

    margin-left: 6px;
    font-size: 11px;
}	
.bg-primary{background-color:#247bfb;}
.service-card p{font-size:14px;}
.fs-5 {font-size:16px!important;}
h1{font-size:3.3rem;font-weight: bold;}
/* PROJECT SLIDER */

.project-card {

    position: relative;

    overflow: hidden;

    border-radius: 28px;

    box-shadow: 0 20px 50px rgba(0,0,0,0.12);

    transition: all 0.5s ease;

    background: white;
}

.project-card img {

    width: 100%;
    height: 390px;

    object-fit: cover;

    transition: transform 0.7s ease;
}

.project-card:hover img {

    transform: scale(1.08);
}

.project-overlay {

    position: absolute;

    left: 0;
    bottom: 0;

    width: 100%;

    padding: 30px;

    background: linear-gradient(
        to top,
        rgba(3,7,44,0.95),
        rgba(3,7,44,0.2),
        transparent
    );

    color: white;
}

.project-overlay h5 {

    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.project-overlay p {

    margin: 0;
    opacity: 0.85;
    font-size: 0.95rem;
}

/* CAROUSEL BUTTONS */

.carousel-control-prev,
.carousel-control-next {

    width: 60px;
    height: 60px;

    top: 50%;

    transform: translateY(-50%);

    background: rgba(36,123,251,0.9);

    border-radius: 50%;

    opacity: 1;
}

/* INDICATORS */

.carousel-indicators button {

    width: 12px !important;
    height: 12px !important;

    border-radius: 50%;

    background-color: #247bfb !important;
}

/* MOBILE */

@media(max-width:991px){

    .project-card img{
        height:320px;
		display:block;
width:100%;
cursor: zoom-in;
    }

    .carousel-control-prev,
    .carousel-control-next{
        display:none;
    }
}

/* CREATIVE HERO */

.creative-hero {

    background:
    radial-gradient(circle at top left,
    rgba(36,123,251,0.18),
    transparent 30%),

    radial-gradient(circle at bottom right,
    rgba(5,88,224,0.18),
    transparent 30%),

    #f8f9fc;

    position: relative;

    overflow: hidden;

    padding-top: 140px;
}

/* LEFT IMAGES */

.hero-images {

    position: relative;

    height: 720px;
}

.hero-img {

    position: absolute;

    overflow: hidden;

    border-radius: 32px;

    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.hero-img img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s ease;
}

.hero-img:hover img {

    transform: scale(1.08);
}

/* MAIN IMAGE */

.hero-img-1 {

    width: 78%;
    height: 620px;

    left: 0;
    top: 0;

    animation: floatMain 6s ease-in-out infinite;
	border: 6px solid #c5c7e5;
}

/* SMALL FLOATING IMAGE */

.hero-img-2 {

    width: 300px;
    height: 300px;

    right: 10px;
    bottom: 40px;

    border: 10px solid white;

    animation: floatSmall 5s ease-in-out infinite;
}

@keyframes floatMain {

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(-15px);
    }
}

@keyframes floatSmall {

    0%,100%{
        transform: translateY(0px);
    }

    50%{
        transform: translateY(15px);
    }
}

/* FLOATING BADGE */

.floating-badge {

    position: absolute;

    left: 40px;
    bottom: 40px;

    background: white;

    padding: 18px 26px;

    border-radius: 60px;

    font-weight: 600;

    box-shadow: 0 15px 40px rgba(0,0,0,0.12);

    display: flex;
    align-items: center;
    gap: 10px;

    z-index: 5;
}

.floating-badge i {

    color: #247bfb;
}

/* RIGHT CONTENT */

.hero-content {

    padding-left: 40px;
}

.hero-mini-title {

    display: inline-block;

    margin-bottom: 22px;

    color: #247bfb;

    font-weight: 700;

    letter-spacing: 2px;

    font-size: 14px;
}

.hero-content h1 {

    font-size: 3.5rem;

    line-height: 1.1;

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 28px;
}

.hero-content h1 span {

    color: #247bfb;
}

.hero-content p {

    font-size: 1.1rem;

    line-height: 1.5;

    color: #40464e;

    margin-bottom: 40px;

    max-width: 580px;
}

/* BUTTONS */

.hero-buttons {

    display: flex;
    gap: 18px;

    margin-bottom: 50px;
}

.hero-btn-primary {

    background: linear-gradient(
        135deg,
        #247bfb,
        #0558e0
    );

    color: white;

    padding: 16px 36px;

    border-radius: 60px;

    font-weight: 600;

    transition: 0.4s ease;
}

.hero-btn-primary:hover {

    transform: translateY(-5px);

    color: white;

    box-shadow: 0 20px 40px rgba(36,123,251,0.3);
}

.hero-btn-outline {

    border: 2px solid #247bfb;

    color: #247bfb;

    padding: 16px 36px;

    border-radius: 60px;

    font-weight: 600;

    transition: 0.4s ease;
}

.hero-btn-outline:hover {

    background: #247bfb;

    color: white;
}

/* STATS */

.hero-stats {

    display: flex;

    gap: 40px;
}

.hero-stat-box h3 {

    font-size: 2rem;

    color: #ebb829;

    font-weight: 700;

    margin-bottom: 5px;
}

.hero-stat-box span {

    color: #40464e;
}

/* MOBILE */

@media(max-width:991px){

    .creative-hero{

        padding-top: 160px;
        text-align: center;
    }

    .hero-content{

        padding-left: 0;
        margin-top: 60px;
    }

    .hero-content h1{

        font-size: 2.9rem;
    }

    .hero-images{

        height: 600px;
    }

    .hero-img-1{

        width: 85%;
        height: 500px;
    }

    .hero-img-2{

        width: 220px;
        height: 220px;
    }

    .hero-buttons{

        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats{

        justify-content: center;
    }
}

@media(max-width:576px){

    .hero-content h1{

        font-size: 2.3rem;
    }

    .hero-images{

        height: 480px;
    }

    .hero-img-1{

        height: 380px;
    }

    .hero-img-2{

        width: 170px;
        height: 170px;
    }

    .floating-badge{

        left: 10px;
        bottom: 10px;

        padding: 14px 18px;

        font-size: 13px;
    }
}

/* CREATIVE ABOUT SECTION */

.creative-about {

    padding: 80px 0;

    background: white;

    position: relative;

    overflow: hidden;
}

/* LEFT CONTENT */

.about-mini-title {

    display: inline-block;

    margin-bottom: 20px;

    color: #247bfb;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: 2px;
}

.about-content h2 {

    font-size: 2.8rem;

    line-height: 1.15;

    font-weight: 800;

    color: #0f172a;

    margin-bottom: 28px;
}

.about-text {

    font-size: 1.05rem;

    line-height: 1.5;

    color: #40464e;

    margin-bottom: 22px;
}

/* FEATURES */

.about-features {

    margin-top: 45px;

    display: flex;

    flex-direction: column;

    gap: 24px;
}

.about-feature-box {

    display: flex;

    align-items: flex-start;

    gap: 20px;
}

.about-feature-box i {

    width: 68px;
    height: 68px;

    min-width: 68px;

    border-radius: 22px;

    background: linear-gradient(
        135deg,
        #247bfb,
        #0558e0
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 24px;

    box-shadow: 0 15px 35px rgba(36,123,251,0.25);
}

.about-feature-box h5 {

    font-size: 1.2rem;

    font-weight: 700;

    margin-bottom: 8px;

    color: #0f172a;
}

.about-feature-box p {

    margin: 0;

    color: #40464e;

    line-height: 1.5;
}

/* RIGHT VISUAL */

/* MAIN IMAGE */

.about-main-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* SMALL IMAGE */

.about-small-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* FLOATING CARD */

/* MODERN ABOUT VISUAL */

.about-modern-visual {

    position: relative;

    height: 720px;

    display: flex;
    align-items: center;
    justify-content: center;
}

/* MAIN IMAGE */

.about-modern-image {

    width: 82%;
    height: 620px;

    overflow: hidden;

    border-radius: 40px;

    position: relative;

    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

.about-modern-image::before {

    content: '';

    position: absolute;

    inset: 0;

    background: linear-gradient(
        to top,
        rgba(3,7,44,0.4),
        transparent
    );

    z-index: 2;
}

.about-modern-image img {

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: 0.7s ease;
}

.about-modern-image:hover img {

    transform: scale(1.08);
}

/* EXPERIENCE CARD */

/* FLOATING DESIGN CARD */

.design-floating-card {

    position: absolute;

    left: 0;
    top: 100px;

    width: 320px;

    background: rgba(255,255,255,0.82);

    backdrop-filter: blur(18px);

    border-radius: 30px;

    padding: 22px;

    box-shadow: 0 25px 60px rgba(0,0,0,0.12);

    z-index: 5;
}

/* TOP */

.design-card-top {

    display: flex;
    align-items: center;
    gap: 18px;

    margin-bottom: 28px;
}

.design-icon {

    width: 70px;
    height: 70px;

    border-radius: 24px;

    background: linear-gradient(
        135deg,
        #247bfb,
        #0558e0
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 26px;
}

.design-card-top h5 {

    margin-bottom: 6px;

    font-size: 1.2rem;

    font-weight: 700;

    color: #0f172a;
}

.design-card-top span {

    color: #40464e;

    font-size: 14px;
}

/* PROGRESS LINES */

.design-progress {

    display: flex;

    flex-direction: column;

    gap: 16px;
}

.progress-line {

    width: 100%;
    height: 10px;

    border-radius: 20px;

    background: #e2e8f0;

    overflow: hidden;
}

.progress-fill {

    height: 100%;

    border-radius: 20px;

    background: linear-gradient(
        to right,
        #247bfb,
        #60a5fa
    );

    animation: progressAnim 4s infinite alternate;
}

.fill-1 {
    width: 90%;
}

.fill-2 {
    width: 75%;
}

.fill-3 {
    width: 82%;
}

@keyframes progressAnim {

    from{
        transform: scaleX(0.85);
        transform-origin: left;
    }

    to{
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* MOBILE */

@media(max-width:991px){

    .design-floating-card{

        width: 280px;

        left: 10px;
        top: 40px;
    }
}

@media(max-width:576px){

    .design-floating-card{

        width: 240px;

        padding: 20px;
    }

    .design-icon{

        width: 55px;
        height: 55px;

        font-size: 20px;
    }
}

.stats-item:last-child {

    border-bottom: none;
}

/* CREATIVE INFO PANEL */

.creative-info-panel {

    position: absolute;

    right: 0;
    bottom: 70px;

    width: 280px;

    background: #03072c;

    border-radius: 34px;

    padding: 30px 26px;

    box-shadow: 0 30px 70px rgba(0,0,0,0.22);

    z-index: 5;
}

/* ITEMS */

.creative-info-item {

    display: flex;

    align-items: flex-start;

    gap: 16px;

    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.creative-info-item:last-child {

    border-bottom: none;
}

/* ICON */

.creative-info-icon {

    width: 58px;
    height: 58px;

    min-width: 58px;

    border-radius: 18px;

    background: linear-gradient(
        135deg,
        #247bfb,
        #0558e0
    );

    display: flex;
    align-items: center;
    justify-content: center;

    color: white;

    font-size: 20px;
}

/* TEXT */

.creative-info-item h4 {

    color: #ffdc79;

    font-size: 1.05rem;

    font-weight: 700;

    margin-bottom: 6px;
}

.creative-info-item span {

    color: rgba(255,255,255,0.7);

    font-size: 14px;

    line-height: 1.5;
}

/* MOBILE */

@media(max-width:991px){

    .creative-info-panel{

        right: 10px;
        bottom: 30px;

        width: 250px;
    }
}

@media(max-width:576px){

    .creative-info-panel{

        width: 220px;

        padding: 20px;
    }

    .creative-info-icon{

        width: 48px;
        height: 48px;

        min-width: 48px;

        font-size: 16px;
    }

    .creative-info-item h4{

        font-size: 0.95rem;
    }

    .creative-info-item span{

        font-size: 12px;
    }
}

/* MOBILE */

@media(max-width:991px){

    .about-modern-visual{

        height: 620px;

        margin-top: 50px;
    }

    .about-modern-image{

        width: 90%;
        height: 500px;
    }

    .experience-card{

        left: 10px;
        top: 40px;
    }

    .stats-panel{

        right: 10px;
        bottom: 30px;

        width: 180px;
    }
}

@media(max-width:576px){

    .about-modern-visual{

        height: 500px;
    }

    .about-modern-image{

        height: 380px;
    }

    .experience-card{

        padding: 16px 18px;

        border-radius: 22px;
    }

    .exp-icon{

        width: 55px;
        height: 55px;

        font-size: 20px;
    }

    .experience-card h3{

        font-size: 1.6rem;
    }

    .stats-panel{

        width: 150px;

        padding: 20px;
    }

    .stats-item h4{

        font-size: 1.5rem;
    }
}

.about-floating-card h3 {

    font-size: 3rem;

    color: #247bfb;

    font-weight: 800;

    margin-bottom: 6px;
}

.about-floating-card span {

    color: #40464e;

    line-height: 1.6;

    display: block;
}

/* MOBILE */

@media(max-width:991px){

    .creative-about{

        padding: 100px 0;
    }

    .about-content{

        text-align: center;
    }

    .about-content h2{

        font-size: 2.5rem;
    }

    .about-feature-box{

        text-align: left;
    }

    .about-visual{

        height: 620px;

        margin-top: 50px;
    }

    .about-main-image{

        width: 85%;
        height: 500px;
    }

    .about-small-image{

        width: 220px;
        height: 220px;
    }
}

@media(max-width:576px){

    .about-content h2{

        font-size: 2rem;
    }

    .about-visual{

        height: 500px;
    }

    .about-main-image{

        height: 380px;
    }

    .about-small-image{

        width: 160px;
        height: 160px;

        bottom: 70px;
    }

    .about-floating-card{

        right: 10px;

        padding: 20px 24px;
    }

    .about-floating-card h3{

        font-size: 2rem;
    }
}

/* =========================================
   COMPLETE MOBILE RESPONSIVE FIX
========================================= */

/* LARGE TABLETS */
@media (max-width: 1199px){

    .hero-content h1{
        font-size: 3.2rem;
    }

    .about-content h2{
        font-size: 2.8rem;
    }

    .hero-img-1{
        height: 540px;
    }

    .about-modern-image{
        height: 540px;
    }

    .carousel-control-prev{
        left: 0;
    }

    .carousel-control-next{
        right: 0;
    }
}

/* TABLET */
@media (max-width: 991px){

    /* NAVBAR */
    .navbar{
        padding: 0.9rem 0;
    }

    .navbar .container{
        flex-wrap: wrap;
    }

    .logo img{
        width: 190px !important;
    }

    .navbar-nav{
        gap: 0.6rem !important;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .navbar .nav-link{
        padding: 8px 10px !important;
        font-size: 14px;
    }

    /* HERO */
    .creative-hero{
        padding-top: 140px;
        padding-bottom: 80px;
    }

    .hero-images{
        height: 540px;
        margin-bottom: 50px;
    }

    .hero-img-1{
        width: 82%;
        height: 440px;
    }

    .hero-img-2{
        width: 200px;
        height: 200px;
        bottom: 20px;
    }

    .floating-badge{
        left: 20px;
        bottom: 20px;
        padding: 12px 18px;
        font-size: 13px;
    }

    .hero-content{
        text-align: center;
        padding-left: 0;
    }

    .hero-content h1{
        font-size: 2.7rem;
        line-height: 1.2;
    }

    .hero-content p{
        max-width: 100%;
    }

    .hero-buttons{
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats{
        justify-content: center;
        flex-wrap: wrap;
        gap: 24px;
    }

    /* ABOUT */
    .creative-about{
        padding: 90px 0;
    }

    .about-content{
        text-align: center;
    }

    .about-content h2{
        font-size: 2.4rem;
    }

    .about-feature-box{
        text-align: left;
    }

    .about-modern-visual{
        height: 600px;
        margin-top: 50px;
    }

    .about-modern-image{
        width: 88%;
        height: 460px;
    }

    .design-floating-card{
        width: 260px;
        left: 10px;
        top: 20px;
        padding: 20px;
    }

    .creative-info-panel{
        width: 240px;
        right: 10px;
        bottom: 20px;
    }

    /* SERVICES */
    .services-tabs .nav-tabs{
        gap: 15px;
    }

    .services-tabs .nav-link{
        font-size: 1rem;
    }

    .service-card{
        padding: 40px 25px !important;
    }

    /* PROJECTS */
    .project-card img{
        height: 300px;
    }

    /* CONTACT */
    .form-control-lg{
        font-size: 15px;
        padding: 14px 16px;
    }

    /* FOOTER */
    footer{
        text-align: center;
    }

    footer .text-lg-end{
        text-align: center !important;
        margin-top: 35px;
    }
}

/* MOBILE */
@media (max-width: 767px){

    body{
        overflow-x: hidden;
    }

    .container{
        padding-left: 18px;
        padding-right: 18px;
    }

    /* NAVBAR */
    .navbar{
        padding: 0.8rem 0;
    }

    .logo img{
        width: 200px !important;
    }

    .navbar-nav{
        gap: 0.3rem !important;
    }

    .navbar .nav-link{
        font-size: 13px;
        padding: 6px 8px !important;
    }

    .services-dropdown .dropdown-menu{
        min-width: 180px;
    }

    /* HERO */
    .creative-hero{
        padding-top: 130px;
    }

    .hero-images{
        height: 430px;
    }

    .hero-img-1{
        width: 100%;
        height: 340px;
    }

    .hero-img-2{
        width: 150px;
        height: 150px;
        right: 0;
        bottom: 30px;
        border-width: 6px;
    }

    .floating-badge{
        left: 10px;
        bottom: 10px;
        font-size: 11px;
        padding: 10px 14px;
    }

    .hero-content h1{
        font-size: 2rem;
    }

    .hero-content p{
        font-size: 15px;
        line-height: 1.8;
    }

    .hero-btn-primary,
    .hero-btn-outline{
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }

    .hero-buttons{
        flex-direction: column;
        gap: 14px;
    }

    .hero-stats{
        gap: 18px;
    }

    .hero-stat-box h3{
        font-size: 1.5rem;
    }

    /* ABOUT */
    .about-content h2{
        font-size: 2rem;
        line-height: 1.25;
    }

    .about-text{
        font-size: 15px;
    }

    .about-feature-box{
        gap: 14px;
    }

    .about-feature-box i{
        width: 55px;
        height: 55px;
        min-width: 55px;
        font-size: 18px;
    }

    .about-modern-visual{
        height: 480px;
    }

    .about-modern-image{
        width: 100%;
        height: 360px;
        border-radius: 26px;
    }

    .design-floating-card{
        width: 220px;
        padding: 16px;
        border-radius: 22px;
    }

    .design-icon{
        width: 50px;
        height: 50px;
        font-size: 18px;
    }

    .creative-info-panel{
        width: 190px;
        padding: 18px;
        border-radius: 24px;
    }

    .creative-info-icon{
        width: 42px;
        height: 42px;
        min-width: 42px;
        font-size: 14px;
    }

    /* SERVICES */
    .section-title{
        font-size: 2rem;
    }

    .services-tabs .nav-tabs{
        gap: 8px;
    }

    .services-tabs .nav-link{
        font-size: 14px;
        padding: 10px 6px;
    }

    .service-card{
        padding: 30px 20px !important;
        border-radius: 20px;
    }

    .service-card i{
        font-size: 2.5rem !important;
    }

    /* PROJECTS */
    .project-card img{
        height: 240px;
    }

    .project-overlay{
        padding: 20px;
    }

    .project-overlay h5{
        font-size: 1rem;
    }

    .project-overlay p{
        font-size: 13px;
    }

    .carousel-indicators{
        margin-top: 30px !important;
    }

    /* CONTACT */
    .glow-btn{
        width: 100%;
        padding: 14px 20px;
    }

    textarea.form-control{
        min-height: 160px;
    }

    /* FOOTER */
    footer img{
        width: 150px !important;
    }

    footer .fa-2x{
        font-size: 1.4rem !important;
    }
}

/* SMALL MOBILE */
@media (max-width: 480px){

    .hero-content h1{
        font-size: 1.8rem;
    }

    .about-content h2{
        font-size: 1.7rem;
    }

    .hero-images{
        height: 380px;
    }

    .hero-img-1{
        height: 300px;
    }

    .hero-img-2{
        width: 120px;
        height: 120px;
    }

    .design-floating-card{
        width: 190px;
    }

    .creative-info-panel{
        width: 170px;
    }

    .services-tabs .nav-link{
        font-size: 13px;
    }
}

/* =========================================
   MODERN FOOTER
========================================= */

.footer-section{

    background: #010418;

    position: relative;

    overflow: hidden;
}

/* TOP LIGHT EFFECT */

.footer-section::before{

    content:'';

    position:absolute;

    top:-120px;
    right:-120px;

    width:300px;
    height:300px;

    background: rgba(36,123,251,0.12);

    filter: blur(80px);

    border-radius:50%;
}

/* TEXT */

.footer-text{

    color: rgba(255,255,255,0.72);

    line-height: 1.5;

    font-size: 14px;
}

/* TITLES */

.footer-title{

    color:white;

    font-size:1.15rem;

    font-weight:700;

    margin-bottom:24px;
}

/* LINKS */

.footer-links{

    list-style:none;

    padding:0;
    margin:0;
}

.footer-links li{

    margin-bottom:6px;
}

.footer-links a{

    color: rgba(255,255,255,0.72);

    text-decoration:none;

    transition:0.3s ease;
	font-size:14px;
}

.footer-links a:hover{

    color:#60a5fa;

    padding-left:6px;
}

/* CONTACT */

.footer-contact p{

    color: rgba(255,220,121,0.72);

    margin-bottom:16px;

    font-size:15px;
}

.footer-contact i{

    color:#60a5fa;
}

/* SOCIAL */

.footer-social{

    display:flex;

    gap:14px;
}

.footer-social a{

    width:46px;
    height:46px;

    border-radius:50%;

    background: rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:white;

    font-size:18px;

    transition:0.35s ease;
}

.footer-social a:hover{

    background: linear-gradient(
        135deg,
        #247bfb,
        #0558e0
    );

    transform: translateY(-5px);
}

/* BOTTOM */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,0.08);

    margin-top:60px;

    padding-top:25px;

    text-align:center;

    color: rgba(255,255,255,0.6);

    font-size:14px;
}

/* MOBILE */

@media(max-width:767px){

    .footer-section{

        text-align:center;
    }

    .footer-social{

        justify-content:center;
    }
}
#backToTop{

    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 45px;
    height: 45px;

    border: none;

    border-radius: 50%;

    background: linear-gradient(135deg, #064199, #032d70);

    color: white;

    font-size: 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    box-shadow: 0 15px 35px rgba(36,123,251,0.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(20px);

    transition: all 0.35s ease;

    z-index: 9999;
}

/* SHOW BUTTON */

#backToTop.show{

    opacity: 1;
    visibility: visible;

    transform: translateY(0);
}

/* HOVER */

#backToTop:hover{

    transform: translateY(-6px);

    box-shadow: 0 20px 45px rgba(36,123,251,0.45);
}

/* MOBILE */

@media(max-width:576px){

    #backToTop{

        width: 48px;
        height: 48px;

        right: 18px;
        bottom: 18px;

        font-size: 15px;
    }
}

#graphics-pane .row{margin-bottom:40px;}
.p-5 {
    padding: 1.7rem !important;
}
.header-contact{

    margin-left: 28px;

    display: flex;
    align-items: center;
    gap: 10px;

    padding: 10px 18px;

    border-radius: 60px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.08);

    backdrop-filter: blur(10px);

    transition: 0.35s ease;
}

.header-contact:hover{

    background: rgba(255,255,255,0.14);

    transform: translateY(-3px);
}

.header-contact i{

    color: #60a5fa;

    font-size: 15px;
}

.header-contact a{

    color: #ffdc79;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 0.3px;
}
@media(max-width:991px){

    .header-contact{

        margin-left: 0;

        margin-top: 18px;

        justify-content: center;

        width: 100%;

        padding: 14px 18px;

        border-radius: 18px;

        background: rgba(255,255,255,0.06);
    }

    .header-contact a{

        font-size: 15px;
    }
}

/* =========================================
   PROJECT IMAGE LIGHTBOX
========================================= */

#imageLightbox{

    position: fixed;

    inset: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.92);

    display: flex;

    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: 0.4s ease;

    z-index: 99999;

    padding: 30px;
}

.project-card{

    user-select: none;

    -webkit-user-select: none;

    overflow: hidden;
}

/* =========================================
   LIGHTBOX IMAGE SCROLL + ZOOM FIX
========================================= */

#imageLightbox{

    overflow: auto;

    -webkit-overflow-scrolling: touch;
}

#lightboxImage{

    cursor: zoom-in;
    transition: transform .3s ease;
}

/* MOBILE */

@media(max-width:768px){

    #lightboxImage{

        width: auto;

        max-width: none;

        max-height: none;

        min-width: 100%;
    }
}

/* SHOW */

#imageLightbox.show{

    opacity: 1;
    visibility: visible;
}

/* IMAGE */

#lightboxImage{

    max-width: 92%;
    max-height: 90vh;

    border-radius: 22px;

    box-shadow:
    0 30px 80px rgba(0,0,0,0.45);

    transform: scale(0.8);

    transition: 0.45s ease;
}

/* IMAGE ACTIVE */

#imageLightbox.show #lightboxImage{

    transform: scale(1);
}

/* CLOSE BUTTON */

.close-lightbox{

    position: absolute;

    top: 25px;
    right: 30px;

    width: 55px;
    height: 55px;

    border-radius: 50%;

    background: rgba(255,255,255,0.12);

    backdrop-filter: blur(10px);

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;

    color: white;

    font-size: 22px;

    transition: 0.3s ease;
}

.close-lightbox:hover{

    background: #247bfb;

    transform: rotate(90deg);
}

/* CLICKABLE PROJECT IMAGES */

.project-card img{

    cursor: zoom-in;
}

/* MOBILE */

@media(max-width:576px){

    .close-lightbox{

        width: 46px;
        height: 46px;

        font-size: 18px;

        top: 18px;
        right: 18px;
    }

    #lightboxImage{

        max-width: 100%;
    }
}

/* =========================================
   PROFESSIONAL PROJECT SLIDER
========================================= */

#projectCarousel{

    overflow: hidden;
    position: relative;
}

#projectCarousel .carousel-inner{

    overflow: hidden;
}

#projectCarousel .carousel-item{

    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1) !important;
}

#projectCarousel .row{

    margin-left: 0;
    margin-right: 0;
}

/* PREMIUM MOTION */

.project-card{

    transition:
    transform .45s ease,
    box-shadow .45s ease;
}

.project-card:hover{

    transform: translateY(-10px);

    box-shadow:
    0 28px 70px rgba(0,0,0,0.18);
}

.project-card img{

    transition: transform 1.2s ease;
}

.project-card:hover img{

    transform: scale(1.04);
}