/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800&display=swap');
@import url('https://fonts.cdnfonts.com/css/satoshi');

/* CSS Variables */
:root {
    --primary-color: #00219B;
    --secondary-color: #1746D0;
    --text-dark: #1a1a1a;
    --text-gray: #4a5565;
    --text-light: #6a7282;
    --bg-light: #F5F7FB;
    --white: #ffffff;
    
    --font-heading: 'Sora', sans-serif;
    --font-body: 'Satoshi', sans-serif;
    
    --container-width: 1200px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 10px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 10px 25px rgba(0, 33, 155, 0.2);
}

.btn-primary:hover {
    background: #001670;
    box-shadow: 0 15px 35px rgba(0, 33, 155, 0.3);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    width:80px;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link-contact {
    background: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 8px;
}

.nav-link-contact:hover {
    background: var(--secondary-color);
        color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
}

.nav-mobile.active {
    display: flex;
}

.nav-link-mobile {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-dark);
    text-decoration: none;
    padding: 12px 0;
    transition: color 0.3s ease;
}

.nav-link-mobile:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(144.583deg, rgb(245, 247, 251) 0%, rgb(255, 255, 255) 50%, rgb(245, 247, 251) 100%); */
    padding: 120px 0 80px;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-left {
    flex: 1;
    max-width: 844px;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: normal;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: normal;
}

.hero-description {
    font-size: 20px;
    line-height: 34px;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 8px;
}

.hero-right {
    flex-shrink: 0;
}

.hero-image {
    width: 500px;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(80%);

}

/* Trust Section */
.trust-section {
    padding: 50px 0;
    background: var(--white);
}

.trust-heading {
    text-align: center;
    font-size: 24px;
    color: var(--text-gray);
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.trust-card {
    background: var(--bg-light);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.trust-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00219B 0%, #1746D0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.trust-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 40px;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.trust-label {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 24px;
}

/* Work Section */
.work-section {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: normal;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-gray);
    line-height: 28px;
    max-width: 832px;
    margin: 0 auto;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.work-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.work-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.work-image {
    width: 100%;
    height: 240px;
    background: #d9d9d9;
}

.work-content {
    padding: 24px;
}

.work-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 12px;
}

.work-description {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 24px;
    margin-bottom: 16px;
}

.work-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.work-tag {
    background: var(--bg-light);
    color: var(--primary-color);
    padding: 7px 12px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
}

.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

.work-image {
  position: relative;
  overflow: hidden;
}

.work-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: opacity 0.3s ease;
}

.work-card:hover .work-overlay {
  opacity: 1;
}

/* BUTTON */
.view-btn {
  background: linear-gradient(135deg, #00219B, #1746D0);
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-size: 14px;

  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}

.work-card:hover .view-btn {
  opacity: 1;
  transform: translateY(0);
}


/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-image {
    flex-shrink: 0;
}

.image-placeholder {
    border-radius: 20px;
}

.about-text {
    flex: 1;
    max-width: 100%;
}

.about-paragraphs {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 28px;
}

.about-paragraphs p {
    font-size: 18px;
    line-height: 28px;
    color: var(--text-gray);
}

.highlight {
    color: var(--primary-color);
    font-weight: 600;
}

.about-info {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.info-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 12px 24px;
    min-width: 188px;
}

.info-label {
    font-size: 14px;
    color: var(--text-light);
    line-height: 20px;
    margin-bottom: 4px;
}

.info-value {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 500;
    line-height: 24px;
}

/* Skills Section */
.skills-section {
    padding: 96px 0;
    background: var(--bg-light);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.skill-card {
    background: var(--white);
    border-radius: 32px;
    padding: 20px;
    border: 1px solid #e5e7eb;
}

.skill-card-large {
    grid-row: span 2;
    background: linear-gradient(139.236deg, rgb(23, 70, 208) 0%, rgb(0, 33, 155) 100%);
    border-radius: 40px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 500px;
    border: none;
}

.skill-card-full {
    grid-column: 1 / -1;
}

.skill-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 36px;
    margin-bottom: 20px;
}

.skill-title-alt {
    color: var(--secondary-color);
}

.skill-title-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--white);
    line-height: 40px;
    margin-bottom: 20px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.skill-tag {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 10px 15px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

.skill-tag-light {
    background: var(--bg-light);
    color: #364153;
    padding: 10px 15px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    line-height: 21px;
}

/* Experience Section */
.experience-section {
    padding: 128px 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, rgba(0, 33, 155, 0.2) 0%, #00219B 50%, rgba(0, 33, 155, 0.2) 100%);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 64px;
    display: flex;
    align-items: center;
}

.timeline-item-right {
    flex-direction: row-reverse;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 32px;
    width: 20px;
    height: 20px;
    background: linear-gradient(to bottom right, #00219B, #1746D0);
    border-radius: 50%;
    border: 4px solid var(--bg-light);
    transform: translateX(-50%);
    z-index: 10;
}

.timeline-card {
    width: calc(50% - 48px);
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-card {
    margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-card {
    margin-left: auto;
}

.timeline-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 33, 155, 0.2);
}

.timeline-year {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.timeline-role {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 8px;
}

.timeline-company {
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 16px;
}

.timeline-description {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.contact-description {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 28px;
    margin-bottom: 32px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-4px);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(139.236deg, rgb(23, 70, 208) 0%, rgb(0, 33, 155) 100%);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    width:80px;
}

.footer-tagline {
    font-size: 16px;
   color: var(--white);
    line-height: 24px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 14px;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-left {
    animation: fadeInLeft 0.8s ease forwards;
}

.fade-in-right {
    animation: fadeInRight 0.8s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

.delay-3 {
    animation-delay: 0.6s;
    opacity: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content,
    .about-content,
    .contact-content {
        flex-direction: column;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .skill-card-large {
        grid-row: span 1;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
    }
    
    .timeline-card {
        width: calc(100% - 60px);
        margin-left: 60px !important;
    }
    
    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .hero {
        padding: 160px 0 200px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 24px;
    }
    
    .hero-description {
        font-size: 18px;
        line-height: 28px;
    }
    
    .hero-image {
        width: 100%;
        max-width: 326px;
    }
    
    .section-title {
        font-size: 36px;
    }
      .skill-title, .skill-title-large {
    font-size: 28px;
}
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .work-grid {
        grid-template-columns: 1fr;
    }
    
    .image-placeholder {
        width: 100%;
    }
    
    .about-text {
        max-width: 100%;
    }
    .work-section,
  .about-section,
  .contact-section,
  .skills-section,
  .experience-section {
    padding: 60px 0;}


  .skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-card-large {
    min-height: 200px;
  
}
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .hero-description {
        font-size: 16px;
        line-height: 24px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
    }

          .work-section,
  .about-section,
  .contact-section,
  .skills-section,
  .experience-section {
    padding: 40px 0;
  }
  .skill-title, .skill-title-large {
    font-size: 22px;
}
}