* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #0b0120;
    font-family: 'Poppins', sans-serif;
    color: #fff;
    overflow-x: hidden;
    /* Prevents horizontal scrolling */
}

/* ================= NAVBAR ================= */

.custom-navbar {
    padding: 15px 0 !important;
    background: rgba(11, 1, 32, 0.8) !important;
    backdrop-filter: blur(10px) !important;
    position: fixed !important;
    top: 0 !important;
    z-index: 999 !important;
    width: 100% !important;
}

/* Shadow */
.navbar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* Layout fix */
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo FIX (no stretch + visible) */
.logo-img {
    filter: brightness(0) invert(1);
    height: 50px;
    width: auto;
    object-fit: contain;
    /* thoda highlight */
}

/* Remove width issues */
#navbarNav {
    width: auto;
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 500;
    margin: 0 18px;
    color: #cfcfe0 !important;
    position: relative;
    transition: 0.3s;
    font-size: 15px;
}

/* Hover */
.navbar-nav .nav-link:hover {
    color: #9b5cff !important;
}

/* Active */
.navbar-nav .nav-link.active {
    color: #9b5cff !important;
}

/* Underline animation */
.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: #9b5cff;
    transition: 0.3s;
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-bottom: 50px;
    justify-content: center;
    padding-top: 70px;
    position: relative;
    /* Added for antigravity background */
}

/* Floating Abstract Geometry Background */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
    perspective: 1000px;
}

.shape {
    position: absolute;
    opacity: 0.3;
    /* Low opacity as requested */
    animation: floatShape linear infinite;
}

/* Pseudo-3D Cubes */
.cube {
    background: linear-gradient(135deg, rgba(155, 92, 255, 0.8), rgba(77, 163, 255, 0.4));
    box-shadow: inset -5px -5px 15px rgba(0, 0, 0, 0.3);
}

.cube-1 {
    width: 80px;
    height: 80px;
    left: 10%;
    bottom: -100px;
    animation-duration: 25s;
    animation-delay: 0s;
}

.cube-2 {
    width: 120px;
    height: 120px;
    right: 15%;
    bottom: -150px;
    animation-duration: 35s;
    animation-delay: 5s;
}

/* Pyramids / Triangles */
.triangle {
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 86px solid rgba(192, 132, 252, 0.6);
}

.tri-1 {
    left: 40%;
    bottom: -120px;
    animation-duration: 30s;
    animation-delay: 2s;
    border-left-width: 40px;
    border-right-width: 40px;
    border-bottom-width: 70px;
}

.tri-2 {
    right: 30%;
    bottom: -90px;
    animation-duration: 20s;
    animation-delay: 7s;
    border-left-width: 30px;
    border-right-width: 30px;
    border-bottom-width: 52px;
    border-bottom-color: rgba(77, 163, 255, 0.6);
}

/* Rings / Cylinders */
.circle {
    border-radius: 50%;
    border: 15px solid rgba(155, 92, 255, 0.5);
}

.circ-1 {
    width: 100px;
    height: 100px;
    left: 25%;
    bottom: -110px;
    animation-duration: 28s;
    animation-delay: 4s;
}

.circ-2 {
    width: 60px;
    height: 60px;
    right: 5%;
    bottom: -80px;
    animation-duration: 22s;
    animation-delay: 1s;
    border-width: 8px;
    border-color: rgba(192, 132, 252, 0.5);
}

/* Dot Matrix Patterns */
.dots {
    width: 150px;
    height: 150px;
    background-image: radial-gradient(rgba(155, 92, 255, 0.4) 2px, transparent 2px);
    background-size: 15px 15px;
    animation: slowPan 40s linear infinite alternate !important;
    /* overrides float */
}

.dots-1 {
    left: 5%;
    top: 10%;
    opacity: 0.15;
}

.dots-2 {
    right: 5%;
    bottom: 10%;
    opacity: 0.1;
}

@keyframes floatShape {
    0% {
        transform: translateY(0) rotateX(0) rotateY(0) rotateZ(0);
        opacity: 0;
    }

    10% {
        opacity: 0.2;
    }

    90% {
        opacity: 0.2;
    }

    100% {
        transform: translateY(-100vh) rotateX(360deg) rotateY(180deg) rotateZ(360deg);
        opacity: 0;
    }
}

@keyframes slowPan {
    0% {
        transform: translate(0, 0) rotate(0);
    }

    100% {
        transform: translate(50px, 50px) rotate(15deg);
    }
}



/* Image Glow */
.image-wrapper {
    position: relative;
}

