@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: 700;
    src: url('../font/gothampro_medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Gotham';
    font-style: italic;
    font-weight: 900;
    src: url('../font/gothampro_medium.ttf') format('truetype');
}

/* Add this at the top of hero-style.css
html:not(.loaded) body {
  overflow: hidden;
  height: 100vh;
}

.loaded #loader {
  display: none;
}

.loaded #content {
  display: block;
} */

/* Apply the italic style where you actually have font files */
h1,
h2,
h3 {
    font-family: 'Gotham', sans-serif;
    font-weight: 900;
    letter-spacing: 2px;
    ;
}

strong,
b {
    font-family: 'Gotham', sans-serif;
    font-weight: 700;
}

body,
p,
span,
div {
    font-weight: 400;
    font-style: normal;
}

body {
    background: linear-gradient(135deg, #0f1b31, #1d2c4d, #0f1b31);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gotham', sans-serif;
}

/* Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 24px 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    transition: all 0.4s ease;
    background-color: transparent!important;
}

header.scrolled {
    padding: 16px 5%;
    background-color: transparent;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.logo {
    display: flex;
    align-items: center;
    z-index: 10;
}

.logo-text {
    font-size: 28px;
    font-weight: 800;
    background: linear-gradient(90deg, #ed601f, #ed601f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-bottom-text {
    font-size: 16px;
    font-weight: 400;
    color: #ed601f;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    letter-spacing: 2px;
}

.logo-bottom-text h3 {
    position: relative;
}

.logo-bottom-text h3::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: -38px;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #ed601f;
}

.logo-bottom-text h3::before {
    content: '';
    position: absolute;
    bottom: 50%;
    right: -89px;
    transform: translateX(-50%);
    width: 50%;
    height: 2px;
    background: #ed601f;
}

.loader-content text,
.logo-bottom-text {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.show-text text,
.show-text .logo-bottom-text {
    opacity: 1;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links>li {
    list-style: none;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* .nav-links a:hover {
    color: #ed601f;
} */

.nav-links a::after {
    background-color: #ff5100;
    bottom: 0;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: .15s cubic-bezier(.4, 0, 1, 1);
    width: 100%;
    z-index: -1;
}

.nav-links a:hover::after {
    position: absolute;
    transform: scaleY(1);
    transition: .15s cubic-bezier(.4, 0, 1, 1);
}

/* Dropdown Styles */
.nav-links .dropdown a::after {
    content: '';
    width: 0;
    height: 0;
}

.dropdown {
    position: absolute;
    top: 24px;
    left: 0;
    width: 282px;
    background: #212322;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #212322;
    z-index: 100;
}

.dropdown li {
    list-style: none;
}

.dropdown li a {
    display: flex;
    align-items: center;
    padding: 12px 24px;
    color: #cbd5e1;
    font-size: 15px;
    transition: all 0.2s ease;
    gap: 12px;
    white-space: normal;
    word-break: break-word;
    /* Break long words if needed */
    overflow: visible;
}

.dropdown li a:hover {
    background: #fff;
    padding-left: 28px;
    color: #333;
}

.nav-links li:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a i {
    width: 20px;
    text-align: center;
    color: #ed601f;
}

.contact-btn {
    background: linear-gradient(90deg, #ed601f, #ed601f);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4); */
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #cbd5e1;
    z-index: 1001;
}

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0 5%;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
}

.video-slide.active {
    opacity: 1;
}

.video-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .1);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    text-align: center;
    padding: 40px 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.hero-content.active {
    opacity: 1;
    transform: translateY(0);
}

.hero-content {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    max-width: 700px;
    padding: 40px;
    opacity: 0;
    transition: all 0.8s ease;
}

/* Active state */
.hero-content.active {
    opacity: 1;
}

/* Left-aligned: hero-content-1 */
.hero-content-1 {
    left: 5%;
    text-align: left;
}

/* Center-aligned: hero-content-2 */
/* .hero-content-2 {
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    margin: 0 auto;
} */

/* Right-aligned: hero-content-3 */
.hero-content-3 {
    right: 5%;
    text-align: right;
}

/* Make sure hero-buttons inside any block follow alignment */
.hero-content-1 .hero-buttons {
    display: flex;
    justify-content: flex-start;
}

.hero-content-2 .hero-buttons {
    display: flex;
    justify-content: center;
}

.hero-content-3 .hero-buttons {
    display: flex;
    justify-content: flex-end;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #f8fafc;
}

