       :root {
            --primary-color: #1a1a2e;
            --secondary-color: #0f3460;
            --accent-color: #00b4d8;
            --text-color: #e6e6e6;
            --dark-bg: #121212;
            --card-bg: #16213e;
            --gradient-bg: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
            --box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
            --neon-glow: 0 0 10px rgba(0, 180, 216, 0.7), 0 0 20px rgba(0, 180, 216, 0.5);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .fa, .far, .fas {
            font-family: "Font Awesome 5 Free";
        }
        .fa, .fab, .fad, .fal, .far, .fas {
            font-size: x-large;
        }
        
        body {
            font-family: 'Segoe UI', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            line-height: 1.6;
            color: var(--text-color);
            background-color: var(--dark-bg);
            overflow-x: hidden;
            
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 10px;
        }
        .container1{
            max-width: 1400px;
            margin-left: 20px;
            margin-right: 20px;
        }
        
        .container2{
            max-width: 1600px;
            margin-left: 20px;
            margin-right: 20px;
            padding: 0 10px;
        }
        
        
        header {
            background-color: rgba(26, 26, 46, 0.9);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            padding: 10px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
           
        }
        
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
            background: linear-gradient(to right, #00b4d8, #4cc9f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
        }
        
        .logo::after {
            content: '_';
            animation: blink 1s step-end infinite;
            color: var(--accent-color);
        }

        
        @keyframes blink {
            from, to { opacity: 1; }
            50% { opacity: 0; }
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            display: flex;
            align-items: center;
            gap: 4px; /* Adjust space between logo and text */
            color: var(--accent-color);
            transition: text-shadow 0.3s ease-in-out, color 0.3s ease-in-out;
        
        }
        
        .emoji img {
            width: 30px; /* Adjust size */
            height: 30px;
            transition: transform 0.5s ease-in-out;
            transform-origin: center; /* Ensures rotation happens from center */
            
        }
        .emoji {
            display: flex; /* Ensures alignment with text */
            justify-content: center;
            align-items: center;
        }
        .logo:hover .emoji img {
            transform: rotate(360deg);
            filter: drop-shadow(0px 0px 3px var(--accent-color));
            
        }
        .logo:hover {
            text-shadow: 0px 0px 1px var(--accent-color); /* Creates a glowing effect around the text */
        }
        
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            margin-left: 30px;
            position: relative;
        }
        
        .nav-links a {
            color: var(--text-color);
            text-decoration: none;
            transition: all 0.3s;
            font-weight: 500;
            padding: 5px 0;
            position: relative;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent-color);
            transition: width 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--accent-color);
        }
        
        .nav-links a:hover::after {
            width: 100%;
        }
        
        .hero {
            min-height: 100vh;
            background: var(--gradient-bg);
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            margin-top: 0;
            padding-top: 70px;
        }
        
        .hero::after {
            content: '';
            position: absolute;
            width: 200%;
            height: 200%;
            background: repeating-linear-gradient(
                rgba(0, 180, 216, 0.05) 0px,
                transparent 2px,
                transparent 30px,
                rgba(0, 180, 216, 0.05) 32px
            );
            transform: rotate(-45deg);
            animation: gridMove 20s linear infinite;
        }
        
        @keyframes gridMove {
            0% {
                transform: translateX(-50%) translateY(-50%) rotate(-45deg);
            }
            100% {
                transform: translateX(0%) translateY(0%) rotate(-45deg);
            }
        }
        
        .hero-content {
            max-width: 700px;
            position: relative;
            z-index: 10;
        }
        
        .hero-small {
            color: var(--accent-color);
            font-size: 18px;
            margin-bottom: 10px;
            opacity: 0.8;
            text-transform: uppercase;
            letter-spacing: 2px;
            position: relative;
            display: inline-block;
        }
        
        .hero h1 {
            font-size: 60px;
            line-height: 1.1;
            margin-bottom: 20px;
            color: white;
            text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            animation: fadeIn 1s ease-out;
        }
        
        .hero h1 span {
            color: var(--accent-color);
            position: relative;
        }
        
        .hero p {
            font-size: 20px;
            margin-bottom: 30px;
            line-height: 1.7;
            opacity: 0.8;
            animation: fadeIn 1.5s ease-out;
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .btn {
            display: inline-block;
            background-color: var(--accent-color);
            color: #111;
            padding: 14px 28px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            overflow: hidden;
            border: none;
            /*cursor: pointer;*/
            box-shadow: var(--neon-glow);
        }
        
        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.1);
            transform: translateX(-100%) rotate(45deg);
            transition: transform 0.6s;
        }
        
        .btn:hover {
            background-color: #00d4f8;
            box-shadow: 0 0 20px rgba(0, 180, 216, 0.8);
            transform: translateY(-2px);
        }
        
        .btn:hover::before {
            transform: translateX(100%) rotate(45deg);
        }
        
        .code-block {
            position: absolute;
            right: 10px;
            bottom: 10px;
            font-family: 'Consolas', 'Monaco', monospace;
            font-size: 15px;
            opacity: 0.7;
            color: #00ff9d;
            animation: typing 5s steps(120, end) infinite;
            white-space: nowrap;
            overflow: hidden;
            width: 0;
            text-align: justify;
        }
        
        @keyframes typing {
            0% { width: 0 }
            50% { width: 24ch }
            90% { width: 24ch }
            100% { width: 0 }
        }
        
        section {
            padding: 50px 0;
            position: relative;
        }
        
        .bg-dark {
            background-color: var(--dark-bg);
        }
        
        .bg-darker {
            background-color: #0a0a14;
        }
        
        .section-header {
            margin-bottom: 70px;
            text-align: center;
            position: relative;
        }
        
        .section-title {
            display: inline-block;
            font-size: 36px;
            font-weight: 700;
            color: white;
            position: relative;
            margin-bottom: 20px;
            padding-bottom: 10px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .section-subtitle {
            max-width: 700px;
            margin: 0 auto;
            font-size: 18px;
            color: var(--text-color);
            opacity: 0.8;
        }
        
        .about-content {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
            align-items: center;
        }
        
        .about-image {
            position: relative;
            border-radius: 5px;
            overflow: hidden;
        }
        
        .about-img-box {
            position: relative;
            z-index: 2;
            border-radius: 5px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
        }
        
        .about-img-box img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s;
        }
        
        .about-img-box:hover img {
            transform: scale(1.05);
        }
        
        .about-img-box::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 180, 216, 0.1);
            z-index: 1;
        }
        
        .about-image::after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--accent-color);
            top: 15px;
            left: 15px;
            z-index: 1;
            border-radius: 5px;
        }
        
        .about-text h3 {
            font-size: 28px;
            margin-bottom: 20px;
            color: white;
        }
        
        .about-text p {
            margin-bottom: 20px;
            color: var(--text-color);
            opacity: 0.9;
        }
        
        .tech-stack {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 30px;
        }
        
        .tech-tag {
            background-color: rgba(0, 180, 216, 0.1);
            color: var(--accent-color);
            padding: 8px 16px;
            border-radius: 20px;
            border: 1px solid rgba(0, 180, 216, 0.3);
            font-size: 14px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
       /* .tech-tag:hover {
            background-color: rgba(0, 180, 216, 0.2);
            transform: translateY(-3px);
            box-shadow: 0 3px 10px rgba(0, 180, 216, 0.2);
        }
        */

        .skills {
            margin-top: 40px;
        }
        
        .skill-item {
            margin-bottom: 25px;
        }
        
        .skill-name {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        .skill-bar {
            height: 8px;
            background-color: rgba(234, 8, 8, 0.1);
            border-radius: 10px;
            overflow: hidden;
            position: relative;
        }
        
        .skill-progress {
            height: 100%;
            background: linear-gradient(to right, #00b4d8, #4cc9f0);
            border-radius: 10px;
            position: relative;
            width: 0;
            animation: skill-animation 1.5s ease-out forwards;
        }
        
        @keyframes skill-animation {
            to { width: var(--skill-percent); }
        }
        
        .skill-progress::after {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            height: 100%;
            width: 5px;
            background-color: rgba(255, 255, 255, 0.3);
            border-radius: 3px;
        }

        
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }
        
        .portfolio-item {
            background-color: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--box-shadow);
            transition: all 0.4s;
            position: relative;
        }
        
        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
        }
        
        .portfolio-image {
            height: 220px;
            position: relative;
            overflow: hidden;
            background-color: #0a0a14;
        }
        
        .portfolio-image::before {
            content: '';
            position: absolute;
            inset: 0;
            /*background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.8) 100%);*/
            z-index: 1;
        }
        
        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }
        
        .portfolio-category {
            position: absolute;
            top: 15px;
            left: 15px;
            z-index: 2;
            background-color: var(--accent-color);
            color: #111;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .portfolio-content {
            padding: 25px;
        }
        
        .portfolio-content h3 {
            margin-bottom: 15px;
            color: white;
            font-size: 22px;
        }
        
        .portfolio-content p {
            margin-bottom: 20px;
            color: var(--text-color);
            opacity: 0.9;
            font-size: 15px;
        }
        
        .portfolio-links {
            display: flex;
            gap: 15px;
        }
        
        .portfolio-link {
            padding: 8px 12px;
            background-color: rgba(255, 255, 255, 0.1);
            color: var(--text-color);
            border-radius: 5px;
            font-size: 14px;
            text-decoration: none;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }
        
        .portfolio-link:hover {
            background-color: var(--accent-color);
            color: #111;
        }
        
        .timeline-section {
            position: relative;
            padding: 0 30px;
        }
        
        .timeline {
            position: relative;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            width: 2px;
            background-color: rgba(255, 255, 255, 0.1);
            top: 0;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .timeline-item {
            margin-bottom: 60px;
            position: relative;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) .timeline-content {
            float: left;
            padding: 30px 60px 30px 60px;
            text-align: left;
            justify-content: center;
        }
        
        .timeline-item:nth-child(even) .timeline-content {
            float: right;
            padding: 30px 60px 30px 60px;
            text-align: left;
            justify-content: center;
        }
        
        .timeline-content {
            position: relative;
            width: 45%;
            background-color: var(--card-bg);
            border-radius: 10px;
            box-shadow: var(--box-shadow);
            transition: all 0.3s;
        }
        
        .timeline-content:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }
        
        .timeline-date {
            display: inline-block;
            color: var(--accent-color);
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }
        
        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            background-color: var(--accent-color);
            border-radius: 50%;
            top: 30px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 10;
            box-shadow: 0 0 0 4px rgba(0, 180, 216, 0.2);
        }
        
        .timeline-dot::before {
            content: '';
            position: absolute;
            width: 10px;
            height: 10px;
            background-color: var(--dark-bg);
            border-radius: 50%;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        
        .timeline-content h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: white;
        }
        
        .timeline-content h4 {
            font-size: 16px;
            margin-bottom: 15px;
            color: var(--accent-color);
            font-weight: 500;
        }
        
        .timeline-content p {
            font-size: 15px;
            color: var(--text-color);
            opacity: 0.9;
        }
        
        .timeline-item::after {
            content: '';
            display: table;
            clear: both;
        }
        
        
        
        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 50px;
        }
        
        .contact-info {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
        
        .contact-title {
            font-size: 24px;
            color: white;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .contact-title::after {
            content: '';
            position: absolute;
            width: 40px;
            height: 2px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .contact-item {
            display: flex;
            gap: 20px;
            margin-bottom: 30px;
            align-items: flex-start;
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            background-color: rgba(0, 180, 216, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--accent-color);
        }
        
        .contact-text h4 {
            color: white;
            margin-bottom: 5px;
            font-size: 18px;
        }
        
        .contact-text p, .contact-text a {
            color: var(--text-color);
            opacity: 0.9;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .contact-text a:hover {
            color: var(--accent-color);
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
        }
        
        .social-link {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-color);
            font-size: 18px;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-link:hover {
            background-color: var(--accent-color);
            color: #111;
            transform: translateY(-5px);
        }
        
        .contact-form {
            background-color: var(--card-bg);
            padding: 40px;
            border-radius: 10px;
            box-shadow: var(--box-shadow);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-control {
            width: 100%;
            background-color: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 5px;
            color: var(--text-color);
            transition: all 0.3s;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.2);
        }
        
        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .form-submit {
            text-align: right;
        }
        
        footer {
            background-color: var(--primary-color);
            color: var(--text-color);
            text-align: center;
            padding: 30px 0;
            position: relative;
        }
        
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 1px;
            background: linear-gradient(to right, transparent, var(--accent-color), transparent);
        }
        
        .footer-content {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .footer-logo {
            font-size: 24px;
            font-weight: bold;
            margin-bottom: 20px;
            background: linear-gradient(to right, #00b4d8, #4cc9f0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: inline-block;
        }
        
        .footer-text {
            margin-bottom: 20px;
            opacity: 0.8;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .footer-link {
            color: var(--text-color);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-link:hover {
            color: var(--accent-color);
        }
        
        .copyright {
            font-size: 14px;
            opacity: 0.7;
        }
        
        /* Animation classes for scrolling effects */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }
        
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Media Queries */
        @media (max-width: 992px) {
            .about-content,
            .contact-wrapper {
                grid-template-columns: 1fr;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .timeline-dot {
                left: 30px;
            }
            
            .timeline-item:nth-child(odd) .timeline-content,
            .timeline-item:nth-child(even) .timeline-content {
                float: right;
                width: calc(100% - 60px);
                padding: 30px;
                text-align: left;
                margin-left: 60px;
            }
        }
        
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .hero h1 {
                font-size: 42px;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
            }
            
            .section-title {
                font-size: 30px;
            }
        }
        #name {
            font-weight: bold;
            
        }
        
        #typing {
            font-weight: bold;
            
        }


        .cursor {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background-color: rgba(255, 255, 255, 0.3);
            border: 2px solid #007bff;
            position: fixed;
            pointer-events: none;
            transform: translate(-50%, -50%);
            transition: width 0.2s, height 0.2s, background-color 0.2s;
            z-index: 9999;
        }
        
        .cursor.hover-effect {
            width: 20px;
            height: 20px;
            background-color: rgba(0, 123, 255, 0.2);
            border-color: #00ff88;
        }

        /* Default state - Hide mobile menu button on larger screens */
       .mobile-menu-btn {
    display: none; /* Hide by default on all screens */
    z-index: 1002; /* Higher than nav z-index */
        }
  
 /* Mobile menu styles */
@media (max-width: 768px) {
    /* Show mobile menu button only on smaller screens */
    .mobile-menu-btn {
      display: block; /* Display on mobile */
      cursor: pointer;
    }
    
    .nav-links {
      position: fixed;
      top: 0;
      right: -100%; /* Moves it off-screen */
      width: 30vh;
      height: 100vh;
      background: #1a1a2e; /* Dark background for visibility */
      display: flex;
      flex-direction: column;
      align-items: flex-start; /* Align items to the top left */
      justify-content: flex-start; /* Start items from the top */
      z-index: 1001;
      padding-top: 30px; /* Space for close button */
      transition: right 0.3s ease-in-out; /* Smooth transition */
      padding-left: 20px; /* Add left padding for spacing */
      max-height: 100vh; /* Prevents overflow beyond viewport */
    }
    
    .nav-links.active {
      right: 0; /* Bring menu into view */
      overflow-y: auto; /* Enable vertical scrolling */
      border-radius: 0 0 8px 8px; /* Rounded bottom corners */
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow */
      margin-top: 0; /* Remove extra margin */
    }
    
    /* Style menu items */
    .nav-links li {
      margin: 1rem 0;
      width: 100%; /* Full width */
      text-align: left; /* Align text to the left */
      opacity: 1; /* Ensure visibility */
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      align-self: flex-start; /* Ensure items align at the top */
      
    }
    
    .nav-links a {
      color: #fff; /* Light-colored text for contrast */
      font-size: 1.2rem; /* Larger font for mobile */
      display: block; /* Full block for easier tapping */
      padding: 10px 0; /* Larger tap target */
      text-decoration: none; /* Remove underline */
    }
  }

.back-to-top {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #00b4d8;
    color: black;
    display: none;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.back-to-top:hover {
    background-color: #302b63;
    transform: translateY(-3px);
    color: white;
}

.back-to-top.show {
    display: flex;
}
/* Photography Section Styles */
  #photography.bg-dark {
    background: var(--dark-bg);;
    color: var(--text-color);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
  }
  
  #photography.bg-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images /snapifaibg5.png');
    opacity: 0.1;
    pointer-events: none;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 60px;
  }
  
  .section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--accent-color);
    text-shadow: 0 0 10px rgba(0, 180, 216, 0.3);
    position: relative;
    display: inline-block;
  }
  
  .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    box-shadow: var(--neon-glow);
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: var(--text-color);
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
  }
  
  .photography-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
  }
  
  .photo-item {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 180, 216, 0.2);
    aspect-ratio: 4/3;  /* Maintains consistent proportions */
  }
  
  .photo-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-color);
  }
  
  .photo-item.featured {
    grid-column: span 2;
    grid-row: span 2;
    height: auto;
  }
  
  .photo-wrapper {
    height: 100%;
    width: auto;
    position: relative;
  }
  
  .photo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .photo-item:hover .photo-wrapper img {
    transform: scale(1.05);
  }
  
  .photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  
  .photo-item:hover .photo-overlay {
    opacity: 1;
  }
  
  .category {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    padding: 5px 10px;
    background-color: rgba(0, 180, 216, 0.3);
    border-left: 3px solid var(--accent-color);
  }
  
  /* CTA Section */
  .photography-cta {
    text-align: center;
    margin-top: 40px;
  }
  
  .cta-text {
    margin-bottom: 20px;
    font-size: 1.1rem;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--primary-color);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: 0.5s;
    z-index: -1;
  }
  
  .btn:hover {
    background-color: transparent;
    color: var(--accent-color);
    box-shadow: var(--neon-glow);
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  @media (max-width: 992px) {
    .photography-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .photo-item.featured {
      grid-column: span 2;
    }
  }
  
  @media (max-width: 768px) {
    .photography-grid {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .photo-item,
    .photo-item.featured {
      grid-column: span 1;
      aspect-ratio: 3/2;
    }
  }

  