.image-wrapper::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, #6c2cff 0%, transparent 70%);
    filter: blur(80px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-img {
    width: 600px;
    animation: float 4s ease-in-out infinite;
}

/* Floating Animation */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(0px);
    }
}

/* Content */
.content {
    position: relative;
}

/* Arrow + Intro */
.intro-wrap {
    position: relative;
    margin-bottom: 10px;
}

.arrow {
    position: absolute;
    left: -130px;
    top: -10px;
    opacity: 0.8;
}

.intro-text {
    font-size: 18px;
    color: #cfcfe0;
}

.intro-text span {
    color: #9b5cff;
}

/* Titles */
.small-title {
    font-size: 20px;
    color: #aaa;
    margin-bottom: 8px;
}

/* Main Title */
.main-title {
    font-size: 100px;
    font-weight: 800;
    /* line-height: 1.15; */
}

/* Gradient Word */
.gradient {
    background: linear-gradient(90deg, #9b5cff, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Subtext */
.sub-text {
    margin-top: 12px;
    color: #a0a0b8;
}




/* About Section */
#about-section {
    padding: 80px 0 40px 0;
}

.main-heading {
    font-size: 45px;
    font-weight: 600;
    line-height: 1.2;
}

/* Static text */
.static-text {
    color: #fff;
}

/* Typing text */
.typing-text {
    color: #9b5cff;
}

/* Cursor blink */
.cursor {
    display: inline-block;
    width: 3px;
    /* thickness control */
    height: 1em;
    /* same as text height */
    background: #9b5cff;
    margin-left: 5px;
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.about-sub {
    margin-top: 10px;
    color: #a0a0b8;
}

.about-sub b {

    color: #4da3ff;
}

.company {
    color: #4da3ff;
}

.about-desc {
    margin-top: 25px;
    color: #cfcfe0;
    line-height: 1.7;
    width: 100%;
}
.about-img{
        width: 100%;
        max-width: 300px;
        aspect-ratio: 1/1;
        border-radius: 50%;
        object-fit: cover;
    
}

/* ================= ABOUT PREMIUM ================= */

.about-premium {
    padding: 40px 0 50px 0;
    position: relative;
}

/* Glow Background */
.about-premium::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6c2cff 0%, transparent 70%);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.about-premium .container {
    position: relative;
    z-index: 1;
}

.about-premium .col-lg-7 {
    padding-right: 40px;
    padding-left: 40px;
}

/* Left Content */
.about-tag {
    color: #9b5cff;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 5px;
}

.about-title {
    font-size: 48px;
    line-height: 1.2;
    max-width: 500px;
}

.about-text {
    color: #cfcfe0;
    line-height: 1.7;
    margin-bottom: 15px;
}

/* Features */
.about-features {
    margin-top: 25px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 30px;
    max-width: 400px;
}

.feature {
    font-size: 14px;
    color: #a0a0b8;
}

/* Button */
.about-btn {
    display: inline-block;
    margin-top: 30px;
    padding: 10px 25px;
    background: linear-gradient(90deg, #9b5cff, #c084fc);
    border-radius: 30px;
    color: #fff;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    box-shadow: 0 0 20px rgba(155, 92, 255, 0.6);
}

/* Right Cards */
.about-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-card {
    background: linear-gradient(145deg, #1a0333, #14022a);
    border: 1px solid rgba(155, 92, 255, 0.2);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(155, 92, 255, 0.3);
}

.about-card h2 {
    color: #9b5cff;
    font-size: 32px;
}

.about-card p {
    font-size: 13px;
    color: #cfcfe0;
}


/* Work Section */
#work-section {
    padding: 80px 0 100px;
    position: relative;
}

/* Center Glow */
.work-section::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #6c2cff 0%, transparent 70%);
    filter: blur(120px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.sub-title {
    font-size: 25px;
    margin-bottom: 8px;
    text-align: center;
}

.work-title {
    font-size: 45px;
    margin-bottom: 50px;
    text-align: center;
    color: #a0a0b8;
}

/* Cards */
.work-card {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 40px 25px 25px 25px;
    border-radius: 15px;
    background: linear-gradient(145deg, #1a0333, #14022a);
    border: 1px solid rgba(155, 92, 255, 0.2);
    transition: 0.3s;
    position: relative;
    z-index: 1;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(155, 92, 255, 0.3);
}

/* Icon */
.icon {
    font-size: 40px;
}

/* Card Text */
.work-card h5 {
    margin: 0;
}

.work-card p {
    font-size: 13px;
    color: #aaa;
    margin: 5px 0 7px;
}

.work-card h6 {
    font-size: 12px;
    color: #9b5cff;
    text-decoration: underline;
    cursor: pointer;
}

.more-text {
    display: none;
    color: #aaa;
}

.toggle-btn {
    font-size: 12px;
    color: #9b5cff;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 5px;
    display: inline-block;
}

#resume-section {
    padding: 70px 0;
    background: #0b0120;
    color: #fff;
}

.resume-title {
    font-size: 25px;
    text-align: center;
    margin-bottom: 8px;
}

.resume-subtitle {
    text-align: center;
    color: #a0a0b8;
    margin-bottom: 50px;
    font-size: 40px;
}

/* Box */
.resume-box {
    background: linear-gradient(145deg, #1a0333, #14022a);
    border: 1px solid rgba(155, 92, 255, 0.2);
    border-radius: 15px;
    padding: 25px;
    height: 100%;
    transition: 0.3s;
}

.resume-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(155, 92, 255, 0.3);
}

.resume-box h4 {
    font-size: 20px;
    color: #9b5cff;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Items */
.resume-item {
    margin-bottom: 15px;
    padding: 12px 15px;
    border-left: 2px solid rgba(155, 92, 255, 0.5);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    position: relative;
}

.resume-item::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 15px;
    width: 10px;
    height: 10px;
    background: #9b5cff;
    border-radius: 50%;
}

.resume-item h5 {
    font-size: 16px;
    margin: 0;
}

.resume-item p {
    font-size: 13px;
    color: #a0a0b8;
}

.resume-item span {
    font-size: 12px;
    color: #cfcfe0;
}

/* Skills */
.skill {
    margin-bottom: 20px;
}

.skill p {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 5px;
}

.bar {
    width: 100%;
    height: 6px;
    background: #1a0333;
    border-radius: 10px;
    overflow: hidden;
}

.fill {
    height: 100%;
    background: linear-gradient(90deg, #9b5cff, #c084fc);
}

/* Widths */
.w90 {
    width: 90%;
}

.w85 {
    width: 85%;
}

.w80 {
    width: 80%;
}

/* ================= PORTFOLIO SECTION ================= */

#portfolio-section {
    padding: 80px 0;
    background: #0b0120;
    position: relative;
}

.section-title {
    font-size: 40px;
    color: #fff;
    font-weight: 600;
}

/* ================= FILTER BUTTON ================= */
.filters .btn {
    background: transparent;
    border: 1px solid rgba(155, 92, 255, 0.3);
    color: #cfcfe0;
    padding: 8px 18px;
    border-radius: 25px;
    margin: 5px;
    transition: 0.3s;
}

.filters .btn.active,
.filters .btn:hover {
    background: linear-gradient(90deg, #9b5cff, #c084fc);
    color: #fff;
}


/* ================= NORMAL GRID ================= */
#posts {
    margin-top: 30px;
}

/* ================= MASONRY (ONLY ALL) ================= */
/* ===== COLLAGE MODE (IMG 2 STYLE) ===== */

#posts.collage-mode {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 15px;
    grid-auto-flow:dense;
}

/* Remove bootstrap grid effect */
#posts.collage-mode .item {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Images fill */
#posts.collage-mode img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
}

/* ===== DIFFERENT SIZES (MAGIC PART) ===== */

#posts.collage-mode .item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 2;
}

