/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #111827;
    background-color: #F3F6FB;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    transition: transform 0.3s ease;
    object-fit: contain;
    max-width: 150px;
}

.logo-image:hover {
    transform: scale(1.05);
}

.nav-logo h2 {
    color: #244ED1;
    font-weight: 700;
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #1E293B;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #244ED1;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #244ED1;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #244ED1;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 50px;
    background: linear-gradient(135deg, #F3F6FB 0%, #E8F2FF 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #64748B;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: #FF6600;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
}

.btn-primary:hover {
    background-color: #E55A00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #244ED1;
    border-color: #244ED1;
}

.btn-secondary:hover {
    background-color: #244ED1;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Hero Visual Elements - Enhanced 3D */
.hero-visual {
    position: relative;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    overflow: hidden;
}

.hero-3d-scene {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Main 3D Container */
.main-3d-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transform-style: preserve-3d;
    animation: sceneRotate 20s linear infinite;
}

/* Central Cube */
.cube-container {
    position: relative;
    transform-style: preserve-3d;
    animation: cubeFloat 4s ease-in-out infinite;
}

.cube {
    position: relative;
    width: 120px;
    height: 120px;
    transform-style: preserve-3d;
    animation: cubeRotate 12s linear infinite;
}

.cube-face {
    position: absolute;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(36, 78, 209, 0.3);
}

.cube-face.front { transform: rotateY(0deg) translateZ(60px); }
.cube-face.back { transform: rotateY(180deg) translateZ(60px); }
.cube-face.right { transform: rotateY(90deg) translateZ(60px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(60px); }
.cube-face.top { transform: rotateX(90deg) translateZ(60px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(60px); }

.face-content {
    text-align: center;
    color: white;
}

.face-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.face-content span {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Orbiting Elements */
.orbit {
    position: absolute;
    border: 2px solid rgba(36, 78, 209, 0.2);
    border-radius: 50%;
    transform-style: preserve-3d;
}

.orbit-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: orbit1 8s linear infinite;
}

.orbit-2 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation: orbit2 12s linear infinite reverse;
}

.orbit-3 {
    width: 500px;
    height: 500px;
    top: -250px;
    left: -250px;
    animation: orbit3 16s linear infinite;
}

.orbit-element {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
}

.orbit-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 15px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transform: rotateX(15deg);
    transition: transform 0.3s ease;
}

.orbit-card:hover {
    transform: rotateX(0deg) scale(1.1);
}

.orbit-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.orbit-card span {
    font-size: 0.8rem;
    font-weight: 600;
    color: #244ED1;
}

/* Floating Geometric Shapes */
.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.shape {
    position: absolute;
    transform-style: preserve-3d;
}

.shape-1 {
    top: 10%;
    right: 15%;
    animation: shapeFloat1 6s ease-in-out infinite;
}

.shape-2 {
    bottom: 20%;
    left: 10%;
    animation: shapeFloat2 8s ease-in-out infinite;
}

.shape-3 {
    top: 60%;
    right: 5%;
    animation: shapeFloat3 7s ease-in-out infinite;
}

.shape-4 {
    top: 30%;
    left: 5%;
    animation: shapeFloat4 9s ease-in-out infinite;
}

/* Pyramid */
.pyramid {
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    animation: pyramidRotate 10s linear infinite;
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.pyramid-front {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #FF6600;
    transform: translateZ(17px);
}

.pyramid-right {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #E55A00;
    transform: rotateY(90deg) translateZ(17px);
}

.pyramid-back {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #CC5200;
    transform: rotateY(180deg) translateZ(17px);
}

.pyramid-left {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 52px solid #B84700;
    transform: rotateY(-90deg) translateZ(17px);
}

/* Sphere */
.sphere {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #84A5F2, #244ED1);
    position: relative;
    animation: sphereRotate 8s linear infinite;
    box-shadow: 0 0 20px rgba(132, 165, 242, 0.5);
}

.sphere-inner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 8px;
    left: 8px;
    animation: sphereInner 4s ease-in-out infinite;
}

/* Cylinder */
.cylinder {
    width: 40px;
    height: 80px;
    transform-style: preserve-3d;
    animation: cylinderRotate 12s linear infinite;
}

.cylinder-top,
.cylinder-bottom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FF6600;
    position: absolute;
    left: 0;
}

.cylinder-top {
    top: 0;
    transform: rotateX(90deg) translateZ(20px);
}

.cylinder-bottom {
    bottom: 0;
    transform: rotateX(-90deg) translateZ(20px);
}

.cylinder-side {
    width: 40px;
    height: 80px;
    background: linear-gradient(90deg, #FF6600, #E55A00, #FF6600);
    border-radius: 20px;
}

/* Hexagon */
.hexagon {
    width: 60px;
    height: 60px;
    transform-style: preserve-3d;
    animation: hexagonRotate 15s linear infinite;
}

.hex-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #84A5F2, #244ED1);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hex-front {
    transform: translateZ(10px);
}

.hex-back {
    transform: translateZ(-10px) rotateY(180deg);
}

/* Particles */
.particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #84A5F2;
    border-radius: 50%;
    opacity: 0.7;
}