.hero h1 span {
    background: linear-gradient(90deg, #ed601f, #ed601f);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #cbd5e1;
    margin-bottom: 40px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.btn-primary {
    background: linear-gradient(90deg, #ed601f, #ed601f);
    color: white;
    border: none;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4); */
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    /* box-shadow: 0 6px 20px rgba(37, 99, 235, 0.6); */
}

.btn-secondary {
    background: rgba(30, 41, 59, 0.7);
    color: #e2e8f0;
    border: 2px solid rgba(100, 116, 139, 0.3);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.btn-secondary:hover {
    background: rgba(30, 41, 59, 0.9);
    transform: translateY(-3px);
    /* box-shadow: 0 4px 15px rgba(15, 23, 42, 0.3); */
}

/* Video Navigation */
.video-navigation {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(203, 213, 225, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: #ed601f;
    transform: scale(1.3);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(100, 116, 139, 0.3);
}

.arrow:hover {
    background: rgba(30, 41, 59, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.arrow-left {
    left: 30px;
}

.arrow-right {
    right: 30px;
}

.arrow i {
    color: #e2e8f0;
    font-size: 20px;
}

/* Decorative Elements */
.decoration {
    position: absolute;
    z-index: 2;
}

.circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

.circle-1 {
    top: -150px;
    right: -150px;
}

.circle-2 {
    bottom: -150px;
    left: -150px;
}

.diamond {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(14, 165, 233, 0.1));
    transform: rotate(45deg);
    top: 150px;
    left: 200px;
    animation: float 8s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {
    0% {
        transform: translateY(0) rotate(45deg);
    }

    50% {
        transform: translateY(-20px) rotate(45deg);
    }

    100% {
        transform: translateY(0) rotate(45deg);
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(to top, #0b1221, #0f172a);
    padding: 80px 5% 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(100, 116, 139, 0.1);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    padding: 0 15px;
}

.footer-col h3 {
    font-size: 20px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
    color: #f8fafc;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(to right, #ed601f, #ed601f);
}

.footer-col p {
    color: #cbd5e1;
    line-height: 1.8;
    margin-bottom: 20px;
}

.footer-links li {
    list-style: none;
    margin-bottom: 15px;
}

.footer-links li a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
}

.footer-links li a:hover {
    color: #ed601f;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: #94a3b8;
}

.footer-contact li i {
    color: #ed601f;
    margin-top: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(30, 41, 59, 0.7);
    border-radius: 50%;
    color: #e2e8f0;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ed601f;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 40px;
    margin-top: 60px;
    border-top: 1px solid rgba(100, 116, 139, 0.1);
    color: #94a3b8;
    font-size: 14px;
}

.footer-decoration {
    position: absolute;
    z-index: 0;
    opacity: 0.1;
}

.footer-circle {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, #ed601f, transparent 70%);
}

.fc-1 {
    top: -200px;
    right: -200px;
}

.fc-2 {
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: #212322;
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 100px 30px 30px;
    transition: all 0.5s ease;
    overflow-y: auto;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    border-left: 1px solid rgba(100, 116, 139, 0.1);
}

.mobile-menu .nav-links a::after {
    bottom: 12px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu .nav-links {
    flex-direction: column;
    gap: 5px;
}

.mobile-menu .nav-links li {
    width: 100%;
}

.mobile-menu .nav-links a {
    padding: 12px 0;
    display: block;
}

.mobile-menu .dropdown {
    position: static;
    width: 100%;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    padding: 0 0 0 20px;
    margin-top: 5px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.mobile-menu .dropdown.active {
    max-height: 500px;
}

.mobile-menu .dropdown li a {
    padding: 10px 0;
    border-bottom: none;
}

.mobile-menu .contact-btn {
    margin-top: 20px;
    width: 100%;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 24px;
    color: #cbd5e1;
    cursor: pointer;
}

/* Responsive Design */
@media (max-width: 1100px) {

    .nav-links,
    .contact-btn {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .diamond {
        display: none;
    }

    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-col {
        padding: 0;
    }

    .mobile-menu .nav-links,
    .mobile-menu .contact-btn {
        display: block;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .arrow {
        width: 36px;
        height: 36px;
    }

    .arrow-left {
        left: 15px;
    }

    .arrow-right {
        right: 15px;
    }

    .video-navigation {
        bottom: 20px;
    }
}

/*scrollbar styles */
/* Container flex */
.container {
    display: flex;
    height: 100vh;
    position: relative;
    z-index: 10;
    /* To stay above background */
}

/* Left panel fixed content */
.left-panel {
    width: 40%;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    /* vertical center */
    justify-content: flex-start;
    /* align left */
    /* position: fixed; */
    top: 0;
    left: 0;
    height: 100vh;
    background: transparent;
    z-index: 20;
    pointer-events: none;
    /* Prevent interference */
    text-align: left;
}

/* Content fade container */
.content-fade {
    max-width: 450px;
    background: rgba(0, 0, 0, 0.65);
    padding: 3rem 3.5rem;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    height: auto;
    pointer-events: auto;
    /* allow button clicks */
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    line-height: 1.5;
    transition: opacity 0.6s ease;
}

.content-fade.fade-out {
    opacity: 0;
}

/* The inner text wrapper that will be animated */
.text-inner {
    position: relative;
    transition: transform 0.6s ease, opacity 0.6s ease;
    opacity: 1;
    transform: translateY(0);
}

/* Slide up and fade out old text */
.text-exit {
    opacity: 0;
    transform: translateY(-30px);
}

/* Slide in and fade in new text from below */
.text-enter {
    opacity: 0;
    transform: translateY(30px);
    animation: slideFadeIn 0.6s forwards;
}

@keyframes slideFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Headings style */
.text-inner h1 {
    font-size: 3rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    line-height: 1.1;
    color: #ffffff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* Paragraph style */
.text-inner p {
    margin-bottom: 2rem;
    color: #ddd;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

/* Button styling */
.btn-primary {
    padding: 0.75rem 2.5rem;
    background: #ff5100;
    border: none;
    border-radius: 35px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    /* box-shadow: 0 8px 15px rgba(30, 144, 255, 0.4); */
    transition: all 0.3s ease;
    user-select: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary:hover {
    /* background: linear-gradient(135deg, #00bfff 0%, #1e90ff 100%); */
    /* box-shadow: 0 10px 20px rgba(0, 191, 255, 0.6); */
    transform: translateY(-3px);
}

/* Right scroll panel */
.right-panel {
    width: 60%;
    height: 100vh;
    margin-left: 40%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scrollbar-width: thin;
    scrollbar-color: #ff5100 transparent;
}

/* Responsive tweaks */
@media (max-width: 900px) {
    .left-panel {
        width: 100%;
        position: relative;
        padding: 2rem 2rem;
        height: auto;
        justify-content: center;
        text-align: center;
    }

    .content-fade {
        max-width: 90vw;
        padding: 2rem;
    }

    .btn-primary {
        width: 100%;
    }

    .right-panel {
        width: 100%;
        margin-left: 0;
        height: 50vh;
    }
}

.background-overlay {
    /* position: fixed; */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-position: center center;
    transition: background-image 1s ease-in-out;
    z-index: 1;
    filter: brightness(0.5);
    background-repeat: no-repeat;
}

/* Loader styles */
#loader {
    position: fixed;
    inset: 0;
    background: #0f0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 1.2rem;
}

.loader-content {
    text-align: center;
    color: #00bfff;
    user-select: none;
}

.loader-text {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.7rem;
    animation: slideUpFade 1.5s ease infinite alternate;
}

/* Rotating logo animation */
.loader-logo {
    stroke: #00bfff;
}

@keyframes slideUpFade {
    0% {
        opacity: 0.5;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* SECTION STYLES */
section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 10%;
    position: relative;
}

.section-content {
    width: 100%;
    max-width: 1200px;
    /* margin: 0 auto; */
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 700px;
}

.section-text {
    font-size: 20px;
    max-width: 700px;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.8;
}

.content-container {
    max-width: 700px;
    background: rgba(0, 0, 0, 0.5);
    padding: 1rem 1.5rem;
    border-radius: 14px;
    position: relative;
    overflow: hidden;
    height: auto;
    pointer-events: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8);
    color: #f0f0f0;
    font-weight: 300;
    letter-spacing: 0.03em;
    font-size: 1.05rem;
    line-height: 1;
    transition: opacity 0.6s ease;
}

/* SERVICES SECTION */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: transform 0.4s, background 0.4s;
}

.service-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 20px;
    color: #fff;
}

.service-title {
    font-size: 24px;
    margin-bottom: 15px;
}

/* PORTFOLIO SECTION */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
}

.portfolio-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    opacity: 0;
    transition: opacity 0.4s;
}

.portfolio-item:hover .portfolio-img {
    transform: scale(1.05);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-title {
    font-size: 22px;
    margin-bottom: 10px;
}

/* CONTACT SECTION */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 50px;
}

.contact-info {
    padding-right: 40px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 16px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-family: inherit;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}


/* BACKGROUND STYLES */
#dynamic-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: opacity 0.8s ease;
}

/* BACKGROUND OVERLAY */
#dynamic-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* 0.5 opacity overlay */
    z-index: -1;
}


.scroll-down {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 9;
}

.scroll-down span {
    margin-bottom: 10px;
    font-size: 14px;
    letter-spacing: 2px;
    color: #fff;
}

.scroll-down i {
    animation: bounce 1.5s infinite;
    font-size: 20px;
    color: #fff;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Image Stack */
.image-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: none;
    z-index: 9998;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .logo-bottom-text h3::after,
    .logo-bottom-text h3::before {
        width: 30px;
    }

    .logo-bottom-text h3::after {
        left: -35px;
    }

    .logo-bottom-text h3::before {
        right: -60px;
    }
}

.layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation for each layer */
.layer1 {
    z-index: 7;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0ms forwards;
}

.layer2 {
    z-index: 6;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 600ms forwards;
}

.layer3 {
    z-index: 5;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1200ms forwards;
}

.layer4 {
    z-index: 4;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1800ms forwards;
}

.layer5 {
    z-index: 3;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 2400ms forwards;
}

.layer6 {
    z-index: 2;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3000ms forwards;
}

.layer7 {
    z-index: 1;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3600ms forwards;
}

/* Keyframes */
@keyframes slideUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes scalePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

#content {
    display: none;
    min-height: 100vh;
}

/* =====================
   HERO-ABOUT SECTION
   ===================== */
.hero-about {
    position: relative;
    padding: 120px 5%;
    background: linear-gradient(rgba(15, 27, 49, 0.95), rgba(15, 27, 49, 0.95)),
        url('https://images.unsplash.com/photo-1536440136628-849c177e76a1?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1800&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #f8fafc;
}

.page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-about h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.hero-about p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.hero-about p:last-of-type {
    font-weight: 600;
    color: #ed601f;
    font-size: 1.4rem;
    margin-top: 30px;
}

.btn-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(90deg, #ed601f, #ed601f);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(237, 96, 31, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(237, 96, 31, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid #ed601f;
    color: #ed601f;
    box-shadow: none;
}

.btn-outline:hover {
    background: rgba(237, 96, 31, 0.1);
}

/* =====================
   MISSION SECTION
   ===================== */
#mission {
    padding: 100px 5%;
    background: #0f1b31;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, #ed601f, #ed601f);
}

.section-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 700px;
    margin: 25px auto 0;
    line-height: 1.6;
}

.mission-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.mission-text {
    flex: 1;
}

.mission-text h3 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 25px;
}

.mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #cbd5e1;
    margin-bottom: 20px;
}

.mission-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(2deg);
    transition: transform 0.4s ease;
}

.mission-image:hover {
    transform: rotate(0);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.mission-image:hover img {
    transform: scale(1.05);
}

/* =====================
   VALUES SECTION
   ===================== */
#values {
    padding: 100px 5% 120px;
    background: linear-gradient(135deg, #0f1b31, #1d2c4d, #0f1b31);
    position: relative;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 116, 139, 0.1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, #ed601f, #ed601f);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: rgba(237, 96, 31, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: rgba(237, 96, 31, 0.3);
    transform: scale(1.1);
}

.value-icon i {
    font-size: 32px;
    color: #ed601f;
}

.value-card h3 {
    font-size: 1.6rem;
    color: #ffffff;
    margin-bottom: 20px;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #cbd5e1;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .hero-about h1 {
        font-size: 2.8rem;
    }

    .mission-content {
        flex-direction: column;
    }

    .mission-image {
        order: -1;
        max-width: 600px;
        margin: 0 auto 40px;
    }
}

@media (max-width: 768px) {
    .hero-about {
        padding: 80px 5%;
    }

    .hero-about h1 {
        font-size: 2.4rem;
    }

    .section-header h2 {
        font-size: 2.4rem;
    }

    .btn-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-about h1 {
        font-size: 2rem;
    }

    .hero-about p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

.process {
    background-color: #15233e;
}

/* Services Section */
.services {
    padding: 120px 5%;
    background: #0f0f1a;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
}

.section-subtitle {
    font-size: 18px;
    color: #ed601f;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
}

.section-text {
    max-width: 700px;
    margin: 15px auto;
    font-size: 18px;
    opacity: 0.8;
    color: #fff;

}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    z-index: 1;
    padding: 40px 30px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ed601f, #ed601f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 30px;
}

.service-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #fff;

}

.service-description {
    margin-bottom: 25px;
    opacity: 0.8;
    color: #fff;

}

.service-link {
    color: #ffa502;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.service-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: 120px 5%;
    position: relative;
    overflow: hidden;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-content {
    flex: 1;
    min-width: 300px;
    padding-right: 50px;
}

.process-steps {
    flex: 1;
    min-width: 300px;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.step-number {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ed601f, #ed601f);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    margin-right: 20px;
    color: #fff;

}

.step-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;

}

.step-content p {
    color: #fff;
}

/* Testimonials */
.testimonials {
    padding: 120px 5%;
    background: #0f0f1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.testimonial-card {
    background: rgba(20, 20, 30, 0.7);
    border-radius: 15px;
    padding: 40px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-card:before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(255, 165, 2, 0.2);
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    margin-bottom: 25px;
    font-style: italic;
    position: relative;
    z-index: 2;
    color: #fff;

}

.testimonial-author {
    display: flex;
    align-items: center;
    color: #fff;

}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    background: linear-gradient(135deg, #ed601f, #ed601f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #fff;

}

.author-info h4 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #fff;

}

.author-info p {
    opacity: 0.7;
    font-size: 14px;
    color: #fff;

}

/* CTA Section */
.cta {
    padding: 150px 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(10, 10, 15, 0.9), rgba(10, 10, 15, 0.9)), url('https://images.unsplash.com/photo-1478720568477-152d9b164e26?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta .btn {
    margin-top: 40px;
}

section {
    flex-direction: column;
}

@media (max-width: 768px) {

    .services-grid,
    .testimonials-grid {
        display: flex;
        flex-wrap: wrap;
    }
}

#mission {
    background: #0f0f1a;
}