#posts.collage-mode .item:nth-child(4) {
    grid-row: span 2;
}

#posts.collage-mode .item:nth-child(6) {
    grid-column: span 2;
}

#posts.collage-mode .item:nth-child(9) {
    grid-row: span 1;
}

#posts.collage-mode .item:nth-child(11) {
    grid-column: span 2;
    grid-row: span 1;
}

/* ================= ITEM STYLE ================= */
.item {
    position: relative;
    overflow: hidden;
}

.item img {
    width: 100%;
    border-radius: 12px;
    transition: 0.4s;
}

.item:hover img {
    transform: scale(1.08);
}

/* Overlay */
.item-wrap {
    display: block;
    position: relative;
}

.item-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(11, 1, 32, 0.7);
    opacity: 0;
    transition: 0.4s;
    border-radius: 12px;
}

.icon-search2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    color: #fff;
    font-size: 28px;
    opacity: 0;
    transition: 0.3s;
}

.item-wrap:hover::before {
    opacity: 1;
}

.item-wrap:hover .icon-search2 {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}
/* ================= CONTACT SECTION ================= */

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(155, 92, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c084fc;
    flex-shrink: 0;
    transition: 0.3s;
}

.contact-icon:hover {
    background: rgba(155, 92, 255, 0.1);
    box-shadow: 0 0 15px rgba(155, 92, 255, 0.3);
}

