/* Coding by Samitha Randika | https://www.linkedin.com/in/samitha-randika-edirisinghe-b3a68a2b6 */
:root {
      --primary: #e83e8c;
      --primary-dark: #c42e6d;
      --secondary: #6c63ff;
      --dark: #1a1a2e;
      --light: #f8f9fa;
      --gray: #8a8a9a;
      --card-bg: #ffffff;
      --section-bg: #f5f7ff;
      --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    }
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(135deg, #f5f7ff 0%, #f8f9fa 100%);
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
      background-attachment: fixed;
    }
    
    h1, h2, h3, h4, h5, h6 {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
    }
    
    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 28px;
      border-radius: 50px;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
      color: white;
      box-shadow: 0 4px 15px rgba(232, 62, 140, 0.3);
      text-align: center;
    }
    
    .btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(232, 62, 140, 0.4);
    }
    
    .btn-outline {
      background: transparent;
      border: 2px solid var(--primary);
      color: var(--primary);
      text-align: center;
    }
    
    .btn-outline:hover {
      background: var(--primary);
      color: white;
    }
    
    section {
      padding: 100px 0;
    }
    
    .section-title {
      text-align: center;
      margin-bottom: 70px;
      position: relative;
    }
    
    .section-title h2 {
      font-size: 2.8rem;
      color: var(--dark);
      margin-bottom: 15px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: inline-block;
    }
    
    .section-title p {
      color: var(--gray);
      font-size: 1.1rem;
      max-width: 700px;
      margin: 0 auto;
    }
    
    .section-title::after {
      content: '';
      position: absolute;
      bottom: -15px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 4px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      border-radius: 2px;
    }
    
    /* Header */
    header {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
      backdrop-filter: blur(10px);
      transition: var(--transition);
    }
    
    header.scrolled {
      padding: 10px 0;
    }
    
    .header-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 20px;
    }
    
    .logo {
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--primary);
      text-decoration: none;
    }
    
    .logo span {
      color: var(--dark);
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 30px;
    }
    
    .nav-links a {
      text-decoration: none;
      color: var(--dark);
      font-weight: 500;
      font-size: 1rem;
      position: relative;
      transition: var(--transition);
    }
    
    .nav-links a:hover,
    .nav-links a.active {
      color: var(--primary);
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -5px;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      transition: var(--transition);
    }
    
    .nav-links a:hover::after,
    .nav-links a.active::after {
      width: 100%;
    }
    
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 1.5rem;
      color: var(--dark);
      cursor: pointer;
      margin-right: 25px;
    }
    
    /* Hero Section */
    .hero {
      min-height: 100vh;
      display: flex;
      align-items: center;
      padding-top: 115px;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(232,62,140,0.15) 0%, rgba(232,62,140,0) 70%);
      z-index: -1;
    }
    
    .hero-content {
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .hero-text {
      flex: 1;
    }
    
    .hero-image {
      flex: 1;
      display: flex;
      justify-content: center;
      position: relative;
    }
    
    .hero-image::before {
      content: '';
      position: absolute;
      top: -20px;
      right: -20px;
      width: 100%;
      height: 100%;
      border: 5px solid var(--primary);
      border-radius: 20px;
      z-index: -1;
    }
    
    .hero-image img {
      width: 100%;
      max-width: 400px;
      height: auto;
      border-radius: 20px;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
      transform: rotate(3deg);
      transition: var(--transition);
    }
    
    .hero-image img:hover {
      transform: rotate(0);
    }
    
    .hero h1 {
      font-size: 3.5rem;
      margin-bottom: 20px;
      line-height: 1.2;
      color: var(--dark);
    }
    
    .hero h1 span {
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    
    .hero p {
      font-size: 1.2rem;
      margin-bottom: 30px;
      color: var(--gray);
      max-width: 600px;
    }
    
    .hero-btns {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    /* About Section */
    .about-content {
      display: flex;
      align-items: center;
      gap: 50px;
    }
    
    .about-image {
      flex: 1;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .about-image img {
      width: 100%;
      height: auto;
      transition: var(--transition);
    }
    
    .about-image img:hover {
      transform: scale(1.05);
    }
    
    .about-text {
      flex: 1;
    }
    
    .about-text h3 {
      font-size: 2rem;
      margin-bottom: 20px;
      color: var(--dark);
    }
    
    .about-text p {
      margin-bottom: 20px;
      color: #555;
    }
    
    .about-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 30px;
    }
    
    .stat-box {
      text-align: center;
      padding: 25px 15px;
      background-color: var(--card-bg);
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      transition: var(--transition);
    }
    
    .stat-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }
    
    .stat-box i {
      font-size: 2.5rem;
      color: var(--primary);
      margin-bottom: 15px;
    }
    
    .stat-box h4 {
      font-size: 2rem;
      margin-bottom: 5px;
      color: var(--dark);
    }
    
    .stat-box p {
      color: var(--gray);
      font-size: 0.9rem;
    }

    /* Resume Section */
    .resume {
      background-color: var(--section-bg);
    }

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

    .resume-column h3 {
      font-size: 1.8rem;
      margin-bottom: 30px;
      padding-bottom: 15px;
      border-bottom: 3px solid var(--primary);
      display: inline-block;
    }

    .resume-item {
      background: var(--card-bg);
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      margin-bottom: 25px;
      transition: var(--transition);
    }

    .resume-item:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .resume-item h4 {
      color: var(--dark);
      font-size: 1.4rem;
      margin-bottom: 10px;
    }

    .resume-meta {
      display: flex;
      justify-content: space-between;
      margin-bottom: 15px;
      flex-wrap: wrap;
    }

    .resume-date {
      background: rgba(232, 62, 140, 0.1);
      color: var(--primary);
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .resume-location {
      color: var(--gray);
      font-weight: 500;
    }

    .resume-item p {
      color: var(--gray);
      line-height: 1.7;
    }

    .resume-item ul {
      padding-left: 20px;
    }

    .resume-item li {
      margin-bottom: 10px;
      color: var(--gray);
      position: relative;
    }

    .resume-item li::before {
      content: "▹";
      position: absolute;
      left: -20px;
      color: var(--primary);
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
      .resume-container {
        grid-template-columns: 1fr;
      }
      
      .resume-meta {
        flex-direction: column;
        gap: 10px;
      }
    }
    
    /* Projects Section */
    .projects-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .project-card {
      background-color: var(--card-bg);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }
    
    .project-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .project-image {
      height: 250px;
      overflow: hidden;
    }
    
    .project-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .project-card:hover .project-image img {
      transform: scale(1.05);
    }
    
    .project-content {
      padding: 25px;
    }
    
    .project-content h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    .project-content p {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    .project-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-bottom: 20px;
    }
    
    .project-tag {
      background-color: rgba(232, 62, 140, 0.1);
      color: var(--primary);
      padding: 5px 15px;
      border-radius: 50px;
      font-size: 0.85rem;
      font-weight: 500;
    }
    
    .project-links {
      display: flex;
      gap: 15px;
    }
    
    /* Models Section */
    .models-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .model-card {
      display: flex;
      flex-direction: column;
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
      height: 100%;
    }
    
    .model-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .model-header {
      padding: 20px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      position: relative;
      min-height: 100px;
      text-align: center;
    }
    
    .model-icon {
      position: absolute;
      top: -25px;
      right: 20px;
      width: 60px;
      height: 60px;
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }
    
    .model-icon i {
      font-size: 1.8rem;
      color: var(--primary);
    }
    
    .model-content {
      padding: 25px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
    }
    
    .model-content h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    .model-content p {
      color: var(--gray);
      margin-bottom: 20px;
      flex-grow: 1;
    }
    
    .model-stats {
      display: flex;
      justify-content: space-between;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }
    
    .stat {
      text-align: center;
    }
    
    .stat-value {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--primary);
    }
    
    .stat-label {
      font-size: 0.8rem;
      color: var(--gray);
    }
    
    .model-link {
      display: block;
      text-align: center;
      padding: 15px;
      background: rgba(232, 62, 140, 0.1);
      color: var(--primary);
      text-decoration: none;
      font-weight: 600;
      transition: var(--transition);
      border-top: 1px solid #f0f0f0;
    }
    
    .model-link:hover {
      background: var(--primary);
      color: white;
    }
    
    /* New fix for model card alignment */
    .model-card-wrapper {
      display: flex;
      flex-direction: column;
      height: 100%;
    }
    
    /* Responsive adjustments */
    @media (max-width: 768px) {
      .models-container {
        grid-template-columns: 1fr;
      }
    }
    
    /* Experience Section */
    .experience {
      background-color: var(--section-bg);
    }
    
    .experience-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
    }
    
    .experience-card {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
      transition: var(--transition);
      position: relative;
    }
    
    .experience-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .experience-image {
      height: 300px;
      position: relative;
      overflow: hidden;
    }
    
    .experience-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .experience-card:hover .experience-image img {
      transform: scale(1.05);
    }
    
    .experience-overlay {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
      padding: 20px;
      color: white;
    }
    
    .experience-overlay h3 {
      font-size: 1.5rem;
      margin-bottom: 10px;
    }
    
    .experience-overlay p {
      font-size: 1rem;
      opacity: 0.9;
    }
    
    .experience-video {
      position: relative;
      padding-bottom: 56.25%; /* 16:9 aspect ratio */
      height: 0;
      overflow: hidden;
      border-radius: 0 0 20px 20px;
    }
    
    .experience-video video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .experience-content {
      padding: 25px;
      background: white;
    }
    
    .experience-content p {
      color: var(--gray);
      margin-bottom: 20px;
    }
    
    /* Skills Section */
    .skills-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 30px;
    }
    
    .skill-card {
      background: var(--card-bg);
      padding: 30px;
      border-radius: 20px;
      text-align: center;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }
    
    .skill-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
    }
    
    .skill-icon {
      width: 80px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      background: rgba(232, 62, 140, 0.1);
      border-radius: 50%;
    }
    
    .skill-icon i {
      font-size: 2.5rem;
      color: var(--primary);
    }
    
    .skill-card h3 {
      margin-bottom: 15px;
      color: var(--dark);
    }
    
    .skill-card p {
      color: var(--gray);
    }
    
    /* Volunteering Section */
    .volunteering-container {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 30px;
    }
    
    .volunteer-card {
      background: var(--card-bg);
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      transition: var(--transition);
    }
    
    .volunteer-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    }
    
    .volunteer-image {
      height: 200px;
      overflow: hidden;
    }
    
    .volunteer-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }
    
    .volunteer-card:hover .volunteer-image img {
      transform: scale(1.05);
    }
    
    .volunteer-content {
      padding: 25px;
    }
    
    .volunteer-content h3 {
      margin-bottom: 10px;
      color: var(--dark);
    }
    
    .volunteer-date {
      color: var(--primary);
      font-weight: 500;
      margin-bottom: 15px;
      display: block;
    }
    
    .volunteer-content p {
      color: var(--gray);
    }

    .view-more-btn {
    text-align: center;
    margin-top: 40px;
    }

    .view-more-btn .btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    }

    .view-more-btn .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    /* Contact Section */
    .contact-container {
      display: flex;
      gap: 50px;
    }
    
    .contact-info {
      flex: 1;
    }
    
    .contact-info h3 {
      margin-bottom: 30px;
      color: var(--dark);
    }
    
    .contact-method {
      display: flex;
      align-items: center;
      margin-bottom: 25px;
    }
    
    .contact-icon {
      width: 60px;
      height: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(232, 62, 140, 0.1);
      border-radius: 50%;
      margin-right: 20px;
      flex-shrink: 0;
    }
    
    .contact-icon i {
      font-size: 1.5rem;
      color: var(--primary);
    }
    
    .contact-details h4 {
      margin-bottom: 5px;
      color: var(--dark);
    }
    
    .contact-details a {
      color: var(--gray);
      text-decoration: none;
      transition: var(--transition);
    }
    
    .contact-details a:hover {
      color: var(--primary);
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 30px;
    }
    
    .social-link {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
      color: white;
      border-radius: 50%;
      font-size: 1.2rem;
      transition: var(--transition);
    }
    
    .social-link:hover {
      transform: translateY(-5px);
      box-shadow: 0 5px 15px rgba(232, 62, 140, 0.4);
    }
    
    .contact-form {
      flex: 1;
      background: white;
      padding: 40px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .contact-form h3 {
      margin-bottom: 25px;
      color: var(--dark);
    }
    
    .form-group {
      margin-bottom: 20px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
      color: var(--dark);
    }
    
    .form-control {
      width: 100%;
      padding: 15px;
      border: 1px solid #ddd;
      border-radius: 10px;
      font-family: 'Poppins', sans-serif;
      font-size: 1rem;
      transition: var(--transition);
    }
    
    .form-control:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(232, 62, 140, 0.2);
    }
    
    textarea.form-control {
      min-height: 150px;
      resize: vertical;
    }
    
    /* Footer */
    footer {
      background-color: var(--dark);
      color: white;
      padding: 60px 0 30px;
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
    }
    
    .footer-col h4 {
      font-size: 1.3rem;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h4::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 3px;
      background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    }
    
    .footer-col p {
      color: #aaa;
      margin-bottom: 20px;
      line-height: 1.8;
    }
    
    .footer-links {
      list-style: none;
    }
    
    .footer-links li {
      margin-bottom: 15px;
    }
    
    .footer-links a {
      color: #aaa;
      text-decoration: none;
      transition: var(--transition);
      display: inline-block;
    }
    
    .footer-links a:hover {
      color: white;
      transform: translateX(5px);
    }
    
    .copyright {
      text-align: center;
      padding-top: 30px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: #aaa;
      font-size: 0.9rem;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
      .hero-content {
        flex-direction: column;
        text-align: center;
      }
      
      .hero-btns {
        justify-content: center;
      }
      
      .about-content {
        flex-direction: column;
      }
      
      .contact-container {
        flex-direction: column;
      }
      
      .experience-timeline::before {
        left: 30px;
      }
      
      .timeline-item:nth-child(odd),
      .timeline-item:nth-child(even) {
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
      }
      
      .timeline-dot {
        left: 30px;
      }
    }
    
    @media (max-width: 768px) {
      .mobile-menu-btn {
        display: block;
      }
      
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        padding-top: 50px;
        transition: var(--transition);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      }
      
      .nav-links.active {
        left: 0;
      }
      
      .nav-links li {
        margin: 15px 0;
      }
      
      .section-title h2 {
        font-size: 2rem;
      }
      
      .hero h1 {
        font-size: 2.5rem;
      }
      
      .stat-box h4 {
        font-size: 1.5rem;
      }
    }
    
    @media (max-width: 576px) {
      .hero h1 {
        font-size: 2rem;
      }
      
      .hero p {
        font-size: 1rem;
      }
      
      .about-stats {
        grid-template-columns: 1fr;
      }
      
      .hero-btns {
        flex-direction: column;
      }
      
      .projects-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 768px) {
  /* Mobile Header */
  .header-container {
    padding: 15px 20px;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: white;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
    transition: 0.4s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  
  .nav-links.active {
    left: 0;
  }
  
  .nav-links li {
    margin: 15px 0;
  }
  
  /* Hero Section */
  .hero {
    padding-top: 90px;
  }
  
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-btns {
    justify-content: center;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .hero-image::before {
    display: none;
  }
  
  .hero-image img {
    max-width: 280px;
    transform: rotate(0);
  }
  
  .hero h1 {
    font-size: 2.2rem;
  }
  
  /* About Section */
  .about-content {
    flex-direction: column;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
  }
  
  /* Projects, Models, Experience */
  .projects-grid,
  .models-container,
  .experience-grid,
  .skills-container,
  .volunteering-container {
    grid-template-columns: 1fr;
  }
  
  .project-links {
    flex-direction: column;
    gap: 10px;
  }
  
  /* Contact Section */
  .contact-container {
    flex-direction: column;
    gap: 30px;
  }
  
  /* Footer */
  .footer-content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Section Padding */
  section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  /* Adjustments for small mobile devices */
  .hero h1 {
    font-size: 1.8rem;
  }
  
  .hero p {
    font-size: 1rem;
  }
  
  .hero-btns .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .model-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  .stat {
    width: 100%;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .volunteer-card {
    max-width: 100%;
  }
}