/* Brand color variables */
:root {
    --brand-blue: #1A2DD8;
    --brand-blue-light: #3a4cf5;
    --brand-blue-dark: #101a7c;
    --brand-blue-gradient: linear-gradient(45deg, #1A2DD8, #3a4cf5);
    --brand-bg: #0a1026;
    --brand-bg-dark: #05081a;
    --brand-bg-black: #000510;
    --brand-white: #fff;
    --brand-gray: #bfc6e0;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--brand-white);
    background: linear-gradient(135deg, var(--brand-bg), var(--brand-bg-dark) 60%, var(--brand-blue-dark) 100%);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a2e;
}

::-webkit-scrollbar-thumb {
    background: var(--brand-blue-gradient);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, #3a4cf5, #1A2DD8);
}



/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: black;
    overflow: hidden;
    /* padding: 80px 0 40px 0;  */
}

.hero-content {
    text-align: center;
}

/* Profile Image */
.profile-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.profile-image-wrapper {
    position: relative;
    display: inline-block;
    border-radius: 50%;
    padding: 8px;
    background: var(--brand-blue-gradient);
    animation: float 6s ease-in-out infinite;
}

.profile-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #ffffff;
    transition: all 0.3s ease;
}

.profile-image-glow {
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    background: var(--brand-blue-gradient);
    opacity: 0.18;
    filter: blur(18px);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0% { opacity: 0.15; transform: scale(1); }
    100% { opacity: 0.25; transform: scale(1.05); }
}

/* Hero Text */
.hero-text {
    padding-left: 2rem;
    padding-top: 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.greeting {
    display: block;
    font-size: 1.5rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    animation: fadeInUp 1s ease-out;
}

.name {
    display: block;
    background: var(--brand-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.title-main {
    display: block;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.title-company {
    display: block;
    background: var(--brand-blue-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

.title-company a {
    text-decoration: none !important;
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.8s both;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--brand-blue-gradient);
    color: var(--brand-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #3a4cf5, #1A2DD8);
    transition: all 0.3s ease;
    z-index: -1;
}

.social-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(26, 45, 216, 0.18);
}

.social-icon:hover::before {
    left: 0;
}

.social-icon:hover i {
    transform: scale(1.2);
}

.social-icon i {
    transition: all 0.3s ease;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1s ease-out 1s both;
}

.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--brand-blue-gradient);
    border: none;
    color: var(--brand-white);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(26, 45, 216, 0.18);
    color: var(--brand-white);
}

.btn-outline-light {
    border: 2px solid rgba(255,255,255,0.18);
    color: var(--brand-white);
    background: transparent;
}

.btn-outline-light:hover {
    background: rgba(26, 45, 216, 0.12);
    border-color: var(--brand-blue);
    transform: translateY(-3px);
    color: var(--brand-white);
}

/* Floating Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(45deg, rgba(26, 45, 216, 0.10), rgba(58, 76, 245, 0.10));
    animation: float-shape 20s infinite linear;
}

.shape-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 150px;
    height: 150px;
    top: 60%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

@keyframes float-shape {
    0% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0.3;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
    }
    
    .profile-image {
        width: 280px;
        height: 280px;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .profile-image {
        width: 250px;
        height: 250px;
    }
    
    .hero-text {
        padding-left: 0;
        text-align: center;
        margin-top: 2rem;
    }
    
    .cta-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.8rem;
    }
    
    .social-icon {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .profile-image {
        width: 220px;
        height: 220px;
    }
    
    .social-icons {
        justify-content: center;
        gap: 0.6rem;
    }
    
    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    .navbar-brand {
        font-size: 1.3rem;
    }
    
    .navbar-nav .nav-link {
        margin: 0 0.5rem;
        font-size: 0.95rem;
    }
    
    .profile-image-container {
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
    }
    .hero-section .row.align-items-center {
        align-items: flex-start !important;
    }
    .hero-section {
        padding-top: 80px;
        padding-bottom: 16px;
        min-height: unset;
    }
    .hero-content {
        margin-bottom: 0;
    }
    .hero-text {
        margin-top: 0.2rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .greeting {
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
        padding: 0 0.5rem;
    }
    
    .profile-image {
        width: 180px;
        height: 180px;
    }
    
    .social-icons {
        gap: 0.5rem;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
    
    .btn {
        max-width: 250px;
        padding: 12px 25px;
        font-size: 0.95rem;
    }
    
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .profile-image-container {
        margin-top: 1.5rem;
        margin-bottom: 0.3rem;
    }
    .hero-section {
        padding-top: 70px;
        padding-bottom: 6px;
    }
    .hero-text {
        margin-top: 0.1rem;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .greeting {
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-description {
        font-size: 0.95rem;
    }
    
    .profile-image {
        width: 160px;
        height: 160px;
    }
    
    .social-icons {
        gap: 0.4rem;
    }
    
    .social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }
    
    .btn {
        max-width: 220px;
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* Landscape orientation for mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: 100vh;
        padding: 2rem 0;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .social-icons {
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        margin-bottom: 1rem;
    }
}

/* Ensure proper spacing on very small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.4rem;
    }
    
    .greeting {
        font-size: 1rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .profile-image {
        width: 140px;
        height: 140px;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .btn {
        max-width: 200px;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animation for images */
.profile-image {
    opacity: 0;
    animation: imageLoad 1s ease-out 0.5s forwards;
}

@keyframes imageLoad {
    to {
        opacity: 1;
    }
} 