@media (max-width: 480px) {
    .hero-content {
        transform: none;
        top: 30%;
        padding: 0;
    }

    .hero-content-1,
    .hero-content-2,
    .hero-content-3 {
        left: auto;
        right: auto;
    }

    .btn-primary {
        justify-content: center;
    }
}

/* First Loader - Circular Text & Logo */
#loader {
    position: fixed;
    inset: 0;
    background: #0f0f1a;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    flex-direction: column;
    gap: 1.2rem;
}

.loader-content {
    text-align: center;
    color: #00bfff;
    user-select: none;
    position: relative;
    width: 280px;
    height: 280px;
}

.loader-content svg {
    position: absolute;
    top: 0;
    left: 0;
}

.loader-content img {
    position: absolute;
    top: 50%;
    left: 50%;
    animation: scalePulse 3s ease-in-out infinite;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
}

/* Responsive Image Stack */
.image-animation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    display: none;
    z-index: 9998;
}

.layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.desktop-img {
    display: block;
}

.mobile-img {
    display: none;
}

@media (max-width: 768px) {
    .desktop-img {
        display: none;
    }

    .mobile-img {
        display: block;
    }

    .hero-content {
        max-width: 300px;
    }
}

.layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Animation for each layer */
.layer1 {
    z-index: 7;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 0ms forwards;
}