.particle-1 {
    top: 20%;
    left: 80%;
    animation: particleFloat1 4s ease-in-out infinite;
}

.particle-2 {
    top: 70%;
    left: 20%;
    animation: particleFloat2 6s ease-in-out infinite;
}

.particle-3 {
    top: 40%;
    left: 90%;
    animation: particleFloat3 5s ease-in-out infinite;
}

.particle-4 {
    top: 80%;
    left: 70%;
    animation: particleFloat4 7s ease-in-out infinite;
}

.particle-5 {
    top: 10%;
    left: 30%;
    animation: particleFloat5 8s ease-in-out infinite;
}

.particle-6 {
    top: 60%;
    left: 10%;
    animation: particleFloat6 6s ease-in-out infinite;
}

/* Animations */
@keyframes sceneRotate {
    0% { transform: translate(-50%, -50%) rotateY(0deg); }
    100% { transform: translate(-50%, -50%) rotateY(360deg); }
}

@keyframes cubeRotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes cubeFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes orbit1 {
    0% { transform: rotateZ(0deg); }
    100% { transform: rotateZ(360deg); }
}

@keyframes orbit2 {
    0% { transform: rotateZ(0deg) rotateX(20deg); }
    100% { transform: rotateZ(360deg) rotateX(20deg); }
}

@keyframes orbit3 {
    0% { transform: rotateZ(0deg) rotateX(-15deg); }
    100% { transform: rotateZ(360deg) rotateX(-15deg); }
}

@keyframes shapeFloat1 {
    0%, 100% { transform: translateY(0px) rotateX(0deg) rotateY(0deg); }
    50% { transform: translateY(-30px) rotateX(180deg) rotateY(180deg); }
}

@keyframes shapeFloat2 {
    0%, 100% { transform: translateY(0px) rotateZ(0deg); }
    50% { transform: translateY(-25px) rotateZ(180deg); }
}

@keyframes shapeFloat3 {
    0%, 100% { transform: translateY(0px) rotateX(0deg); }
    50% { transform: translateY(-35px) rotateX(360deg); }
}

@keyframes shapeFloat4 {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-20px) rotateY(360deg); }
}

@keyframes pyramidRotate {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

@keyframes sphereRotate {
    0% { transform: rotateY(0deg); }
    100% { transform: rotateY(360deg); }
}

@keyframes sphereInner {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes cylinderRotate {
    0% { transform: rotateY(0deg) rotateX(0deg); }
    100% { transform: rotateY(360deg) rotateX(360deg); }
}

@keyframes hexagonRotate {
    0% { transform: rotateZ(0deg) rotateY(0deg); }
    100% { transform: rotateZ(360deg) rotateY(360deg); }
}

@keyframes particleFloat1 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    50% { transform: translateY(-40px) translateX(-20px); opacity: 1; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.5; }
    50% { transform: translateY(-30px) translateX(15px); opacity: 1; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.6; }
    50% { transform: translateY(-35px) translateX(-10px); opacity: 1; }
}

@keyframes particleFloat4 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.8; }
    50% { transform: translateY(-25px) translateX(20px); opacity: 1; }
}

@keyframes particleFloat5 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.4; }
    50% { transform: translateY(-45px) translateX(-15px); opacity: 1; }
}

@keyframes particleFloat6 {
    0%, 100% { transform: translateY(0px) translateX(0px); opacity: 0.7; }
    50% { transform: translateY(-20px) translateX(25px); opacity: 1; }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #64748B;
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #244ED1;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: #64748B;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-container {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(36, 78, 209, 0.3);
    transition: transform 0.3s ease;
}

.image-container:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg) scale(1.05);
}

.team-placeholder {
    text-align: center;
    color: white;
}

.team-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.team-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #F3F6FB;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.step p {
    color: #64748B;
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #244ED1;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.service-card p {
    color: #64748B;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background: #F3F6FB;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.portfolio-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-10px);
}

