
        /* Reset and base styles */
        * {
            margin: 0;
            padding: 0;
             box-sizing: border-box;  
            font-family: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
        }

        body {
            background-color: #ffffff;
            color: #333;
            line-height: 1.6;
        }

      /* Header styles */
      header {
        background-color: transparent; /* Initially transparent */
        padding: 15px 30px;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1000;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    /* Sticky header class to be added on scroll */
    header.sticky {
        background-color: #fff;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1200px;
        margin: 0 auto;
    }

    .logo-container {
        display: flex;
        align-items: center;
    }

    .logo-text {
        font-family: 'Pacifico', cursive;
        font-size: 28px;
        color: #fff; /* Initially white */
        text-decoration: none;
        font-weight: normal;
        margin-bottom: 2px;
        transition: color 0.3s ease;
    }

    header.sticky .logo-text {
        color: #333; /* Black when sticky */
    }

    .subtitle {
        font-size: 12px;
        color: #fff; /* Initially white */
        text-transform: uppercase;
        letter-spacing: 1px;
        display: block;
        margin-top: -8px;
        font-weight: 400;
        transition: color 0.3s ease;
    }

    header.sticky .subtitle {
        color: #777; /* Darker when sticky */
    }

    .nav-links {
        display: flex;
        list-style: none;
    }

    .nav-links li {
        margin-left: 25px;
        position: relative;
    }

    .nav-links a {
        color: #fff; /* Initially white */
        text-decoration: none;
        font-size: 14px;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 500;
        transition: all 0.3s ease;
        padding: 10px 0;
        position: relative;
    }

    header.sticky .nav-links a {
        color: #666; /* Darker when sticky */
    }

    /* Hover effect - line appears from center */
    .nav-links a::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        background: #fff; /* Initially white */
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: width 0.3s ease, background 0.3s ease;
    }

    header.sticky .nav-links a::after {
        background: #333; /* Black when sticky */
    }

    .nav-links a:hover {
        color: #fff; /* White when not sticky */
    }

    header.sticky .nav-links a:hover {
        color: #333; /* Black when sticky */
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    /* Active state */
    .nav-links a.active {
        color: #fff; /* Initially white */
        font-weight: 600;
    }

    header.sticky .nav-links a.active {
        color: #111; /* Black when sticky */
    }

    .nav-links a.active::after {
        width: 100%;
        background: #fff; /* Initially white */
    }

    header.sticky .nav-links a.active::after {
        background: #111; /* Black when sticky */
    }

    .nav-links .has-dropdown {
        position: relative;
    }

    /* Dropdown styles */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        background-color: rgba(0,0,0,0.8); /* Initially dark */
        min-width: 200px;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        opacity: 0;
        visibility: hidden;
        transform: translateY(10px);
        transition: all 0.3s ease, background-color 0.3s ease;
        z-index: 10;
        padding: 10px 0;
        border-radius: 4px;
    }

    header.sticky .dropdown-menu {
        background-color: #fff; /* White when sticky */
    }

    .nav-links li:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .dropdown-menu li {
        margin: 0;
        width: 100%;
    }

    .dropdown-menu a {
        padding: 8px 20px;
        display: block;
        color: #fff; /* Initially white */
        font-size: 13px;
    }

    header.sticky .dropdown-menu a {
        color: #666; /* Darker when sticky */
    }

    .dropdown-menu a:hover {
        background-color: rgba(255,255,255,0.1); /* Initially subtle white */
    }

    header.sticky .dropdown-menu a:hover {
        background-color: #f5f5f5; /* Light gray when sticky */
    }

    .dropdown-menu a::after {
        display: none;
    }

    /* Menu toggle button - visible in mobile view */
    .menu-toggle {
        display: none;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 5px;
        z-index: 1001;
        transition: all 0.3s ease;
    }

    .menu-toggle .bar {
        display: block;
        width: 25px;
        height: 3px;
        margin: 5px auto;
        background-color: #fff; /* Initially white */
        transition: all 0.3s ease;
    }

    header.sticky .menu-toggle .bar {
        background-color: #333; /* Black when sticky */
    }

    /* Content area */
    .content {
        padding-top: 80px; /* Space for fixed header */
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #333; /* Dark background for contrast */
        font-size: 2rem;
        color: #fff;
    }

    /* Media queries for responsiveness */
    /* Laptop/Desktop (up to 1200px) */
    @media (max-width: 1200px) {
        .navbar {
            padding: 0 15px;
        }
    }

    /* Tablet (up to 992px) */
    @media (max-width: 992px) {
        .nav-links a {
            font-size: 13px;
        }
        
        .nav-links li {
            margin-left: 15px;
        }
    }

    /* Small tablet (up to 768px) */
    @media (max-width: 768px) {
        .menu-toggle {
            display: block;
        }

        /* Menu toggle animation - hamburger to X */
        .menu-toggle.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

        .nav-links {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0,0,0,0.95); /* Dark background for mobile menu */
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 0;
            transform: translateX(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 99;
        }

        header.sticky .nav-links {
            background-color: rgba(255,255,255,0.95); /* Light background when sticky */
        }

        .nav-links.active {
            transform: translateX(0);
        }

        .nav-links li {
            margin: 15px 0;
            width: 100%;
            text-align: center;
        }
        
        .nav-links a::after {
            bottom: -2px;
        }
        
        .dropdown-menu {
            position: static;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            padding: 0;
            width: 100%;
            background-color: transparent;
        }
        
        .dropdown-toggle.active + .dropdown-menu {
            max-height: 500px;
        }
    }

    /* Mobile (up to 576px) */
    @media (max-width: 576px) {
        header {
            padding: 10px 15px;
        }
        
        .logo-text {
            font-size: 24px;
        }
        
        .subtitle {
            font-size: 10px;
        }
        
        .content {
            padding-top: 60px;
        }
    }
  
         /* Hero Section Styles */
         .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-background {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 200%; /* Double the height for scrolling effect */
            background-image: url('./banner/bannerimg.jpg');
            background-size: cover;
            z-index: -1;
            animation: scrollBackground 40s linear infinite;
        }

        @keyframes scrollBackground {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-50%); /* Moves up half the height */
            }
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 100%;
            text-align: center;
            padding: 0 20px;
        }

        /* Right to left fade animation for content */
        .hero-title, 
        .hero-description, 
        .hero-buttons {
            animation: fadeInRightToLeft 1.5s ease forwards;
            opacity: 0;
            transform: translateX(50px);
        }

        .hero-description {
            animation-delay: 0.3s;
        }

        .hero-buttons {
            animation-delay: 0.6s;
        }

        @keyframes fadeInRightToLeft {
            0% {
                opacity: 0;
                transform: translateX(50px);
            }
            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-title {
            font-size: 3.5rem;
            letter-spacing: 12px;
            font-weight: 300;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            color: #ffffff;
        }

        .hero-description {
            max-width: 800px;
            margin: 0 auto 2.5rem;
            font-size: 1rem;
            line-height: 1.8;
            color: #ddd;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: 30px;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            overflow: hidden;
            position: relative;
        }

        /* Enhanced Button Hover Effects */
        .btn-outline {
            background-color: rgba(255, 255, 255, 0.1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.3);
            position: relative;
            z-index: 1;
        }

        .btn-outline:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-outline:hover {
            color: #fff;
            border-color: rgba(255, 255, 255, 0.5);
        }

        .btn-outline:hover:before {
            left: 0;
        }

        .btn-gold {
            background-color: #c9a752;
            color: #fff;
            border: none;
            position: relative;
            z-index: 1;
        }

        .btn-gold:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: rgba(0, 0, 0, 0.15);
            transition: all 0.4s ease;
            z-index: -1;
        }

        .btn-gold:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 14px rgba(0, 0, 0, 0.2);
        }

        .btn-gold:hover:before {
            width: 100%;
        }

        .btn-gold:active {
            transform: translateY(-1px);
            box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
        }

        .made-with-love {
            position: absolute;
            bottom: 20px;
            right: 20px;
            font-size: 0.8rem;
            opacity: 0.7;
            z-index: 3;
            animation: fadeIn 1.5s ease 0.9s forwards;
            opacity: 0;
            color: #fff;
        }

        @keyframes fadeIn {
            0% {
                opacity: 0;
            }
            100% {
                opacity: 0.7;
            }
        }

        .heart {
            color: #ff3333;
            animation: heartbeat 1.2s infinite;
        }

        @keyframes heartbeat {
            0% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.2);
            }
            100% {
                transform: scale(1);
            }
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .hero-title {
                font-size: 3rem;
                letter-spacing: 10px;
            }
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
                letter-spacing: 8px;
            }

            .hero-description {
                font-size: 0.9rem;
            }

            .hero-buttons {
                flex-direction: column;
                gap: 15px;
            }

            .btn {
                padding: 10px 25px;
                font-size: 0.8rem;
                width: 200px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 2rem;
                letter-spacing: 5px;
            }

            .hero-description {
                font-size: 0.85rem;
            }

            .made-with-love {
                bottom: 10px;
                right: 10px;
                font-size: 0.7rem;
            }
        }

        /* Start footer Section */
        .social-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 10px 20px;
            background-color: #ffffff;
            border-radius: 4px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .copyright {
            display: flex;
            align-items: center;
            color: #7d7d7d;
            font-size: 14px;
        }

        .copyright::before {
            content: "© ";
            margin-right: 5px;
            font-size: 16px;
            color: #b78c3c;
        }

        .social-icons {
            display: flex;
            gap: 15px;
        }

        .social-icon {
            color: #7d7d7d;
            font-size: 16px;
            transition: color 0.3s ease, transform 0.3s ease;
        }

        .social-icon:hover {
            color: #b78c3c;
            transform: translateY(-3px);
        }

        /* Responsive adjustments */
        @media (max-width: 768px) {
            .social-bar {
                flex-direction: column;
                gap: 15px;
                text-align: center;
            }

            .social-icons {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .copyright {
                font-size: 12px;
            }
            
            .social-icons {
                gap: 12px;
            }
            
            .social-icon {
                font-size: 14px;
            }
        }

        /* WORK BANNER SECTION */

        .banner {
            position: relative;
            width: 100%;
            height: 450px;
            overflow: hidden;
            background:  url('./banner/bgimg-2.jpg') no-repeat center;
            background-size: cover;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            color: #fff;
        }

        .banner-title {
            font-size: 3.5rem;
            letter-spacing: 0.5rem;
            text-transform: uppercase;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .banner-nav {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-nav a {
            color: #ccc;
            text-decoration: none;
            font-size: 1rem;
            letter-spacing: 0.1rem;
            transition: color 0.3s ease;
        }

        .banner-nav a:hover {
            color: #fff;
        }

        .banner-nav .separator {
            margin: 0 10px;
            color: #ccc;
        }

        /* Responsive Styles */
        /* Laptop/Desktop (default) */
        
        /* Tablet */
        @media (max-width: 1024px) {
            .banner {
                height: 240px;
            }
            
            .banner-title {
                font-size: 3rem;
            }
        }
        
        /* Mobile */
        @media (max-width: 768px) {
            .banner {
                height: 350px;
            }
            
            .banner-title {
                /* top: 20px; */
                font-size: 2rem;
                letter-spacing: 0.3rem;
            }
            
            .banner-nav a, .banner-nav .separator {
                font-size: 0.9rem;
            }
        }
        
        /* Small Mobile */
        @media (max-width: 480px) {
            .banner {
                height: 280px;
            }
            
            .banner-title {
                font-size: 1.5rem;
                letter-spacing: 0.2rem;
            }
            
            .banner-nav a, .banner-nav .separator {
                font-size: 0.8rem;
            }
        }

        /* START FILTER SECTION */

        .container {
            max-width: 1200px;
            margin: 0 auto;
            background-color: #fff;
            border-radius: 5px;
            padding: 30px;
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        }

        /* Filter Section */
        .filter-section {
            margin-bottom: 30px;
        }

        .filter-title {
            color: #333;
            font-size: 16px;
            font-weight: bold;
            margin-bottom: 15px;
        }

        .filter-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 15px;
        }

        .filters {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .filter {
            cursor: pointer;
            font-size: 14px;
            text-transform: uppercase;
            color: #666;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .filter.active {
            color: #000;
            font-weight: bold;
            text-decoration: underline;
        }

        .filter:hover {
            color: #000;
        }

        .show-items {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .show-items select {
            padding: 5px 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            color: #666;
            background-color: #fff;
        }

        /* Gallery Grid */
        .gallery {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 4px;
            cursor: pointer;
            height: 300px;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }

        .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.5s ease;
        }

        /* Different hover effects for each category */
        /* Default (All) effect */
        .all-item:hover img {
            transform: scale(1.05);
        }

        /* Fashion effect */
        .fashion-item:hover img {
            transform: scale(1.05) rotate(3deg);
            filter: contrast(1.1) brightness(1.05);
        }

        /* Portraits effect */
        .portraits-item:hover img {
            transform: scale(1.1);
            filter: saturate(1.3);
        }

        /* Black & White effect */
        .black-white-item:hover img {
            filter: grayscale(1) contrast(1.2);
            transform: scale(1.05);
        }

        /* Outdoor effect */
        .outdoor-item:hover img {
            transform: scale(1.05) translateY(-5px);
            filter: brightness(1.1) saturate(1.2);
        }

        .item-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.9);
            padding: 15px;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }

        /* Different info panel animation for each category */
        .all-item:hover .item-info {
            transform: translateY(0);
        }

        .fashion-item:hover .item-info {
            transform: translateY(0);
            background: rgba(255, 245, 250, 0.9);
        }

        .portraits-item:hover .item-info {
            transform: translateY(0);
            background: rgba(252, 252, 255, 0.9);
        }

        .black-white-item:hover .item-info {
            transform: translateY(0);
            background: rgba(240, 240, 240, 0.95);
        }

        .outdoor-item:hover .item-info {
            transform: translateY(0);
            background: rgba(245, 255, 245, 0.9);
        }

        .item-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .item-meta {
            display: flex;
            gap: 15px;
            font-size: 12px;
            color: #666;
        }

        /* Pagination */
        .pagination-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 30px;
        }

        .page-numbers {
            display: flex;
            gap: 5px;
        }

        .page-number {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 35px;
            height: 35px;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .page-number:hover, .page-number.active {
            background-color: #333;
            color: #fff;
            border-color: #333;
        }

        .nav-buttons {
            display: flex;
            gap: 10px;
        }

        .nav-button {
            padding: 8px 15px;
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 4px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 14px;
        }

        .nav-button:hover {
            background-color: #333;
            color: #fff;
            border-color: #333;
        }

        /* Hidden class for filtering */
        .hidden {
            display: none;
        }

        /* Item entrance animation classes */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from { opacity: 0; transform: translateY(50px); }
            to { opacity: 1; transform: translateY(0); }
        }

        @keyframes zoomIn {
            from { opacity: 0; transform: scale(0.8); }
            to { opacity: 1; transform: scale(1); }
        }

        @keyframes slideInLeft {
            from { opacity: 0; transform: translateX(-50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }

        .animate-all {
            animation: fadeIn 0.5s ease-in-out forwards;
        }

        .animate-fashion {
            animation: slideUp 0.5s ease-in-out forwards;
        }

        .animate-portraits {
            animation: zoomIn 0.5s ease-in-out forwards;
        }

        .animate-black-white {
            animation: slideInLeft 0.5s ease-in-out forwards;
        }

        .animate-outdoor {
            animation: slideInRight 0.5s ease-in-out forwards;
        }

        /* Responsive Styles */
        @media (max-width: 1200px) {
            .gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media (max-width: 992px) {
            .container {
                padding: 20px;
            }
            .gallery {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            .gallery-item {
                height: 250px;
            }
        }

        @media (max-width: 768px) {
            .filter-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }
            .filters {
                flex-wrap: nowrap;
                overflow-x: auto;
                width: 100%;
                padding-bottom: 10px;
            }
            .gallery {
                grid-template-columns: repeat(2, 1fr);
            }
            .pagination-container {
                flex-direction: column;
                gap: 15px;
            }
            .page-numbers {
                order: 2;
            }
            .nav-buttons {
                width: 100%;
                justify-content: space-between;
                order: 1;
            }
        }

        @media (max-width: 576px) {
            .gallery {
                grid-template-columns: 1fr;
            }
            .gallery-item {
                height: 280px;
            }
            .item-info {
                transform: translateY(0);
                background: rgba(255, 255, 255, 0.8);
            }
        }

        /* Start About Section */

        /* Header/Background Images */
        .background-wrapper {
            position: relative;
            width: 100%;
            overflow: hidden;
        }
        
        .bg-image {
            position: absolute;
            width: 100%;
            height: 30px;
            background-color: #111;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 1s forwards;
            animation-delay: 0.5s;
        }
        
        .bg-image.top {
            top: 0;
        }
        
        .bg-image.bottom {
            bottom: 0;
        }
        
        /* Main Content */
        .aboutcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 30px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            min-height: 100vh;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards;
            animation-delay: 0.8s;
        }
        
        /* Left Content */
        .content-left {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .aboutname {
            font-size: 2.8rem;
            font-weight: 400;
            color: #222;
            margin-bottom: 10px;
            letter-spacing: 2px;
            opacity: 0;
            transform: translateX(-20px);
            animation: fadeInLeft 1s forwards;
            animation-delay: 1s;
        }
        
        .abouttitle {
            font-size: 0.9rem;
            letter-spacing: 1px;
            color: #9c6d00;
            margin-bottom: 30px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateX(-20px);
            animation: fadeInLeft 1s forwards;
            animation-delay: 1.2s;
        }
        
        .abouttitle span {
            color: #555;
        }
        
        .bio {
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 40px;
            color: #555;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards;
            animation-delay: 1.4s;
        }
        
        .bio .colored {
            color: #9c6d00;
        }
        
        .quote {
            font-style: italic;
            padding: 20px;
            position: relative;
            color: #444;
            border-left: 3px solid #9c6d00;
            background: rgba(156, 109, 0, 0.05);
            margin-bottom: 40px;
            font-size: 0.95rem;
            line-height: 1.7;
            opacity: 0;
            transform: scale(0.95);
            animation: fadeInScale 1s forwards;
            animation-delay: 1.6s;
        }
        
        .quote::before {
            content: '"';
            font-size: 3rem;
            color: #9c6d00;
            position: absolute;
            top: -15px;
            left: 10px;
            opacity: 0.2;
        }
        
        .aboutsocial {
            margin-top: 20px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 1s forwards;
            animation-delay: 1.8s;
        }
        
        .aboutsocial h3 {
            font-size: 1rem;
            font-weight: 500;
            margin-bottom: 15px;
            color: #444;
        }
        
        .aboutsocial-icons {
            display: flex;
            gap: 15px;
        }
        
        .aboutsocial-icons a {
            color: #555;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }
        
        .aboutsocial-icons a:hover {
            color: #9c6d00;
            transform: translateY(-3px);
        }
        
        /* Right Content - Image */
        .content-right {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }
        
        .profile-img {
            width: 100%;
            max-width: 400px;
            border-radius: 5px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(20px);
            animation: fadeInRight 1.2s forwards;
            animation-delay: 1.2s;
            transition: all 0.5s ease;
        }
        
        .profile-img:hover {
            transform: scale(1.03) translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }
        
        /* Responsive Design */
        @media screen and (max-width: 1024px) {
            .aboutcontainer {
                gap: 30px;
                padding: 40px 20px;
            }
            
            .aboutname {
                font-size: 2.4rem;
            }
        }
        
        @media screen and (max-width: 768px) {
            .aboutcontainer {
                grid-template-columns: 1fr;
                padding: 30px 20px;
            }
            
            .content-right {
                order: -1;
                margin-bottom: 20px;
            }
            
            .profile-img {
                max-width: 350px;
            }
            
            .aboutname {
                font-size: 2.2rem;
            }
        }
        
        @media screen and (max-width: 480px) {
            .aboutcontainer {
                padding: 20px 15px;
            }
            
            .aboutname {
                font-size: 1.8rem;
            }
            
            .profile-img {
                max-width: 300px;
            }
            
            .bio {
                font-size: 0.95rem;
            }
            
            .quote {
                font-size: 0.9rem;
                padding: 15px;
            }
        }

        /* Start Contact Section */

          /* Header/Footer dark bars */
          .dark-bar {
            background-color: #111;
            height: 15px;
            width: 100%;
            position: fixed;
            z-index: 100;
        }

        .dark-bar.top {
            top: 0;
            transform: translateY(-15px);
            animation: slideDown 0.8s forwards;
        }

        .dark-bar.bottom {
            bottom: 0;
            transform: translateY(15px);
            animation: slideUp 0.8s forwards;
        }

        /* Main content container */
        .contactsection{
            justify-content: center;
            margin-left: 150px;
        }
        .contactcontainer {
            max-width: 1200px;
            width: 100%;
            display: flex;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
            border-radius: 10px;
            overflow: hidden;
            animation: fadeIn 1s ease-in-out;
        }
        
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Company Info Styles */
        .company-info {
            flex: 1;
            background-color: #f8f9fa;
            padding: 40px;
            min-width: 300px;
            animation: slideInLeft 1s ease-in-out;
        }
        
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .company-logo {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }
        
        .company-logo i {
            font-size: 30px;
            color: #4169e1;
            background-color: rgba(65, 105, 225, 0.1);
            padding: 15px;
            border-radius: 10px;
            margin-right: 15px;
        }
        
        .company-logo h1 {
            font-size: 24px;
            font-weight: 600;
            color: #333;
        }
        
        .address-block {
            margin-bottom: 30px;
            line-height: 1.8;
            color: #555;
        }
        
        .address-block p {
            margin-bottom: 8px;
        }
        
        .address-block a {
            color: #4169e1;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .address-block a:hover {
            color: #1e3da8;
            text-decoration: underline;
        }
        
        .contactsocial-icons {
            display: flex;
            gap: 15px;
        }
        
        .contactsocial-icons a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background-color: #f0f0f0;
            border-radius: 50%;
            text-decoration: none;
            color: #555;
            transition: all 0.3s ease;
        }
        
        .contactsocial-icons a:hover {
            background-color: #4169e1;
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(65, 105, 225, 0.3);
        }
        
        .contactsocial-icons i {
            font-size: 16px;
        }
        
        /* Contact Form Styles */
        .contact-form {
            flex: 2;
            padding: 40px;
            background-color: #fff;
            min-width: 300px;
            animation: slideInRight 1s ease-in-out;
        }
        
        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        
        .form-header {
            margin-bottom: 30px;
        }
        
        .form-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 15px;
            background: linear-gradient(90deg, #4169e1, #6495ED);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .form-header p {
            color: #6c757d;
            line-height: 1.6;
        }
        
        .form-group {
            margin-bottom: 20px;
            position: relative;
        }
        
        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: #4169e1;
            outline: none;
            box-shadow: 0 0 0 3px rgba(65, 105, 225, 0.2);
        }
        
        .form-control.error {
            border-color: #dc3545;
        }
        
        .error-message {
            color: #dc3545;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        
        textarea.form-control {
            resize: vertical;
            min-height: 120px;
        }
        
        .submit-btn {
            background: linear-gradient(90deg, #4169e1, #6495ED);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 12px 25px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            width: 100%;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }
        
        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(65, 105, 225, 0.4);
        }
        
        .submit-btn:active {
            transform: translateY(0);
        }
        
        /* Success Modal Styles */
        .modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .modal.show {
            opacity: 1;
            visibility: visible;
        }
        
        .modal-content {
            background-color: white;
            border-radius: 10px;
            padding: 30px;
            text-align: center;
            max-width: 400px;
            width: 90%;
            transform: scale(0.8);
            transition: transform 0.3s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }
        
        .modal.show .modal-content {
            transform: scale(1);
        }
        
        .success-icon {
            font-size: 60px;
            color: #28a745;
            margin-bottom: 20px;
        }
        
        .modal-title {
            font-size: 24px;
            margin-bottom: 15px;
            color: #212529;
        }
        
        .modal-text {
            color: #6c757d;
            margin-bottom: 25px;
        }
        
        .modal-btn {
            background: linear-gradient(90deg, #4169e1, #6495ED);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .modal-btn:hover {
            background: linear-gradient(90deg, #3158d0, #5384dc);
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .contactsection{
                justify-content: center;
                margin-left: 0px;
            }
            .contactcontainer {
                max-width: 800px;
            }
        }
        
        @media (max-width: 768px) {
            .contactsection{
                justify-content: center;
                margin-left: 0px;
            }
            .contactcontainer {
                flex-direction: column;
            }
            
            .company-info, .contact-form {
                padding: 30px;
            }
            
            .form-header h2 {
                font-size: 28px;
            }
        }
        
        @media (max-width: 576px) {
            .contactsection{
                justify-content: center;
                margin-left: 0px;
            }
            .company-info, .contact-form {
                padding: 20px;
            }
            
            .form-header h2 {
                font-size: 24px;
            }
            
            .company-logo h1 {
                font-size: 20px;
            }
        }


        /* Start Blog Section */

        .blogcontainer {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        /* Blog Section */
        .blog-title {
            text-align: center;
            margin-bottom: 50px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeUp 0.6s ease forwards;
        }

        .blog-title h1 {
            font-size: 2.8rem;
            margin-bottom: 10px;
            color: #333;
        }

        .blog-title p {
            font-size: 1.1rem;
            color: #666;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 30px;
        }

        .blog-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .blog-card-image {
            position: relative;
            height: 220px;
            overflow: hidden;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.1);
        }

        .blog-category {
            position: absolute;
            top: 15px;
            left: 15px;
            background: rgba(255, 255, 255, 0.9);
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 500;
            color: #555;
        }

        .blog-card-content {
            padding: 25px;
        }

        .blog-card-content h2 {
            font-size: 1.4rem;
            margin-bottom: 10px;
            font-weight: 600;
        }

        .blog-card-content p {
            color: #666;
            margin-bottom: 20px;
            display: -webkit-box;
            /* -webkit-line-clamp: 3; */
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .blog-author {
            display: flex;
            align-items: center;
        }

        .blog-author img {
            width: 30px;
            height: 30px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .blog-date {
            font-size: 0.85rem;
            color: #888;
            margin-left: 15px;
            display: flex;
            align-items: center;
        }

        .blog-date::before {
            content: "";
            width: 4px;
            height: 4px;
            background: #888;
            border-radius: 50%;
            margin-right: 15px;
        }

        .read-more {
            display: inline-block;
            color: #4f8a70;
            font-weight: 500;
            text-decoration: none;
            position: relative;
            transition: color 0.3s ease;
        }

        .read-more:hover {
            color: #3a6853;
        }

        .read-more::after {
            content: "→";
            margin-left: 5px;
            transition: transform 0.3s ease;
            display: inline-block;
        }

        .read-more:hover::after {
            transform: translateX(5px);
        }

        /* Featured Post */
        .featured-post {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            margin-bottom: 40px;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            opacity: 0;
            animation: fadeIn 0.8s ease forwards;
        }

        .featured-image {
            height: 100%;
            overflow: hidden;
        }

        .featured-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .featured-post:hover .featured-image img {
            transform: scale(1.05);
        }

        .featured-content {
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-content h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .featured-content p {
            margin-bottom: 25px;
            color: #666;
        }

        .featured-tag {
            background: #e9f5f0;
            color: #4f8a70;
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 500;
            display: inline-block;
            margin-bottom: 15px;
        }

        /* About Section */
        .about-section {
            margin-top: 60px;
            background: #fff;
            border-radius: 12px;
            padding: 40px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            opacity: 0;
            transform: translateY(30px);
            animation: fadeUp 0.8s ease 0.2s forwards;
        }

        .about-title {
            position: relative;
            display: inline-block;
            margin-bottom: 30px;
        }

        .about-title h2 {
            font-size: 1.8rem;
            font-weight: 600;
        }

        .about-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -10px;
            width: 100%;
            height: 4px;
            background: linear-gradient(to right, #4f8a70, #acc8be);
            border-radius: 2px;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 30px;
            align-items: center;
        }

        .about-image {
            overflow: hidden;
            border-radius: 10px;
        }

        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.5s ease;
        }

        .about-image:hover img {
            transform: scale(1.03);
        }

        .about-text p {
            margin-bottom: 20px;
            color: #555;
        }

        .blogsocial-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .blogsocial-links a {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            transition: all 0.3s ease;
        }

        .blogsocial-links a:hover {
            background: #4f8a70;
            color: #fff;
            transform: translateY(-3px);
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .featured-post {
                grid-template-columns: 1fr;
            }
            
            .featured-image {
                height: 300px;
            }

            .about-content {
                grid-template-columns: 1fr;
            }

            .about-image {
                max-width: 300px;
                margin: 0 auto;
            }
        }

        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            }

            .featured-content {
                padding: 30px;
            }

            .featured-content h2 {
                font-size: 1.6rem;
            }
            
            .about-section {
                padding: 30px;
            }
        }

        @media (max-width: 576px) {
            .blogcontainer {
                padding: 30px 15px;
            }

            .blog-title h1 {
                font-size: 2.2rem;
            }

            .featured-content {
                padding: 25px;
            }

            .featured-content h2 {
                font-size: 1.4rem;
            }
        }


        /* Start Gallery Section */

         /* Base styles */
    .imagecontainer {
        max-width: 1200px;
        margin: 0 auto;
        padding: 40px 0px;
        font-family: 'Arial', sans-serif;
      }
    
      .gallery-header {
        text-align: center;
        margin-bottom: 30px;
      }
    
      .gallery-header h2 {
        font-size: 28px;
        margin-bottom: 12px;
        color: #333;
      }
    
      .gallery-header p {
        font-size: 16px;
        color: #666;
        max-width: 800px;
        margin: 0 auto;
        line-height: 1.6;
      }
    
      /* Carousel styles */
      .carousel-container {
        position: relative;
        margin-bottom: 40px;
        overflow: hidden;
      }
    
      .carousel {
        display: flex;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 0;
        /* Hide scrollbar */
        scrollbar-width: none;
        -ms-overflow-style: none;
      }
    
      .carousel::-webkit-scrollbar {
        display: none;
      }
    
      .carousel-item {
        flex: 0 0 300px;
        height: 400px;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        scroll-snap-align: center;
        position: relative;
        transition: transform 0.3s ease;
      }
    
      .carousel-item:hover {
        transform: scale(1.02);
      }
    
      .carousel-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    
      /* Navigation buttons */
      .carousel-nav {
        display: flex;
        justify-content: space-between;
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        z-index: 10;
        pointer-events: none;
        padding: 0 10px;
      }
    
      .carousel-nav button {
        background-color: rgba(255, 255, 255, 0.7);
        border: none;
        border-radius: 50%;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        pointer-events: auto;
        transition: all 0.3s ease;
      }
    
      .carousel-nav button:hover {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
      }
    
      /* Indicators */
      .carousel-indicators {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 20px;
        flex-wrap: wrap; /* Allow wrapping on smaller screens */
      }
    
      .indicator {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background-color: #ccc;
        cursor: pointer;
        transition: background-color 0.3s ease;
      }
    
      .indicator.active {
        background-color: #444;
      }
    
      /* Play/Pause controls */
      .carousel-controls {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        gap: 10px;
      }
    
      .control-btn {
        background-color: rgba(0, 0, 0, 0.1);
        border: none;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
      }
    
      .control-btn:hover {
        background-color: rgba(0, 0, 0, 0.2);
      }
      
      .control-btn.active {
        background-color: rgba(0, 0, 0, 0.3);
        color: white;
      }
    
      /* Upload container */
      .upload-container {
        display: flex;
        justify-content: center;
        margin-top: 20px;
      }
    
      #file-input {
        display: none;
      }
    
      .upload-btn {
        background-color: #4CAF50;
        color: white;
        padding: 12px 24px;
        border: none;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: background-color 0.3s ease;
      }
    
      .upload-btn:hover {
        background-color: #45a049;
      }
    
      .upload-info {
        text-align: center;
        margin-top: 10px;
        color: #666;
        font-size: 14px;
      }
    
      /* Responsive adjustments */
      /* Desktop (default) */
      .carousel-item {
        flex: 0 0 300px;
        height: 400px;
      }
      
      /* Laptop */
      @media (max-width: 1024px) {
        .carousel-item {
          flex: 0 0 280px;
          height: 380px;
        }
        
        .gallery-header h2 {
          font-size: 26px;
        }
      }
      
      /* Tablet */
      @media (max-width: 768px) {
        .carousel-item {
          flex: 0 0 220px;
          height: 300px;
        }
        
        .gallery-header h2 {
          font-size: 24px;
        }
        
        .gallery-header p {
          font-size: 14px;
        }
        
        .carousel-nav button {
          width: 35px;
          height: 35px;
        }
        
        .imagecontainer {
          padding: 30px 15px;
        }
      }
      
      /* Mobile */
      @media (max-width: 480px) {
        .carousel-item {
          flex: 0 0 180px;
          height: 240px;
        }
        
        .gallery-header h2 {
          font-size: 20px;
        }
        
        .gallery-header p {
          font-size: 13px;
        }
        
        .carousel-nav button {
          width: 30px;
          height: 30px;
        }
        
        .upload-btn {
          padding: 10px 16px;
          font-size: 14px;
        }
        
        .imagecontainer {
          padding: 20px 10px;
        }
      }