.layer2 {
    z-index: 6;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 600ms forwards;
}

.layer3 {
    z-index: 5;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1200ms forwards;
}

.layer4 {
    z-index: 4;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 1800ms forwards;
}

.layer5 {
    z-index: 3;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 2400ms forwards;
}

.layer6 {
    z-index: 2;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3000ms forwards;
}

.layer7 {
    z-index: 1;
    animation: slideUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) 3600ms forwards;
}

/* Keyframes */
@keyframes slideUp {
    0% {
        transform: translateY(0%);
    }

    100% {
        transform: translateY(-100%);
    }
}

@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes scalePulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.logo>a {
    text-decoration: none;
}

/* Animation for section entrance */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-section {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Add loader heading styles */
.loader-heading {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
    animation-delay: 0.1s;
}

/* Word animations */
.text-word {
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.discover {
    animation-delay: 0.5s;
}

.acquire {
    animation-delay: 1.5s;
}

.create {
    animation-delay: 2.5s;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Increase image display time */
.layer1 {
    animation-delay: 500ms;
}

.layer2 {
    animation-delay: 1000ms;
}

.layer3 {
    animation-delay: 1500ms;
}

.layer4 {
    animation-delay: 2000ms;
}

.layer5 {
    animation-delay: 2500ms;
}

.layer6 {
    animation-delay: 3000ms;
}

.layer7 {
    animation-delay: 3500ms;
}

.section-header.loader-head {
    position: absolute;
    top: -125px;
    width: 400px;
    left: -60px;
    opacity: 0;
    animation: fadeIn 0.5s forwards;
}

.section-header.loader-head h2::after {
    background: #ed601f;
}