.contact-text h5 {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

.contact-text p {
    color: #cfcfe0;
    font-size: 14px;
}

.contact-form .form-control {
    background: transparent;
    border: 1px solid rgba(155, 92, 255, 0.3);
    border-radius: 5px;
    color: #fff;
    padding: 12px 15px;
    font-size: 14px;
    transition: 0.3s;
}

.contact-form .form-control:focus {
    outline: none;
    box-shadow: none;
    border-color: #9b5cff;
    background: rgba(155, 92, 255, 0.05);
}

.contact-form .form-control::placeholder {
    color: #888;
}

.submit-btn {
    background: #9b5cff;
    color: #fff;
    font-weight: 600;
    padding: 12px;
    border-radius: 5px;
    transition: 0.3s;
    border: none;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.submit-btn:hover {
    background: #c084fc;
    color: #fff;
    box-shadow: 0 0 15px rgba(155, 92, 255, 0.5);
}

.map-wrapper iframe {
    border-radius: 10px;
}

  /* ========== 🔥 NEW MODERN FOOTER DESIGN ========== */
  .new-footer {
      background: linear-gradient(135deg, #0f0225 0%, #05010f 100%);
      border-top: 1px solid rgba(155, 92, 255, 0.2);
      margin-top: 60px;
      position: relative;
      overflow: hidden;
  }

  .new-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: radial-gradient(circle at 20% 30%, rgba(155, 92, 255, 0.08) 0%, transparent 60%);
      pointer-events: none;
  }

  .footer-main {
      padding: 70px 0 40px;
      position: relative;
      z-index: 2;
  }

  .footer-logo-modern {
      filter: brightness(0) invert(1);
      height: 55px;
      width: auto;
      margin-bottom: 25px;
      transition: transform 0.3s ease;
  }

  .footer-logo-modern:hover {
      transform: scale(1.02);
  }

  .footer-desc {
      color: #b9b9e6;
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 25px;
      max-width: 280px;
  }

  .footer-email {
      color: #fff;
      font-size: 16px;
      font-weight: 500;
      background: rgba(155, 92, 255, 0.15);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 20px;
      border-radius: 40px;
      backdrop-filter: blur(4px);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
      border: 1px solid rgba(155, 92, 255, 0.2);
  }

  .footer-email i {
      color: #c084fc;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      font-size: 18px;
  }

  .footer-email:hover {
      background: rgba(155, 92, 255, 0.35);
      border-color: rgba(155, 92, 255, 0.5);
      transform: translateY(-2px);
  }

  .footer-email:hover i {
      color: #ffffff !important;
      transform: scale(1.15) rotate(-5deg);
  }

  .footer-email:active {
      transform: translateY(0);
  }
  .footer-heading {
      font-size: 20px;
      font-weight: 600;
      margin-bottom: 30px;
      position: relative;
      display: inline-block;
  }

  .footer-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, #9b5cff, #c084fc);
      border-radius: 3px;
  }

  .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .footer-links li {
      margin-bottom: 14px;
  }

  .footer-links a {
      color: #cfcfe0;
      text-decoration: none;
      font-size: 14px;
      transition: 0.3s;
      display: inline-flex;
      align-items: center;
      gap: 8px;
  }

  .footer-links a i {
      font-size: 12px;
      color: #9b5cff;
      opacity: 0.7;
      transition: 0.3s;
  }

  .footer-links a:hover {
      color: #c084fc;
      transform: translateX(5px);
  }

  .footer-links a:hover i {
      opacity: 1;
      transform: translateX(3px);
  }

  .social-icons {
      display: flex;
      gap: 18px;
      margin-top: 30px;
      flex-wrap: wrap;
  }

  .social-circle {
      width: 42px;
      height: 42px;
      background: rgba(155, 92, 255, 0.12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 20px;
      transition: 0.3s;
      text-decoration: none;
      border: 1px solid rgba(155, 92, 255, 0.2);
  }

  .social-circle:hover {
      background: linear-gradient(135deg, #9b5cff, #c084fc);
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(155, 92, 255, 0.4);
      color: white;
  }

  .contact-footer-item {
      display: flex;
      align-items: center;
      gap: 15px;
      margin-bottom: 20px;
  }

  .contact-icon-small {
      width: 38px;
      height: 38px;
      background: rgba(155, 92, 255, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #9b5cff;
      font-size: 18px;
  }

  .contact-footer-item p,
  .contact-footer-item a {
      margin: 0;
      color: #cfcfe0;
      font-size: 14px;
      text-decoration: none;
      transition: 0.3s;
  }

  .contact-footer-item a:hover {
      color: #c084fc;
  }

  .footer-bottom {
      border-top: 1px solid rgba(155, 92, 255, 0.15);
      padding: 25px 0;
      text-align: center;
  }

  .footer-bottom p {
      margin: 0;
      font-size: 13px;
      color: #8f8fb1;
  }

  .footer-bottom-links {
      display: flex;
      justify-content: flex-end;
      gap: 30px;
  }

  .footer-bottom-links a {
      color: #8f8fb1;
      text-decoration: none;
      font-size: 13px;
      transition: 0.3s;
  }

  .footer-bottom-links a:hover {
      color: #9b5cff;
  }

  
  
  /* ===== FIXED HERO SECTION ===== */
.hero-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding-top: 40px;
    position: relative;
}

/* Hero content alignment */
.hero-section .row {
    align-items: center;
}

/* Left content - should be LEFT aligned, not center */
.hero-section .col-lg-6:first-child {
    text-align: left;
}

/* Hero image - right side properly positioned */
.hero-section .col-lg-6:last-child {
    text-align: right;
}

/* Fix for "I'm a Professional..." text */
.intro-text {
    font-size: 18px;
    color: #cfcfe0;
    text-align: left;
    margin-bottom: 5px;
}

/* Main title styling */
.main-title {
    font-size: 80px;
    font-weight: 800;
    text-align: left;
    line-height: 1.2;
    margin-bottom: 15px;
}

/* Subtext alignment */
.sub-text {
    margin-top: 12px;
    color: #a0a0b8;
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
}

/* Arrow positioning fix */
.arrow {
    position: absolute;
    left: -130px;
    top: -10px;
    opacity: 0.8;
}

/* Hero image styling */
.hero-img {
    width: 500px;
    animation: float 4s ease-in-out infinite;
}

/* ============================================
   FIX FOR LARGE SCREENS (1920px+)
   Website will NOT stretch anymore
============================================ */

/* Main container - maximum width limit */
.container {
    max-width: 1200px !important;
    width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}



/* Navbar fix - thicker on big screens */
.custom-navbar {
    padding: 15px 0 !important;
}

.navbar {
    padding: 10px 0 !important;
}

.navbar-nav .nav-link {
    font-size: 16px !important;
    margin: 0 20px !important;
}

/* Logo size fix */
.logo-img {
    height: 50px !important;
    width: auto !important;
}

/* Hero section - prevent stretch */
.hero-section {
    max-width: 1400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 60px 20px !important;
}

.hero-section .row {
    margin: 0 auto !important;
}

.main-title {
    font-size: 65px !important;
    max-width: 90% !important;
}

.hero-img {
    max-width: 450px !important;
        width: 100% !important;
    
}

/* About section - prevent stretch */
.about-premium .container {
    max-width: 1200px !important;
}

.about-title {
    font-size: 42px !important;
}

.about-text {
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* Work section cards - fix height */
.work-card {
    padding: 35px 25px !important;
    min-height: 220px !important;
}

.work-card .icon {
    font-size: 38px !important;
}

.work-card h5 {
    font-size: 18px !important;
}

.work-card p {
    font-size: 14px !important;
    line-height: 1.5 !important;
}

/* Resume section - fix spacing */
.resume-box {
    padding: 30px !important;
    height: 100% !important;
}

.resume-box h4 {
    font-size: 20px !important;
    margin-bottom: 20px !important;
}

.resume-item {
    padding: 15px !important;
    margin-bottom: 15px !important;
}

/* Portfolio grid - fix size */
#posts.collage-mode {
    gap: 15px !important;
}

#posts.collage-mode img {
    height: 100% !important;
    min-height: 180px !important;
}

/* Contact section */
.contact-icon {
    width: 55px !important;
    height: 55px !important;
}

.contact-text h5 {
    font-size: 18px !important;
}

/* Footer fix */
.footer-main {
    padding: 60px 0 30px !important;
}

.new-footer .container {
    max-width: 1200px !important;
}



/* ===== Fix for ALL sections background ===== */
section {
    width: 100%;
    overflow-x: hidden;
}

/* Prevent any horizontal scroll */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