.portfolio-image {
    position: relative;
    height: 250px;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.project-placeholder {
    text-align: center;
    color: #64748B;
}

.project-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(36, 78, 209, 0.95);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 2rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.portfolio-overlay p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: #1E293B;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-image {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
    object-fit: contain;
    max-width: 120px;
}

.footer-logo-image:hover {
    opacity: 1;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #84A5F2;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #84A5F2;
}

.footer-section p {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #84A5F2;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #334155;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #244ED1;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
    color: #94A3B8;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-visual {
        height: 400px;
    }

    .main-3d-container {
        transform: translate(-50%, -50%) scale(0.8);
    }

    .cube {
        width: 80px;
        height: 80px;
    }

    .cube-face {
        width: 80px;
        height: 80px;
    }

    .cube-face.front { transform: rotateY(0deg) translateZ(40px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(40px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(40px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(40px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(40px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(40px); }

    .orbit-1 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }

    .orbit-2 {
        width: 280px;
        height: 280px;
        top: -140px;
        left: -140px;
    }

    .orbit-3 {
        width: 360px;
        height: 360px;
        top: -180px;
        left: -180px;
    }

    .floating-shapes {
        display: none;
    }

    .particles {
        display: none;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .stats {
        justify-content: center;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .logo-image {
        height: 35px;
        max-width: 120px;
    }

    .footer-logo-image {
        height: 30px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 10px 25px;
    }

    .hero-visual {
        height: 300px;
    }

    .main-3d-container {
        transform: translate(-50%, -50%) scale(0.6);
    }

    .cube {
        width: 60px;
        height: 60px;
    }

    .cube-face {
        width: 60px;
        height: 60px;
    }

    .cube-face.front { transform: rotateY(0deg) translateZ(30px); }
    .cube-face.back { transform: rotateY(180deg) translateZ(30px); }
    .cube-face.right { transform: rotateY(90deg) translateZ(30px); }
    .cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
    .cube-face.top { transform: rotateX(90deg) translateZ(30px); }
    .cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

    .face-icon {
        font-size: 1.2rem;
    }

    .face-content span {
        font-size: 0.7rem;
    }

    .orbit-1 {
        width: 150px;
        height: 150px;
        top: -75px;
        left: -75px;
    }

    .orbit-2 {
        width: 200px;
        height: 200px;
        top: -100px;
        left: -100px;
    }

    .orbit-3 {
        width: 250px;
        height: 250px;
        top: -125px;
        left: -125px;
    }

    .orbit-card {
        padding: 8px;
    }

    .orbit-icon {
        font-size: 1rem;
    }

    .orbit-card span {
        font-size: 0.7rem;
    }
}/* Abo
ut Page Specific Styles */
.page-hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    color: white;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.company-story {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1E293B;
    margin-bottom: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-visual {
    display: flex;
    justify-content: center;
}

.story-image {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, #FF6600, #FF8533);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: perspective(1000px) rotateY(15deg) rotateX(-5deg);
    box-shadow: 0 20px 40px rgba(255, 102, 0, 0.3);
    transition: transform 0.3s ease;
}

.story-image:hover {
    transform: perspective(1000px) rotateY(10deg) rotateX(-2deg) scale(1.05);
}

.story-placeholder {
    text-align: center;
    color: white;
}

.story-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.story-placeholder p {
    font-size: 1.3rem;
    font-weight: 600;
}

.mission-vision {
    padding: 100px 0;
    background: #F3F6FB;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1.5rem;
}

.mv-card p {
    font-size: 1.1rem;
    color: #64748B;
    line-height: 1.7;
}

.team {
    padding: 100px 0;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.member-placeholder {
    color: white;
    text-align: center;
}

.member-icon {
    font-size: 2.5rem;
}

.member-info h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.member-role {
    color: #244ED1;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: #64748B;
    font-size: 0.95rem;
    line-height: 1.6;
}

.values {
    padding: 100px 0;
    background: #F3F6FB;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.value-card p {
    color: #64748B;
    line-height: 1.6;
}

.nav-link.active {
    color: #244ED1;
}

.nav-link.active::after {
    width: 100%;
}

/* Responsive adjustments for About page */
@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-image {
        width: 250px;
        height: 250px;
    }

    .mv-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}/* 
Services Page Specific Styles */
.services-detailed {
    padding: 100px 0;
    background: white;
}

.services-detailed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.service-detailed {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.service-detailed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
}

.service-detailed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-header {
    text-align: center;
    margin-bottom: 2rem;
}

.service-icon-large {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.service-detailed h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: #244ED1;
    font-weight: 500;
    font-size: 1rem;
}

.service-content p {
    color: #64748B;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: #64748B;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 2rem;
    text-align: center;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #244ED1;
    background: #F0F4FF;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    display: inline-block;
}

.service-process {
    padding: 100px 0;
    background: #F3F6FB;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: right;
}

.timeline-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin: 0 2rem;
    box-shadow: 0 10px 30px rgba(36, 78, 209, 0.3);
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #64748B;
    line-height: 1.6;
}

/* Modal Styles for Service Details */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    cursor: pointer;
    color: #64748B;
    transition: color 0.3s ease;
}

.close:hover {
    color: #244ED1;
}

/* Responsive adjustments for Services page */
@media (max-width: 768px) {
    .services-detailed-grid {
        grid-template-columns: 1fr;
    }

    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }

    .timeline-item:nth-child(even) .timeline-content {
        text-align: center;
    }

    .timeline-number {
        margin: 0 0 1rem 0;
    }

    .timeline-content {
        margin-bottom: 2rem;
    }

    .service-detailed {
        padding: 2rem;
    }

    .service-icon-large {
        font-size: 3rem;
    }
}

@media (max-width: 480px) {
    .services-detailed-grid {
        gap: 2rem;
    }

    .service-detailed {
        padding: 1.5rem;
    }

    .timeline-number {
        width: 60px;
        height: 60px;
        font-size: 1.2rem;
    }

    .modal-content {
        margin: 10% auto;
        padding: 1.5rem;
    }
}/* Cont
act Page Specific Styles */
.contact-section {
    padding: 100px 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form-container h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 2rem;
}

.contact-form {
    background: #F8FAFC;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #E5E7EB;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #244ED1;
    box-shadow: 0 0 0 3px rgba(36, 78, 209, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.contact-info > p {
    color: #64748B;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-methods {
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #F8FAFC;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.contact-method:hover {
    transform: translateX(10px);
}

.contact-icon {
    font-size: 2rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: #64748B;
    margin-bottom: 0.25rem;
}

.contact-details .social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-details .social-link {
    color: #244ED1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details .social-link:hover {
    color: #1E40AF;
}

.response-time {
    background: linear-gradient(135deg, #244ED1, #84A5F2);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
}

.response-time h3 {
    margin-bottom: 0.5rem;
}

.response-time p {
    opacity: 0.9;
}

.map-section {
    padding: 100px 0;
    background: #F3F6FB;
}

.map-container {
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
    height: 100%;
    background: linear-gradient(135deg, #E2E8F0, #CBD5E1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-placeholder:hover {
    background: linear-gradient(135deg, #CBD5E1, #94A3B8);
}

.map-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.map-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder p {
    margin-bottom: 0.25rem;
}

.faq-section {
    padding: 100px 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: #F8FAFC;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #244ED1;
    transition: transform 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
}

.faq-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #64748B;
    line-height: 1.6;
}

/* Form Success/Error States */
.form-success {
    background: #10B981;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-error {
    background: #EF4444;
    color: white;
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    text-align: center;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Loading State */
.btn.loading {
    opacity: 0.7;
    cursor: not-allowed;
    position: relative;
}

.btn.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    margin: auto;
    border: 2px solid transparent;
    border-top-color: currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive adjustments for Contact page */
@media (max-width: 768px) {
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }

    .contact-method {
        padding: 1rem;
    }

    .contact-method:hover {
        transform: none;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 14px;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
}

/* FontAwesome Social Media Icons */

/* Footer Social Icons */
.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    margin-bottom: 5px;
    background: #334155;
    border-radius: 50%;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social i {
    font-size: 18px;
}

.footer-social:hover {
    transform: translateY(-2px);
    color: white;
}

.footer-social[title="Facebook"]:hover {
    background: #1877F2;
}

.footer-social[title="Instagram"]:hover {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4);
}

/* Contact Page Social Icons */
.contact-social {
    display: flex;
    align-items: center;
    color: #244ED1;
    text-decoration: none;
    margin-bottom: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: transparent;
}

.contact-social i {
    font-size: 18px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
    background: transparent;
    border-radius: 0;
}

.contact-social:hover {
    background: transparent;
    color: #1E40AF;
}

.contact-social:hover i {
    transform: scale(1.1);
    background: transparent;
}

/* Map section address update */
.map-placeholder p {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

/* Responsive adjustments for social icons */
@media (max-width: 768px) {
    .footer-social {
        width: 35px;
        height: 35px;
    }
    
    .footer-social i {
        font-size: 16px;
    }
    
    .contact-social i {
        font-size: 16px;
        margin-right: 8px;
    }
}